diff --git a/Musicreater.py b/Musicreater.py index 884b54b..397e4fb 100644 --- a/Musicreater.py +++ b/Musicreater.py @@ -227,31 +227,33 @@ def __main__(): SaveProject() log("程序正常退出") + + + + + try: global dataset del dataset + global root + root.destroy() + del root except: pass; - - global root - root.destroy() - del root + if clearLog : print("清除log(此句不载入日志)") try: - shutil.rmtree("./log/") + if os.path.exists("./log/"): + shutil.rmtree("./log/") + if os.path.exists("./logs/"): + shutil.rmtree("./logs/") + if os.path.exists("./cache/"): + shutil.rmtree("./cache/") except: - pass; - try: - shutil.rmtree("./logs/") - except: - pass; - try: - shutil.rmtree("./cache/") - except: - pass; + print("无法清除日志及临时文件") exit() @@ -924,14 +926,15 @@ def __main__(): log("取消") return; from msctspt.transfer import ryStruct - rys = ryStruct() - rys.World2Rys(outdir,begp,endp,isAir) + rys = ryStruct(outdir) + rys.world2Rys(begp,endp,isAir) try: with open(fileName,'w',encoding='utf-8') as f: json.dump(rys.RyStruct,f,sort_keys=True, indent=4, separators=(', ', ': '), ensure_ascii=False) tkinter.messagebox.showinfo("成功✔",'文件已生成\n'+fileName) except: tkinter.messagebox.showerror("失败❌",'文件无法生成\n'+fileName+'\n'+str(rys.RyStruct)) + rys.closeLevel() @@ -1033,10 +1036,10 @@ def __main__(): # 刷新主要部分 def RefreshMain(): - LabelPackName['text'] = '包名: '+dataset[0]['mainset']['PackName'] - LabelMusicTitle['text'] = '音乐标题: '+dataset[0]['mainset']['MusicTitle'] + LabelPackName['text'] = '包名: '+str(dataset[0]['mainset']['PackName']) + LabelMusicTitle['text'] = '音乐标题: '+str(dataset[0]['mainset']['MusicTitle']) LabelIsRepeat['text'] = '是否重复: '+str(dataset[0]['mainset']['IsRepeat']) - LabelPlayerSelect['text'] = '玩家选择器:'+dataset[0]['mainset']['PlayerSelect'] + LabelPlayerSelect['text'] = '玩家选择器:'+str(dataset[0]['mainset']['PlayerSelect']) MusicList_var.set(()) # 为列表框设置新值 for i in range(len(dataset[0]['musics'])): ListMusicList.insert(tk.END, i) @@ -1384,7 +1387,7 @@ def __main__(): # 进入窗口消息循环 root.mainloop() - + log("退出") del filemenu, editmenu, helpmenu exitapp() diff --git a/README.md b/README.md index 6065c85..b25b77b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Musicreater -#### 介绍 +### 介绍 音·创(Musicreater)是由金羿(W-YI)开发的一款《我的世界》基岩版音乐生成辅助软件 欢迎加群:861684859 @@ -8,7 +8,7 @@ ### 软件架构 软件采用Python作为第一语言,目前还没有使用其他语言辅助。现在的图形库是tkinter,后期将使用BeeWare兼容安卓 -现阶段支持Windows7+,Linux(版本嘛,支持Python3就好) +现阶段支持Windows7+,Linux(版本嘛,支持Python3.8就好) ### 安装教程 @@ -19,7 +19,7 @@ 1. 安装Python 3.8.10 [下载64位安装包](https://www.python.org/ftp/python/3.8.10/python-3.8.10-amd64.exe) [下载32位安装包](https://www.python.org/ftp/python/3.8.10/python-3.8.10.exe) -2. 以管理员身份运行 补全库.py +2. 以管理员身份运行 补全库.py : - 按下 Ctrl+Shift+Esc 打开任务管理器 - 点击 "文件" 菜单中的 运行新任务 命令 - 输入 `cmd` 并框选 "以管理员身份运行" 按下 "确定" @@ -47,9 +47,9 @@ python3 Musicreater.py ### 使用说明 -1. 别急,还没写 -2. xxxx -3. xxxx +1. 直接运行就好 +2. 看得懂简体中文字的不一定全会用 +3. 最好要懂一点点英文 ### 致谢 diff --git a/msctspt/__pycache__/bugReporter.cpython-38.pyc b/msctspt/__pycache__/bugReporter.cpython-38.pyc index 3e1d8e0..ba5c44f 100644 Binary files a/msctspt/__pycache__/bugReporter.cpython-38.pyc and b/msctspt/__pycache__/bugReporter.cpython-38.pyc differ diff --git a/msctspt/__pycache__/transfer.cpython-38.pyc b/msctspt/__pycache__/transfer.cpython-38.pyc index 3fdade7..c6bb7b8 100644 Binary files a/msctspt/__pycache__/transfer.cpython-38.pyc and b/msctspt/__pycache__/transfer.cpython-38.pyc differ diff --git a/msctspt/bugReporter.py b/msctspt/bugReporter.py index 8de2c76..7b03460 100644 --- a/msctspt/bugReporter.py +++ b/msctspt/bugReporter.py @@ -101,7 +101,7 @@ class version: libraries = ('mido','amulet','amulet-core','amulet-nbt','piano_transcription_inference','pypinyin','briefcase','toga','pyinstaller','kivy','py7zr') '''当前所需库,有一些是开发用的,用户不需要安装''' - version = ('0.0.4.1','Beta',) + version = ('0.0.4.2','Beta',) '''当前版本''' def __init__(self) -> None: diff --git a/msctspt/transfer.py b/msctspt/transfer.py index 173483d..b162381 100644 --- a/msctspt/transfer.py +++ b/msctspt/transfer.py @@ -137,6 +137,13 @@ def note2webs(Notes : list,Instrument:str, speed:float = 5.0, PlayerSelect:str=' +import amulet +from amulet.api.block import Block +from amulet.utils.world_utils import block_coords_to_chunk_coords as bc2cc +from amulet_nbt import TAG_String as ts +from nmcsup.log import log + + @@ -152,13 +159,10 @@ def note2RSworld(world:str,startpos:list,notes:list,instrument:str,speed:float = baseblock: 在中继器下垫着啥方块呢~ :return 是否生成成功 ''' - import amulet - from amulet.api.block import Block - from amulet.utils.world_utils import block_coords_to_chunk_coords as bc2cc - from amulet_nbt import TAG_String as ts + from msctspt.values import height2note,instuments - from nmcsup.log import log + def formNoteBlock(note:int,instrument:str='note.harp',powered:bool = False): '''生成音符盒方块 @@ -235,26 +239,45 @@ def note2RSworld(world:str,startpos:list,notes:list,instrument:str,speed:float = class ryStruct: - def __init__(self) -> None: + def __init__(self,world:str) -> None: + + self.RyStruct = dict() + self._world = world + self._level = amulet.load_level(world) - def World2Rys(self,world:str,startp:list,endp:list,includeAir:bool=False): - import amulet - import amulet_nbt - from amulet.api.block import Block - from amulet.utils.world_utils import block_coords_to_chunk_coords + def reloadLevel(self): + try: + self._level = amulet.load_level(self.world) + except: + log("无法重载地图") - level = amulet.load_level(world) + def closeLevel(self): + try: + self._level.close() + except: + log("无法关闭地图") + + + def world2Rys(self,startp:list,endp:list,includeAir:bool=False): + '''将世界转换为RyStruct字典,注意,此函数运行成功后将关闭地图,若要打开需要运行 reloadLevel + :param startp: [x,y,z] 转化的起始坐标 + :param endp : [x,y,z] 转换的终止坐标,注意,终止坐标需要大于起始坐标,且最终结果包含终止坐标 + :param includeAir : bool = False 是否包含空气,即空气是否在生成之时覆盖地图内容 + :return dict RyStruct ''' + + + level = self._level - for x in range(startp[0],endp[0]): - for y in range(startp[1],endp[1]): - for z in range(startp[2],endp[2]): + for x in range(startp[0],endp[0]+1): + for y in range(startp[1],endp[1]+1): + for z in range(startp[2],endp[2]+1): RyStructBlock = dict() - cx, cz = block_coords_to_chunk_coords(x, z) + cx, cz = bc2cc(x, z) chunk = level.get_chunk(cx, cz, "minecraft:overworld") universal_block = chunk.block_palette[chunk.blocks[x - 16 * cx, y, z - 16 * cz]] if universal_block == Block("universal_minecraft","air") and includeAir: @@ -264,8 +287,11 @@ class ryStruct: RyStructBlock["block"] = str(universal_block) RyStructBlock["blockEntity"] = str(universal_block_entity) + log("载入方块数据"+str(RyStructBlock)) + self.RyStruct[(x,y,z)] = RyStructBlock + level.close() return self.RyStruct diff --git a/测试用/CanyonTest/db/000079.log b/测试用/CanyonTest/db/000091.log similarity index 100% rename from 测试用/CanyonTest/db/000079.log rename to 测试用/CanyonTest/db/000091.log diff --git a/测试用/CanyonTest/db/CURRENT b/测试用/CanyonTest/db/CURRENT index c7a124b..93582a0 100644 --- a/测试用/CanyonTest/db/CURRENT +++ b/测试用/CanyonTest/db/CURRENT @@ -1 +1 @@ -MANIFEST-000077 +MANIFEST-000089 diff --git a/测试用/CanyonTest/db/MANIFEST-000077 b/测试用/CanyonTest/db/MANIFEST-000077 deleted file mode 100644 index f75fb59..0000000 Binary files a/测试用/CanyonTest/db/MANIFEST-000077 and /dev/null differ diff --git a/测试用/CanyonTest/db/MANIFEST-000089 b/测试用/CanyonTest/db/MANIFEST-000089 new file mode 100644 index 0000000..78842e4 Binary files /dev/null and b/测试用/CanyonTest/db/MANIFEST-000089 differ diff --git a/测试用/义勇军进行曲.msct b/测试用/义勇军进行曲.msct index 39e52f2..d1d15ec 100644 --- a/测试用/义勇军进行曲.msct +++ b/测试用/义勇军进行曲.msct @@ -1 +1 @@ -{"mainset": {"IsRepeat": false, "MusicTitle": "\u56fd\u6b4c", "PackName": null, "PlayerSelect": ""}, "musics": [{"notes": [[1.8, 1.0], [1.8, 1.0], [2.24, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [0.56, 1.0], [2.24, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 1.0], [2.83, 0.125], [1.4, 1.0], [2.83, 1.0], [1.4, 1.0], [3.36, 0.12708333333333333], [1.7, 1.0], [1.12, 1.0], [3.36, 1.0], [1.7, 1.0], [1.12, 1.0], [0.56, 0.26875], [1.12, 1.0], [3.36, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 1.0], [1.7, 1.0], [3.36, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 1.0], [1.7, 1.0], [1.8, 0.2875], [1.8, 1.0], [0.56, 1.0], [1.12, 1.0], [3.78, 1.0], [0.94, 1.0], [1.9, 1.0], [1.12, 1.0], [0.75, 1.0], [3.78, 1.0], [0.94, 1.0], [1.9, 1.0], [1.12, 1.0], [0.75, 1.0], [0.56, 0.37916666666666665], [1.12, 1.0], [3.36, 1.0], [0.84, 1.0], [1.7, 1.0], [0.7, 1.0], [3.36, 1.0], [0.84, 1.0], [1.7, 1.0], [0.7, 1.0], [1.8, 0.35833333333333334], [1.8, 1.0], [0.56, 1.0], [1.12, 1.0], [2.83, 1.0], [1.4, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 1.0], [2.83, 1.0], [1.4, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 1.0], [2.24, 0.12916666666666668], [1.12, 1.0], [2.24, 1.0], [1.12, 1.0], [1.25, 0.10625], [0.84, 1.0], [0.84, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [1.25, 0.1375], [0.84, 1.0], [0.84, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [1.25, 0.20416666666666666], [0.84, 1.0], [0.84, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [1.8, 0.11041666666666666], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.83, 1.0], [0.7, 1.0], [1.4, 1.0], [1.12, 1.0], [2.83, 1.0], [0.7, 1.0], [1.4, 1.0], [1.12, 1.0], [2.24, 0.26458333333333334], [1.12, 1.0], [2.24, 1.0], [1.12, 1.0], [1.7, 0.07708333333333334], [1.7, 1.0], [1.8, 0.15208333333333332], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 0.029166666666666667], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 0.14791666666666667], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [1.25, 0.0020833333333333333], [0.84, 1.0], [0.84, 1.0], [0.84, 1.0], [0.84, 1.0], [0.63, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 0.16458333333333333], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 0.0375], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [1.8, 0.020833333333333332], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 1.0], [1.7, 0.5583333333333333], [1.7, 1.0], [0.84, 1.0], [0.84, 1.0], [1.8, 0.33125], [1.8, 1.0], [1.12, 1.0], [0.7, 1.0], [0.7, 1.0], [2.24, 1.0], [2.24, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [1.12, 0.32916666666666666], [0.7, 1.0], [0.7, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [1.8, 0.39375], [1.8, 1.0], [1.12, 1.0], [0.7, 1.0], [0.7, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [2.24, 0.18541666666666667], [2.24, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [1.25, 0.04583333333333333], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 1.0], [0.63, 1.0], [0.84, 1.0], [1.9, 0.11875], [1.9, 1.0], [0.94, 1.0], [0.94, 1.0], [2.1, 0.0625], [2.1, 1.0], [1.05, 1.0], [1.05, 1.0], [1.8, 0.09166666666666666], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 1.0], [0.7, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 1.0], [0.84, 1.0], [1.12, 0.35], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [0.7, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 1.0], [0.84, 1.0], [1.8, 0.32708333333333334], [1.8, 1.0], [2.83, 0.225], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [2.24, 0.13541666666666666], [2.24, 1.0], [1.12, 1.0], [1.12, 1.0], [2.5, 0.029166666666666667], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [2.83, 0.03958333333333333], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [1.12, 0.03958333333333333], [1.12, 1.0], [1.8, 1.0], [1.8, 1.0], [3.36, 1.0], [3.36, 1.0], [1.12, 1.0], [0.7, 1.0], [1.7, 1.0], [1.12, 1.0], [0.7, 1.0], [1.7, 1.0], [1.12, 0.21666666666666667], [1.12, 1.0], [3.36, 1.0], [3.36, 1.0], [0.84, 1.0], [1.12, 1.0], [1.7, 1.0], [0.7, 1.0], [0.84, 1.0], [1.12, 1.0], [1.7, 1.0], [0.7, 1.0], [1.8, 0.22083333333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [0.84, 1.0], [0.7, 1.0], [1.4, 1.0], [0.84, 1.0], [0.7, 1.0], [2.83, 0.3875], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [2.24, 0.07916666666666666], [2.24, 1.0], [1.12, 1.0], [1.12, 1.0], [2.83, 0.1], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [1.8, 0.27708333333333335], [1.8, 1.0], [3.36, 1.0], [3.36, 1.0], [1.4, 1.0], [1.7, 1.0], [1.4, 1.0], [1.7, 1.0], [1.12, 0.18125], [1.12, 1.0], [2.83, 1.0], [2.83, 1.0], [0.7, 1.0], [1.4, 1.0], [1.12, 1.0], [0.7, 1.0], [1.4, 1.0], [1.12, 1.0], [1.25, 0.0125], [0.84, 1.0], [0.84, 1.0], [2.5, 1.0], [2.5, 1.0], [1.25, 1.0], [0.84, 1.0], [1.25, 1.0], [0.84, 1.0], [0.63, 1.0], [1.8, 0.3854166666666667], [1.8, 1.0], [1.25, 1.0], [0.75, 1.0], [0.94, 1.0], [0.75, 1.0], [2.5, 1.0], [2.5, 1.0], [1.25, 1.0], [0.94, 1.0], [0.63, 1.0], [1.25, 1.0], [0.94, 1.0], [1.8, 0.5583333333333333], [1.8, 1.0], [1.25, 1.0], [0.75, 1.0], [1.05, 1.0], [0.75, 1.0], [3.78, 1.0], [3.78, 1.0], [1.9, 1.0], [1.25, 1.0], [1.5, 1.0], [1.05, 1.0], [1.9, 1.0], [1.25, 1.0], [1.5, 1.0], [0.63, 1.0], [1.05, 1.0], [1.12, 0.06458333333333334], [0.84, 1.0], [0.7, 1.0], [0.7, 1.0], [3.36, 1.0], [3.36, 1.0], [1.12, 1.0], [1.7, 1.0], [0.84, 1.0], [1.12, 1.0], [1.7, 1.0], [0.84, 1.0], [1.8, 0.275], [1.8, 1.0], [1.25, 1.0], [0.84, 1.0], [0.84, 1.0], [2.5, 1.0], [2.5, 1.0], [1.25, 1.0], [0.84, 1.0], [1.05, 1.0], [1.25, 1.0], [0.84, 1.0], [0.63, 1.0], [1.05, 1.0], [1.12, 0.125], [1.12, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.12, 1.0], [0.7, 1.0], [0.84, 1.0], [1.4, 1.0], [1.12, 1.0], [0.7, 1.0], [0.84, 1.0], [1.8, 0.058333333333333334], [1.8, 1.0], [0.56, 1.0], [0.84, 1.0], [0.56, 1.0], [3.36, 1.0], [3.36, 1.0], [1.7, 1.0], [1.7, 1.0], [2.83, 0.15], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [3.36, 0.39375], [3.36, 1.0], [1.7, 1.0], [1.7, 1.0], [1.8, 0.22708333333333333], [1.8, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [2.5, 0.20833333333333334], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [2.83, 0.15208333333333332], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [2.24, 0.075], [2.24, 1.0], [1.12, 1.0], [1.12, 1.0], [1.8, 0.4083333333333333], [1.8, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [1.12, 0.6229166666666667], [1.12, 1.0], [1.8, 1.0], [1.8, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 1.0], [0.84, 1.0], [1.9, 0.03333333333333333], [1.9, 1.0], [0.94, 1.0], [0.94, 1.0], [2.24, 0.2875], [2.24, 1.0], [1.12, 1.0], [1.12, 1.0], [1.05, 0.2625], [1.05, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 1.0], [1.12, 1.0], [1.8, 0.14791666666666667], [1.8, 1.0], [0.94, 1.0], [0.94, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [2.83, 0.4375], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [0.84, 0.06666666666666667], [0.84, 1.0], [3.36, 1.0], [3.36, 1.0], [1.7, 1.0], [1.7, 1.0], [3.36, 0.2708333333333333], [3.36, 1.0], [1.7, 1.0], [1.7, 1.0], [1.8, 0.08333333333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.5, 1.0], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [2.5, 0.20625], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [2.5, 0.1875], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [1.9, 0.14375], [1.9, 1.0], [0.94, 1.0], [0.94, 1.0], [1.8, 0.10625], [1.8, 1.0], [2.5, 1.0], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [1.05, 0.041666666666666664], [1.05, 1.0], [1.7, 0.4125], [1.7, 1.0], [0.84, 1.0], [0.84, 1.0], [1.8, 0.06041666666666667], [1.8, 1.0], [1.12, 1.0], [0.7, 1.0], [0.7, 1.0], [2.24, 1.0], [2.24, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 0.4083333333333333], [1.12, 1.0], [0.7, 1.0], [2.24, 1.0], [2.24, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [1.8, 0.2625], [1.8, 1.0], [1.12, 1.0], [0.56, 1.0], [0.84, 1.0], [0.56, 1.0], [2.83, 1.0], [2.83, 1.0], [0.84, 1.0], [1.12, 1.0], [1.4, 1.0], [0.84, 1.0], [1.12, 1.0], [1.4, 1.0], [1.12, 0.32083333333333336], [0.56, 1.0], [0.84, 1.0], [0.56, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.12, 1.0], [0.84, 1.0], [1.4, 1.0], [1.12, 1.0], [0.84, 1.0], [1.8, 0.25], [1.8, 1.0], [1.25, 1.0], [0.84, 1.0], [0.84, 1.0], [3.36, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [0.63, 1.0], [1.05, 1.0], [1.8, 0.21041666666666667], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [2.83, 0.27291666666666664], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [3.36, 0.06666666666666667], [3.36, 1.0], [1.7, 1.0], [1.7, 1.0], [1.12, 0.3416666666666667], [1.12, 1.0], [3.36, 1.0], [3.36, 1.0], [1.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.8, 0.2833333333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [3.78, 1.0], [3.78, 1.0], [1.9, 1.0], [0.94, 1.0], [0.75, 1.0], [1.9, 1.0], [0.94, 1.0], [0.75, 1.0], [1.12, 0.16875], [1.12, 1.0], [3.36, 1.0], [3.36, 1.0], [0.84, 1.0], [1.7, 1.0], [0.7, 1.0], [0.84, 1.0], [1.7, 1.0], [0.7, 1.0], [1.8, 0.3229166666666667], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [0.84, 1.0], [0.7, 1.0], [1.4, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 0.00625], [1.12, 1.0], [2.24, 0.13125], [2.24, 1.0], [1.25, 0.09583333333333334], [0.84, 1.0], [0.84, 1.0], [1.05, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [0.63, 1.0], [3.36, 1.0], [3.36, 1.0], [1.25, 0.15625], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [3.36, 1.0], [3.36, 1.0], [1.25, 0.25416666666666665], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [3.36, 1.0], [3.36, 1.0], [1.8, 0.03958333333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [0.7, 1.0], [1.12, 1.0], [1.4, 1.0], [0.7, 1.0], [1.12, 1.0], [1.4, 1.0], [2.83, 1.0], [2.83, 1.0], [1.12, 0.3], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.8, 0.4895833333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.7, 1.0], [1.7, 1.0], [1.12, 0.2916666666666667], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 0.1125], [1.12, 1.0], [1.8, 0.25], [1.8, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [1.12, 0.020833333333333332], [1.12, 1.0], [2.24, 0.022916666666666665], [2.24, 1.0], [1.25, 0.05416666666666667], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [0.63, 1.0], [1.05, 1.0], [3.36, 1.0], [3.36, 1.0], [1.25, 0.14375], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [3.36, 1.0], [3.36, 1.0], [1.25, 0.20625], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [3.36, 1.0], [3.36, 1.0], [1.8, 0.08958333333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [0.7, 1.0], [1.12, 1.0], [1.4, 1.0], [0.7, 1.0], [1.12, 1.0], [1.4, 1.0], [2.83, 1.0], [2.83, 1.0], [1.12, 0.42083333333333334], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.8, 0.4479166666666667], [1.8, 1.0], [1.12, 1.0], [0.84, 1.0], [0.56, 1.0], [0.56, 1.0], [0.7, 1.0], [0.84, 1.0], [0.7, 1.0], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [1.12, 0.4270833333333333], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.8, 0.49166666666666664], [1.8, 1.0], [1.12, 1.0], [0.84, 1.0], [0.56, 1.0], [0.56, 1.0], [0.84, 1.0], [0.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.7, 1.0], [1.7, 1.0], [1.12, 0.45], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.8, 0.48541666666666666], [1.8, 1.0], [1.12, 1.0], [0.84, 1.0], [0.56, 1.0], [0.56, 1.0], [0.84, 1.0], [0.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.7, 1.0], [1.7, 1.0], [1.12, 0.4625], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [0.56, 0.5833333333333334], [0.56, 1.0], [0.7, 1.0], [0.42, 1.0], [1.12, 1.0], [0.28, 1.0], [0.7, 1.0], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.8, 0.05625], [1.8, 1.0]], "set": {"EntityName": "MusicSupport", "FileName": "\u7b2c\u4e00\u97f3\u8f68", "Instrument": "note.snare", "ScoreboardName": "MusicSupport"}}]} \ No newline at end of file +{"mainset": {"IsRepeat": false, "MusicTitle": "\u56fd\u6b4c", "PackName": "\u4e49\u52c7\u519b\u8fdb\u884c\u66f2", "PlayerSelect": ""}, "musics": [{"notes": [[1.8, 1.0], [1.8, 1.0], [2.24, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [0.56, 1.0], [2.24, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 1.0], [2.83, 0.125], [1.4, 1.0], [2.83, 1.0], [1.4, 1.0], [3.36, 0.12708333333333333], [1.7, 1.0], [1.12, 1.0], [3.36, 1.0], [1.7, 1.0], [1.12, 1.0], [0.56, 0.26875], [1.12, 1.0], [3.36, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 1.0], [1.7, 1.0], [3.36, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 1.0], [1.7, 1.0], [1.8, 0.2875], [1.8, 1.0], [0.56, 1.0], [1.12, 1.0], [3.78, 1.0], [0.94, 1.0], [1.9, 1.0], [1.12, 1.0], [0.75, 1.0], [3.78, 1.0], [0.94, 1.0], [1.9, 1.0], [1.12, 1.0], [0.75, 1.0], [0.56, 0.37916666666666665], [1.12, 1.0], [3.36, 1.0], [0.84, 1.0], [1.7, 1.0], [0.7, 1.0], [3.36, 1.0], [0.84, 1.0], [1.7, 1.0], [0.7, 1.0], [1.8, 0.35833333333333334], [1.8, 1.0], [0.56, 1.0], [1.12, 1.0], [2.83, 1.0], [1.4, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 1.0], [2.83, 1.0], [1.4, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 1.0], [2.24, 0.12916666666666668], [1.12, 1.0], [2.24, 1.0], [1.12, 1.0], [1.25, 0.10625], [0.84, 1.0], [0.84, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [1.25, 0.1375], [0.84, 1.0], [0.84, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [1.25, 0.20416666666666666], [0.84, 1.0], [0.84, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [1.8, 0.11041666666666666], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.83, 1.0], [0.7, 1.0], [1.4, 1.0], [1.12, 1.0], [2.83, 1.0], [0.7, 1.0], [1.4, 1.0], [1.12, 1.0], [2.24, 0.26458333333333334], [1.12, 1.0], [2.24, 1.0], [1.12, 1.0], [1.7, 0.07708333333333334], [1.7, 1.0], [1.8, 0.15208333333333332], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 0.029166666666666667], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 0.14791666666666667], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [1.25, 0.0020833333333333333], [0.84, 1.0], [0.84, 1.0], [0.84, 1.0], [0.84, 1.0], [0.63, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 0.16458333333333333], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 0.0375], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [1.8, 0.020833333333333332], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 1.0], [1.7, 0.5583333333333333], [1.7, 1.0], [0.84, 1.0], [0.84, 1.0], [1.8, 0.33125], [1.8, 1.0], [1.12, 1.0], [0.7, 1.0], [0.7, 1.0], [2.24, 1.0], [2.24, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [1.12, 0.32916666666666666], [0.7, 1.0], [0.7, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [1.8, 0.39375], [1.8, 1.0], [1.12, 1.0], [0.7, 1.0], [0.7, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [2.24, 0.18541666666666667], [2.24, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [1.25, 0.04583333333333333], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 1.0], [0.63, 1.0], [0.84, 1.0], [1.9, 0.11875], [1.9, 1.0], [0.94, 1.0], [0.94, 1.0], [2.1, 0.0625], [2.1, 1.0], [1.05, 1.0], [1.05, 1.0], [1.8, 0.09166666666666666], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 1.0], [0.7, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 1.0], [0.84, 1.0], [1.12, 0.35], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [0.7, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 1.0], [0.84, 1.0], [1.8, 0.32708333333333334], [1.8, 1.0], [2.83, 0.225], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [2.24, 0.13541666666666666], [2.24, 1.0], [1.12, 1.0], [1.12, 1.0], [2.5, 0.029166666666666667], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [2.83, 0.03958333333333333], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [1.12, 0.03958333333333333], [1.12, 1.0], [1.8, 1.0], [1.8, 1.0], [3.36, 1.0], [3.36, 1.0], [1.12, 1.0], [0.7, 1.0], [1.7, 1.0], [1.12, 1.0], [0.7, 1.0], [1.7, 1.0], [1.12, 0.21666666666666667], [1.12, 1.0], [3.36, 1.0], [3.36, 1.0], [0.84, 1.0], [1.12, 1.0], [1.7, 1.0], [0.7, 1.0], [0.84, 1.0], [1.12, 1.0], [1.7, 1.0], [0.7, 1.0], [1.8, 0.22083333333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [0.84, 1.0], [0.7, 1.0], [1.4, 1.0], [0.84, 1.0], [0.7, 1.0], [2.83, 0.3875], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [2.24, 0.07916666666666666], [2.24, 1.0], [1.12, 1.0], [1.12, 1.0], [2.83, 0.1], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [1.8, 0.27708333333333335], [1.8, 1.0], [3.36, 1.0], [3.36, 1.0], [1.4, 1.0], [1.7, 1.0], [1.4, 1.0], [1.7, 1.0], [1.12, 0.18125], [1.12, 1.0], [2.83, 1.0], [2.83, 1.0], [0.7, 1.0], [1.4, 1.0], [1.12, 1.0], [0.7, 1.0], [1.4, 1.0], [1.12, 1.0], [1.25, 0.0125], [0.84, 1.0], [0.84, 1.0], [2.5, 1.0], [2.5, 1.0], [1.25, 1.0], [0.84, 1.0], [1.25, 1.0], [0.84, 1.0], [0.63, 1.0], [1.8, 0.3854166666666667], [1.8, 1.0], [1.25, 1.0], [0.75, 1.0], [0.94, 1.0], [0.75, 1.0], [2.5, 1.0], [2.5, 1.0], [1.25, 1.0], [0.94, 1.0], [0.63, 1.0], [1.25, 1.0], [0.94, 1.0], [1.8, 0.5583333333333333], [1.8, 1.0], [1.25, 1.0], [0.75, 1.0], [1.05, 1.0], [0.75, 1.0], [3.78, 1.0], [3.78, 1.0], [1.9, 1.0], [1.25, 1.0], [1.5, 1.0], [1.05, 1.0], [1.9, 1.0], [1.25, 1.0], [1.5, 1.0], [0.63, 1.0], [1.05, 1.0], [1.12, 0.06458333333333334], [0.84, 1.0], [0.7, 1.0], [0.7, 1.0], [3.36, 1.0], [3.36, 1.0], [1.12, 1.0], [1.7, 1.0], [0.84, 1.0], [1.12, 1.0], [1.7, 1.0], [0.84, 1.0], [1.8, 0.275], [1.8, 1.0], [1.25, 1.0], [0.84, 1.0], [0.84, 1.0], [2.5, 1.0], [2.5, 1.0], [1.25, 1.0], [0.84, 1.0], [1.05, 1.0], [1.25, 1.0], [0.84, 1.0], [0.63, 1.0], [1.05, 1.0], [1.12, 0.125], [1.12, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.12, 1.0], [0.7, 1.0], [0.84, 1.0], [1.4, 1.0], [1.12, 1.0], [0.7, 1.0], [0.84, 1.0], [1.8, 0.058333333333333334], [1.8, 1.0], [0.56, 1.0], [0.84, 1.0], [0.56, 1.0], [3.36, 1.0], [3.36, 1.0], [1.7, 1.0], [1.7, 1.0], [2.83, 0.15], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [3.36, 0.39375], [3.36, 1.0], [1.7, 1.0], [1.7, 1.0], [1.8, 0.22708333333333333], [1.8, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [2.5, 0.20833333333333334], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [2.83, 0.15208333333333332], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [2.24, 0.075], [2.24, 1.0], [1.12, 1.0], [1.12, 1.0], [1.8, 0.4083333333333333], [1.8, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [1.12, 0.6229166666666667], [1.12, 1.0], [1.8, 1.0], [1.8, 1.0], [1.7, 1.0], [1.7, 1.0], [0.84, 1.0], [0.84, 1.0], [1.9, 0.03333333333333333], [1.9, 1.0], [0.94, 1.0], [0.94, 1.0], [2.24, 0.2875], [2.24, 1.0], [1.12, 1.0], [1.12, 1.0], [1.05, 0.2625], [1.05, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 1.0], [1.12, 1.0], [1.8, 0.14791666666666667], [1.8, 1.0], [0.94, 1.0], [0.94, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [2.83, 0.4375], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [0.84, 0.06666666666666667], [0.84, 1.0], [3.36, 1.0], [3.36, 1.0], [1.7, 1.0], [1.7, 1.0], [3.36, 0.2708333333333333], [3.36, 1.0], [1.7, 1.0], [1.7, 1.0], [1.8, 0.08333333333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.5, 1.0], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [2.5, 0.20625], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [2.5, 0.1875], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [1.9, 0.14375], [1.9, 1.0], [0.94, 1.0], [0.94, 1.0], [1.8, 0.10625], [1.8, 1.0], [2.5, 1.0], [2.5, 1.0], [1.25, 1.0], [1.25, 1.0], [1.05, 0.041666666666666664], [1.05, 1.0], [1.7, 0.4125], [1.7, 1.0], [0.84, 1.0], [0.84, 1.0], [1.8, 0.06041666666666667], [1.8, 1.0], [1.12, 1.0], [0.7, 1.0], [0.7, 1.0], [2.24, 1.0], [2.24, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [0.7, 0.4083333333333333], [1.12, 1.0], [0.7, 1.0], [2.24, 1.0], [2.24, 1.0], [0.84, 1.0], [1.12, 1.0], [0.84, 1.0], [1.12, 1.0], [1.8, 0.2625], [1.8, 1.0], [1.12, 1.0], [0.56, 1.0], [0.84, 1.0], [0.56, 1.0], [2.83, 1.0], [2.83, 1.0], [0.84, 1.0], [1.12, 1.0], [1.4, 1.0], [0.84, 1.0], [1.12, 1.0], [1.4, 1.0], [1.12, 0.32083333333333336], [0.56, 1.0], [0.84, 1.0], [0.56, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.12, 1.0], [0.84, 1.0], [1.4, 1.0], [1.12, 1.0], [0.84, 1.0], [1.8, 0.25], [1.8, 1.0], [1.25, 1.0], [0.84, 1.0], [0.84, 1.0], [3.36, 1.0], [3.36, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [0.63, 1.0], [1.05, 1.0], [1.8, 0.21041666666666667], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [2.83, 0.27291666666666664], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [3.36, 0.06666666666666667], [3.36, 1.0], [1.7, 1.0], [1.7, 1.0], [1.12, 0.3416666666666667], [1.12, 1.0], [3.36, 1.0], [3.36, 1.0], [1.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.8, 0.2833333333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [3.78, 1.0], [3.78, 1.0], [1.9, 1.0], [0.94, 1.0], [0.75, 1.0], [1.9, 1.0], [0.94, 1.0], [0.75, 1.0], [1.12, 0.16875], [1.12, 1.0], [3.36, 1.0], [3.36, 1.0], [0.84, 1.0], [1.7, 1.0], [0.7, 1.0], [0.84, 1.0], [1.7, 1.0], [0.7, 1.0], [1.8, 0.3229166666666667], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [0.84, 1.0], [0.7, 1.0], [1.4, 1.0], [0.84, 1.0], [0.7, 1.0], [1.12, 0.00625], [1.12, 1.0], [2.24, 0.13125], [2.24, 1.0], [1.25, 0.09583333333333334], [0.84, 1.0], [0.84, 1.0], [1.05, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [0.63, 1.0], [3.36, 1.0], [3.36, 1.0], [1.25, 0.15625], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [3.36, 1.0], [3.36, 1.0], [1.25, 0.25416666666666665], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [3.36, 1.0], [3.36, 1.0], [1.8, 0.03958333333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [0.7, 1.0], [1.12, 1.0], [1.4, 1.0], [0.7, 1.0], [1.12, 1.0], [1.4, 1.0], [2.83, 1.0], [2.83, 1.0], [1.12, 0.3], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.8, 0.4895833333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [0.84, 1.0], [0.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.7, 1.0], [1.7, 1.0], [1.12, 0.2916666666666667], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.12, 0.1125], [1.12, 1.0], [1.8, 0.25], [1.8, 1.0], [2.83, 1.0], [2.83, 1.0], [1.4, 1.0], [1.4, 1.0], [1.12, 0.020833333333333332], [1.12, 1.0], [2.24, 0.022916666666666665], [2.24, 1.0], [1.25, 0.05416666666666667], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [0.63, 1.0], [1.05, 1.0], [3.36, 1.0], [3.36, 1.0], [1.25, 0.14375], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [3.36, 1.0], [3.36, 1.0], [1.25, 0.20625], [0.84, 1.0], [0.84, 1.0], [1.7, 1.0], [1.05, 1.0], [1.7, 1.0], [1.05, 1.0], [0.63, 1.0], [3.36, 1.0], [3.36, 1.0], [1.8, 0.08958333333333333], [1.8, 1.0], [1.12, 1.0], [1.12, 1.0], [0.7, 1.0], [1.12, 1.0], [1.4, 1.0], [0.7, 1.0], [1.12, 1.0], [1.4, 1.0], [2.83, 1.0], [2.83, 1.0], [1.12, 0.42083333333333334], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.8, 0.4479166666666667], [1.8, 1.0], [1.12, 1.0], [0.84, 1.0], [0.56, 1.0], [0.56, 1.0], [0.7, 1.0], [0.84, 1.0], [0.7, 1.0], [0.84, 1.0], [1.7, 1.0], [1.7, 1.0], [1.12, 0.4270833333333333], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.8, 0.49166666666666664], [1.8, 1.0], [1.12, 1.0], [0.84, 1.0], [0.56, 1.0], [0.56, 1.0], [0.84, 1.0], [0.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.7, 1.0], [1.7, 1.0], [1.12, 0.45], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.8, 0.48541666666666666], [1.8, 1.0], [1.12, 1.0], [0.84, 1.0], [0.56, 1.0], [0.56, 1.0], [0.84, 1.0], [0.7, 1.0], [0.84, 1.0], [0.7, 1.0], [1.7, 1.0], [1.7, 1.0], [1.12, 0.4625], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [0.56, 0.5833333333333334], [0.56, 1.0], [0.7, 1.0], [0.42, 1.0], [1.12, 1.0], [0.28, 1.0], [0.7, 1.0], [1.12, 1.0], [2.24, 1.0], [2.24, 1.0], [1.8, 0.05625], [1.8, 1.0]], "set": {"EntityName": "MusicSupport", "FileName": "\u7b2c\u4e00\u97f3\u8f68", "Instrument": "note.snare", "ScoreboardName": "MusicSupport"}}]} \ No newline at end of file