diff --git a/Brisonus_Params_2.0.4.exe.spec b/Brisonus_Params_2.0.5.spec similarity index 90% rename from Brisonus_Params_2.0.4.exe.spec rename to Brisonus_Params_2.0.5.spec index 8726067..ea70e11 100644 --- a/Brisonus_Params_2.0.4.exe.spec +++ b/Brisonus_Params_2.0.5.spec @@ -12,6 +12,7 @@ a = Analysis( runtime_hooks=[], excludes=[], noarchive=False, + optimize=0, ) pyz = PYZ(a.pure) @@ -21,14 +22,14 @@ exe = EXE( a.binaries, a.datas, [], - name='Brisonus_Params_2.0.4.exe', + name='Brisonus_Params_2.0.5', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, upx_exclude=[], runtime_tmpdir=None, - console=False, + console=True, disable_windowed_traceback=False, argv_emulation=False, target_arch=None, diff --git a/HuaYan_Params_2.0.3.exe.spec b/HuaYan_Params_2.0.3.exe.spec deleted file mode 100644 index 5369358..0000000 --- a/HuaYan_Params_2.0.3.exe.spec +++ /dev/null @@ -1,37 +0,0 @@ -# -*- mode: python ; coding: utf-8 -*- - - -a = Analysis( - ['main.py'], - pathex=['.\\venv\\Lib\\site-packages\\'], - binaries=[], - datas=[], - hiddenimports=[], - hookspath=[], - hooksconfig={}, - runtime_hooks=[], - excludes=[], - noarchive=False, -) -pyz = PYZ(a.pure) - -exe = EXE( - pyz, - a.scripts, - a.binaries, - a.datas, - [], - name='HuaYan_Params_2.0.3.exe', - debug=False, - bootloader_ignore_signals=False, - strip=False, - upx=True, - upx_exclude=[], - runtime_tmpdir=None, - console=False, - disable_windowed_traceback=False, - argv_emulation=False, - target_arch=None, - codesign_identity=None, - entitlements_file=None, -) diff --git a/HuaYan_Params_2.0.4.exe.spec b/HuaYan_Params_2.0.4.exe.spec deleted file mode 100644 index 6126e50..0000000 --- a/HuaYan_Params_2.0.4.exe.spec +++ /dev/null @@ -1,37 +0,0 @@ -# -*- mode: python ; coding: utf-8 -*- - - -a = Analysis( - ['main.py'], - pathex=['.\\venv\\Lib\\site-packages\\'], - binaries=[], - datas=[], - hiddenimports=[], - hookspath=[], - hooksconfig={}, - runtime_hooks=[], - excludes=[], - noarchive=False, -) -pyz = PYZ(a.pure) - -exe = EXE( - pyz, - a.scripts, - a.binaries, - a.datas, - [], - name='HuaYan_Params_2.0.4.exe', - debug=False, - bootloader_ignore_signals=False, - strip=False, - upx=True, - upx_exclude=[], - runtime_tmpdir=None, - console=False, - disable_windowed_traceback=False, - argv_emulation=False, - target_arch=None, - codesign_identity=None, - entitlements_file=None, -) diff --git a/HuaYan_Params_2.0.exe.spec b/HuaYan_Params_2.0.exe.spec deleted file mode 100644 index 939a531..0000000 --- a/HuaYan_Params_2.0.exe.spec +++ /dev/null @@ -1,37 +0,0 @@ -# -*- mode: python ; coding: utf-8 -*- - - -a = Analysis( - ['main.py'], - pathex=['.\\venv\\Lib\\site-packages\\'], - binaries=[], - datas=[], - hiddenimports=[], - hookspath=[], - hooksconfig={}, - runtime_hooks=[], - excludes=[], - noarchive=False, -) -pyz = PYZ(a.pure) - -exe = EXE( - pyz, - a.scripts, - a.binaries, - a.datas, - [], - name='HuaYan_Params_2.0.exe', - debug=False, - bootloader_ignore_signals=False, - strip=False, - upx=True, - upx_exclude=[], - runtime_tmpdir=None, - console=False, - disable_windowed_traceback=False, - argv_emulation=False, - target_arch=None, - codesign_identity=None, - entitlements_file=None, -) diff --git a/br_com_manager.py b/br_com_manager.py deleted file mode 100644 index 139597f..0000000 --- a/br_com_manager.py +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/br_widget_arr_details.py b/br_widget_arr_details.py index 7a2151c..e41cb60 100644 --- a/br_widget_arr_details.py +++ b/br_widget_arr_details.py @@ -7,21 +7,34 @@ from br_widget_basic_plot import BrWidgetBasicPlot class BrWidgetArrDetails(QWidget, Ui_Widget): signal_read: SignalInstance = Signal(list) + signal_write: SignalInstance = Signal(list) def __init__(self, parent=None): super().__init__(parent) self.setupUi(self) self.param_data: ParamDataArr = None - # self.tableWidget_val.setRowCount(10) + + self.updating = False self.tableWidget_val.setColumnCount(2) self.tableWidget_val.setHorizontalHeaderLabels(['Addr', 'Value']) - # self.tableWidget_setval.setRowCount(10) self.tableWidget_setval.setColumnCount(2) self.tableWidget_setval.setHorizontalHeaderLabels(['Addr', 'Value']) + self.tableWidget_setval.itemChanged.connect(self.on_table_setval_itemChanged) + + + def on_table_setval_itemChanged(self, item: QTableWidgetItem): + if self.updating: + return + # 获取编辑的行index,获取输入的值 + row_index = item.row() + input_val = item.text() + self.param_data.setval_list[row_index] = float(input_val) + print('item changed', row_index, input_val) + + def update_param_info(self, p_data: ParamDataArr): self.param_data = p_data - print(self.param_data.getval_list) self.label_addr.setText(str(p_data.addr)) self.label_name.setText(str(p_data.name)) self.label_length.setText(str(p_data.size)) @@ -29,6 +42,7 @@ class BrWidgetArrDetails(QWidget, Ui_Widget): self.update_table() def update_table(self): + self.updating = True self.tableWidget_val.setRowCount(self.param_data.size) for row in range(0, self.param_data.size): self.tableWidget_val.setItem( @@ -41,7 +55,22 @@ class BrWidgetArrDetails(QWidget, Ui_Widget): str(self.param_data.getval_list[row])) ) - + self.tableWidget_setval.setRowCount(self.param_data.size) + # 增加table写功能 + for row in range(0, self.param_data.size): + self.tableWidget_setval.setItem( + row, 0, QTableWidgetItem( + str(self.param_data.addr + row) + ) + ) + self.tableWidget_setval.setItem( + row, 1, QTableWidgetItem( + str(self.param_data.getval_list[row])) + ) + + # 把设定值设置为获取到的值 + self.param_data.setval_list = self.param_data.getval_list + self.updating = False def update_val_list(self): @@ -52,10 +81,6 @@ class BrWidgetArrDetails(QWidget, Ui_Widget): for i in range(0, len(self.param_data.setval_list)): self.tableWidget_setval.setItem(0, i, QTableWidgetItem(str(self.param_data.setval_list[i]))) - @Slot() - def on_pushButton_write_clicked(self): - print('[write] button clicked!') - @Slot() def on_pushButton_read_clicked(self): print('[read] button clicked!') @@ -70,6 +95,21 @@ class BrWidgetArrDetails(QWidget, Ui_Widget): ) self.signal_read.emit(_cmd_list) + @Slot() + def on_pushButton_write_clicked(self): + print('[write] button clicked!') + + _cmd_list = [] + for i in range(0, self.param_data.size): + _cmd_list.append( + BrComMessage( + BrComMessage.OP_WRITE, + self.param_data.addr + i, + self.param_data.getval_list[i] + ) + ) + self.signal_write.emit(_cmd_list) + @Slot() def on_pushButton_valplot_clicked(self): print('[valpolt] button clicked!') diff --git a/main.py b/main.py index 23aa76e..a803e44 100644 --- a/main.py +++ b/main.py @@ -83,6 +83,7 @@ class MainWindow(QMainWindow, Ui_MainWindow): # 定义widget_page_arr的slot self.widget_page_arr.signal_read.connect(self.on_arr_read) + self.widget_page_arr.signal_write.connect(self.on_arr_write) # var arr 两个页面都处于隐藏状态 self.widget_page_arr.hide() @@ -119,6 +120,17 @@ class MainWindow(QMainWindow, Ui_MainWindow): for _cmd_item in p_cmd_list: self.cmd_server.cmd_queue.put(_cmd_item) print('arr widget signal/callback on_read has been called!') + + def on_arr_write(self, p_cmd_list): + print('--------------------1') + if not self.com.isOpen(): + # 弹出对话框提示用户serial port未处于open状态 + self.show_msgbox('系统提示', '未打开端口!') + return + for _cmd_item in p_cmd_list: + self.cmd_server.cmd_queue.put(_cmd_item) + print('arr widget signal/callback on_read has been called!') + def init_comports(self): self.lineEdit_baudrate.setText(str(default_config['baud_rate'])) self.lineEdit_pollingInterval.setText(str(default_config['polling_interval'])) @@ -136,6 +148,8 @@ class MainWindow(QMainWindow, Ui_MainWindow): # 设置不能编辑 self.tableView.setEditTriggers(QAbstractItemView.EditTrigger.NoEditTriggers) + + self.tableView.clicked.connect(self.on_tableview_clicked) def tableview_load_data(self, filepath): @@ -172,6 +186,8 @@ class MainWindow(QMainWindow, Ui_MainWindow): if _param.type == ParamData.VAR_TYPE_ARR: _param.item = QStandardItem(str('/')) self.model.setItem(i, 2, _param.item) + # 设置列宽 + self.tableView.resizeColumnsToContents() def switch_page(self, page_name): if page_name == 'var': diff --git a/main.spec b/main.spec deleted file mode 100644 index 2e9c4dd..0000000 --- a/main.spec +++ /dev/null @@ -1,37 +0,0 @@ -# -*- mode: python ; coding: utf-8 -*- - - -a = Analysis( - ['main.py'], - pathex=['.\\venv\\Lib\\site-packages\\'], - binaries=[], - datas=[], - hiddenimports=[], - hookspath=[], - hooksconfig={}, - runtime_hooks=[], - excludes=[], - noarchive=False, -) -pyz = PYZ(a.pure) - -exe = EXE( - pyz, - a.scripts, - a.binaries, - a.datas, - [], - name='main', - debug=False, - bootloader_ignore_signals=False, - strip=False, - upx=True, - upx_exclude=[], - runtime_tmpdir=None, - console=False, - disable_windowed_traceback=False, - argv_emulation=False, - target_arch=None, - codesign_identity=None, - entitlements_file=None, -) diff --git a/rnc_tunning.py b/rnc_tunning.py index cff7c81..9d6b69e 100644 --- a/rnc_tunning.py +++ b/rnc_tunning.py @@ -19,7 +19,7 @@ class Ui_MainWindow(object): def setupUi(self, MainWindow): if not MainWindow.objectName(): MainWindow.setObjectName(u"MainWindow") - MainWindow.resize(743, 524) + MainWindow.resize(600, 800) self.centralwidget = QWidget(MainWindow) self.centralwidget.setObjectName(u"centralwidget") self.gridLayout = QGridLayout(self.centralwidget) @@ -147,12 +147,12 @@ class Ui_MainWindow(object): self.verticalLayout_2.addWidget(self.textEdit) - self.verticalLayout_2.setStretch(1, 4) - self.verticalLayout_2.setStretch(2, 1) + self.verticalLayout_2.setStretch(0, 3) + self.verticalLayout_2.setStretch(1, 1) self.horizontalLayout.addLayout(self.verticalLayout_2) - self.horizontalLayout.setStretch(0, 1) + self.horizontalLayout.setStretch(0, 2) self.horizontalLayout.setStretch(1, 3) self.verticalLayout_3.addLayout(self.horizontalLayout) diff --git a/test.brdata b/test.brdata deleted file mode 100644 index febf2ad..0000000 --- a/test.brdata +++ /dev/null @@ -1 +0,0 @@ -[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] \ No newline at end of file diff --git a/test.data b/test.data deleted file mode 100644 index febf2ad..0000000 --- a/test.data +++ /dev/null @@ -1 +0,0 @@ -[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] \ No newline at end of file diff --git a/test2.brdata b/test2.brdata deleted file mode 100644 index 1828321..0000000 --- a/test2.brdata +++ /dev/null @@ -1 +0,0 @@ -[370.0, 649.0, 485.0, 259.0, 952.0, 400.0, 726.0, 403.0, 136.0, 198.0, 823.0, 47.0, 232.0, 199.0, 448.0, 308.0, 213.0, 378.0, 520.0, 333.0, 139.0, 322.0, 870.0, 312.0, 689.0, 878.0, 783.0, 309.0, 431.0, 639.0, 585.0, 958.0, 496.0, 938.0, 665.0, 620.0, 607.0, 20.0, 198.0, 185.0, 903.0, 736.0, 253.0, 742.0, 97.0, 845.0, 5.0, 853.0, 601.0, 39.0, 344.0, 38.0, 431.0, 245.0, 832.0, 998.0, 446.0, 6.0, 281.0, 415.0, 593.0, 317.0, 65.0, 680.0, 819.0, 461.0, 585.0, 794.0, 595.0, 534.0, 285.0, 968.0, 235.0, 514.0, 86.0, 43.0, 161.0, 539.0, 566.0, 120.0, 328.0, 318.0, 22.0, 220.0, 711.0, 748.0, 131.0, 479.0, 854.0, 116.0, 832.0, 582.0, 226.0, 567.0, 144.0, 510.0, 194.0, 400.0, 601.0, 770.0, 114.0, 709.0, 868.0, 984.0, 427.0, 269.0, 869.0, 112.0, 11.0, 360.0, 784.0, 712.0, 238.0, 487.0, 136.0, 498.0, 371.0, 590.0, 96.0, 117.0, 965.0, 680.0, 575.0, 337.0, 477.0, 200.0, 730.0, 769.0, 190.0, 655.0, 947.0, 360.0, 192.0, 747.0, 946.0, 114.0, 770.0, 232.0, 663.0, 80.0, 871.0, 324.0, 5.0, 178.0, 838.0, 448.0, 90.0, 648.0, 3.0, 125.0, 915.0, 834.0, 248.0, 182.0, 990.0, 805.0, 45.0, 173.0, 700.0, 955.0, 48.0, 75.0, 775.0, 597.0, 937.0, 858.0, 824.0, 698.0, 348.0, 405.0, 947.0, 477.0, 834.0, 460.0, 86.0, 780.0, 574.0, 283.0, 708.0, 993.0, 827.0, 133.0, 12.0, 541.0, 546.0, 85.0, 378.0, 731.0, 94.0, 671.0, 36.0, 437.0, 685.0, 698.0, 98.0, 912.0, 848.0, 121.0, 970.0, 632.0, 681.0, 650.0, 336.0, 4.0, 789.0, 212.0, 766.0, 707.0, 117.0, 548.0, 150.0, 174.0, 820.0, 46.0, 839.0, 434.0, 45.0, 489.0, 454.0, 648.0, 56.0, 534.0, 705.0, 543.0, 831.0, 875.0, 262.0, 337.0, 284.0, 828.0, 743.0, 730.0, 445.0, 119.0, 406.0, 112.0, 82.0, 368.0, 560.0, 888.0, 700.0, 295.0, 841.0, 191.0, 201.0, 148.0, 584.0, 165.0, 259.0, 360.0, 198.0, 373.0, 789.0, 364.0, 174.0, 50.0, 885.0, 533.0, 10.0, 323.0, 891.0, 927.0, 640.0, 193.0, 192.0, 53.0, 939.0, 183.0, 44.0, 83.0, 345.0, 927.0, 964.0, 646.0, 282.0, 396.0, 17.0, 745.0, 692.0, 531.0, 921.0, 411.0, 295.0, 620.0, 581.0, 167.0, 52.0, 448.0, 901.0, 997.0, 742.0, 941.0, 106.0, 108.0, 965.0, 706.0, 52.0, 837.0, 831.0, 23.0, 692.0, 420.0, 687.0, 75.0, 350.0, 733.0, 524.0, 529.0, 201.0, 200.0, 66.0, 632.0, 641.0, 265.0, 920.0, 180.0, 809.0, 938.0, 974.0, 239.0, 328.0, 411.0, 627.0, 486.0, 31.0, 610.0, 827.0, 240.0, 411.0, 474.0, 513.0, 563.0, 778.0, 234.0, 469.0, 20.0, 580.0, 334.0, 614.0, 317.0, 140.0, 868.0, 399.0, 296.0, 822.0, 657.0, 210.0, 623.0, 16.0, 598.0, 749.0, 398.0, 578.0, 18.0, 951.0, 591.0, 954.0, 599.0, 742.0, 25.0, 352.0, 60.0, 974.0, 267.0, 282.0, 105.0, 333.0, 905.0, 408.0, 444.0, 891.0, 499.0, 75.0, 371.0, 611.0, 111.0, 236.0, 559.0, 149.0, 617.0, 547.0, 925.0, 98.0, 670.0, 101.0, 790.0, 185.0, 341.0, 211.0, 610.0, 271.0, 919.0, 977.0, 398.0, 112.0, 631.0, 457.0, 140.0, 483.0, 928.0, 270.0, 624.0, 169.0, 747.0, 148.0, 862.0, 647.0, 204.0, 570.0, 416.0, 389.0, 905.0, 122.0, 455.0, 897.0, 611.0, 47.0, 713.0, 935.0, 766.0, 177.0, 538.0, 377.0, 409.0, 124.0, 339.0, 399.0, 178.0, 157.0, 998.0, 715.0, 400.0, 961.0, 676.0, 192.0, 868.0, 201.0, 29.0, 807.0, 842.0, 400.0, 155.0, 479.0, 515.0, 13.0, 313.0, 112.0, 240.0, 184.0, 123.0, 863.0, 888.0, 822.0, 73.0, 956.0, 803.0, 456.0, 453.0, 342.0, 277.0, 679.0, 285.0, 597.0, 648.0, 637.0, 342.0, 20.0, 376.0, 438.0, 95.0, 343.0, 564.0, 776.0, 203.0, 415.0, 353.0, 855.0, 682.0, 50.0, 536.0, 614.0, 790.0, 923.0, 51.0, 766.0, 34.0, 326.0, 618.0, 752.0, 634.0, 76.0, 478.0, 250.0, 240.0, 113.0, 613.0, 223.0, 29.0, 8.0, 998.0, 565.0, 662.0, 126.0, 742.0, 674.0, 161.0, 824.0, 735.0, 662.0, 476.0, 554.0, 99.0, 38.0, 659.0, 385.0, 847.0, 488.0, 52.0, 18.0, 285.0, 431.0, 2.0, 238.0, 75.0, 618.0, 872.0, 938.0, 484.0, 370.0, 92.0, 865.0, 728.0, 799.0, 32.0, 777.0, 845.0, 85.0, 982.0, 755.0, 365.0, 599.0, 760.0, 403.0, 964.0, 582.0, 540.0, 269.0, 141.0, 11.0, 406.0, 553.0, 868.0, 412.0, 129.0, 16.0, 190.0, 784.0, 762.0, 567.0, 977.0, 159.0, 685.0, 263.0, 397.0, 475.0, 739.0, 730.0, 640.0, 574.0, 858.0, 991.0, 837.0, 941.0, 836.0, 315.0, 891.0, 351.0, 364.0, 919.0, 767.0, 323.0, 472.0, 937.0, 808.0, 737.0, 170.0, 7.0, 766.0, 930.0, 185.0, 557.0, 291.0, 999.0, 253.0, 521.0, 379.0, 139.0, 396.0, 217.0, 671.0, 184.0, 612.0, 578.0, 657.0, 543.0, 407.0, 850.0, 474.0, 193.0, 995.0, 146.0, 679.0, 75.0, 974.0, 271.0, 456.0, 507.0, 592.0, 652.0, 212.0, 910.0, 872.0, 436.0, 828.0, 713.0, 10.0, 922.0, 851.0, 147.0, 237.0, 762.0, 919.0, 442.0, 632.0, 557.0, 138.0, 980.0, 583.0, 483.0, 630.0, 993.0, 318.0, 252.0, 623.0, 376.0, 72.0, 484.0, 984.0, 384.0, 459.0, 787.0, 311.0, 779.0, 298.0, 228.0, 461.0, 70.0, 624.0, 255.0, 976.0, 218.0, 148.0, 100.0, 40.0, 991.0, 951.0, 926.0, 206.0, 77.0, 158.0, 495.0, 511.0, 537.0, 450.0, 425.0, 1.0, 785.0, 748.0, 586.0, 391.0, 170.0, 930.0, 79.0, 399.0, 288.0, 192.0, 999.0, 343.0, 185.0, 818.0, 685.0, 87.0, 803.0, 762.0, 832.0, 424.0, 775.0, 102.0, 3.0, 349.0, 99.0, 208.0, 197.0, 476.0, 190.0, 229.0, 683.0, 810.0, 337.0, 393.0, 770.0, 416.0, 722.0, 758.0, 347.0, 341.0, 323.0, 102.0, 935.0, 480.0, 676.0, 830.0, 194.0, 629.0, 40.0, 198.0, 61.0, 619.0, 491.0, 642.0, 784.0, 820.0, 944.0, 74.0, 469.0, 966.0, 174.0, 213.0, 305.0, 104.0, 996.0, 114.0, 418.0, 994.0, 461.0, 23.0, 524.0, 109.0, 835.0, 236.0, 377.0, 583.0, 240.0, 773.0, 982.0, 320.0, 464.0, 236.0, 19.0, 566.0, 119.0, 398.0, 891.0, 142.0, 756.0, 292.0, 783.0, 414.0, 572.0, 322.0, 657.0, 936.0, 174.0, 241.0, 157.0, 11.0, 908.0, 302.0, 835.0, 253.0, 874.0, 285.0, 608.0, 978.0, 806.0, 551.0, 77.0, 77.0, 612.0, 439.0, 805.0, 170.0, 329.0, 847.0, 77.0, 760.0, 694.0, 37.0, 854.0, 220.0, 432.0, 559.0, 507.0, 248.0, 503.0, 292.0, 114.0, 406.0, 71.0, 235.0, 572.0, 385.0, 542.0, 582.0, 814.0, 912.0, 362.0, 827.0, 246.0, 16.0, 169.0, 963.0, 306.0, 372.0, 924.0, 881.0, 60.0, 195.0, 266.0, 554.0, 248.0, 316.0, 635.0, 136.0, 940.0, 801.0, 971.0, 333.0, 536.0, 561.0, 104.0, 638.0, 848.0, 474.0, 655.0, 677.0, 493.0, 182.0, 606.0, 668.0, 948.0, 805.0, 545.0, 641.0, 715.0, 813.0, 389.0, 325.0, 444.0, 754.0, 189.0, 460.0, 739.0, 675.0, 339.0, 212.0, 784.0, 888.0, 169.0, 832.0, 680.0, 222.0, 430.0, 723.0, 47.0, 403.0, 507.0, 652.0, 722.0, 880.0, 135.0, 363.0, 852.0, 297.0, 181.0, 114.0, 346.0, 625.0, 508.0, 699.0, 516.0, 7.0, 955.0, 185.0, 589.0, 168.0, 153.0, 336.0, 829.0, 969.0, 789.0, 153.0, 328.0, 814.0, 810.0, 153.0, 197.0, 485.0, 676.0, 117.0, 327.0, 750.0, 454.0, 562.0, 940.0, 763.0, 565.0, 55.0, 34.0, 319.0, 413.0, 91.0, 750.0, 431.0, 819.0, 519.0, 393.0, 536.0, 417.0, 74.0, 989.0, 550.0, 974.0, 893.0, 444.0, 998.0, 856.0, 349.0, 680.0, 56.0, 603.0, 946.0, 226.0, 40.0, 411.0, 871.0, 564.0, 258.0, 905.0, 53.0, 458.0, 424.0, 5.0, 700.0, 334.0, 245.0, 157.0, 117.0, 559.0, 289.0, 51.0, 884.0, 890.0, 350.0, 837.0, 590.0, 520.0, 331.0, 401.0, 721.0, 124.0, 486.0, 295.0, 918.0, 361.0, 647.0, 130.0, 773.0, 478.0, 543.0, 874.0, 779.0, 575.0, 752.0, 802.0, 302.0, 803.0, 226.0, 644.0, 702.0, 447.0, 453.0, 828.0, 853.0, 490.0, 553.0, 420.0, 970.0, 339.0, 700.0, 970.0, 988.0, 339.0, 41.0, 777.0, 911.0, 34.0, 921.0, 720.0, 760.0, 169.0, 894.0, 353.0, 118.0, 219.0, 273.0, 353.0, 436.0, 406.0, 89.0, 147.0, 280.0, 408.0, 124.0, 863.0, 976.0, 790.0, 81.0, 607.0, 352.0, 346.0, 204.0, 607.0, 97.0, 803.0, 389.0, 404.0, 338.0, 930.0, 190.0, 707.0, 753.0, 987.0, 256.0, 968.0, 187.0, 692.0, 369.0, 900.0, 488.0, 996.0, 280.0, 89.0, 95.0, 499.0, 134.0, 66.0, 233.0, 128.0, 79.0, 918.0, 482.0, 738.0, 518.0, 976.0, 822.0, 805.0, 174.0, 600.0, 666.0, 911.0, 423.0, 339.0, 794.0, 14.0, 453.0, 204.0, 271.0, 208.0, 86.0, 658.0, 175.0, 911.0, 918.0, 623.0, 148.0, 496.0, 185.0, 626.0, 803.0, 649.0, 181.0, 589.0, 320.0, 421.0, 140.0, 920.0, 420.0, 600.0, 100.0, 511.0, 4.0, 121.0, 765.0, 986.0, 451.0, 145.0, 155.0, 798.0, 69.0, 464.0, 293.0, 272.0, 126.0, 868.0, 217.0, 894.0, 114.0, 557.0, 738.0, 521.0, 676.0, 55.0, 819.0, 955.0, 404.0, 211.0, 982.0, 709.0, 451.0, 269.0, 765.0, 844.0, 366.0, 413.0, 747.0, 784.0, 65.0, 950.0, 990.0, 195.0, 755.0, 885.0, 187.0, 51.0, 455.0, 986.0, 289.0, 541.0, 506.0, 993.0, 73.0, 777.0, 96.0, 354.0, 997.0, 206.0, 822.0, 602.0, 429.0, 2.0, 732.0, 177.0, 437.0, 58.0, 675.0, 815.0, 696.0, 495.0, 905.0, 700.0, 953.0, 748.0, 182.0, 394.0, 524.0, 376.0, 272.0, 530.0, 906.0, 443.0, 348.0, 611.0, 622.0, 408.0, 798.0, 99.0, 891.0, 817.0, 268.0, 770.0, 753.0, 490.0, 906.0, 813.0, 834.0, 188.0, 459.0, 288.0, 34.0, 217.0, 891.0, 132.0, 107.0, 239.0, 967.0, 910.0, 412.0, 647.0, 631.0, 71.0, 842.0, 595.0, 441.0, 636.0, 718.0, 499.0, 526.0, 840.0, 140.0, 137.0, 983.0, 439.0, 345.0, 155.0, 702.0, 176.0, 920.0, 527.0, 261.0, 929.0, 255.0, 964.0, 871.0, 38.0, 177.0, 384.0, 155.0, 67.0, 959.0, 926.0, 699.0, 61.0, 355.0, 332.0, 57.0, 172.0, 38.0, 494.0, 276.0, 363.0, 376.0, 902.0, 40.0, 835.0, 985.0, 768.0, 24.0, 427.0, 964.0, 180.0, 914.0, 694.0, 131.0, 674.0, 578.0, 713.0, 854.0, 538.0, 833.0, 435.0, 715.0, 409.0, 672.0, 9.0, 354.0, 486.0, 797.0, 900.0, 415.0, 104.0, 470.0, 558.0, 931.0, 982.0, 943.0, 129.0, 704.0, 750.0, 108.0, 868.0, 248.0, 243.0, 938.0, 225.0, 855.0, 757.0, 833.0, 302.0, 653.0, 129.0, 112.0, 653.0, 519.0, 927.0, 162.0, 632.0, 583.0, 113.0, 422.0, 627.0, 438.0, 699.0, 166.0, 329.0, 158.0, 351.0, 259.0, 14.0, 886.0, 779.0, 805.0, 334.0, 297.0, 635.0, 811.0, 405.0, 363.0, 977.0, 782.0, 704.0, 142.0, 839.0, 283.0, 478.0, 97.0, 921.0, 207.0, 180.0, 527.0, 876.0, 810.0, 289.0, 206.0, 229.0, 74.0, 705.0, 782.0, 681.0, 221.0, 461.0, 716.0, 305.0, 169.0, 320.0, 904.0, 419.0, 693.0, 407.0, 933.0, 495.0, 785.0, 355.0, 157.0, 640.0, 424.0, 883.0, 197.0, 355.0, 131.0, 169.0, 355.0, 672.0, 79.0, 414.0, 500.0, 785.0, 538.0, 859.0, 847.0, 918.0, 729.0, 67.0, 514.0, 116.0, 23.0, 135.0, 735.0, 17.0, 561.0, 975.0, 801.0, 963.0, 268.0, 249.0, 406.0, 61.0, 466.0, 236.0, 308.0, 434.0, 524.0, 813.0, 255.0, 636.0, 362.0, 176.0, 396.0, 857.0, 396.0, 358.0, 373.0, 411.0, 600.0, 122.0, 730.0, 888.0, 299.0, 459.0, 203.0, 796.0, 4.0, 805.0, 257.0, 990.0, 989.0, 570.0, 20.0, 372.0, 53.0, 577.0, 944.0, 152.0, 205.0, 13.0, 553.0, 940.0, 157.0, 155.0, 129.0, 767.0, 255.0, 628.0, 224.0, 563.0, 989.0, 522.0, 156.0, 822.0, 914.0, 972.0, 860.0, 928.0, 264.0, 588.0, 373.0, 193.0, 147.0, 99.0, 989.0, 827.0, 630.0, 153.0, 430.0, 599.0, 590.0, 611.0, 163.0, 934.0, 143.0, 672.0, 332.0, 596.0, 546.0, 147.0, 502.0, 896.0, 229.0, 310.0, 8.0, 787.0, 766.0, 810.0, 833.0, 943.0, 433.0, 649.0, 445.0, 525.0, 883.0, 516.0, 199.0, 604.0, 694.0, 62.0, 422.0, 929.0, 193.0, 507.0, 972.0, 581.0, 242.0, 85.0, 432.0, 236.0, 641.0, 422.0, 799.0, 30.0, 68.0, 309.0, 70.0, 795.0, 703.0, 100.0, 726.0, 384.0, 296.0, 484.0, 115.0, 520.0, 339.0, 863.0, 278.0, 606.0, 741.0, 23.0, 660.0, 235.0, 538.0, 50.0, 390.0, 17.0, 358.0, 289.0, 718.0, 765.0, 72.0, 757.0, 339.0, 922.0, 546.0, 181.0, 831.0, 331.0, 213.0, 386.0, 167.0, 763.0, 514.0, 112.0, 260.0, 19.0, 350.0, 381.0, 236.0, 837.0, 895.0, 936.0, 928.0, 543.0, 383.0, 996.0, 443.0, 598.0, 874.0, 668.0, 91.0, 364.0, 560.0, 770.0, 696.0, 966.0, 21.0, 517.0, 176.0, 721.0, 198.0, 708.0, 898.0, 783.0, 222.0, 233.0, 290.0, 722.0, 694.0, 93.0, 757.0, 842.0, 636.0, 227.0, 890.0, 654.0, 910.0, 662.0, 138.0, 819.0, 332.0, 988.0, 193.0, 64.0, 427.0, 203.0, 222.0, 656.0, 688.0, 653.0, 300.0, 675.0, 104.0, 656.0, 391.0, 51.0, 333.0, 536.0, 543.0, 328.0, 432.0, 872.0, 151.0, 164.0, 327.0, 361.0, 645.0, 717.0, 955.0, 475.0, 864.0, 345.0, 647.0, 148.0, 918.0, 197.0, 219.0, 3.0, 475.0, 279.0, 633.0, 1.0, 637.0, 446.0, 761.0, 275.0, 279.0, 300.0, 971.0, 823.0, 654.0, 926.0, 363.0, 105.0, 666.0, 49.0, 515.0, 406.0, 365.0, 201.0, 465.0, 176.0, 229.0, 111.0, 684.0, 718.0, 529.0, 21.0, 282.0, 453.0, 812.0, 394.0, 24.0, 775.0, 347.0, 408.0, 284.0, 85.0, 65.0, 51.0, 930.0, 745.0, 818.0, 845.0, 3.0, 891.0, 959.0, 224.0, 158.0, 643.0, 657.0, 710.0, 893.0, 312.0, 875.0, 88.0, 753.0, 128.0, 966.0, 953.0, 924.0, 354.0, 748.0, 209.0, 906.0, 696.0, 248.0, 530.0, 831.0, 768.0, 333.0, 842.0, 322.0, 967.0, 883.0, 526.0, 336.0, 213.0, 147.0, 132.0, 750.0, 950.0, 296.0, 806.0, 791.0, 165.0, 718.0, 648.0, 217.0, 527.0, 958.0, 980.0, 209.0, 54.0, 933.0, 168.0, 883.0, 645.0, 454.0, 760.0, 986.0, 909.0, 375.0, 984.0, 144.0, 406.0, 127.0, 922.0, 212.0, 168.0, 888.0, 539.0, 389.0, 768.0, 251.0, 99.0, 788.0, 952.0, 93.0, 574.0, 417.0, 283.0, 649.0, 241.0, 931.0, 336.0, 26.0, 825.0, 6.0, 249.0, 52.0, 108.0, 682.0, 712.0, 482.0, 419.0, 22.0, 182.0, 775.0, 775.0, 566.0, 475.0, 744.0, 111.0, 846.0, 39.0, 811.0, 83.0, 29.0, 384.0, 134.0, 415.0, 822.0, 750.0, 470.0, 385.0, 206.0, 410.0, 967.0, 491.0, 458.0, 684.0, 642.0, 770.0, 731.0, 75.0, 938.0, 641.0, 157.0, 57.0, 958.0, 593.0, 933.0, 176.0, 637.0, 548.0, 243.0, 333.0, 237.0, 507.0, 579.0, 923.0, 440.0, 219.0, 580.0, 383.0, 136.0, 937.0, 848.0, 331.0, 730.0, 698.0, 152.0, 834.0, 987.0, 187.0, 916.0, 550.0, 204.0, 954.0, 109.0, 567.0, 589.0, 376.0, 538.0, 112.0, 108.0, 905.0, 582.0, 410.0, 492.0, 360.0, 250.0, 656.0, 498.0, 446.0, 436.0, 138.0, 9.0, 688.0, 314.0, 810.0, 119.0, 690.0, 185.0, 646.0, 190.0, 516.0, 636.0, 976.0, 298.0, 759.0, 959.0, 512.0, 761.0, 222.0, 383.0, 809.0, 912.0, 135.0, 514.0, 46.0, 842.0, 821.0, 119.0, 983.0, 862.0, 303.0, 951.0, 504.0, 532.0, 632.0, 328.0, 498.0, 60.0, 316.0, 534.0, 500.0, 909.0, 616.0, 449.0, 401.0, 523.0, 489.0, 798.0, 333.0, 389.0, 525.0, 74.0, 607.0, 396.0, 256.0, 815.0, 471.0, 785.0, 562.0, 734.0, 968.0, 696.0, 456.0, 816.0, 924.0, 350.0, 862.0, 991.0, 844.0, 244.0, 518.0, 667.0, 826.0, 170.0, 598.0, 23.0, 676.0, 920.0, 23.0, 718.0, 1.0, 304.0, 589.0, 851.0, 30.0, 592.0, 795.0, 882.0, 780.0, 131.0, 73.0, 411.0, 895.0, 984.0, 820.0, 228.0, 721.0, 813.0, 543.0, 7.0, 327.0, 601.0, 264.0, 680.0, 471.0, 170.0, 329.0, 60.0, 839.0, 100.0, 549.0, 921.0, 443.0, 53.0, 213.0, 803.0, 317.0, 494.0, 643.0, 60.0, 815.0, 618.0, 764.0, 303.0, 455.0, 364.0, 86.0, 474.0, 345.0, 521.0, 996.0, 962.0, 377.0, 221.0, 226.0, 194.0, 194.0, 357.0, 158.0, 514.0, 901.0, 605.0, 112.0, 676.0, 855.0, 752.0, 742.0, 22.0, 537.0, 211.0, 253.0, 549.0, 418.0, 306.0, 124.0, 182.0, 879.0, 91.0, 463.0, 913.0, 483.0, 880.0, 885.0, 594.0, 883.0, 933.0, 953.0, 287.0, 337.0, 665.0, 227.0, 194.0, 376.0, 701.0, 239.0, 459.0, 348.0, 594.0, 330.0, 407.0, 735.0, 778.0, 172.0, 601.0, 929.0, 837.0, 897.0, 465.0, 883.0, 303.0, 952.0, 342.0, 354.0, 685.0] \ No newline at end of file diff --git a/ui_arr_details.py b/ui_arr_details.py index a891733..2398d27 100644 --- a/ui_arr_details.py +++ b/ui_arr_details.py @@ -110,10 +110,10 @@ class Ui_Widget(object): self.verticalLayout_3 = QVBoxLayout() self.verticalLayout_3.setObjectName(u"verticalLayout_3") - self.pushButton_4 = QPushButton(Widget) - self.pushButton_4.setObjectName(u"pushButton_4") + self.pushButton_write = QPushButton(Widget) + self.pushButton_write.setObjectName(u"pushButton_write") - self.verticalLayout_3.addWidget(self.pushButton_4) + self.verticalLayout_3.addWidget(self.pushButton_write) self.pushButton_setvalplot = QPushButton(Widget) self.pushButton_setvalplot.setObjectName(u"pushButton_setvalplot") @@ -140,6 +140,7 @@ class Ui_Widget(object): self.formLayout.setWidget(3, QFormLayout.FieldRole, self.label_details) + self.verticalLayout.addLayout(self.formLayout) @@ -164,7 +165,7 @@ class Ui_Widget(object): self.pushButton_read.setText(QCoreApplication.translate("Widget", u"Read", None)) self.pushButton_valplot.setText(QCoreApplication.translate("Widget", u"Plot", None)) self.label_6.setText(QCoreApplication.translate("Widget", u"\u8bbe\u5b9a\u503c", None)) - self.pushButton_4.setText(QCoreApplication.translate("Widget", u"Write", None)) + self.pushButton_write.setText(QCoreApplication.translate("Widget", u"Write", None)) self.pushButton_setvalplot.setText(QCoreApplication.translate("Widget", u"Plot", None)) self.label_details.setText(QCoreApplication.translate("Widget", u"\u7a7a", None)) # retranslateUi diff --git a/ui_basic_plot.py b/ui_basic_plot.py index 60f5dba..9d1fb66 100644 --- a/ui_basic_plot.py +++ b/ui_basic_plot.py @@ -42,6 +42,8 @@ class Ui_Dialog(object): self.verticalLayout.addWidget(self.listView) + self.verticalLayout.setStretch() + self.horizontalLayout.addLayout(self.verticalLayout)