diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 3bdf7aa126..4d2f4f964b 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -139,7 +139,7 @@ class CuraApplication(QtApplication): # SettingVersion represents the set of settings available in the machine/extruder definitions. # You need to make sure that this version number needs to be increased if there is any non-backwards-compatible # changes of the settings. - SettingVersion = 23 + SettingVersion = 24 Created = False diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index a7126af14e..af015396e3 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -570,7 +570,8 @@ class CuraEngineBackend(QObject, Backend): return # Preparation completed, send it to the backend. - if not self._socket.sendMessage(job.getSliceMessage()): + immediate_success = self._socket.sendMessage(job.getSliceMessage()) + if (not CuraApplication.getInstance().getUseExternalBackend()) and (not immediate_success): if self._last_socket_error is not None and self._last_socket_error.getErrorCode() == Arcus.ErrorCode.MessageTooBigError: error_txt = catalog.i18nc("@info:status", "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances.") else: diff --git a/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py b/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py index 8cadceb528..ea783b08d8 100644 --- a/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py +++ b/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py @@ -1,65 +1,217 @@ # Copyright (c) 2020 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. # Created by Wayne Porter +# Re-write in April of 2024 by GregValiant (Greg Foresi) +# Changes: +# Added an 'Enable' setting +# Added support for multi-line insertions (comma delimited) +# Added insertions in a range of layers or a single insertion at a layer. Numbers are consistent with the Cura Preview (base1) +# Added frequency of Insertion (once only, every layer, every 2nd, 3rd, 5th, 10th, 25th, 50th, 100th) +# Added support for 'One at a Time' print sequence +# Rafts are allowed and accounted for but no insertions are made in raft layers from ..Script import Script +import re +from UM.Application import Application class InsertAtLayerChange(Script): - def __init__(self): - super().__init__() def getSettingDataString(self): return """{ - "name": "Insert at layer change", + "name": "Insert at Layer Change", "key": "InsertAtLayerChange", "metadata": {}, "version": 2, "settings": { - "insert_location": + "enabled": { - "label": "When to insert", - "description": "Whether to insert code before or after layer change.", + "label": "Enable this script", + "description": "You must enable the script for it to run.", + "type": "bool", + "default_value": true, + "enabled": true + }, + "insert_frequency": + { + "label": "How often to insert", + "description": "Every so many layers starting with the Start Layer OR as single insertion at a specific layer. If the print sequence is 'one_at_a_time' then the insertions will be made for every model. Insertions are made at the beginning of a layer.", "type": "enum", - "options": {"before": "Before", "after": "After"}, - "default_value": "before" + "options": { + "once_only": "One insertion only", + "every_layer": "Every Layer", + "every_2nd": "Every 2nd", + "every_3rd": "Every 3rd", + "every_5th": "Every 5th", + "every_10th": "Every 10th", + "every_25th": "Every 25th", + "every_50th": "Every 50th", + "every_100th": "Every 100th"}, + "default_value": "every_layer", + "enabled": "enabled" + }, + "start_layer": + { + "label": "Starting Layer", + "description": "The layer before which the first insertion will take place. If the Print_Sequence is 'All at Once' then use the layer numbers from the Cura Preview. Enter '1' to start at gcode LAYER:0. In 'One at a Time' mode use the layer numbers from the first model that prints AND all models will receive the same insertions. NOTE: There is never an insertion for raft layers.", + "type": "int", + "default_value": 1, + "minimum_value": 1, + "enabled": "insert_frequency != 'once_only' and enabled" + }, + "end_layer": + { + "label": "Ending Layer", + "description": "The layer before which the last insertion will take place. Enter '-1' to indicate the entire file. Use layer numbers from the Cura Preview.", + "type": "int", + "default_value": -1, + "minimum_value": -1, + "enabled": "insert_frequency != 'once_only' and enabled" + }, + "single_end_layer": + { + "label": "Layer # for Single Insertion.", + "description": "The layer before which the Gcode insertion will take place. Use the layer numbers from the Cura Preview.", + "type": "str", + "default_value": "", + "enabled": "insert_frequency == 'once_only' and enabled" }, "gcode_to_add": { - "label": "G-code to insert", - "description": "G-code to add before or after layer change.", + "label": "G-code to insert.", + "description": "G-code to add at start of the layer. Use a comma to delimit multi-line commands. EX: G28 X Y,M220 S100,M117 HELL0. NOTE: All inserted text will be converted to upper-case as some firmwares don't understand lower-case.", "type": "str", - "default_value": "" - }, - "skip_layers": - { - "label": "Skip layers", - "description": "Number of layers to skip between insertions (0 for every layer).", - "type": "int", - "default_value": 0, - "minimum_value": 0 + "default_value": "", + "enabled": "enabled" } } }""" def execute(self, data): - gcode_to_add = self.getSettingValueByKey("gcode_to_add") + "\n" - skip_layers = self.getSettingValueByKey("skip_layers") - count = 0 - for layer in data: - # Check that a layer is being printed - lines = layer.split("\n") - for line in lines: - if ";LAYER:" in line: - index = data.index(layer) - if count == 0: - if self.getSettingValueByKey("insert_location") == "before": - layer = gcode_to_add + layer - else: - layer = layer + gcode_to_add - - data[index] = layer - - count = (count + 1) % (skip_layers + 1) - break - return data + # Exit if the script is not enabled + if not bool(self.getSettingValueByKey("enabled")): + return data + #Initialize variables + mycode = self.getSettingValueByKey("gcode_to_add").upper() + start_layer = int(self.getSettingValueByKey("start_layer")) + end_layer = int(self.getSettingValueByKey("end_layer")) + when_to_insert = self.getSettingValueByKey("insert_frequency") + end_list = [0] + print_sequence = Application.getInstance().getGlobalContainerStack().getProperty("print_sequence", "value") + # Get the topmost layer number and adjust the end_list + if end_layer == -1: + if print_sequence == "all_at_once": + for lnum in range(0, len(data) - 1): + if ";LAYER:" in data[lnum]: + the_top = int(data[lnum].split(";LAYER:")[1].split("\n")[0]) + end_list[0] = the_top + # Get the topmost layer number for each model and append it to the end_list + if print_sequence == "one_at_a_time": + for lnum in range(0, 10): + if ";LAYER:0" in data[lnum]: + start_at = lnum + 1 + break + for lnum in range(start_at, len(data)-1, 1): + if ";LAYER:" in data[lnum] and not ";LAYER:0" in data[lnum] and not ";LAYER:-" in data[lnum]: + end_list[len(end_list) - 1] = int(data[lnum].split(";LAYER:")[1].split("\n")[0]) + continue + if ";LAYER:0" in data[lnum]: + end_list.append(0) + elif end_layer != -1: + if print_sequence == "all_at_once": + # Catch an error if the entered End_Layer > the top layer in the gcode + for e_num, layer in enumerate(data): + if ";LAYER:" in layer: + top_layer = int(data[e_num].split(";LAYER:")[1].split("\n")[0]) + end_list[0] = end_layer - 1 + if top_layer < end_layer - 1: + end_list[0] = top_layer + elif print_sequence == "one_at_a_time": + # Find the index of the first Layer:0 + for lnum in range(0, 10): + if ";LAYER:0" in data[lnum]: + start_at = lnum + 1 + break + # Get the top layer number for each model + for lnum in range(start_at, len(data)-1): + if ";LAYER:" in data[lnum] and not ";LAYER:0" in data[lnum] and not ";LAYER:-" in data[lnum]: + end_list[len(end_list) - 1] = int(data[lnum].split(";LAYER:")[1].split("\n")[0]) + if ";LAYER:0" in data[lnum]: + end_list.append(0) + # Adjust the end list if an end layer was named + for index, num in enumerate(end_list): + if num > end_layer - 1: + end_list[index] = end_layer - 1 + #If the gcode_to_enter is multi-line then replace the commas with newline characters + if mycode != "": + if "," in mycode: + mycode = re.sub(",", "\n",mycode) + gcode_to_add = mycode + #Get the insertion frequency + match when_to_insert: + case "every_layer": + freq = 1 + case "every_2nd": + freq = 2 + case "every_3rd": + freq = 3 + case "every_5th": + freq = 5 + case "every_10th": + freq = 10 + case "every_25th": + freq = 25 + case "every_50th": + freq = 50 + case "every_100th": + freq = 100 + case "once_only": + the_insert_layer = int(self.getSettingValueByKey("single_end_layer"))-1 + case _: + raise ValueError(f"Unexpected insertion frequency {when_to_insert}") + #Single insertion + if when_to_insert == "once_only": + # For print sequence 'All at once' + if print_sequence == "all_at_once": + for index, layer in enumerate(data): + if ";LAYER:" + str(the_insert_layer) + "\n" in layer: + lines = layer.split("\n") + lines.insert(1,gcode_to_add) + data[index] = "\n".join(lines) + return data + # For print sequence 'One at a time' + else: + for index, layer in enumerate(data): + if ";LAYER:" + str(the_insert_layer) + "\n" in layer: + lines = layer.split("\n") + lines.insert(1,gcode_to_add) + data[index] = "\n".join(lines) + return data + # For multiple insertions + if when_to_insert != "once_only": + # Search from the line after the first Layer:0 so we know when a model ends if in One at a Time mode. + first_0 = True + next_layer = start_layer - 1 + end_layer = end_list.pop(0) + for index, layer in enumerate(data): + lines = layer.split("\n") + for l_index, line in enumerate(lines): + if ";LAYER:" in line: + layer_number = int(line.split(":")[1]) + if layer_number == next_layer and layer_number <= end_layer: + lines.insert(l_index + 1,gcode_to_add) + data[index] = "\n".join(lines) + next_layer += freq + # Reset the next_layer for one-at-a-time + if next_layer > int(end_layer): + next_layer = start_layer - 1 + # Index to the next end_layer when a Layer:0 is encountered + try: + if not first_0 and layer_number == 0: + end_layer = end_list.pop(0) + except: + pass + # Beyond the initial Layer:0 futher Layer:0's indicate the top layer of a model. + if layer_number == 0: + first_0 = False + break + return data \ No newline at end of file diff --git a/plugins/PostProcessingPlugin/scripts/TimeLapse.py b/plugins/PostProcessingPlugin/scripts/TimeLapse.py index 210199e087..f78765f3f0 100644 --- a/plugins/PostProcessingPlugin/scripts/TimeLapse.py +++ b/plugins/PostProcessingPlugin/scripts/TimeLapse.py @@ -1,9 +1,15 @@ -# Copyright (c) 2020 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. -# Created by Wayne Porter +# Modified 5/15/2023 - Greg Valiant (Greg Foresi) +# Created by Wayne Porter +# Added insertion frequency +# Adjusted for use with Relative Extrusion +# Changed Retract to a boolean and when true use the regular Cura retract settings. +# Use the regular Cura settings for Travel Speed and Speed_Z instead of asking. +# Added code to check the E location to prevent retracts if the filament was already retracted. +# Added 'Pause before image' per LemanRus from ..Script import Script - +from UM.Application import Application +from UM.Logger import Logger class TimeLapse(Script): def __init__(self): @@ -11,7 +17,7 @@ class TimeLapse(Script): def getSettingDataString(self): return """{ - "name": "Time Lapse", + "name": "Time Lapse Camera", "key": "TimeLapse", "metadata": {}, "version": 2, @@ -19,24 +25,49 @@ class TimeLapse(Script): { "trigger_command": { - "label": "Trigger camera command", - "description": "G-code command used to trigger camera.", + "label": "Camera Trigger Command", + "description": "G-code command used to trigger the camera. The setting box will take any command and parameters.", "type": "str", "default_value": "M240" }, + "insert_frequency": + { + "label": "How often (layers)", + "description": "Every so many layers (always starts at the first layer whether it's the model or a raft).", + "type": "enum", + "options": { + "every_layer": "Every Layer", + "every_2nd": "Every 2nd", + "every_3rd": "Every 3rd", + "every_5th": "Every 5th", + "every_10th": "Every 10th", + "every_25th": "Every 25th", + "every_50th": "Every 50th", + "every_100th": "Every 100th"}, + "default_value": "every_layer" + }, + "anti_shake_length": + { + "label": "Pause before image", + "description": "How long to wait (in ms) before capturing the image. This is to allow the printer to 'settle down' after movement. To disable set this to '0'.", + "type": "int", + "default_value": 0, + "minimum_value": 0, + "unit": "ms" + }, "pause_length": { - "label": "Pause length", + "label": "Pause after image", "description": "How long to wait (in ms) after camera was triggered.", "type": "int", - "default_value": 700, + "default_value": 500, "minimum_value": 0, "unit": "ms" }, "park_print_head": { "label": "Park Print Head", - "description": "Park the print head out of the way. Assumes absolute positioning.", + "description": "Park the print head out of the way.", "type": "bool", "default_value": true }, @@ -55,90 +86,166 @@ class TimeLapse(Script): "description": "What Y location does the head move to for photo.", "unit": "mm", "type": "float", - "default_value": 190, - "enabled": "park_print_head" - }, - "park_feed_rate": - { - "label": "Park Feed Rate", - "description": "How fast does the head move to the park coordinates.", - "unit": "mm/s", - "type": "float", - "default_value": 9000, + "default_value": 0, "enabled": "park_print_head" }, "retract": { - "label": "Retraction Distance", - "description": "Filament retraction distance for camera trigger.", - "unit": "mm", - "type": "int", - "default_value": 0 + "label": "Retract when required", + "description": "Retract if there isn't already a retraction. If unchecked then there will be no retraction even if there is none in the gcode. If retractions are not enabled in Cura there won't be a retraction. regardless of this setting.", + "type": "bool", + "default_value": true }, "zhop": { "label": "Z-Hop Height When Parking", - "description": "Z-hop length before parking", + "description": "The height to lift the nozzle off the print before parking.", "unit": "mm", "type": "float", - "default_value": 0 + "default_value": 2.0, + "minimum_value": 0.0 + }, + "ensure_final_image": + { + "label": "Ensure Final Image", + "description": "Depending on how the layer numbers work out with the 'How Often' frequency there might not be an image taken at the end of the last layer. This will ensure that one is taken. There is no parking as the Ending Gcode comes right up.", + "type": "bool", + "default_value": false } } }""" def execute(self, data): - feed_rate = self.getSettingValueByKey("park_feed_rate") + mycura = Application.getInstance().getGlobalContainerStack() + relative_extrusion = bool(mycura.getProperty("relative_extrusion", "value")) + extruder = mycura.extruderList + retract_speed = int(extruder[0].getProperty("retraction_speed", "value"))*60 + retract_dist = round(float(extruder[0].getProperty("retraction_amount", "value")), 2) + retract_enabled = bool(extruder[0].getProperty("retraction_enable", "value")) + firmware_retract = bool(mycura.getProperty("machine_firmware_retract", "value")) + speed_z = int(extruder[0].getProperty("speed_z_hop", "value"))*60 + if relative_extrusion: + rel_cmd = 83 + else: + rel_cmd = 82 + travel_speed = int(extruder[0].getProperty("speed_travel", "value"))*60 park_print_head = self.getSettingValueByKey("park_print_head") x_park = self.getSettingValueByKey("head_park_x") y_park = self.getSettingValueByKey("head_park_y") trigger_command = self.getSettingValueByKey("trigger_command") pause_length = self.getSettingValueByKey("pause_length") - retract = int(self.getSettingValueByKey("retract")) + retract = bool(self.getSettingValueByKey("retract")) zhop = self.getSettingValueByKey("zhop") - gcode_to_append = ";TimeLapse Begin\n" + ensure_final_image = bool(self.getSettingValueByKey("ensure_final_image")) + when_to_insert = self.getSettingValueByKey("insert_frequency") last_x = 0 last_y = 0 last_z = 0 - + last_e = 0 + prev_e = 0 + is_retracted = False + gcode_to_append = "" if park_print_head: - gcode_to_append += self.putValue(G=1, F=feed_rate, - X=x_park, Y=y_park) + " ;Park print head\n" - gcode_to_append += self.putValue(M=400) + " ;Wait for moves to finish\n" - gcode_to_append += trigger_command + " ;Snap Photo\n" - gcode_to_append += self.putValue(G=4, P=pause_length) + " ;Wait for camera\n" - - for idx, layer in enumerate(data): - for line in layer.split("\n"): - if self.getValue(line, "G") in {0, 1}: # Track X,Y,Z location. - last_x = self.getValue(line, "X", last_x) - last_y = self.getValue(line, "Y", last_y) - last_z = self.getValue(line, "Z", last_z) - # Check that a layer is being printed - lines = layer.split("\n") - for line in lines: - if ";LAYER:" in line: - if retract != 0: # Retract the filament so no stringing happens - layer += self.putValue(M=83) + " ;Extrude Relative\n" - layer += self.putValue(G=1, E=-retract, F=3000) + " ;Retract filament\n" - layer += self.putValue(M=82) + " ;Extrude Absolute\n" - layer += self.putValue(M=400) + " ;Wait for moves to finish\n" # Wait to fully retract before hopping - - if zhop != 0: - layer += self.putValue(G=1, Z=last_z+zhop, F=3000) + " ;Z-Hop\n" - - layer += gcode_to_append - - if zhop != 0: - layer += self.putValue(G=0, X=last_x, Y=last_y, Z=last_z) + "; Restore position \n" - else: - layer += self.putValue(G=0, X=last_x, Y=last_y) + "; Restore position \n" - - if retract != 0: - layer += self.putValue(M=400) + " ;Wait for moves to finish\n" - layer += self.putValue(M=83) + " ;Extrude Relative\n" - layer += self.putValue(G=1, E=retract, F=3000) + " ;Retract filament\n" - layer += self.putValue(M=82) + " ;Extrude Absolute\n" - - data[idx] = layer - break + gcode_to_append += f"G0 F{travel_speed} X{x_park} Y{y_park} ;Park print head\n" + gcode_to_append += "M400 ;Wait for moves to finish\n" + anti_shake_length = self.getSettingValueByKey("anti_shake_length") + if anti_shake_length > 0: + gcode_to_append += f"G4 P{anti_shake_length} ;Wait for printer to settle down\n" + gcode_to_append += trigger_command + " ;Snap the Image\n" + gcode_to_append += f"G4 P{pause_length} ;Wait for camera to finish\n" + match when_to_insert: + case "every_layer": + step_freq = 1 + case "every_2nd": + step_freq = 2 + case "every_3rd": + step_freq = 3 + case "every_5th": + step_freq = 5 + case "every_10th": + step_freq = 10 + case "every_25th": + step_freq = 25 + case "every_50th": + step_freq = 50 + case "every_100th": + step_freq = 100 + case _: + step_freq = 1 + # Use the step_freq to index through the layers---------------------------------------- + for num in range(2,len(data)-1,step_freq): + layer = data[num] + try: + # Track X,Y,Z location.-------------------------------------------------------- + for line in layer.split("\n"): + if self.getValue(line, "G") in {0, 1}: + last_x = self.getValue(line, "X", last_x) + last_y = self.getValue(line, "Y", last_y) + last_z = self.getValue(line, "Z", last_z) + #Track the E location so that if there is already a retraction we don't double dip. + if rel_cmd == 82: + if " E" in line: + last_e = line.split("E")[1] + if float(last_e) < float(prev_e): + is_retracted = True + else: + is_retracted = False + prev_e = last_e + elif rel_cmd == 83: + if " E" in line: + last_e = line.split("E")[1] + if float(last_e) < 0: + is_retracted = True + else: + is_retracted = False + prev_e = last_e + if firmware_retract and self.getValue(line, "G") in {10, 11}: + if self.getValue(line, "G") == 10: + is_retracted = True + last_e = float(prev_e) - float(retract_dist) + if self.getValue(line, "G") == 11: + is_retracted = False + last_e = float(prev_e) + float(retract_dist) + prev_e = last_e + lines = layer.split("\n") + # Insert the code---------------------------------------------------- + camera_code = "" + for line in lines: + if ";LAYER:" in line: + if retract and not is_retracted and retract_enabled: # Retract unless already retracted + camera_code += ";TYPE:CUSTOM-----------------TimeLapse Begin\n" + camera_code += "M83 ;Extrude Relative\n" + if not firmware_retract: + camera_code += f"G1 F{retract_speed} E-{retract_dist} ;Retract filament\n" + else: + camera_code += "G10 ;Retract filament\n" + else: + camera_code += ";TYPE:CUSTOM-----------------TimeLapse Begin\n" + if zhop != 0: + camera_code += f"G1 F{speed_z} Z{round(last_z + zhop,2)} ;Z-Hop\n" + camera_code += gcode_to_append + camera_code += f"G0 F{travel_speed} X{last_x} Y{last_y} ;Restore XY position\n" + if zhop != 0: + camera_code += f"G0 F{speed_z} Z{last_z} ;Restore Z position\n" + if retract and not is_retracted and retract_enabled: + if not firmware_retract: + camera_code += f"G1 F{retract_speed} E{retract_dist} ;Un-Retract filament\n" + else: + camera_code += "G11 ;Un-Retract filament\n" + camera_code += f"M{rel_cmd} ;Extrude Mode\n" + camera_code += f";{'-' * 28}TimeLapse End" + # Format the camera code to be inserted + temp_lines = camera_code.split("\n") + for temp_index, temp_line in enumerate(temp_lines): + if ";" in temp_line and not temp_line.startswith(";"): + temp_lines[temp_index] = temp_line.replace(temp_line.split(";")[0], temp_line.split(";")[0] + str(" " * (29 - len(temp_line.split(";")[0]))),1) + temp_lines = "\n".join(temp_lines) + lines.insert(len(lines) - 2, temp_lines) + data[num] = "\n".join(lines) + break + except Exception as e: + Logger.log("w", "TimeLapse Error: " + repr(e)) + # Take a final image if there was no camera shot at the end of the last layer. + if "TimeLapse Begin" not in data[len(data) - (3 if retract_enabled else 2)] and ensure_final_image: + data[len(data)-1] = "M400 ; Wait for all moves to finish\n" + trigger_command + " ;Snap the final Image\n" + f"G4 P{pause_length} ;Wait for camera\n" + data[len(data)-1] return data diff --git a/plugins/VersionUpgrade/VersionUpgrade58to59/VersionUpgrade58to59.py b/plugins/VersionUpgrade/VersionUpgrade58to59/VersionUpgrade58to59.py new file mode 100644 index 0000000000..f85300bc51 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade58to59/VersionUpgrade58to59.py @@ -0,0 +1,103 @@ +# Copyright (c) 2024 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +import configparser +from typing import Dict, List, Tuple +import io +from UM.VersionUpgrade import VersionUpgrade + +# Just to be sure, since in my testing there were both 0.1.0 and 0.2.0 settings about. +_PLUGIN_NAME = "_plugin__curaenginegradualflow" +_FROM_PLUGINS_SETTINGS = { + "gradual_flow_enabled", + "max_flow_acceleration", + "layer_0_max_flow_acceleration", + "gradual_flow_discretisation_step_size", + "reset_flow_duration", +} # type: Set[str] + +_NEW_SETTING_VERSION = "24" + + +class VersionUpgrade58to59(VersionUpgrade): + def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades preferences to remove from the visibility list the settings that were removed in this version. + It also changes the preferences to have the new version number. + + This removes any settings that were removed in the new Cura version. + :param serialized: The original contents of the preferences file. + :param filename: The file name of the preferences file. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + # Fix renamed settings for visibility + if "visible_settings" in parser["general"]: + all_setting_keys = parser["general"]["visible_settings"].strip().split(";") + if all_setting_keys: + for idx, key in enumerate(all_setting_keys): + if key.startswith(_PLUGIN_NAME): + all_setting_keys[idx] = key.split("__")[-1] + parser["general"]["visible_settings"] = ";".join(all_setting_keys) + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades instance containers to remove the settings that were removed in this version. + It also changes the instance containers to have the new version number. + + This removes any settings that were removed in the new Cura version and updates settings that need to be updated + with a new value. + + :param serialized: The original contents of the instance container. + :param filename: The original file name of the instance container. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None, comment_prefixes = ()) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + # Rename settings. + if "values" in parser: + for key, value in parser["values"].items(): + if key.startswith(_PLUGIN_NAME): + parser["values"][key.split("__")[-1]] = parser["values"][key] + del parser["values"][key] + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeStack(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades stacks to have the new version number. + + :param serialized: The original contents of the stack. + :param filename: The original file name of the stack. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + if "metadata" not in parser: + parser["metadata"] = {} + + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] diff --git a/plugins/VersionUpgrade/VersionUpgrade58to59/__init__.py b/plugins/VersionUpgrade/VersionUpgrade58to59/__init__.py new file mode 100644 index 0000000000..db41e98e2f --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade58to59/__init__.py @@ -0,0 +1,61 @@ +# Copyright (c) 2024 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Any, Dict, TYPE_CHECKING + +from . import VersionUpgrade58to59 + +if TYPE_CHECKING: + from UM.Application import Application + +upgrade = VersionUpgrade58to59.VersionUpgrade58to59() + + +def getMetaData() -> Dict[str, Any]: + return { + "version_upgrade": { + # From To Upgrade function + ("preferences", 7000023): ("preferences", 7000024, upgrade.upgradePreferences), + ("machine_stack", 6000023): ("machine_stack", 6000024, upgrade.upgradeStack), + ("extruder_train", 6000023): ("extruder_train", 6000024, upgrade.upgradeStack), + ("definition_changes", 4000023): ("definition_changes", 4000024, upgrade.upgradeInstanceContainer), + ("quality_changes", 4000023): ("quality_changes", 4000024, upgrade.upgradeInstanceContainer), + ("quality", 4000023): ("quality", 4000024, upgrade.upgradeInstanceContainer), + ("user", 4000023): ("user", 4000024, upgrade.upgradeInstanceContainer), + ("intent", 4000023): ("intent", 4000024, upgrade.upgradeInstanceContainer), + }, + "sources": { + "preferences": { + "get_version": upgrade.getCfgVersion, + "location": {"."} + }, + "machine_stack": { + "get_version": upgrade.getCfgVersion, + "location": {"./machine_instances"} + }, + "extruder_train": { + "get_version": upgrade.getCfgVersion, + "location": {"./extruders"} + }, + "definition_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./definition_changes"} + }, + "quality_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality_changes"} + }, + "quality": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality"} + }, + "user": { + "get_version": upgrade.getCfgVersion, + "location": {"./user"} + } + } + } + + +def register(app: "Application") -> Dict[str, Any]: + return {"version_upgrade": upgrade} diff --git a/plugins/VersionUpgrade/VersionUpgrade58to59/plugin.json b/plugins/VersionUpgrade/VersionUpgrade58to59/plugin.json new file mode 100644 index 0000000000..147d46bd2f --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade58to59/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "Version Upgrade 5.8 to 5.9", + "author": "UltiMaker", + "version": "1.0.0", + "description": "Upgrades configurations from Cura 5.8 to Cura 5.9.", + "api": 8, + "i18n-catalog": "cura" +} diff --git a/resources/definitions/ultimaker_sketch.def.json b/resources/definitions/ultimaker_sketch.def.json new file mode 100644 index 0000000000..3bb2420296 --- /dev/null +++ b/resources/definitions/ultimaker_sketch.def.json @@ -0,0 +1,186 @@ +{ + "version": 2, + "name": "MakerBot Sketch", + "inherits": "ultimaker", + "metadata": + { + "visible": true, + "author": "Ultimaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot-sketch", + "platform": "ultimaker_sketch_platform.obj", + "exclude_materials": [ + "dsm_", + "Essentium_", + "imade3d_", + "chromatik_", + "3D-Fuel_", + "bestfilament_", + "emotiontech_", + "eryone_", + "eSUN_", + "Extrudr_", + "fabtotum_", + "fdplast_", + "filo3d_", + "ultimaker_rapidrinse_175", + "goofoo_", + "ideagen3D_", + "imade3d_", + "innofill_", + "layer_one_", + "leapfrog_", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_", + "tizyx_", + "verbatim_", + "Vertex_", + "volumic_", + "xyzprinting_", + "zyyx_pro_", + "octofiber_", + "fiberlogy_", + "generic_", + "ultimaker_asa", + "ultimaker_abs", + "ultimaker_nylon", + "ultimaker_rapidrinse", + "ultimaker_sr30", + "ultimaker_petg", + "ultimaker_pva", + "ultimaker_metallic_pla" + ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ultimaker_sketch_extruder" }, + "preferred_quality_type": "draft", + "preferred_variant_name": "0.4mm", + "reference_machine_id": "sketch", + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "weight": -1 + }, + "overrides": + { + "acceleration_enabled": + { + "enabled": false, + "value": false + }, + "adhesion_type": { "value": "'skirt'" }, + "brim_width": { "value": "3" }, + "cool_during_extruder_switch": + { + "enabled": false, + "value": false + }, + "cool_fan_full_at_height": { "value": "layer_height + layer_height_0" }, + "cool_fan_speed": { "value": 100 }, + "cool_fan_speed_0": { "value": 0 }, + "cool_min_layer_time": { "value": 8 }, + "extruder_prime_pos_abs": { "default_value": true }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": "60" }, + "infill_angles": { "value": "[45,45,45,45,45,135,135,135,135,135]" }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 0 }, + "infill_pattern": { "value": "'zigzag'" }, + "infill_sparse_density": { "value": 20 }, + "infill_wipe_dist": { "value": 0 }, + "initial_layer_line_width_factor": { "value": 125 }, + "inset_direction": { "value": "'inside_out'" }, + "jerk_enabled": + { + "enabled": false, + "value": false + }, + "layer_height_0": { "value": "layer_height * 1.25" }, + "layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" }, + "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": "M107; Disable Fan; \n; End of print; \n; End GCode\nM104 S0 T0; Set Toolhead Temp to 0\nM140 S0 T0; Set Platform Temp to 0\nG162 Z F1800; Move to max axes position\nG28 X Y; Home\nM652; Turn off back fan\nM132 X Y Z A B; Set Home Position\nG91; Use Relative Positioning\nM18; Disable Axes\n\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "Griffin" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 150 }, + "machine_max_feedrate_x": { "default_value": 300 }, + "machine_max_feedrate_y": { "default_value": 300 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_min_cool_heat_time_window": { "value": "15" }, + "machine_name": { "default_value": "MakerBot Sketch" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, + "machine_start_gcode": { "default_value": "M140 S50 T0; Set Platform Temp\nM104 S220 T0; Set Extruder Temp\nG90; Use Absolute Positioning\nG28; Home\nM132 X Y Z A B; Set Current Position to Home\nG161 X Y F3300; Move to min axes positions\nM7 T0; Wait For Platform to Heat\nM6 T0; Wait For Extruders to Heat\nM651; Turn on back fan\nM907 X100 Y100 Z40 A80 B20; Set Stepper Currents\nM106; Enable Cooling Fan\n; Purge Line\nG92 E0; Reset Extruder Axis Position\nG1 X-26.18 Y-75.90 Z0.200 F420\nG1 X26.18 Y-75.90 E10\nG92 E0; Reset Extruder Axis Position\n; Start GCode\n" }, + "machine_width": { "default_value": 150 }, + "material_diameter": { "default_value": 1.75 }, + "material_flow": { "default_value": 100 }, + "min_bead_width": + { + "minimum_value": "line_width * 0.5", + "minimum_value_warning": "line_width * 0.75", + "value": "line_width" + }, + "min_wall_line_width": + { + "minimum_value": "line_width * 0.5", + "minimum_value_warning": "line_width * 0.75", + "value": "line_width" + }, + "multiple_mesh_overlap": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, + "prime_blob_enable": + { + "default_value": true, + "enabled": true, + "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" + }, + "raft_margin": { "value": "5" }, + "retract_at_layer_change": { "value": true }, + "retraction_amount": + { + "maximum_value": 6, + "maximum_value_warning": 5.75, + "value": 5.5 + }, + "retraction_combing": { "value": "'no_outer_surfaces'" }, + "retraction_min_travel": { "value": "2 * line_width" }, + "retraction_prime_speed": { "value": "15" }, + "retraction_speed": { "value": "25" }, + "roofing_material_flow": { "value": 100 }, + "skin_material_flow": { "value": 95 }, + "skin_material_flow_layer_0": { "value": 100 }, + "skirt_brim_line_width": { "value": 1 }, + "skirt_brim_speed": { "value": 15 }, + "skirt_height": { "value": 3 }, + "speed_print": { "value": 50 }, + "speed_roofing": { "value": "0.8 * speed_print" }, + "speed_support": { "value": "0.7 * speed_print" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "speed_roofing" }, + "speed_travel": { "value": 80 }, + "speed_wall": { "value": "0.5 * speed_print" }, + "speed_wall_0": { "value": "1 * speed_wall" }, + "speed_wall_x": { "value": "1 * speed_wall" }, + "speed_z_hop": { "value": 10 }, + "support_angle": { "value": "45" }, + "support_structure": { "value": "'tree'" }, + "top_bottom_thickness": { "value": "4 * layer_height" }, + "travel_avoid_distance": { "value": "machine_nozzle_tip_outer_diameter / 2 * 1.5" }, + "travel_avoid_supports": { "value": true }, + "wall_0_inset": { "value": "0" }, + "wall_0_material_flow_layer_0": { "value": "1 * material_flow" }, + "wall_thickness": { "value": "2 * machine_nozzle_size" }, + "wall_x_material_flow": { "value": "0.95 * material_flow" }, + "wall_x_material_flow_layer_0": { "value": "1 * material_flow" }, + "xy_offset": { "value": 0 }, + "xy_offset_layer_0": { "value": 0 }, + "z_seam_corner": { "value": "'z_seam_corner_any'" }, + "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_sketch_large.def.json b/resources/definitions/ultimaker_sketch_large.def.json new file mode 100644 index 0000000000..a0ed0c9365 --- /dev/null +++ b/resources/definitions/ultimaker_sketch_large.def.json @@ -0,0 +1,40 @@ +{ + "version": 2, + "name": "MakerBot Sketch Large", + "inherits": "ultimaker_sketch", + "metadata": + { + "visible": true, + "author": "Ultimaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot-sketch", + "platform": "ultimaker_sketch_large_platform.obj", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ultimaker_sketch_large_extruder" }, + "preferred_material": "ultimaker_pla_175", + "preferred_quality_type": "draft", + "preferred_variant_name": "0.4mm", + "reference_machine_id": "sketch_large", + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "weight": -1 + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "MakerBot Sketch Large" }, + "machine_width": { "default_value": 220 }, + "retraction_amount": + { + "maximum_value": 6.5, + "maximum_value_warning": 6.25, + "value": 6 + }, + "retraction_prime_speed": { "value": "retraction_speed * 0.8" }, + "speed_travel": { "value": 150 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_sketch_extruder.def.json b/resources/extruders/ultimaker_sketch_extruder.def.json new file mode 100644 index 0000000000..5f6c3054ac --- /dev/null +++ b/resources/extruders/ultimaker_sketch_extruder.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_sketch", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_sketch_large_extruder.def.json b/resources/extruders/ultimaker_sketch_large_extruder.def.json new file mode 100644 index 0000000000..946b047072 --- /dev/null +++ b/resources/extruders/ultimaker_sketch_large_extruder.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_sketch_large", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg index fc0708041a..580154b5d8 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg index 4d0e53deea..52e36174dd 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg index 919e49294e..60efd01b84 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg index 30e95a48d9..9ca9bbf46b 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg index b2351a8a80..5e54a0b316 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg index a52ff65580..0eda16706d 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg index 07d62c2915..a563f070a1 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg index 4f0fbf74a2..fafb308011 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg index 39becd3cd0..ef0f9bd004 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg index 3c4df2d111..891072f0f5 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg index f3eba51e98..72cbccde00 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg index 4e3ca82795..a50e211f36 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg index 20dcc02fdf..1b589fe17d 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg index c7470b8c25..3837bd3496 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg index c7470b8c25..3837bd3496 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg index 130b5d2a27..b384ef2819 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg index 8ced281396..25645e4951 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg index 514973ccef..bce9b19ff0 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg index c9366697a8..695bd87242 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg index a7fef7976d..4022afbfad 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg index 56b2e6ff8d..84bf6f4d70 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg index 57e8f521da..4d35d95565 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg index 382b2e8af3..6b9bb4fda1 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg index 5cb4664213..337501623b 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg index f1035271b0..b78e43bcc7 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg index 2f92c3ccef..0d06bb4094 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg index ffb00077c7..cabb021b79 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 24 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg index 4afa610eb1..3f35c729eb 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg index bceefcec97..9c989e3594 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg index b3dd716c0f..5bfdf4d2f8 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg index 3d95d1b19d..2013661449 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg index e87daed110..d0d94f6b8f 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 24 type = intent variant = FBE 0.40mm diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg index 4df23b911b..dfa9de14f3 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg index 1a5695f490..ef77a62f40 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg index 4bb742ae0e..5e08366a7e 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg index 349dbc5919..ba53948a25 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg index 21241f2bb4..78e3c177ec 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg index 578fba233f..f922423bca 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg index f00efd1355..263e413f7d 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg index 081446828b..e455fd16fe 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg index 60f6c9965a..6f9b9ddb4d 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg index 86b1b505f7..354dad0207 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg index c2bbab0d5d..9dd50972c1 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg index 48452cc240..d265bffb27 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg index 19f3592c4a..78795977af 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg index 195edc6b3c..5042ca986f 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg index a16e673072..ef362f8efd 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg index 8b63f5bc66..9a15158942 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg index 6904c4079f..4ad2bd0633 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg index d0487bfe7a..c566922702 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg index 8ebe0c0c46..25e64685d5 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg index 19c41a3388..2ad803350d 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg index c66d224a1f..5103d69afa 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg index 02acaefd55..27292e0758 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg index 4997ebbad3..594bfe2b37 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg index 5c4b525c15..b3e9d3482b 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg index a5070b131b..fb91cb42c6 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg index 8620632bed..52741b7faf 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg index a8ceaaf218..270aaf2859 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg index f769152ea4..a3ea14582e 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg index c26d8e408e..f87af0d51d 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg index 85e6aaec5e..219e43bb43 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg index 9f916946d7..0d3960fcfe 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg index ed8001b296..9eca560b80 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg index 4dc720417a..120643ddc5 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg index 9f2b7ab77d..8ed8081042 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg index b05a492e39..606255253e 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg index 4bd00759a3..2294201b03 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg index cf65345e34..4a26956aa3 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg index f46cb21d87..3bf1e1c07c 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg index ecf1b624c0..5424e7db65 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = VO 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm_visual.inst.cfg index b2d41796b3..cac74c4bda 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.25 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm_visual.inst.cfg index f568a9271a..b96c4c6195 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.25 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg index 1df3c3fc40..5b6cf95657 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.25 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg index f362a6bb1b..38f2ff9cc2 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg index ae936e8e4a..3c8ab6e363 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg index c841c9be5c..b89c42da27 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg index a2b530b691..5f7132ff6d 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg index 4d19a1d9ac..a939ac1492 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg index 4c7f43f235..4e3ee4a4e1 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm_visual.inst.cfg index 873a03fd2c..905710c79c 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg index 26a2635187..c142b0f757 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_quick.inst.cfg index a328c13970..c16a361d8c 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm_quick.inst.cfg index 547fcdea7f..7e20030fff 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm_visual.inst.cfg index de1399a910..9f31e0c054 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg index 95ff756d29..fa153a9d02 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_quick.inst.cfg index b0e88ae260..1845c2a6d2 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm_quick.inst.cfg index ffd5d39cc2..75fddc8b5c 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg index 04efc12fb6..03ac0fc345 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg index 0aa1fc3d6d..45a8e6659d 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 2aa9458458..61a14bb07c 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg index ad3f5c5657..d442cca572 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg index c564c85c88..4797bcb690 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg index 848304f64c..641a074373 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg index 3700b586ab..3b3c612bef 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm_quick.inst.cfg index 05532266d7..69508ba994 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg index 0ef5547a5a..3fd2710322 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm_quick.inst.cfg index 0e5d4b3d26..8e8b78d2f2 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg index 324faf3f1d..d3478f659c 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg index cdd1dff22e..67c8cf23a2 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm_engineering.inst.cfg index a29540bbeb..8899c7da8b 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg index 217ff0c6f6..81e897edb1 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm_engineering.inst.cfg index 01ea70dd38..c053678562 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg index 02189eec47..ab9535b6e1 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg index 6664e7fe74..30ec0b4fc7 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg index 156f50241c..3ce19c5a55 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm_engineering.inst.cfg index 98087f4712..d97f3c7a24 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg index 439e6eb3f1..62df8223b2 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm_engineering.inst.cfg index ffe4988764..6c0d39477f 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg index 161ff37ea1..b49c133d7d 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg index 3975917d3e..fc278f86ca 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg index 4ad4e42fb1..7314e1c799 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg index daa39ff833..8b1f575916 100644 --- a/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_cffpps quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = HT 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg index 615ef5e91c..b314bbdbfb 100644 --- a/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cffpps quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = HT 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg index a9f35bdb61..da2e8359c0 100644 --- a/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = HT 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg index c4f6ec3fe0..7c6158c4f8 100644 --- a/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = HT 0.6 diff --git a/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_solid.inst.cfg index fdfbe77c33..e1d4ad02a5 100644 --- a/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1A diff --git a/resources/intent/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 231cf74ea3..9ecf58a3c2 100644 --- a/resources/intent/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_solid.inst.cfg index 87cc96fb5a..2adef7e593 100644 --- a/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 4a05977a4e..f1d68754c7 100644 --- a/resources/intent/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_solid.inst.cfg index 6c9d832805..97e3b0c0b3 100644 --- a/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_solid.inst.cfg index 2087c38cba..9d5ba826bb 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1A diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg index 697aa8842e..94d48e0476 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg index 8826f7e7d4..1b321ab03b 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg index 66464f600e..75630702dd 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 021e1de2e1..ddde217a41 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_solid.inst.cfg index 330811df73..74e02e7f3e 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg index c426a99499..ed8336ec2f 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg index c9f5024258..ad55d52e36 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg index 3d8106d85e..116f0b5ff0 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg index ec07c4b98a..d2e9110889 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg index 6dbbce3d78..cf33af2158 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 224e85f1af..265d786560 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_solid.inst.cfg index 2a672307bb..3aefa15f44 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_solid.inst.cfg index 52b091486e..d7ac8555b0 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1A diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg index 5714a796b3..70b4f81fd5 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg index 603a19fa4f..e1e12cdd45 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg index 6e5f8557c5..81972f0d64 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 0440ceb055..cfcef4f175 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_solid.inst.cfg index ce45abad85..5d799abc00 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg index 470f5547c1..4b628c48d3 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg index 4d8abac231..084b804509 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg index 21e54ab083..9c7ccc2bc4 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg index f1058ebdeb..e7fab47315 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg index 984fa20ae1..27480e109b 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 4fa2252da3..ae117095ba 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_solid.inst.cfg index d5ea2ac7f0..0f7add07da 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = LABS diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg index 834327a3e5..89137be356 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg index 4ae011e692..36bff4fd6e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg index cf2194fac1..69e1e14ea9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg index 546d21fe4b..5c65bf579c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg index 6f7e474d51..8f213f363d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg index e73af4a87e..a26ac6738b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index b190eefc57..60d984a3de 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 54e2e78789..69c9f9b5e0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg index 6956d40573..0a9a1b1806 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg index 599affff45..de9ca6e2e3 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg index e8cee0ef32..f30d681c69 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg index 87bf4f93d2..fac8c734b1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg index 7120a9d6b7..3cd84a9d83 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg index 83ad4584de..0610f4ab50 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg index b32d9fc149..1cbb4edd9b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg index 9ea1d2b08f..bb0f993b6a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg index baac9c79b2..e0d6abfa16 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg index deaf4b77e6..9a23a8260d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg index 3219214dfc..e224b34235 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg index 4714e516c7..9838e4ea5a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg index 2cf936b59c..8f7b4ad1e4 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg index a521f1f019..fb7e564f30 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg index 634efc45e5..89c500e6bc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg index 7c30e50c27..7945859fee 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index a75aa86806..f8ac1a2d27 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg index b6b0e3f0f0..af1a07f9cc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index 0be0b9d398..9f61e8ec2b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg index b8c340f86a..ad329d3f5a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 377b5d122c..c81bbe4a24 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg index 66b03e33b6..0fce33e36b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg index 1e753b709f..8c0badbf56 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg index 8c7c905efc..bc25915fc0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg index 1a0270a2d6..cd96ec6ce0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg index e48adbd359..144c2fb0e8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg index 772f5f3b5f..8ef4fbe0e1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg index feb3ed912c..b6669bb23c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg index 93ed657adc..2663f014db 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg index 8db25985f2..192b6340f3 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg index 9b411e9537..1cd906a673 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg index cd3723ae12..ecb4b40ac7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg index f56a12ccd5..133dda7f41 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg index d1bd9c3d19..27c06d8fd0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg index b3122bb558..f0425d1a0e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg index b4b831828e..eeb06cf947 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg index 9092ec0763..cdbf69fac1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg index fa7ae3769d..079153eece 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg index 8e081833b8..6f83f81dc5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg index e947a85a49..4417e4d7a7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg index a52c5e9ab2..08b342660c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg index e56f5b3654..2449a17775 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg index 1400f9be38..bc2e050f25 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg index e77d171c1f..edf12a1f1b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg index 4d47697a81..d79efa594c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg index 1f63abd0a0..e4d61e12d3 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg index 0a7bf91f91..44b1c4865d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg index 054bbe216c..a5820bf2ab 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg index 837caa6364..b553609009 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index 59057404ba..56c774b99a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index 07d71edeca..45fc3724f6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 831e3f9153..6c03ba1306 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 2287978d4b..0b4e7636c0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index c73cc61b0a..6aa9d38406 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index 717ba0f470..8c29ac3d76 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index 1d9571d438..83c43d0b8b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 32fbfb238d..e02b1fa94e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 1c49a0c6a1..60d817405b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg index 44970d9291..596404c54a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg index 399f738a59..df09d460c9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg index ae2fe0a914..b7b95d1eb0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg index 4e1f306768..ba3cf63659 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg index 2cb242399d..14c3c2529e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg index 15b362e1fe..440b6d3b6a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg index d1a15b77a9..2a5cd24d85 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg index 73628b8b81..4c4a68d202 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg index f8c47b7ebf..6a283179df 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg index 795ce12794..e595025eb0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 06d1c6a428..13d77004f2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg index b0372a8323..1d1502bf0a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg index 74dc24a600..dc3f2b265d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg index 8c08d82b9a..40ae34579f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg index f7f666afe5..58d27bc6a7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index c3f5932ea7..30340e7367 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index adf505c728..1a58b49957 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index 8bbc9fc4c4..4ce162769c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index 22c8e4c446..51817e4402 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 897d30978d..f4f460de05 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg index c07b72ee47..e62ffaee4f 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg index a213579793..0c4890512f 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg index e19ed4a7b1..04eb77f82d 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg index 3ee351e6d8..1870f3a1be 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg index 05c22d3323..8a4f31e0cd 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg index 51a584d038..cd32049c9f 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg index 3c2efc99eb..dca14aafb4 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg index f7c9f26617..0befe9aaea 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg index cf0fd4fa07..824b8f2787 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg index e4195e37a3..0ce8b465b5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg index f35180432f..bed38833dc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg index f3da8e539c..5d22653c62 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg index 91df4ccb07..342b05dda5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg index e69b9dd030..1594e947cb 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index e5a59502a5..fcd532e217 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 78b888abb0..20eb38203f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg index 682bfe2f97..b8c2820418 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg index ab8338bc9e..e5f24f7231 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg index 825220e353..9b6451b5c1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg index 727fdc935b..b82d10ba9e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg index 2f21d6eff9..273e24fa58 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg index 6c29211dc0..e610046827 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg index 5bd7bea421..09bd06464b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg index 64e81fbf1d..25e0d23851 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg index bfd2ce1497..895f6e30f4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg index e32dbabeb6..d9063e4199 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg index 93cced34ee..bfae8d5af1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg index a3197dd697..e0b552b8c2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg index b72390abec..19e2321535 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg index 2352570231..b868c2a93d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg index 571a3aa68f..21b9202442 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg index 8d426384a9..9da3f1b980 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index a7cbafcc0e..4c8188f636 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg index bcf0a4fad4..bca17929a9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index af9c92d891..aed77085bf 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg index 425e08958a..8605a01a69 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 9ea2f46ec1..b06acbe837 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg index fc200dd76c..78177e8769 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg index a9d3028429..53802a4fcc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg index 0d11537558..2016f28662 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg index a42fa7db7e..49f91f2210 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg index 487726e73d..eaf0940114 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg index be663c0a78..4e9ab756eb 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg index dd4a05a622..18ea8008f4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg index b1dec2d9b2..4d669f82bd 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg index a58d62fdca..a8cd33be69 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg index aa304b9e23..9fc2b62c42 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg index fe7a8eb0fa..4a93052236 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg index 1f708d6b2a..33e8fdc5f2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg index 996c9e853b..21ccaab5e0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 1008436a4a..4c02b4a5a6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg index 7ca248bf43..fcbabc865f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg index 15391221cc..c96154609b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg index 50acde656a..58bd2fa8e3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg index 16d7ecc5f6..0fffca9110 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg index 100fcabd0d..c4e35dafae 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg index 52ee35cb85..a91a4fa48e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg index a2d2a11274..6a3cbccd8e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg index 7378ebd4ae..5d59bfbe35 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 4c267c3244..c0dc34897f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg index 34206cde02..dd3f50c030 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg index ccdc99233e..6a34b4c6d0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg index bc059f536a..4f688d4bf2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg index e0511a9319..509d0a9379 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg index 304f30ec9e..4bf59e3dc1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index e48171a12a..9bae795569 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index b4dc0b021d..a960688bf8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 4dd1ad681b..69f320e941 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 8bc5205951..3c41bd93e3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index c609823cae..2b64eac966 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index 43ef55f44b..45c9dd1171 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index 1c74429109..a66ec949a4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 4a297b1c60..d0e0592722 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 7a50c54724..e317847e1d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg index 073a1be60c..2fe9361371 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg index 57bdd71b43..c94f5b62a5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg index 53c272de4b..b3f445da3c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg index 701ebfa4fe..7248f31b92 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg index 2eb8cd1942..e9795435e2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg index 75d640e177..eda6af353f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg index 47f946a89d..de1c0801c1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg index a8b446cd3d..f13628a543 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg index 801adab4aa..fe28b9115c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg index 7922fbfb7c..79e96e6f72 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 5ae6042076..150dd7b3d6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg index f327ff9fb8..2272bcd6a7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg index 95302a6578..2374d2283b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg index 26e9837df4..6f0e9c2dbb 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg index 099a265920..27372d3323 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index c0966adb2a..3a65f66921 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index 58b78defb4..8a56166927 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index 1ea845e0b9..7bde7c0e63 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index 54ee602bdd..74ce5d2b39 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 5324df80b5..7343e41805 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg index f4a6913edc..6274b9a737 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg index ba99c57749..2e3b1111ac 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg index e6b4075cd8..24c22fd0a5 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg index 10127fb3fc..88ed83f835 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg index 48b90a7c69..1c4fdad405 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg index 877143419b..3aa44ce011 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg index ad94617c15..fc838c7e22 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg index 6bc6a2725e..20016436cc 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = intent variant = CC 0.6 diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index d22f44e19e..46f881b0bc 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q010 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index d7e03a5348..d912cebb15 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index e663e68a4c..e2bd8b5cc7 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 0d854c132e..3fc5a31354 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg index a297d02799..2b044ddbde 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 047208076f..65534fc89a 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg index 9c58a24882..9188eae725 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg index f008edb43d..ea1f68cd6e 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q030 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 658b6ac44b..268b6f2913 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q010 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 19c36c46e8..c754fc015c 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 44284f4642..35a58d1346 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 6d208856f2..6fe43f1ad5 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg index f967de3d14..51888c1f29 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index c838f0874d..067614e760 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg index fc18580ee5..0e3a702ddf 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg index bd7f577015..72a7099095 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q030 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index a93308863b..58ed763241 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q010 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 65253671d6..05b1a69af0 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 8ceb763be8..5025fbd442 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index d73f209556..913ef30f51 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg index c3e9e2aba3..3ec4a524b1 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index d885c8a731..c3d22bca8b 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg index 9a7d9be488..4028acf0e4 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg index 0165ae7ad8..9cc9d75392 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q030 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 162e4441a3..ad4ed300ce 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 07719831a3..13b9fe90dd 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 93e329110e..436987e834 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index a3f1130928..18c43a04bf 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg index 18f7ee286c..b0bacfd0fb 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 1c1c9aa789..062bf628f3 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg index a853d12a34..db2d5c1ab0 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg index 9414a12447..f8eab37da2 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 3b8ddec810..61611f812c 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 14100af127..3cb1ceadfb 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 54aec6ef6f..88d50959ab 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index ce797bd5a3..87370290b4 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg index 8429f26ad5..6fa87d8210 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 8db18e5445..f4190f272a 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg index 5b83e0f77b..7e67425fe4 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg index 1ca0f4c2a7..f957f4eb70 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 33d6a1c897..1067eecf96 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 8de74ecd6c..85feb7202f 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 411b4d5b39..f9cb9bdeee 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 2bc167470c..21dae78e12 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg index 3eea60ab40..06aa7111df 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index ae86f86f11..993b9787f0 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg index 4fed70ca47..37589bfcfb 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg index 3261669acd..d4ced27085 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/meshes/ultimaker_sketch_large_platform.obj b/resources/meshes/ultimaker_sketch_large_platform.obj new file mode 100644 index 0000000000..e30fe8eecb --- /dev/null +++ b/resources/meshes/ultimaker_sketch_large_platform.obj @@ -0,0 +1,17214 @@ +# Exported from 3D Builder +o Object.1 +v 146.088806 62.686275 -0.500576 +v 146.557404 62.611229 -2.450565 +v 145.583191 62.604431 -2.450565 +v 151.477692 -52.996147 0.499562 +v 147.288788 -52.996147 0.499562 +v 151.495209 -52.996147 -0.500438 +v 147.425797 -0.702209 -2.450489 +v 146.707397 -1.409210 -2.450489 +v 146.552795 -0.387909 -2.450489 +v 147.288788 62.408684 -0.500576 +v 147.438095 62.290691 -2.450565 +v 145.258301 -41.396156 0.499546 +v 146.088806 -41.396156 0.499546 +v 142.924942 -41.396156 -0.500454 +v 148.195404 61.721394 0.499424 +v 148.156006 61.688290 -2.450565 +v 147.288788 62.428093 0.499424 +v 152.371597 -79.942924 2.054089 +v 152.290802 -80.502419 -4.750401 +v 153.095093 -79.698128 -4.750401 +v 143.803589 -4.556305 -0.123889 +v 142.924942 -17.796188 -0.500476 +v 142.924942 -3.696205 -0.500499 +v 148.624603 60.876671 -2.450565 +v 147.288788 13.003777 0.499485 +v 151.477692 13.003777 0.499485 +v 151.495209 13.003777 -0.500515 +v 151.261688 -80.986717 -4.750392 +v 150.793198 -80.707207 2.196591 +v 145.936798 -80.866112 -4.750401 +v 148.760895 60.603725 0.499424 +v 148.742889 60.603725 -0.500576 +v 148.787292 59.953720 -2.450565 +v 145.760895 -1.327209 -2.450489 +v 144.036896 -1.293709 -2.450489 +v 144.751801 -0.702209 -2.450489 +v 148.613098 -4.000107 -2.450489 +v 148.140808 -4.798706 -2.450481 +v 147.225296 -4.376900 -2.450481 +v 147.812805 -3.347107 0.249501 +v 147.225296 -4.376900 0.249508 +v 146.979599 -1.539909 0.249501 +v 148.742889 59.303726 -0.500568 +v 148.624603 59.030785 -2.450557 +v 148.140808 -1.293709 -2.450489 +v 147.288788 -52.996147 -0.500438 +v 148.195404 58.186069 0.499432 +v 148.156006 58.219154 -2.450557 +v 148.760895 59.303726 0.499432 +v 144.740402 -1.930710 -2.450489 +v 153.435196 -78.132820 0.692593 +v 153.134491 -79.071724 1.372792 +v 153.579407 -78.668938 -4.750401 +v 147.438095 57.616745 -2.450557 +v 147.288788 13.003777 -0.500515 +v 146.239807 -80.677299 2.116795 +v 147.288788 57.479359 0.499432 +v 147.288788 57.498779 -0.500568 +v 146.557404 57.296215 -2.450557 +v 146.088806 -4.796204 -2.450481 +v 146.088806 -4.796204 0.249508 +v 146.088806 57.221188 -0.500568 +v 147.608902 -2.179214 0.249501 +v 147.608902 -2.179214 -2.450489 +v 145.583191 57.303013 -2.450557 +v 147.288788 -51.696144 0.499562 +v 151.477692 -51.696144 0.499562 +v 151.495209 -51.696144 -0.500438 +v 143.564499 -2.092308 -2.450489 +v 141.438568 68.729523 0.736515 +v 142.098541 69.307228 0.923619 +v 141.374634 68.784225 -0.500583 +v 151.495209 -66.696129 -0.500423 +v 148.760895 -66.696129 0.499577 +v 148.742889 -66.696129 -0.500423 +v 144.024994 -1.242714 -0.029003 +v 151.477692 -66.696129 0.499577 +v 146.392700 61.677143 0.549427 +v 145.490295 61.598183 0.549427 +v 146.392700 61.677139 -2.450565 +v 144.432800 -5.233902 0.145710 +v 145.213806 61.469261 -2.450565 +v 153.134491 72.979324 1.372609 +v 153.435196 72.040329 0.692517 +v 153.381805 73.112106 -4.750584 +v 152.226700 73.855164 2.149212 +v 152.727798 74.042671 -4.750584 +v 148.760895 -65.396141 0.499577 +v 151.495209 -65.396141 -0.500423 +v 148.742889 -65.396141 -0.500423 +v 151.477692 -65.396141 0.499577 +v 146.088806 -52.996147 0.499562 +v 145.258301 -52.996147 0.499562 +v 146.088806 -52.996147 -0.500438 +v 146.963806 61.469265 0.549427 +v 147.429398 61.078602 -2.450565 +v 148.786987 -3.088600 -2.450489 +v 147.812805 -3.347107 -2.450489 +v 144.573303 60.828724 0.549427 +v 147.604401 60.828724 0.549427 +v 145.197998 -4.552505 -2.450481 +v 144.751801 -5.390205 -2.450481 +v 144.740402 -4.161705 -2.450481 +v 151.477692 -3.696205 0.499501 +v 148.760895 -3.696205 0.499501 +v 148.742889 -3.696205 -0.500499 +v 151.778000 73.359283 -4.750584 +v 151.797195 74.696701 -4.750584 +v 151.495209 -3.696205 -0.500499 +v 144.444305 60.552261 -2.450565 +v 145.648407 -76.735924 2.299595 +v 151.806488 -80.238213 2.258290 +v 145.606689 70.664833 2.295720 +v 143.390594 -3.088600 -2.450489 +v 144.338806 -3.046204 -2.450489 +v 147.838806 59.953720 -2.450565 +v 148.760895 -2.396210 0.499501 +v 151.495209 -2.396210 -0.500499 +v 148.742889 -2.396210 -0.500499 +v 147.288788 11.703773 0.499485 +v 147.288788 -0.571808 0.499501 +v 147.288788 11.703773 -0.500515 +v 147.812195 59.649834 0.549435 +v 147.288788 25.003761 0.499470 +v 147.288788 25.003761 -0.500530 +v 141.917877 69.322372 -0.500583 +v 144.365402 59.649834 0.549435 +v 151.477692 -2.396210 0.499501 +v 144.036896 -4.798706 -2.450481 +v 152.260498 72.784302 -4.750584 +v 142.101151 69.388474 -0.500583 +v 147.288788 -51.696144 -0.500438 +v 151.477692 25.003761 0.499470 +v 151.495209 25.003761 -0.500530 +v 146.088806 -63.313637 -0.500423 +v 146.594498 -63.395454 -2.450412 +v 145.583191 -63.395454 -2.450412 +v 145.258301 -5.667801 0.499508 +v 145.258301 -17.796188 0.499524 +v 147.288788 -63.591133 -0.500423 +v 147.462494 -63.723457 -2.450412 +v 147.288788 -42.696144 -0.500446 +v 147.288788 -63.571739 0.499577 +v 148.207703 -64.293236 0.499577 +v 148.167999 -64.326057 -2.450412 +v 148.627808 -65.132057 -2.450412 +v 145.760895 -1.327209 0.249501 +v 148.787292 -66.046150 -2.450412 +v 148.613098 -2.092308 -2.450489 +v 146.389709 -64.322151 -2.450412 +v 145.221802 -64.526054 -2.450412 +v 148.627808 -66.960228 -2.450412 +v 147.288788 26.303757 0.499470 +v 151.477692 26.303757 0.499470 +v 151.495209 26.303757 -0.500530 +v 148.207703 -67.799019 0.499577 +v 148.167999 -67.766228 -2.450412 +v 145.854202 -80.221321 2.199292 +v 145.554993 -77.852119 -0.500408 +v 145.566589 -78.902519 -0.500408 +v 147.462494 -68.368828 -2.450405 +v 147.288788 26.303757 -0.500530 +v 145.465607 -79.892738 -2.900402 +v 147.288788 -68.520515 0.499585 +v 147.288788 -68.501015 -0.500415 +v 146.594498 -68.696831 -2.450405 +v 145.461792 -78.944435 -2.900402 +v 146.088806 -68.778618 -0.500415 +v 143.656006 -75.315819 1.758595 +v 142.089478 -75.381721 0.954190 +v 144.070496 -75.756325 -0.500408 +v 145.583191 -68.696831 -2.450405 +v 141.370148 -74.867012 -0.500408 +v 141.552917 -75.029823 0.756390 +v 141.266556 25.653755 -0.500530 +v 144.363007 69.685516 1.911717 +v 143.392090 69.457703 -0.500583 +v 145.258301 -51.696144 0.499562 +v 142.924942 -51.696144 -0.500438 +v 142.924942 -42.696144 -0.500446 +v 141.740143 -75.311913 -0.500408 +v 146.088806 -75.568321 0.499592 +v 145.258301 -74.802223 0.499592 +v 146.088806 -68.796120 0.499585 +v 145.258301 -68.667717 0.499585 +v 151.736496 73.309799 -2.900585 +v 151.105896 73.673866 -2.900585 +v 151.127991 73.734573 -4.750584 +v 145.624908 -0.387909 -2.450489 +v 144.715195 -63.723457 -2.450412 +v 143.564499 -4.000107 -2.450489 +v 143.430801 -3.696205 -0.283702 +v 147.425797 -5.390205 -2.450481 +v 148.179901 -1.260208 0.499501 +v 147.288788 -42.696144 0.499554 +v 147.288788 35.303749 0.499455 +v 148.179901 -4.832207 0.499508 +v 147.288788 35.303749 -0.500545 +v 151.477692 -42.696144 0.499554 +v 151.495209 -42.696144 -0.500446 +v 151.477692 35.303749 0.499455 +v 151.495209 35.303749 -0.500545 +v 147.288788 36.603745 0.499455 +v 151.477692 36.603745 0.499455 +v 151.495209 36.603745 -0.500545 +v 144.715195 -68.368828 -2.450405 +v 147.288788 36.603745 -0.500545 +v 147.288788 -5.520607 0.499508 +v 145.624908 -5.704506 -2.450481 +v 147.288788 -5.501205 -0.500492 +v 146.552795 -5.704506 -2.450481 +v 144.009598 -67.766228 -2.450412 +v 145.258301 11.703773 0.499485 +v 145.258301 -0.424614 0.499501 +v 142.924942 11.703773 -0.500515 +v 147.288788 -0.591209 -0.500499 +v 146.088806 -5.778702 -0.500492 +v 143.803589 -67.556221 -0.123821 +v 147.288788 45.603745 0.499447 +v 147.419495 -64.909645 -2.450412 +v 143.549805 -66.960228 -2.450412 +v 143.430801 -2.396210 -0.283702 +v 152.359009 -78.513237 -2.900402 +v 152.453598 72.067780 -2.900577 +v 152.517197 72.078995 -4.750576 +v 146.088806 -5.796204 0.499508 +v 143.430801 -66.696129 -0.283626 +v 146.389709 -64.322136 0.549580 +v 145.496002 -64.399635 0.549580 +v 147.419495 -64.909630 0.549580 +v 142.924942 -52.996147 -0.500438 +v 143.390289 -66.046150 -2.450412 +v 144.788788 69.722549 2.221020 +v 144.994797 -76.285622 2.084393 +v 144.758087 -64.909645 -2.450412 +v 146.088806 -17.796188 0.499524 +v 146.088806 -17.796188 -0.500476 +v 143.430801 -65.396141 -0.283626 +v 147.288788 -41.396156 0.499546 +v 151.477692 -41.396156 0.499546 +v 151.495209 -41.396156 -0.500454 +v 143.549805 -65.132057 -2.450412 +v 144.582489 -65.155342 0.549580 +v 144.369797 -65.718254 -2.450412 +v 147.807800 -65.718254 -2.450412 +v 147.807800 -65.718239 0.549580 +v 150.799988 74.663750 2.117810 +v 146.034897 74.836304 -4.750584 +v 150.764099 -79.924538 -4.750401 +v 150.752899 -79.860832 -2.900402 +v 151.469391 -79.667839 -4.750401 +v 144.024994 -64.242638 -0.028926 +v 144.338989 -66.073631 0.549580 +v 144.009598 -64.326057 -2.450412 +v 145.258301 -63.424538 0.499577 +v 151.495209 11.703773 -0.500515 +v 151.477692 11.703773 0.499485 +v 147.288788 45.603745 -0.500553 +v 151.477692 45.603745 0.499447 +v 151.495209 45.603745 -0.500553 +v 146.088806 -63.296135 0.499577 +v 145.197998 -4.552505 0.249508 +v 144.740402 -1.930710 0.249501 +v 151.994904 -79.143837 -2.900402 +v 152.419708 -78.535332 -4.750401 +v 146.088806 -0.313713 -0.500499 +v 153.681900 72.014999 -4.750576 +v 152.044403 -79.185341 -4.750401 +v 145.221802 -67.566216 0.549580 +v 146.389709 -67.770012 0.549580 +v 146.389709 -67.770027 -2.450412 +v 147.288788 -17.796188 0.499524 +v 147.288788 -17.796188 -0.500476 +v 144.451797 -66.664742 0.549580 +v 144.338806 -3.046204 0.249501 +v 144.740402 -4.161705 0.249508 +v 145.074295 70.488548 -0.500583 +v 145.440399 71.207138 -0.500583 +v 145.958588 74.234230 2.231808 +v 146.560898 74.511490 2.280407 +v 147.288788 -41.396156 -0.500454 +v 145.390991 -79.957329 -4.750401 +v 145.258301 -42.696144 0.499554 +v 146.088806 62.703724 0.499424 +v 144.715195 62.276440 -2.450565 +v 145.258301 62.575314 0.499424 +v 151.437103 -79.611839 -2.900402 +v 146.088806 -31.096169 0.499539 +v 145.258301 -31.096169 0.499539 +v 146.088806 -19.096191 0.499524 +v 145.258301 -19.096191 0.499524 +v 144.009598 61.673809 -2.450565 +v 144.432800 62.141445 0.145627 +v 146.088806 -42.696144 0.499554 +v 146.088806 -51.696144 0.499562 +v 143.549805 60.867809 -2.450565 +v 143.803589 61.463863 -0.123973 +v 146.088806 -32.396172 0.499539 +v 145.258301 -32.396172 0.499539 +v 143.430801 60.603725 -0.283779 +v 145.221802 -67.566231 -2.450412 +v 143.390289 59.953720 -2.450565 +v 146.088806 26.303757 0.499470 +v 145.258301 26.303757 0.499470 +v 146.088806 35.303749 0.499455 +v 143.430801 59.303726 -0.283771 +v 143.549805 59.039635 -2.450557 +v 145.258301 35.303749 0.499455 +v 146.088806 36.603745 0.499455 +v 145.258301 36.603745 0.499455 +v 146.088806 45.603745 0.499447 +v 151.495209 -17.796188 -0.500476 +v 143.763306 58.506927 -0.141269 +v 150.588196 -78.926933 -2.900402 +v 144.009598 58.233635 -2.450557 +v 145.258301 45.603745 0.499447 +v 146.088806 13.003777 0.499485 +v 145.258301 13.003777 0.499485 +v 146.088806 25.003761 0.499470 +v 145.258301 25.003761 0.499470 +v 144.715195 57.631004 -2.450557 +v 145.258301 57.332138 0.499432 +v 151.477692 -17.796188 0.499524 +v 146.088806 46.903740 0.499447 +v 146.045593 57.204067 0.499432 +v 152.204498 72.752007 -2.900585 +v 151.477692 -19.096191 0.499524 +v 147.288788 -19.096191 0.499524 +v 147.288788 -19.096191 -0.500476 +v 147.288788 -32.396172 -0.500461 +v 147.288788 -32.396172 0.499539 +v 151.495209 -19.096191 -0.500476 +v 146.088806 46.903740 -0.500553 +v 151.477692 -32.396172 0.499539 +v 151.495209 -32.396172 -0.500461 +v 145.318298 -76.992424 -0.500408 +v 142.924942 68.003716 -0.500583 +v 147.725800 -66.664742 0.549580 +v 146.955902 -67.566216 0.549580 +v 142.924942 60.603725 -0.500576 +v 146.955902 -67.566231 -2.450412 +v 144.153503 68.177025 0.025914 +v 147.288788 -31.096169 0.499539 +v 144.451797 -66.664757 -2.450412 +v 147.288788 -31.096169 -0.500461 +v 147.213699 58.613148 0.549435 +v 146.088806 58.203728 0.549435 +v 146.088806 -31.096169 -0.500461 +v 151.495209 -31.096169 -0.500461 +v 145.465607 73.800308 -2.900585 +v 145.390991 73.864899 -4.750584 +v 145.258301 68.709854 0.499417 +v 151.088806 72.537880 0.499417 +v 147.288788 72.792641 0.499409 +v 151.331787 72.248184 0.499417 +v 144.963898 58.613148 0.549435 +v 144.802902 -76.264824 -0.500408 +v 151.477692 60.603725 0.499424 +v 151.477692 -31.096169 0.499539 +v 151.495209 60.603725 -0.500576 +v 146.088806 -19.096191 -0.500476 +v 142.924942 -31.096169 -0.500461 +v 151.495209 59.303726 -0.500568 +v 144.444305 59.355194 -2.450557 +v 147.429398 58.828846 -2.450557 +v 145.461792 72.851990 -2.900585 +v 145.566589 72.810097 -0.500591 +v 145.213806 58.438175 -2.450557 +v 146.392700 58.230305 -2.450557 +v 147.288788 -78.885017 0.499592 +v 147.288788 -78.902519 -0.500408 +v 150.577896 -78.868523 0.499592 +v 151.477692 46.903740 0.499447 +v 151.477692 59.303726 0.499432 +v 147.288788 46.903740 0.499447 +v 142.924942 59.303726 -0.500568 +v 142.924942 46.903740 -0.500553 +v 146.088806 -75.568321 -0.500408 +v 145.258301 46.903740 0.499447 +v 146.088806 -0.296211 0.499501 +v 146.088806 69.475876 0.499417 +v 145.217987 68.682510 -0.500583 +v 146.088806 69.475876 -0.500583 +v 144.153992 68.177177 -0.500583 +v 145.217987 -74.774925 -0.500408 +v 147.288788 72.810097 -0.500591 +v 151.222992 -78.496117 0.499592 +v 144.503998 69.918274 -0.500583 +v 142.924942 -19.096191 -0.500476 +v 146.088806 -32.396172 -0.500461 +v 147.725800 -66.664757 -2.450412 +v 142.988800 -74.096123 -0.473018 +v 144.153992 -74.269615 -0.500415 +v 142.095749 35.953751 -0.500545 +v 146.088806 11.703773 0.499485 +v 146.088806 11.703773 -0.500515 +v 146.088806 -41.396156 -0.500454 +v 147.288788 46.903740 -0.500553 +v 146.088806 45.603745 -0.500553 +v 142.924942 45.603745 -0.500553 +v 151.495209 46.903740 -0.500553 +v 142.924942 36.603745 -0.500545 +v 146.088806 36.603745 -0.500545 +v 142.095749 25.653755 -0.500530 +v 151.126892 -78.675728 -2.900402 +v 142.924942 35.303749 -0.500545 +v 146.088806 35.303749 -0.500545 +v 142.924942 26.303757 -0.500530 +v 146.088806 26.303757 -0.500530 +v 150.962891 72.698151 -2.900585 +v 142.095749 -3.046204 -0.500499 +v 146.088806 25.003761 -0.500530 +v 142.924942 25.003761 -0.500530 +v 142.924942 13.003777 -0.500515 +v 146.088806 13.003777 -0.500515 +v 151.383209 -78.370232 -2.900402 +v 142.095749 -31.746162 -0.500461 +v 142.095749 -42.046150 -0.500454 +v 142.924942 -32.396172 -0.500461 +v 146.088806 -42.696144 -0.500446 +v 146.088806 -51.696144 -0.500438 +v 142.924942 -66.696129 -0.500423 +v 151.537109 71.703705 -2.900577 + +f 1 2 3 +f 284 1 3 +f 286 284 3 +f 285 286 3 +f 80 285 3 +f 80 82 285 +f 82 292 285 +f 292 293 285 +f 297 293 292 +f 296 297 292 +f 300 297 296 +f 302 300 296 +f 110 302 296 +f 82 110 296 +f 99 110 82 +f 79 99 82 +f 356 99 79 +f 347 356 79 +f 78 347 79 +f 78 79 80 +f 95 78 80 +f 96 95 80 +f 96 80 2 +f 11 96 2 +f 10 11 2 +f 10 17 11 +f 17 15 11 +f 15 16 11 +f 15 24 16 +f 24 116 16 +f 116 96 16 +f 116 100 96 +f 123 100 116 +f 365 123 116 +f 33 365 116 +f 44 365 33 +f 43 44 33 +f 32 43 33 +f 32 33 24 +f 31 32 24 +f 31 360 32 +f 31 358 360 +f 358 355 360 +f 360 355 423 +f 363 360 423 +f 401 363 423 +f 260 401 423 +f 205 260 423 +f 202 205 423 +f 155 202 423 +f 134 155 423 +f 27 134 423 +f 256 27 423 +f 118 256 423 +f 109 118 423 +f 312 109 423 +f 332 312 423 +f 349 332 423 +f 335 349 423 +f 241 335 423 +f 200 241 423 +f 68 200 423 +f 6 68 423 +f 89 6 423 +f 416 89 423 +f 224 416 423 +f 423 410 224 +f 224 410 326 +f 224 326 130 +f 225 224 130 +f 225 130 85 +f 267 225 85 +f 84 267 85 +f 83 84 85 +f 86 83 85 +f 86 85 87 +f 86 87 108 +f 247 86 108 +f 247 108 248 +f 280 247 248 +f 279 280 248 +f 351 279 248 +f 188 351 248 +f 187 351 188 +f 186 187 188 +f 107 186 188 +f 107 188 108 +f 326 186 107 +f 186 410 187 +f 410 350 187 +f 410 366 350 +f 366 279 350 +f 367 279 366 +f 386 367 366 +f 386 278 367 +f 278 113 367 +f 277 113 278 +f 383 277 278 +f 383 388 277 +f 388 176 277 +f 177 176 388 +f 382 177 388 +f 382 384 177 +f 384 337 177 +f 177 337 131 +f 71 177 131 +f 126 71 131 +f 72 71 126 +f 175 72 126 +f 394 175 126 +f 377 394 126 +f 376 377 126 +f 340 376 126 +f 337 340 126 +f 297 340 337 +f 306 376 340 +f 300 306 340 +f 306 313 376 +f 313 306 307 +f 315 313 307 +f 315 307 364 +f 321 315 364 +f 368 321 364 +f 356 368 364 +f 127 356 364 +f 127 364 110 +f 65 321 368 +f 369 65 368 +f 347 369 368 +f 347 346 369 +f 369 346 365 +f 48 369 365 +f 48 54 369 +f 54 59 369 +f 58 59 54 +f 57 58 54 +f 47 57 54 +f 373 57 47 +f 373 47 374 +f 373 374 401 +f 375 373 401 +f 375 401 398 +f 57 375 398 +f 401 258 398 +f 258 399 398 +f 398 399 333 +f 398 333 62 +f 398 62 58 +f 333 324 62 +f 324 325 62 +f 62 325 65 +f 62 65 59 +f 325 322 65 +f 325 379 322 +f 322 379 377 +f 313 322 377 +f 379 333 377 +f 324 379 325 +f 379 324 333 +f 333 399 377 +f 399 400 377 +f 399 311 400 +f 311 316 400 +f 316 402 400 +f 402 394 400 +f 403 394 402 +f 310 403 402 +f 310 309 403 +f 403 309 399 +f 309 310 311 +f 205 394 403 +f 207 205 403 +f 207 403 258 +f 219 207 258 +f 260 219 258 +f 259 219 260 +f 259 204 219 +f 204 203 219 +f 203 204 205 +f 204 259 205 +f 219 203 207 +f 203 205 207 +f 205 407 394 +f 407 406 394 +f 406 404 394 +f 408 404 406 +f 308 408 406 +f 305 308 406 +f 305 304 308 +f 303 304 305 +f 303 305 407 +f 409 303 407 +f 198 409 407 +f 162 409 198 +f 196 162 198 +f 202 196 198 +f 201 196 202 +f 201 154 196 +f 154 153 196 +f 153 154 155 +f 153 155 162 +f 154 201 155 +f 196 153 162 +f 162 155 409 +f 155 404 409 +f 155 412 404 +f 412 413 404 +f 413 414 404 +f 414 215 404 +f 215 411 404 +f 404 411 175 +f 411 417 175 +f 417 418 175 +f 418 173 175 +f 173 174 175 +f 174 70 175 +f 233 70 174 +f 169 233 174 +f 170 169 174 +f 170 174 181 +f 171 170 181 +f 171 181 392 +f 393 171 392 +f 392 183 393 +f 183 385 393 +f 183 378 385 +f 378 357 385 +f 357 171 385 +f 357 234 171 +f 234 169 171 +f 336 234 357 +f 111 234 336 +f 159 111 336 +f 159 336 378 +f 371 159 378 +f 371 378 168 +f 371 168 165 +f 164 371 165 +f 164 165 161 +f 156 164 161 +f 156 161 157 +f 156 157 152 +f 74 156 152 +f 75 74 152 +f 75 152 148 +f 90 75 148 +f 90 148 146 +f 88 90 146 +f 144 88 146 +f 144 146 145 +f 144 145 141 +f 143 144 141 +f 140 143 141 +f 140 141 136 +f 135 140 136 +f 135 136 137 +f 261 135 137 +f 255 261 137 +f 190 255 137 +f 151 190 137 +f 150 151 137 +f 228 151 150 +f 230 228 150 +f 220 230 150 +f 220 150 136 +f 246 230 220 +f 245 246 220 +f 245 220 145 +f 338 246 245 +f 391 338 245 +f 152 391 245 +f 339 338 391 +f 341 339 391 +f 157 341 391 +f 270 339 341 +f 271 270 341 +f 161 271 341 +f 161 166 271 +f 166 172 271 +f 271 172 301 +f 269 271 301 +f 274 269 301 +f 274 301 344 +f 274 344 244 +f 253 274 244 +f 243 253 244 +f 243 244 235 +f 229 243 235 +f 229 235 151 +f 151 235 254 +f 235 242 254 +f 242 252 254 +f 252 255 254 +f 255 252 231 +f 93 255 231 +f 94 93 231 +f 94 231 179 +f 421 94 179 +f 295 421 179 +f 178 295 179 +f 178 179 180 +f 283 178 180 +f 420 283 180 +f 420 180 418 +f 241 420 418 +f 241 418 281 +f 239 241 281 +f 239 281 330 +f 331 239 330 +f 335 331 330 +f 334 331 335 +f 240 334 335 +f 240 239 334 +f 334 239 331 +f 281 397 330 +f 330 397 390 +f 330 390 349 +f 349 390 417 +f 349 417 348 +f 345 349 348 +f 345 348 329 +f 343 345 329 +f 328 343 329 +f 327 328 329 +f 332 327 329 +f 327 343 328 +f 359 343 327 +f 359 327 349 +f 343 359 349 +f 329 348 361 +f 329 361 273 +f 312 329 273 +f 272 312 273 +f 272 273 210 +f 208 272 210 +f 208 210 193 +f 197 208 193 +f 197 193 38 +f 197 38 37 +f 105 197 37 +f 106 105 37 +f 106 37 97 +f 119 106 97 +f 119 97 149 +f 117 119 149 +f 194 117 149 +f 194 149 45 +f 194 45 7 +f 121 194 7 +f 216 121 7 +f 216 7 9 +f 266 216 9 +f 266 9 189 +f 214 266 189 +f 36 214 189 +f 34 36 189 +f 34 35 36 +f 34 50 35 +f 50 69 35 +f 69 76 35 +f 76 214 35 +f 214 76 215 +f 213 214 215 +f 396 213 215 +f 395 213 396 +f 266 395 396 +f 122 266 396 +f 122 396 55 +f 256 122 55 +f 256 257 122 +f 257 120 122 +f 120 121 122 +f 257 121 120 +f 55 396 415 +f 55 415 125 +f 25 55 125 +f 124 25 125 +f 134 124 125 +f 133 124 134 +f 133 25 124 +f 26 25 133 +f 26 133 27 +f 25 26 27 +f 25 27 55 +f 125 415 412 +f 415 319 412 +f 317 319 415 +f 317 415 414 +f 318 317 414 +f 320 318 414 +f 319 318 320 +f 319 320 413 +f 317 318 319 +f 415 396 414 +f 380 395 266 +f 395 380 213 +f 380 214 213 +f 76 222 215 +f 222 76 69 +f 114 222 69 +f 192 222 114 +f 191 192 114 +f 103 191 114 +f 103 114 115 +f 275 103 115 +f 263 275 115 +f 263 115 50 +f 147 263 50 +f 262 263 147 +f 61 262 147 +f 42 61 147 +f 42 147 34 +f 8 42 34 +f 8 34 9 +f 63 42 8 +f 64 63 8 +f 64 8 45 +f 40 63 64 +f 98 40 64 +f 97 98 64 +f 41 40 98 +f 39 41 98 +f 37 39 98 +f 61 41 39 +f 60 61 39 +f 193 60 39 +f 193 211 60 +f 211 209 60 +f 60 209 101 +f 262 60 101 +f 276 262 101 +f 276 101 103 +f 101 102 103 +f 102 129 103 +f 102 81 129 +f 81 21 129 +f 129 21 191 +f 21 81 22 +f 21 22 23 +f 192 21 23 +f 192 23 411 +f 23 22 411 +f 22 389 411 +f 361 389 22 +f 237 361 22 +f 236 237 22 +f 139 236 22 +f 138 139 22 +f 236 139 138 +f 226 236 138 +f 226 138 217 +f 237 226 217 +f 273 237 217 +f 217 138 209 +f 209 138 102 +f 236 226 237 +f 361 291 389 +f 291 362 389 +f 362 417 389 +f 291 289 362 +f 289 288 362 +f 288 348 362 +f 288 290 348 +f 288 289 290 +f 290 289 291 +f 290 291 361 +f 81 138 22 +f 138 81 102 +f 262 276 275 +f 209 102 101 +f 217 209 211 +f 210 217 211 +f 40 41 42 +f 63 40 42 +f 41 61 42 +f 262 61 60 +f 262 275 263 +f 275 276 103 +f 115 114 50 +f 129 191 103 +f 21 192 191 +f 192 411 222 +f 50 114 69 +f 147 50 34 +f 35 214 36 +f 214 380 266 +f 9 34 189 +f 216 266 122 +f 7 8 9 +f 121 216 122 +f 194 121 257 +f 128 194 257 +f 128 257 118 +f 117 128 118 +f 45 8 7 +f 149 64 45 +f 128 117 194 +f 117 118 119 +f 97 64 149 +f 106 119 118 +f 37 98 97 +f 104 105 106 +f 109 104 106 +f 197 105 104 +f 323 197 104 +f 323 104 312 +f 37 38 39 +f 38 193 39 +f 323 208 197 +f 210 211 193 +f 323 272 208 +f 273 217 210 +f 272 323 312 +f 273 361 237 +f 348 290 361 +f 343 349 345 +f 348 417 362 +f 390 419 417 +f 390 299 419 +f 299 12 419 +f 12 14 419 +f 14 418 419 +f 397 418 14 +f 13 397 14 +f 13 298 397 +f 298 13 299 +f 12 13 14 +f 13 12 299 +f 298 299 390 +f 397 298 390 +f 239 240 241 +f 281 418 397 +f 142 420 241 +f 142 421 420 +f 421 294 420 +f 132 421 142 +f 66 132 142 +f 195 66 142 +f 200 195 142 +f 199 195 200 +f 199 66 195 +f 67 66 199 +f 67 199 68 +f 66 67 68 +f 66 68 132 +f 68 46 132 +f 46 94 132 +f 46 135 94 +f 135 92 94 +f 294 283 420 +f 294 295 283 +f 180 179 418 +f 295 178 283 +f 295 294 421 +f 132 94 421 +f 231 422 179 +f 422 181 179 +f 181 173 179 +f 227 422 231 +f 238 227 231 +f 227 238 232 +f 221 227 232 +f 244 221 232 +f 244 232 242 +f 218 227 221 +f 212 218 221 +f 212 221 344 +f 206 212 344 +f 206 185 212 +f 172 185 206 +f 168 185 172 +f 184 185 168 +f 182 184 168 +f 182 183 184 +f 184 183 185 +f 185 218 212 +f 218 185 392 +f 218 392 422 +f 232 238 242 +f 227 218 422 +f 92 93 94 +f 92 261 93 +f 252 238 231 +f 238 252 242 +f 235 244 242 +f 253 243 229 +f 253 229 228 +f 344 221 244 +f 301 206 344 +f 269 274 253 +f 270 269 253 +f 172 206 301 +f 168 172 166 +f 269 270 271 +f 339 270 253 +f 338 339 253 +f 246 338 253 +f 246 253 230 +f 230 253 228 +f 228 229 151 +f 151 254 190 +f 254 255 190 +f 261 255 93 +f 261 92 135 +f 136 150 137 +f 140 135 46 +f 141 220 136 +f 143 140 46 +f 5 143 46 +f 6 5 46 +f 4 5 6 +f 4 143 5 +f 144 143 4 +f 91 144 4 +f 91 4 89 +f 88 91 89 +f 145 220 141 +f 146 245 145 +f 91 88 144 +f 88 89 90 +f 73 90 89 +f 148 245 146 +f 73 75 90 +f 152 245 148 +f 73 74 75 +f 77 74 73 +f 77 73 416 +f 387 77 416 +f 405 387 416 +f 264 405 416 +f 223 264 416 +f 264 223 265 +f 268 264 265 +f 53 268 265 +f 53 265 267 +f 51 53 267 +f 51 52 53 +f 52 20 53 +f 52 18 20 +f 18 19 20 +f 20 19 268 +f 19 251 268 +f 251 287 268 +f 250 287 251 +f 249 250 251 +f 28 249 251 +f 249 28 282 +f 28 30 282 +f 30 158 282 +f 158 163 282 +f 163 250 282 +f 250 163 314 +f 314 163 167 +f 160 314 167 +f 160 371 314 +f 371 372 314 +f 314 372 405 +f 287 314 405 +f 370 372 371 +f 372 370 164 +f 387 372 164 +f 163 160 167 +f 158 160 163 +f 160 158 159 +f 56 158 30 +f 29 56 30 +f 56 29 111 +f 29 112 111 +f 111 112 113 +f 233 111 113 +f 233 113 176 +f 113 112 86 +f 279 113 86 +f 112 18 86 +f 112 29 28 +f 112 28 19 +f 158 56 111 +f 28 29 30 +f 282 250 249 +f 287 250 314 +f 19 28 251 +f 18 112 19 +f 83 18 52 +f 52 51 84 +f 20 268 53 +f 287 264 268 +f 265 223 225 +f 264 287 405 +f 372 387 405 +f 387 156 77 +f 156 74 77 +f 152 157 391 +f 157 161 341 +f 387 164 156 +f 165 166 161 +f 164 370 371 +f 165 168 166 +f 378 182 168 +f 371 160 159 +f 158 111 159 +f 111 233 234 +f 336 357 378 +f 183 182 378 +f 185 183 392 +f 385 171 393 +f 392 181 422 +f 169 170 171 +f 234 233 169 +f 70 233 176 +f 70 176 71 +f 181 174 173 +f 418 179 173 +f 419 418 417 +f 389 417 411 +f 222 411 215 +f 396 215 414 +f 320 414 413 +f 412 319 413 +f 125 412 155 +f 304 303 409 +f 304 409 408 +f 308 304 408 +f 409 404 408 +f 407 305 406 +f 198 407 205 +f 316 310 402 +f 311 310 316 +f 309 311 399 +f 258 403 399 +f 47 49 374 +f 374 49 363 +f 363 49 43 +f 49 47 44 +f 47 48 44 +f 373 375 57 +f 57 398 58 +f 58 62 59 +f 47 54 48 +f 346 347 100 +f 100 347 95 +f 59 65 369 +f 65 322 321 +f 321 322 315 +f 364 307 110 +f 322 313 315 +f 307 306 302 +f 313 377 376 +f 400 394 377 +f 394 404 175 +f 175 70 72 +f 70 71 72 +f 337 126 131 +f 342 337 384 +f 352 342 384 +f 352 286 342 +f 342 286 337 +f 286 293 337 +f 352 384 382 +f 381 352 382 +f 381 382 383 +f 1 381 383 +f 1 383 386 +f 10 1 386 +f 284 352 381 +f 71 176 177 +f 383 382 388 +f 176 113 277 +f 383 278 386 +f 113 279 367 +f 410 386 366 +f 354 386 410 +f 353 354 410 +f 355 353 410 +f 355 17 353 +f 353 17 354 +f 354 17 386 +f 187 350 351 +f 350 279 351 +f 279 247 280 +f 108 188 248 +f 279 86 247 +f 87 107 108 +f 130 107 87 +f 86 18 83 +f 83 52 84 +f 84 51 267 +f 267 265 225 +f 85 130 87 +f 223 224 225 +f 130 326 107 +f 326 410 186 +f 223 416 224 +f 73 89 416 +f 89 4 6 +f 6 46 68 +f 68 199 200 +f 200 142 241 +f 241 240 335 +f 335 330 349 +f 349 327 332 +f 332 329 312 +f 312 104 109 +f 109 106 118 +f 118 257 256 +f 27 256 55 +f 27 133 134 +f 134 125 155 +f 155 201 202 +f 202 198 205 +f 205 259 260 +f 260 258 401 +f 401 374 363 +f 363 43 360 +f 423 355 410 +f 358 15 355 +f 358 31 15 +f 43 32 360 +f 43 49 44 +f 44 48 365 +f 346 123 365 +f 123 346 100 +f 33 116 24 +f 15 31 24 +f 15 17 355 +f 17 10 386 +f 16 96 11 +f 100 95 96 +f 95 347 78 +f 356 347 368 +f 356 127 99 +f 99 127 110 +f 110 307 302 +f 306 300 302 +f 297 300 340 +f 293 297 337 +f 82 296 292 +f 79 82 80 +f 293 286 285 +f 284 286 352 +f 284 381 1 +f 2 80 3 +f 1 10 2 + + +o Object.2 +v -146.088806 -51.696159 -3.000431 +v -142.888794 -51.696159 -3.000431 +v -146.088806 -42.696159 -3.000438 +v -147.288788 -51.696159 -3.000431 +v -147.288788 -42.696159 -3.000438 +v -150.188812 -42.696159 -3.000438 +v -146.633911 0.044991 -1.000499 +v -147.508301 -0.587608 -1.300502 +v -146.581787 -0.250412 -1.300502 +v -147.658295 -0.327812 -1.000499 +v -143.101501 -1.970711 -4.450489 +v -143.642395 -1.022408 -4.450489 +v -143.642395 -1.022408 -4.750492 +v -150.188812 -51.696159 -3.000431 +v -148.263611 -1.221413 -1.300502 +v -148.493408 -1.028511 -1.000499 +v -143.155609 -62.903328 -1.000423 +v -142.949799 -62.786537 -1.000423 +v -142.923615 -62.745552 -3.000415 +v -150.188812 -41.396172 -3.000446 +v -147.288788 -41.396172 -3.000446 +v -150.188812 -32.396187 -3.000454 +v -148.756500 -2.075211 -1.300502 +v -149.038391 -1.972610 -1.000499 +v -142.960510 -66.588844 -4.739414 +v -142.683014 -75.701332 -4.690197 +v -142.989014 -75.703636 -4.742199 +v -147.288788 -32.396187 -3.000454 +v -148.927704 -3.046204 -1.300502 +v -149.227692 -3.046204 -1.000499 +v -150.188812 26.303757 -3.000522 +v -147.288788 35.303749 -3.000537 +v -150.188812 35.303749 -3.000537 +v -147.288788 26.303757 -3.000522 +v -148.756500 -4.017204 -1.300502 +v -149.038391 -4.119804 -1.000492 +v -142.913788 -66.046150 -4.733913 +v -143.050598 -65.124245 -4.746814 +v -143.042999 -3.942604 -4.746395 +v -150.188812 36.603745 -3.000537 +v -147.288788 45.603741 -3.000545 +v -150.188812 45.603741 -3.000545 +v -148.263611 -4.871002 -1.300495 +v -148.493408 -5.063904 -1.000492 +v -142.913788 59.953716 -4.734066 +v -142.913788 -3.046204 -4.733989 +v -143.042999 59.057281 -4.746463 +v -147.508301 -5.504807 -1.300495 +v -147.658295 -5.764603 -1.000492 +v -147.288788 36.603745 -3.000537 +v -146.088806 36.603745 -3.000537 +v -142.888794 45.603741 -3.000545 +v -146.088806 45.603741 -3.000545 +v -146.581787 -5.842003 -1.300495 +v -146.633911 -6.137405 -1.000492 +v -142.888794 -32.396172 -1.000461 +v -146.088806 -32.396172 -1.000461 +v -142.888794 -32.396187 -3.000454 +v -142.888794 -41.396172 -3.000446 +v -142.888794 -41.396156 -1.000454 +v -143.204193 -62.904854 -3.000415 +v -144.927612 -62.009850 -3.000415 +v -145.218109 -74.774940 -3.000400 +v -144.153992 -74.269615 -1.000415 +v -144.153992 -74.269630 -3.000408 +v -147.508301 -0.587608 -2.550495 +v -146.581787 -0.250412 -2.550495 +v -142.888794 -52.996162 -3.000431 +v -148.263611 -1.221413 -2.550495 +v -146.088806 -61.846153 -3.000415 +v -146.088806 -52.996162 -3.000431 +v -148.756500 -2.075211 -2.550495 +v -144.927612 -62.009834 -1.000423 +v -148.927704 -3.046204 -2.550495 +v -148.129700 -0.614014 -4.750492 +v -148.838409 -1.458710 -4.750492 +v -152.399902 71.703705 -4.750576 +v -142.888794 36.603745 -3.000537 +v -148.756500 -4.017204 -2.550495 +v -142.683014 69.608887 -4.690372 +v -149.215607 -2.494911 -4.750492 +v -149.215607 -3.597504 -4.750492 +v -148.263611 -4.871002 -2.550487 +v -146.088806 26.303757 -3.000522 +v -142.888794 35.303749 -3.000537 +v -146.088806 35.303749 -3.000537 +v -147.508301 -5.504807 -2.550487 +v -141.841187 69.467010 -4.245174 +v -143.170197 -1.796211 -4.750492 +v -146.581787 -5.842003 -2.550487 +v -148.129700 62.385906 -4.750568 +v -148.838409 61.541218 -4.750568 +v -142.888794 -69.487038 -3.000408 +v -142.982208 -69.269524 -1.000415 +v -143.062286 -69.215034 -3.000408 +v -146.088806 -41.396156 -1.000454 +v -146.088806 -41.396172 -3.000446 +v -142.888794 -74.096138 -3.000408 +v -143.393188 58.972603 -1.300571 +v -142.963196 59.402592 -1.000568 +v -143.220215 59.953720 -1.300579 +v -152.399902 -77.796135 -4.750401 +v -141.996887 -75.626335 -4.370098 +v -143.657501 57.913624 -1.000568 +v -143.891296 58.109825 -1.300571 +v -142.913788 59.953716 -4.450565 +v -143.101501 61.029205 -4.450565 +v -142.888794 -74.096123 -1.000415 +v -144.654510 57.469444 -1.300571 +v -143.342590 -69.229424 -1.000415 +v -143.342590 -69.229439 -3.000408 +v -142.888794 26.303757 -3.000522 +v -145.003296 56.971294 -1.000568 +v -145.590698 57.128704 -1.300571 +v -147.174713 62.937233 -4.750568 +v -152.369415 72.052933 -4.750576 +v -152.130493 72.709259 -4.750584 +v -146.088806 56.779884 -1.000568 +v -143.642395 57.929901 -4.750560 +v -146.088806 -75.568336 -3.000400 +v -146.088806 -70.246132 -3.000408 +v -146.375305 -1.421310 -2.550495 +v -146.913788 -1.617310 -2.925495 +v -146.375305 -1.421310 -2.925495 +v -146.913788 -1.617310 -2.550495 +v -143.182312 -64.771233 -1.000423 +v -143.753693 -63.896538 -1.000423 +v -143.978302 -64.103340 -1.300426 +v -145.381012 -79.807228 -4.750401 +v -150.738007 -79.776634 -4.750401 +v -146.088806 -69.221138 -4.750408 +v -147.352814 -1.985611 -2.925495 +v -147.352814 -1.985611 -2.550495 +v -143.155609 0.096588 -3.000492 +v -143.204193 0.095093 -1.000499 +v -142.949799 0.213387 -3.000492 +v -143.674500 -63.984154 -4.750415 +v -144.515717 -63.288246 -4.750415 +v -145.493896 -6.165001 -4.750484 +v -147.639313 -2.481911 -2.925495 +v -147.639313 -2.481911 -2.550495 +v -142.904510 0.299088 -1.000499 +v -145.502502 -70.205040 -3.000408 +v -147.738800 -3.046204 -2.925495 +v -147.738800 -3.046204 -2.550495 +v -144.066895 -75.960640 -4.750401 +v -145.542908 -69.173836 -4.750408 +v -147.639313 -3.610504 -2.925495 +v -147.639313 -3.610504 -2.550495 +v -144.375488 -6.880905 -3.000484 +v -142.888794 -11.696198 -3.000476 +v -143.298889 -6.208107 -3.000484 +v -144.375488 -69.880836 -3.000408 +v -147.352814 -4.106804 -2.925487 +v -147.352814 -4.106804 -2.550487 +v -144.680389 -76.404640 -4.750401 +v -147.512207 57.488335 -2.550563 +v -146.088806 58.303722 -2.550563 +v -146.913788 58.524784 -2.550563 +v -146.913788 -4.475105 -2.925487 +v -146.913788 -4.475105 -2.550487 +v -145.354309 -77.739738 -4.750401 +v -146.088806 -4.696205 -2.925487 +v -146.088806 -4.696205 -2.550487 +v -143.105316 58.867809 -4.450557 +v -143.642395 61.977535 -4.450565 +v -144.472595 62.686577 -4.450565 +v -144.472595 62.686577 -4.750568 +v -145.802307 61.578651 -2.550571 +v -145.263794 61.382660 -2.550571 +v -144.665405 62.419109 -2.550571 +v -143.907990 61.783600 -2.550571 +v -145.616608 -63.216637 -1.300426 +v -146.583191 -63.242653 -2.550418 +v -145.620209 -63.238152 -2.550418 +v -146.586914 -63.221138 -1.300426 +v -147.523102 -63.561836 -1.300426 +v -147.512207 -63.580757 -2.550418 +v -141.608215 -75.404137 -3.999500 +v -148.286316 -64.202232 -1.300426 +v -148.269592 -64.216255 -2.550418 +v -141.359009 69.025208 -3.598674 +v -148.784393 -65.065041 -1.300426 +v -148.763916 -65.072456 -2.550418 +v -145.594513 57.150185 -2.550563 +v -145.263794 58.524784 -2.550563 +v -144.665405 57.488335 -2.550563 +v -148.957397 -66.046135 -1.300426 +v -148.935608 -66.046150 -2.550418 +v -149.215607 60.505047 -4.750568 +v -150.120697 -68.266212 -1.000415 +v -150.188812 -77.596123 -1.000408 +v -150.188812 -77.596138 -3.000400 +v -148.784393 -67.027214 -1.300426 +v -148.763916 -67.019737 -2.550418 +v -142.888794 46.903736 -3.000545 +v -142.892792 56.561245 -3.000560 +v -143.155609 56.810955 -3.000560 +v -148.269592 -67.876030 -2.550418 +v -148.286316 -67.890022 -1.300426 +v -146.640106 -69.172935 -4.450405 +v -147.164307 -69.033440 -4.750408 +v -144.375488 56.119053 -3.000560 +v -147.512207 -68.511528 -2.550411 +v -147.523102 -68.530418 -1.300418 +v -146.375305 61.578651 -2.550571 +v -145.594513 62.757259 -2.550571 +v -143.656616 -5.087006 -4.450481 +v -143.105316 -4.132103 -4.450481 +v -143.642395 -5.070000 -4.750484 +v -146.583191 -68.849632 -2.550411 +v -146.586914 -68.871117 -1.300418 +v -148.855713 -69.205940 -3.000408 +v -149.794891 -68.171623 -1.000415 +v -149.747498 -68.191841 -3.000408 +v -148.503113 -63.984154 -4.750415 +v -149.058807 -64.923851 -4.750415 +v -146.640106 -6.173004 -4.750484 +v -146.088806 -68.892937 -2.550411 +v -146.088806 -68.914726 -1.300418 +v -146.792999 62.734550 -1.300579 +v -146.583191 62.757259 -2.550571 +v -145.384613 62.734550 -1.300579 +v -147.512207 62.419109 -2.550571 +v -141.190613 -74.686333 -3.034801 +v -149.215607 59.402386 -4.750560 +v -151.681488 73.244301 -4.750584 +v -147.657806 62.355221 -1.300579 +v -148.269592 61.783600 -2.550571 +v -146.913788 61.382660 -2.550571 +v -147.174713 -0.062714 -4.750492 +v -145.502502 55.794857 -3.000560 +v -146.088806 -67.696129 -2.550418 +v -145.164490 -68.738640 -2.550411 +v -145.263794 -67.475029 -2.550418 +v -148.352509 61.715649 -1.300579 +v -148.763916 60.927380 -2.550571 +v -146.913788 -67.475029 -2.550418 +v -150.084808 -68.229439 -3.000408 +v -145.493896 63.072472 -4.450565 +v -145.493896 63.072472 -4.750568 +v -148.802002 60.885151 -1.300579 +v -148.935608 59.953720 -2.550571 +v -147.288788 -77.596138 -3.000400 +v -147.288788 -70.071037 -3.000408 +v -147.850800 -69.858635 -3.000408 +v -148.957397 59.953720 -1.300579 +v -148.763916 58.980064 -2.550563 +v -148.784393 58.972603 -1.300571 +v -148.269592 58.123844 -2.550563 +v -146.583191 57.150185 -2.550563 +v -146.634705 -62.918449 -4.750415 +v -147.661896 -63.288246 -4.750415 +v -148.286316 58.109825 -1.300571 +v -146.088806 55.753727 -3.000560 +v -146.088806 46.903736 -3.000545 +v -147.523102 57.469444 -1.300571 +v -146.586914 57.128704 -1.300571 +v -141.171112 68.418892 -2.810573 +v -147.288788 -77.596123 -1.000408 +v -146.038910 56.779110 -4.750560 +v -145.537506 56.826950 -4.450557 +v -145.493896 56.834961 -4.750560 +v -144.340302 -68.292641 -2.550411 +v -142.888794 5.603783 -3.000499 +v -143.020111 56.760826 -1.000568 +v -143.252411 56.805973 -1.000568 +v -144.927612 0.990089 -3.000492 +v -150.024994 -0.903114 -1.000499 +v -149.790100 -0.919113 -1.000499 +v -149.888794 -0.935814 -3.000492 +v -150.149811 -63.783546 -3.000415 +v -149.896301 -63.935631 -1.000423 +v -149.844910 -63.932549 -3.000415 +v -144.501312 57.204090 -4.450557 +v -147.676300 -0.296608 -4.450489 +v -146.640106 0.080589 -4.450489 +v -146.088806 1.153786 -3.000492 +v -146.088806 5.603783 -3.000499 +v -148.520996 -1.005310 -4.450489 +v -145.117188 70.911682 -4.750576 +v -146.640106 63.080471 -4.750568 +v -145.351196 71.627266 -4.750576 +v -149.072296 -1.960312 -4.450489 +v -150.043091 -63.893028 -1.000423 +v -144.672394 70.304268 -4.750576 +v -149.263794 -3.046204 -4.450489 +v -149.072296 -4.132103 -4.450481 +v -144.824799 61.014320 -2.550571 +v -144.538300 60.518051 -2.550571 +v -143.413696 60.927380 -2.550571 +v -146.088806 -52.996147 -1.000438 +v -148.520996 -5.087006 -4.450481 +v -150.156097 -0.772011 -3.000492 +v -147.676300 -5.795807 -4.450481 +v -147.738800 59.953720 -2.550571 +v -147.639313 60.518051 -2.550571 +v -145.802307 -1.421310 -2.925495 +v -146.640106 -6.173004 -4.450481 +v -144.515717 -68.804039 -4.750408 +v -145.493896 0.072586 -4.450489 +v -145.537506 -6.173004 -4.450481 +v -151.076691 73.593536 -4.750584 +v -146.640106 63.080471 -4.450565 +v -147.676300 62.703346 -4.450565 +v -144.472595 -0.313309 -4.450489 +v -143.170197 61.203716 -4.750568 +v -148.520996 61.994568 -4.450565 +v -143.170197 69.618408 -4.750576 +v -149.207611 -65.451256 -4.750415 +v -149.072296 61.039627 -4.450565 +v -145.263794 -1.617310 -2.925495 +v -144.060791 69.865166 -4.750576 +v -149.263794 59.953716 -4.450565 +v -144.472595 57.220860 -4.750560 +v -142.892792 56.561245 -1.000568 +v -149.072296 58.867809 -4.450557 +v -148.838409 58.366219 -4.750560 +v -148.520996 57.912872 -4.450557 +v -148.129700 57.521530 -4.750560 +v -144.472595 -5.779106 -4.750484 +v -147.676300 57.204090 -4.450557 +v -147.174713 56.970200 -4.750560 +v -150.188812 -52.996162 -3.000431 +v -147.288788 -70.071022 -1.000415 +v -146.640106 56.826950 -4.450557 +v -148.376709 -62.523949 -3.000415 +v -147.288788 -62.021248 -3.000415 +v -146.640106 0.080589 -4.750492 +v -145.493896 0.072586 -4.750492 +v -147.288788 -52.996162 -3.000431 +v -145.157410 -68.759315 -1.300418 +v -144.326904 -68.309822 -1.300418 +v -143.687286 -67.615120 -1.300426 +v -143.705597 -67.603233 -2.550418 +v -143.308014 -66.750328 -1.300426 +v -143.329102 -66.745049 -2.550418 +v -148.838409 -4.633705 -4.750484 +v -143.230011 -65.809227 -1.300426 +v -143.251709 -65.811043 -2.550418 +v -148.129700 -5.478401 -4.750484 +v -143.461792 -64.893837 -1.300426 +v -143.481812 -64.902550 -2.550418 +v -147.174713 -6.029701 -4.750484 +v -143.994415 -64.118050 -2.550418 +v -144.723511 -63.523232 -1.300426 +v -144.733887 -63.542442 -2.550418 +v -145.542908 -62.918449 -4.750415 +v -146.640106 -62.919350 -4.450412 +v -147.676300 -63.296547 -4.450412 +v -145.537506 -62.919350 -4.450412 +v -143.242004 59.953720 -2.550571 +v -146.088806 6.803780 -3.000499 +v -142.888794 6.803780 -3.000499 +v -142.888794 15.803787 -3.000515 +v -146.088806 15.803787 -3.000515 +v -146.088806 -21.896187 -3.000469 +v -142.888794 -21.896187 -3.000469 +v -142.888794 -12.896194 -3.000476 +v -146.088806 -12.896194 -3.000476 +v -145.537506 -69.172935 -4.450405 +v -146.088806 -67.696129 -2.925418 +v -144.515717 -68.804039 -4.450405 +v -142.888794 -31.096184 -3.000454 +v -142.888794 -23.096191 -3.000469 +v -146.088806 -23.096191 -3.000469 +v -145.263794 -67.475029 -2.925418 +v -144.501312 -63.296547 -4.450412 +v -146.088806 -31.096184 -3.000454 +v -148.520996 -64.005348 -4.450412 +v -150.188812 -31.096184 -3.000454 +v -147.288788 -31.096184 -3.000454 +v -147.288788 -23.096191 -3.000469 +v -150.156097 -0.772011 -1.000499 +v -150.188812 -23.096191 -3.000469 +v -150.188812 -21.896187 -3.000469 +v -147.288788 -21.896187 -3.000469 +v -147.288788 -12.896194 -3.000476 +v -143.674500 -68.108131 -4.450405 +v -150.188812 -12.896194 -3.000476 +v -144.824799 -67.106728 -2.925418 +v -143.656616 -64.005348 -4.450412 +v -150.188812 6.803780 -3.000499 +v -147.288788 6.803780 -3.000499 +v -147.288788 15.803787 -3.000515 +v -149.072296 -64.960243 -4.450412 +v -150.188812 15.803787 -3.000515 +v -150.188812 17.003777 -3.000515 +v -147.288788 17.003777 -3.000515 +v -150.188812 25.003761 -3.000522 +v -147.288788 25.003761 -3.000522 +v -143.105316 -64.960243 -4.450412 +v -143.118805 -67.168434 -4.450412 +v -149.263794 -66.046150 -4.450412 +v -149.207611 -66.641045 -4.750415 +v -142.086914 -75.499626 -1.000408 +v -143.765015 -75.660927 -1.000408 +v -144.538300 -66.610451 -2.925418 +v -144.438812 59.953720 -2.550571 +v -145.263794 -4.475105 -2.550487 +v -145.263794 -4.475105 -2.925487 +v -143.642395 61.977535 -4.750568 +v -142.913788 -66.046150 -4.450412 +v -145.802307 -64.421257 -2.550418 +v -146.375305 -64.421257 -2.925418 +v -145.802307 -64.421257 -2.925418 +v -146.375305 -64.421257 -2.550418 +v -146.913788 -64.617256 -2.925418 +v -145.502502 -7.205101 -3.000484 +v -144.824799 -4.106804 -2.550487 +v -144.824799 -4.106804 -2.925487 +v -146.913788 -64.617256 -2.550418 +v -147.352814 -64.985542 -2.925418 +v -147.352814 -64.985542 -2.550418 +v -147.639313 -65.481850 -2.925418 +v -147.639313 -65.481850 -2.550418 +v -147.738800 -66.046150 -2.925418 +v -145.457397 -78.796135 -3.000400 +v -145.457397 -79.746132 -3.000400 +v -147.738800 -66.046150 -2.550418 +v -147.639313 -66.610451 -2.925418 +v -148.376709 -69.568321 -1.000415 +v -147.639313 -66.610451 -2.550418 +v -147.352814 -67.106728 -2.925418 +v -144.538300 -3.610504 -2.550495 +v -144.538300 -3.610504 -2.925495 +v -147.352814 -67.106728 -2.550418 +v -146.913788 -67.475029 -2.925418 +v -146.088806 -11.696198 -3.000476 +v -144.438812 -3.046204 -2.550495 +v -147.639313 59.389393 -2.550563 +v -146.088806 -7.246201 -3.000484 +v -143.907990 58.123844 -2.550563 +v -144.824799 58.893124 -2.550563 +v -144.538300 59.389393 -2.550563 +v -143.413696 58.980064 -2.550563 +v -144.472595 -0.313309 -4.750492 +v -146.913788 61.382660 -2.925571 +v -146.375305 61.578651 -2.925571 +v -148.376709 0.475990 -3.000492 +v -147.288788 0.978691 -3.000492 +v -147.288788 5.603783 -3.000499 +v -150.188812 5.603783 -3.000499 +v -147.352814 61.014320 -2.925571 +v -147.352814 61.014320 -2.550571 +v -144.438812 -3.046204 -2.925495 +v -147.639313 60.518051 -2.925571 +v -144.538300 -2.481911 -2.550495 +v -144.538300 -2.481911 -2.925495 +v -147.738800 59.953720 -2.925571 +v -147.639313 59.389393 -2.925563 +v -147.352814 58.893124 -2.925563 +v -147.352814 58.893124 -2.550563 +v -152.278595 -78.484032 -4.750401 +v -146.913788 58.524784 -2.925563 +v -150.730804 72.643394 -3.000576 +v -145.457397 73.653702 -3.000583 +v -150.727386 73.624084 -3.000583 +v -146.088806 58.303722 -2.925563 +v -146.088806 64.153717 -3.000568 +v -145.218109 68.682503 -3.000576 +v -146.088806 69.475876 -3.000576 +v -144.824799 -1.985611 -2.550495 +v -144.824799 -1.985611 -2.925495 +v -143.062286 -6.215103 -1.000492 +v -143.062286 -6.215103 -3.000484 +v -144.153992 68.177170 -3.000576 +v -145.457397 72.703705 -3.000583 +v -145.263794 -1.617310 -2.550495 +v -143.342590 -6.229500 -1.000492 +v -144.927612 63.990005 -3.000568 +v -142.888794 68.003708 -3.000576 +v -151.363800 73.392456 -3.000583 +v -145.802307 -1.421310 -2.550495 +v -143.155609 63.096485 -3.000568 +v -149.747498 -5.191902 -1.000492 +v -150.084808 -5.229500 -1.000492 +v -150.120697 -5.266304 -3.000484 +v -143.656616 57.912872 -4.450557 +v -146.088806 -32.396187 -3.000454 +v -141.452789 68.961563 -1.000583 +v -141.249786 68.411385 -1.000583 +v -151.882599 72.957146 -3.000583 +v -151.254791 72.203705 -3.000576 +v -152.309204 72.042328 -3.000576 +v -149.747498 -5.191902 -3.000484 +v -144.438812 -66.046150 -2.925418 +v -142.949799 63.213356 -3.000568 +v -150.188812 -11.696198 -3.000476 +v -147.288788 -11.696198 -3.000476 +v -147.288788 -7.071106 -3.000484 +v -147.850800 -6.858704 -3.000484 +v -146.088806 -42.696144 -1.000446 +v -149.058807 -67.168434 -4.450412 +v -141.730988 69.239746 -1.000583 +v -144.501312 -5.795807 -4.450481 +v -148.855713 -6.206001 -3.000484 +v -145.516205 -77.715324 -1.000408 +v -145.544708 -78.761223 -1.000408 +v -148.503113 -68.108131 -4.450405 +v -144.538300 -65.481850 -2.925418 +v -142.086914 69.407242 -1.000583 +v -147.661896 -68.804039 -4.450405 +v -146.088806 -51.696144 -1.000438 +v -144.824799 -64.985542 -2.925418 +v -145.595795 -0.250412 -1.300502 +v -145.543701 0.044991 -1.000499 +v -144.669312 -0.587608 -1.300502 +v -141.244690 -6.186104 -1.000492 +v -141.244690 -22.496185 -1.000476 +v -141.249786 -74.503822 -1.000415 +v -144.071106 -0.641609 -1.000499 +v -143.914093 -1.221413 -1.300502 +v -143.370392 -1.476707 -1.000499 +v -143.421112 -2.075211 -1.300502 +v -142.997589 -2.501114 -1.000499 +v -143.249908 -3.046204 -1.300502 +v -141.244690 16.403770 -1.000522 +v -142.997589 -3.591301 -1.000499 +v -143.421112 -4.017204 -1.300502 +v -141.244690 35.953751 -1.000545 +v -143.370392 -4.615700 -1.000492 +v -143.914093 -4.871002 -1.300495 +v -144.071106 -5.450806 -1.000492 +v -144.669312 -5.504807 -1.300495 +v -145.381012 73.714813 -4.750584 +v -145.218109 -74.774925 -1.000408 +v -145.015198 -5.995804 -1.000492 +v -145.595795 -5.842003 -1.300495 +v -145.595795 -0.250412 -2.550495 +v -144.669312 -0.587608 -2.550495 +v -141.353607 -74.883217 -1.000408 +v -143.914093 -1.221413 -2.550495 +v -142.913788 -3.046204 -4.450489 +v -143.421112 -2.075211 -2.550495 +v -141.579803 -75.205116 -1.000408 +v -143.249908 -3.046204 -2.550495 +v -143.421112 -4.017204 -2.550495 +v -142.888794 68.003708 -1.000583 +v -144.153992 68.177170 -1.000583 +v -143.914093 -4.871002 -2.550487 +v -144.669312 -5.504807 -2.550487 +v -150.727386 -79.716530 -3.000400 +v -152.309204 -78.134727 -3.000400 +v -145.595795 -5.842003 -2.550487 +v -151.394409 -79.537834 -4.750401 +v -151.929413 -79.088829 -4.750401 +v -144.824799 -67.106728 -2.550418 +v -147.288788 71.503708 -1.000583 +v -146.688812 72.668800 -1.000583 +v -150.871399 72.539497 -1.000583 +v -150.188812 71.503708 -1.000583 +v -145.418213 71.209335 -1.000583 +v -145.544708 72.668800 -1.000583 +v -142.888794 -42.696159 -3.000438 +v -146.867889 63.030437 -1.000576 +v -146.088806 69.475876 -1.000583 +v -143.367310 69.475967 -1.000583 +v -152.077606 -78.771141 -3.000400 +v -151.128113 72.324059 -1.000583 +v -151.339203 71.871300 -1.000583 +v -148.112610 -68.492531 -4.750408 +v -143.674500 -68.108131 -4.750408 +v -150.043091 62.106842 -1.000576 +v -147.288788 63.978638 -1.000576 +v -145.050903 70.493629 -1.000583 +v -150.556396 -78.746513 -1.000408 +v -151.009216 -78.535423 -1.000408 +v -150.562408 -78.780937 -3.000400 +v -144.479492 69.927513 -1.000583 +v -145.218109 68.682503 -1.000583 +v -142.888794 -42.696144 -1.000446 +v -145.059509 -76.597725 -1.000408 +v -144.487305 -76.025520 -1.000408 +v -148.376709 -62.523933 -1.000423 +v -142.888794 -51.696144 -1.000438 +v -143.155609 63.096485 -1.000576 +v -142.949799 63.213356 -1.000576 +v -146.088806 64.153717 -1.000576 +v -146.088806 17.003777 -3.000515 +v -142.888794 17.003777 -3.000515 +v -142.888794 25.003761 -3.000522 +v -146.088806 25.003761 -3.000522 +v -147.288788 -62.021233 -1.000423 +v -145.263794 -64.617256 -2.925418 +v -151.154907 -78.438942 -3.000400 +v -145.826691 63.116718 -1.000576 +v -144.927612 63.990005 -1.000576 +v -146.088806 -61.846138 -1.000423 +v -144.813904 62.860237 -1.000576 +v -148.376709 63.475895 -1.000576 +v -147.824707 62.610752 -1.000576 +v -143.939209 62.288792 -1.000576 +v -151.353912 -22.496185 -1.000476 +v -151.353912 -6.186104 -1.000492 +v -151.388794 -77.796135 -3.000400 +v -151.353912 -31.746162 -1.000461 +v -146.088806 -70.246117 -1.000415 +v -151.353912 -42.046150 -1.000454 +v -151.353912 -52.346153 -1.000438 +v -151.353912 -66.046135 -1.000423 +v -151.224609 -78.278618 -1.000408 +v -149.090698 60.984261 -1.000576 +v -148.593414 61.903130 -1.000576 +v -149.896301 62.064209 -1.000576 +v -151.353912 46.253735 -1.000553 +v -151.353912 59.953720 -1.000576 +v -151.388794 71.703705 -3.000576 +v -151.353912 35.953751 -1.000545 +v -144.538300 -66.610451 -2.550418 +v -142.958313 60.476120 -1.000576 +v -151.353912 25.653755 -1.000530 +v -143.297516 61.464302 -1.000576 +v -151.353912 16.403770 -1.000522 +v -151.353912 6.203781 -1.000507 +v -149.262695 59.953720 -1.000576 +v -145.502502 -70.205025 -1.000415 +v -150.084808 57.770443 -1.000568 +v -144.438812 -66.046150 -2.550418 +v -149.747498 57.807995 -1.000568 +v -149.071198 58.868206 -1.000568 +v -142.888794 -52.996147 -1.000438 +v -148.520111 57.913624 -1.000568 +v -144.538300 -65.481850 -2.550418 +v -147.288788 -52.996147 -1.000438 +v -148.855713 56.793976 -1.000568 +v -147.675690 57.205093 -1.000568 +v -146.088806 -11.696198 -1.000484 +v -142.888794 -11.696198 -1.000484 +v -143.375610 60.885151 -1.300579 +v -142.892792 -6.438705 -1.000492 +v -142.892792 -6.438705 -3.000484 +v -144.375488 56.119053 -1.000568 +v -150.188812 -52.996147 -1.000438 +v -147.850800 56.141174 -1.000568 +v -146.088806 -7.246201 -1.000492 +v -146.639893 56.828106 -1.000568 +v -145.502502 -7.205101 -1.000492 +v -147.288788 55.928806 -1.000568 +v -144.375488 -6.880905 -1.000492 +v -145.502502 55.794857 -1.000568 +v -146.088806 55.753727 -1.000568 +v -146.088806 5.603783 -1.000507 +v -146.088806 1.153786 -1.000499 +v -146.088806 46.903736 -1.000553 +v -145.263794 58.524784 -2.925563 +v -150.188812 46.903736 -1.000553 +v -147.288788 46.903736 -1.000553 +v -146.688812 46.253735 -1.000553 +v -142.888794 46.903736 -1.000553 +v -144.824799 58.893124 -2.925563 +v -144.927612 0.990089 -1.000499 +v -150.188812 45.603741 -1.000553 +v -150.188812 36.603745 -1.000545 +v -144.538300 59.389393 -2.925563 +v -146.088806 45.603741 -1.000553 +v -146.088806 36.603745 -1.000545 +v -146.688812 35.953751 -1.000545 +v -147.288788 45.603741 -1.000553 +v -142.888794 45.603741 -1.000553 +v -147.288788 36.603745 -1.000545 +v -142.888794 36.603745 -1.000545 +v -144.438812 59.953720 -2.925571 +v -150.188812 26.303757 -1.000530 +v -150.188812 35.303749 -1.000545 +v -143.825104 61.715649 -1.300579 +v -146.088806 35.303749 -1.000545 +v -146.088806 26.303757 -1.000530 +v -146.688812 25.653755 -1.000530 +v -147.288788 35.303749 -1.000545 +v -142.888794 35.303749 -1.000545 +v -144.538300 60.518051 -2.925571 +v -147.288788 26.303757 -1.000530 +v -142.888794 26.303757 -1.000530 +v -142.888794 5.603783 -1.000507 +v -144.824799 61.014320 -2.925571 +v -150.188812 17.003777 -1.000522 +v -150.188812 25.003761 -1.000530 +v -146.088806 25.003761 -1.000530 +v -146.088806 17.003777 -1.000522 +v -146.688812 16.403770 -1.000522 +v -147.288788 25.003761 -1.000530 +v -142.888794 25.003761 -1.000530 +v -145.263794 61.382660 -2.925571 +v -147.288788 17.003777 -1.000522 +v -142.888794 17.003777 -1.000522 +v -145.802307 61.578651 -2.925571 +v -147.288788 5.603783 -1.000507 +v -150.188812 5.603783 -1.000507 +v -150.188812 6.803780 -1.000507 +v -150.188812 15.803787 -1.000522 +v -146.088806 15.803787 -1.000522 +v -146.088806 6.803780 -1.000507 +v -146.688812 6.203781 -1.000507 +v -147.288788 15.803787 -1.000522 +v -142.888794 15.803787 -1.000522 +v -147.288788 6.803780 -1.000507 +v -142.888794 6.803780 -1.000507 +v -144.519806 62.355221 -1.300579 +v -146.688812 0.093689 -1.000499 +v -147.288788 0.978691 -1.000499 +v -148.376709 0.475990 -1.000499 +v -150.188812 -41.396156 -1.000454 +v -146.088806 -69.219917 -1.000415 +v -145.058289 -69.048012 -1.000415 +v -142.901917 0.093689 -1.000499 +v -144.824799 -64.985542 -2.550418 +v -147.288788 -11.696198 -1.000484 +v -147.288788 -7.071106 -1.000492 +v -147.850800 -6.858704 -1.000492 +v -148.855713 -6.206001 -1.000492 +v -150.188812 -11.696198 -1.000484 +v -144.375488 -69.880821 -1.000415 +v -145.263794 -64.617256 -2.550418 +v -148.821716 -67.662331 -4.750415 +v -142.901917 -6.186104 -1.000492 +v -146.688812 -6.186104 -1.000492 +v -146.688812 -22.496185 -1.000476 +v -147.288788 -12.896194 -1.000484 +v -150.188812 -12.896194 -1.000484 +v -146.088806 -12.896194 -1.000484 +v -142.888794 -12.896194 -1.000484 +v -150.188812 -21.896187 -1.000476 +v -147.288788 -21.896187 -1.000476 +v -146.088806 -21.896187 -1.000476 +v -142.888794 -21.896187 -1.000476 +v -151.642212 -79.289940 -3.000400 +v -150.188812 -23.096191 -1.000476 +v -150.188812 -31.096169 -1.000461 +v -146.088806 -23.096191 -1.000476 +v -146.088806 -31.096169 -1.000461 +v -146.688812 -31.746162 -1.000461 +v -147.288788 -23.096191 -1.000476 +v -142.888794 -23.096191 -1.000476 +v -147.288788 -31.096169 -1.000461 +v -142.888794 -31.096169 -1.000461 +v -150.188812 -32.396172 -1.000461 +v -150.188812 -42.696144 -1.000446 +v -147.288788 -32.396172 -1.000461 +v -146.688812 -42.046150 -1.000454 +v -150.188812 -51.696144 -1.000438 +v -147.288788 -41.396156 -1.000454 +v -150.120697 57.733604 -3.000560 +v -149.794891 57.828243 -3.000560 +v -147.288788 -42.696144 -1.000446 +v -146.688812 -52.346153 -1.000438 +v -147.288788 -51.696144 -1.000438 +v -150.188812 46.903736 -3.000545 +v -147.288788 46.903736 -3.000545 +v -147.288788 55.928806 -3.000560 +v -148.376709 56.431545 -3.000560 +v -147.174316 -63.063728 -1.000423 +v -145.566406 -62.915535 -1.000423 +v -144.578217 -63.254829 -1.000423 +v -148.128906 -63.614830 -1.000423 +v -143.753693 -68.195717 -1.000415 +v -146.088806 -75.568321 -1.000408 +v -148.837402 -64.459236 -1.000423 +v -142.925812 -65.784035 -1.000423 +v -149.214417 -65.495033 -1.000423 +v -149.214417 -66.597237 -1.000423 +v -148.837402 -67.633018 -1.000423 +v -143.012115 -66.825233 -1.000423 +v -148.128906 -68.477425 -1.000415 +v -147.288788 71.503708 -3.000576 +v -150.188812 71.503708 -3.000576 +v -150.043091 62.106842 -3.000568 +v -148.376709 63.475895 -3.000568 +v -147.174316 -69.028526 -1.000415 +v -147.288788 63.978638 -3.000568 +v -149.896301 62.064209 -3.000568 + +f 424 425 426 +f 916 424 426 +f 978 916 426 +f 995 916 978 +f 999 995 978 +f 425 999 978 +f 927 999 425 +f 1169 999 927 +f 1169 927 1163 +f 1168 1169 1163 +f 1161 1168 1163 +f 1161 1163 1022 +f 1164 1161 1022 +f 1023 1164 1022 +f 1023 1022 1019 +f 1024 1023 1019 +f 1025 1024 1019 +f 1009 1025 1019 +f 1009 1019 967 +f 982 1009 967 +f 982 967 877 +f 970 982 877 +f 970 877 625 +f 969 970 625 +f 553 969 625 +f 554 553 625 +f 624 554 625 +f 926 624 625 +f 926 625 985 +f 923 926 985 +f 923 985 1138 +f 917 923 1138 +f 917 1138 818 +f 817 917 818 +f 817 818 733 +f 809 817 733 +f 809 733 640 +f 793 809 640 +f 793 640 639 +f 773 793 639 +f 773 639 676 +f 773 676 675 +f 772 773 675 +f 771 772 675 +f 771 675 562 +f 561 771 562 +f 560 561 562 +f 560 562 744 +f 560 744 633 +f 461 560 633 +f 462 461 633 +f 632 462 633 +f 631 632 633 +f 631 849 632 +f 632 849 957 +f 632 957 469 +f 957 434 469 +f 469 434 512 +f 469 512 542 +f 470 469 542 +f 588 470 542 +f 902 588 542 +f 738 902 542 +f 698 902 738 +f 686 698 738 +f 512 686 738 +f 512 436 686 +f 436 860 686 +f 860 753 686 +f 753 684 686 +f 684 685 686 +f 749 685 684 +f 749 684 746 +f 745 749 746 +f 745 746 743 +f 742 745 743 +f 742 743 741 +f 740 742 741 +f 740 741 649 +f 737 740 649 +f 737 649 613 +f 734 737 613 +f 734 613 515 +f 731 734 515 +f 731 515 514 +f 728 731 514 +f 728 514 538 +f 727 728 538 +f 727 538 705 +f 727 705 664 +f 663 727 664 +f 590 663 664 +f 591 590 664 +f 591 664 732 +f 825 591 732 +f 730 825 732 +f 503 730 732 +f 981 503 732 +f 981 732 736 +f 993 981 736 +f 993 736 709 +f 989 993 709 +f 989 709 704 +f 976 989 704 +f 976 704 706 +f 891 976 706 +f 880 891 706 +f 880 706 949 +f 880 949 726 +f 881 880 726 +f 896 881 726 +f 650 896 726 +f 538 650 726 +f 538 540 650 +f 540 906 650 +f 908 906 540 +f 539 908 540 +f 500 908 539 +f 538 500 539 +f 525 908 500 +f 505 525 500 +f 504 505 500 +f 499 504 500 +f 498 499 500 +f 654 498 500 +f 649 654 500 +f 699 498 654 +f 700 699 654 +f 700 654 752 +f 700 752 753 +f 724 700 753 +f 729 724 753 +f 729 721 724 +f 735 721 729 +f 435 735 729 +f 435 729 860 +f 887 735 435 +f 434 887 435 +f 434 435 436 +f 872 887 434 +f 872 871 887 +f 871 886 887 +f 886 871 958 +f 886 958 956 +f 892 886 956 +f 892 956 954 +f 897 892 954 +f 897 954 953 +f 545 897 953 +f 545 953 490 +f 548 545 490 +f 489 548 490 +f 432 489 490 +f 929 432 490 +f 929 930 432 +f 930 430 432 +f 430 431 432 +f 430 433 431 +f 433 438 431 +f 431 438 492 +f 431 492 489 +f 492 556 489 +f 564 556 492 +f 495 564 492 +f 568 564 495 +f 497 568 495 +f 446 497 495 +f 438 446 495 +f 439 446 438 +f 439 447 446 +f 447 452 446 +f 447 453 452 +f 453 458 452 +f 452 458 502 +f 452 502 497 +f 502 572 497 +f 502 578 572 +f 572 578 577 +f 572 577 571 +f 568 572 571 +f 568 571 567 +f 567 571 711 +f 567 711 710 +f 563 567 710 +f 563 710 707 +f 555 563 707 +f 555 707 703 +f 546 555 703 +f 546 703 699 +f 547 546 699 +f 545 546 547 +f 548 555 546 +f 548 556 555 +f 703 707 499 +f 556 563 555 +f 707 710 504 +f 564 567 563 +f 710 711 505 +f 711 761 505 +f 711 716 761 +f 716 764 761 +f 764 525 761 +f 767 525 764 +f 718 767 764 +f 718 722 767 +f 722 641 767 +f 722 562 641 +f 722 725 562 +f 725 919 562 +f 725 824 919 +f 824 834 919 +f 919 834 631 +f 919 631 744 +f 824 823 834 +f 823 833 834 +f 834 833 849 +f 833 848 849 +f 848 853 849 +f 849 853 869 +f 869 853 872 +f 869 872 957 +f 848 961 853 +f 961 960 853 +f 853 960 871 +f 961 943 960 +f 943 940 960 +f 960 940 958 +f 940 938 958 +f 940 939 938 +f 939 937 938 +f 938 937 936 +f 938 936 956 +f 937 935 936 +f 936 935 931 +f 936 931 954 +f 935 930 931 +f 930 935 1129 +f 935 937 1129 +f 937 939 1129 +f 939 942 1129 +f 942 932 1129 +f 1129 932 565 +f 558 1129 565 +f 558 565 559 +f 557 558 559 +f 557 559 688 +f 691 557 688 +f 691 688 702 +f 701 691 702 +f 1066 701 702 +f 1098 1066 702 +f 1066 1098 1121 +f 1066 1121 1117 +f 1067 1066 1117 +f 1123 1067 1117 +f 1111 1123 1117 +f 1112 1111 1117 +f 1112 1117 1038 +f 797 1112 1038 +f 1018 797 1038 +f 1018 1038 1031 +f 1019 1018 1031 +f 1019 1031 908 +f 1031 907 908 +f 1031 984 907 +f 984 983 907 +f 907 983 879 +f 907 879 906 +f 906 879 896 +f 983 974 879 +f 974 891 879 +f 974 973 891 +f 973 977 891 +f 976 977 973 +f 980 976 973 +f 979 980 973 +f 972 979 973 +f 988 979 972 +f 988 972 1188 +f 1193 988 1188 +f 1191 1193 1188 +f 1191 1188 1189 +f 1190 1191 1189 +f 987 1190 1189 +f 975 987 1189 +f 972 975 1189 +f 975 972 974 +f 987 975 984 +f 1030 987 984 +f 1030 1028 987 +f 987 1028 1194 +f 1194 1028 1191 +f 1028 1014 1191 +f 1014 988 1191 +f 1014 1015 988 +f 1027 1015 1014 +f 1026 1027 1014 +f 1027 1026 665 +f 1027 665 659 +f 659 665 660 +f 659 660 652 +f 651 659 652 +f 651 652 647 +f 644 651 647 +f 644 647 645 +f 644 645 630 +f 646 644 630 +f 594 646 630 +f 592 594 630 +f 629 592 630 +f 592 629 862 +f 1110 592 862 +f 1110 862 727 +f 593 592 1110 +f 1107 593 1110 +f 1107 1110 663 +f 712 593 1107 +f 1099 712 1107 +f 1099 1107 590 +f 589 1099 590 +f 1095 1099 589 +f 530 1095 589 +f 530 589 825 +f 1086 1095 530 +f 529 1086 530 +f 529 530 468 +f 588 529 468 +f 588 1078 529 +f 468 530 730 +f 1078 1086 529 +f 1078 858 1086 +f 858 822 1086 +f 858 859 822 +f 859 775 822 +f 822 775 713 +f 822 713 1095 +f 713 775 714 +f 712 713 714 +f 712 714 595 +f 714 1089 595 +f 1089 1122 595 +f 595 1122 594 +f 593 595 594 +f 1089 1016 1122 +f 1016 1013 1122 +f 1122 1013 646 +f 1013 1010 646 +f 1010 1013 1011 +f 1010 1011 1002 +f 979 1010 1002 +f 1010 979 644 +f 1002 1011 894 +f 1002 894 883 +f 980 1002 883 +f 980 883 885 +f 994 980 885 +f 884 994 885 +f 890 994 884 +f 883 890 884 +f 963 994 890 +f 895 963 890 +f 894 895 890 +f 894 898 895 +f 898 911 895 +f 911 962 895 +f 1001 962 911 +f 1000 1001 911 +f 1016 1001 1000 +f 1016 1036 1001 +f 1036 1034 1001 +f 1034 905 1001 +f 523 905 1034 +f 523 1034 524 +f 522 523 524 +f 522 524 775 +f 524 1053 775 +f 527 523 522 +f 528 527 522 +f 528 522 859 +f 856 528 859 +f 532 528 856 +f 610 532 856 +f 610 856 857 +f 609 610 857 +f 609 857 1074 +f 1069 609 1074 +f 1069 1074 698 +f 685 1069 698 +f 882 1069 685 +f 882 581 1069 +f 582 581 882 +f 582 882 878 +f 876 582 878 +f 876 878 875 +f 854 876 875 +f 854 875 874 +f 719 854 874 +f 719 874 873 +f 720 719 873 +f 720 873 870 +f 868 720 870 +f 868 870 867 +f 653 868 867 +f 653 867 861 +f 629 653 861 +f 653 629 645 +f 861 867 731 +f 868 653 647 +f 867 870 734 +f 720 868 652 +f 870 873 737 +f 719 720 660 +f 666 719 660 +f 873 874 740 +f 854 719 666 +f 671 854 666 +f 670 671 666 +f 665 670 666 +f 670 672 671 +f 672 673 671 +f 671 673 876 +f 672 677 673 +f 677 580 673 +f 673 580 582 +f 677 680 580 +f 680 674 580 +f 580 674 581 +f 674 608 581 +f 581 608 609 +f 681 608 674 +f 681 537 608 +f 608 537 610 +f 1060 537 681 +f 1050 1060 681 +f 1050 681 680 +f 1046 1050 680 +f 1049 1050 1046 +f 1043 1049 1046 +f 1043 1046 1044 +f 1043 1044 1039 +f 1041 1043 1039 +f 1041 1039 1030 +f 1029 1041 1030 +f 1029 1030 1031 +f 1032 1029 1031 +f 1035 1032 1031 +f 1037 1035 1031 +f 1037 1100 1035 +f 1100 1101 1035 +f 1101 1092 1035 +f 1035 1092 1096 +f 1035 1096 1087 +f 1087 1096 457 +f 1087 457 454 +f 1087 454 456 +f 1088 1087 456 +f 455 1088 456 +f 1093 1088 455 +f 457 1093 455 +f 1088 1093 1081 +f 1088 1081 1032 +f 1032 1081 1084 +f 1032 1084 1077 +f 1077 1084 473 +f 1077 473 463 +f 1077 463 465 +f 1076 1077 465 +f 464 1076 465 +f 1082 1076 464 +f 473 1082 464 +f 1076 1082 1072 +f 1076 1072 1071 +f 1076 1071 1029 +f 1029 1071 1070 +f 1070 1071 1172 +f 1070 1172 1171 +f 1041 1070 1171 +f 1041 1171 1166 +f 1171 1167 1166 +f 1167 1043 1166 +f 1171 1174 1167 +f 1174 1049 1167 +f 1058 1049 1174 +f 1173 1058 1174 +f 1062 1058 1173 +f 1071 1062 1173 +f 1058 1062 1060 +f 1072 1060 1062 +f 1072 1068 1060 +f 1060 1068 1065 +f 1065 541 1060 +f 1065 1064 541 +f 541 1064 536 +f 541 536 537 +f 537 536 532 +f 536 527 532 +f 536 1056 527 +f 1056 690 527 +f 690 689 527 +f 689 739 527 +f 739 689 620 +f 1073 739 620 +f 619 1073 620 +f 619 620 621 +f 626 619 621 +f 1056 626 621 +f 1056 1064 626 +f 1064 655 626 +f 655 619 626 +f 679 619 655 +f 678 679 655 +f 1065 678 655 +f 1068 679 678 +f 1068 619 679 +f 1068 1073 619 +f 1073 905 739 +f 1083 905 1073 +f 1079 1083 1073 +f 1079 1073 1072 +f 1080 1079 1072 +f 1081 1080 1072 +f 1081 1085 1080 +f 1080 1085 501 +f 1080 501 474 +f 1080 474 476 +f 474 475 476 +f 475 1083 476 +f 501 1083 475 +f 474 501 475 +f 1085 1083 501 +f 1085 944 1083 +f 1090 944 1085 +f 1090 1094 944 +f 1097 944 1094 +f 1097 1094 535 +f 1091 1097 535 +f 1091 535 507 +f 1091 507 509 +f 1090 1091 509 +f 508 1090 509 +f 1091 1090 1081 +f 1092 1091 1081 +f 507 508 509 +f 507 535 508 +f 1092 1097 1091 +f 1102 1097 1092 +f 1103 1102 1092 +f 1104 1103 1092 +f 1105 1104 1092 +f 1108 1104 1105 +f 1108 1105 814 +f 812 1108 814 +f 812 814 813 +f 811 812 813 +f 1100 811 813 +f 1100 812 811 +f 814 1101 813 +f 1100 1108 812 +f 1105 1101 814 +f 1037 1104 1108 +f 1114 1104 1037 +f 1113 1114 1037 +f 1038 1113 1037 +f 1038 1120 1113 +f 1113 1120 807 +f 1113 807 806 +f 1113 806 810 +f 806 808 810 +f 808 1114 810 +f 1118 1114 808 +f 807 1118 808 +f 806 807 808 +f 1120 1118 807 +f 1120 1117 1118 +f 1118 1117 1104 +f 1117 1116 1104 +f 1116 1115 1104 +f 1115 1109 1104 +f 1115 941 1109 +f 1109 941 1106 +f 1109 1106 1004 +f 1103 1109 1004 +f 1103 1004 1003 +f 1003 1004 1005 +f 1003 1005 1006 +f 1102 1003 1006 +f 1106 1102 1006 +f 1005 1106 1006 +f 1004 1106 1005 +f 1106 941 944 +f 944 941 682 +f 905 944 682 +f 904 905 682 +f 904 682 605 +f 918 904 605 +f 918 605 511 +f 925 918 511 +f 925 511 503 +f 511 449 503 +f 503 449 468 +f 449 469 468 +f 469 449 462 +f 449 460 462 +f 460 449 448 +f 826 460 448 +f 816 826 448 +f 802 816 448 +f 986 802 448 +f 450 986 448 +f 450 723 986 +f 723 786 986 +f 784 786 723 +f 570 784 723 +f 554 784 570 +f 569 554 570 +f 450 569 570 +f 820 569 450 +f 449 820 450 +f 819 820 449 +f 526 819 449 +f 602 819 526 +f 511 602 526 +f 959 819 602 +f 648 959 602 +f 605 648 602 +f 955 959 648 +f 934 955 648 +f 933 934 648 +f 932 933 648 +f 932 648 682 +f 1052 933 932 +f 1054 1052 932 +f 1054 932 1139 +f 888 1054 1139 +f 888 1139 1140 +f 893 888 1140 +f 1063 893 1140 +f 1061 1063 1140 +f 1059 1061 1140 +f 1051 1059 1140 +f 1141 1051 1140 +f 1142 1141 1140 +f 1131 1142 1140 +f 1132 1131 1140 +f 1133 1132 1140 +f 1134 1133 1140 +f 1134 1140 478 +f 1134 478 472 +f 1134 472 467 +f 899 1134 467 +f 899 467 459 +f 899 459 453 +f 900 899 453 +f 900 453 1018 +f 1018 1135 900 +f 900 1135 901 +f 1135 912 901 +f 912 920 901 +f 901 920 909 +f 899 901 909 +f 920 899 909 +f 912 915 920 +f 915 1134 920 +f 912 914 915 +f 914 1133 915 +f 912 913 914 +f 913 1131 914 +f 1135 1131 913 +f 1143 1131 1135 +f 1017 1143 1135 +f 1017 1146 1143 +f 1143 1146 803 +f 801 1143 803 +f 799 801 803 +f 799 800 801 +f 800 1142 801 +f 1147 1142 800 +f 1146 1147 800 +f 1146 800 799 +f 1142 1143 801 +f 1146 799 803 +f 1017 1147 1146 +f 1151 1147 1017 +f 1152 1151 1017 +f 1020 1152 1017 +f 1020 1017 1019 +f 1020 1158 1152 +f 1152 1158 795 +f 1152 795 794 +f 1152 794 798 +f 794 796 798 +f 796 1151 798 +f 1156 1151 796 +f 795 1156 796 +f 1151 1156 1141 +f 1156 1155 1141 +f 1155 1154 1141 +f 1154 1153 1141 +f 1153 1149 1141 +f 1141 1149 1148 +f 1141 1148 1144 +f 1144 1148 783 +f 782 1144 783 +f 780 782 783 +f 780 781 782 +f 781 1145 782 +f 1149 1145 781 +f 1149 933 1145 +f 1148 781 780 +f 1145 1144 782 +f 1144 1145 1052 +f 1144 1052 1051 +f 1051 1052 574 +f 1051 574 852 +f 852 574 832 +f 855 852 832 +f 1059 855 832 +f 1059 852 855 +f 832 574 573 +f 1061 832 573 +f 573 574 575 +f 1063 573 575 +f 574 1055 575 +f 575 1055 889 +f 888 575 889 +f 1055 1054 889 +f 574 1054 1055 +f 1148 780 783 +f 1148 1149 781 +f 1153 933 1149 +f 1153 1157 933 +f 1159 933 1157 +f 1159 1157 787 +f 1154 1159 787 +f 1154 787 792 +f 1154 792 789 +f 792 787 789 +f 787 788 789 +f 788 1153 789 +f 787 1157 788 +f 479 933 1159 +f 480 479 1159 +f 480 1159 1155 +f 519 480 1155 +f 1163 519 1155 +f 1162 1163 1155 +f 1160 1162 1155 +f 1160 1155 1020 +f 1126 1160 1020 +f 1022 1126 1020 +f 1022 1165 1126 +f 1126 1165 444 +f 1126 444 443 +f 443 444 445 +f 1160 443 445 +f 451 1160 445 +f 444 451 445 +f 444 1165 451 +f 1165 1162 451 +f 1160 1126 443 +f 1162 1160 451 +f 1165 1163 1162 +f 1163 483 519 +f 519 483 482 +f 519 482 520 +f 520 482 903 +f 480 520 903 +f 481 480 903 +f 482 481 903 +f 482 483 481 +f 483 479 481 +f 916 483 1163 +f 480 519 520 +f 479 480 481 +f 483 933 479 +f 995 933 483 +f 1157 1153 788 +f 1153 1154 789 +f 1155 1159 1154 +f 1158 1155 1156 +f 794 795 796 +f 1158 1156 795 +f 1020 1155 1158 +f 1151 1152 798 +f 1151 1141 1147 +f 1135 913 912 +f 1017 1135 1018 +f 1018 453 692 +f 692 453 693 +f 692 693 694 +f 692 694 717 +f 797 692 717 +f 797 717 866 +f 717 694 866 +f 694 863 866 +f 863 865 866 +f 865 1112 866 +f 863 864 865 +f 864 1124 865 +f 1124 1111 865 +f 863 1124 864 +f 1125 1124 863 +f 1125 1123 1124 +f 433 1123 1125 +f 439 433 1125 +f 693 439 1125 +f 694 1125 863 +f 693 1125 694 +f 899 900 901 +f 459 467 466 +f 459 466 458 +f 458 466 506 +f 466 510 506 +f 506 510 584 +f 506 584 578 +f 578 584 583 +f 584 586 583 +f 583 586 722 +f 584 587 586 +f 586 587 824 +f 510 587 584 +f 510 513 587 +f 513 968 587 +f 587 968 823 +f 968 965 823 +f 968 952 965 +f 952 948 965 +f 965 948 964 +f 965 964 833 +f 948 946 964 +f 964 946 961 +f 948 947 946 +f 947 945 946 +f 946 945 943 +f 945 942 943 +f 945 1139 942 +f 947 1139 945 +f 951 1139 947 +f 478 1139 951 +f 478 951 952 +f 477 478 952 +f 951 947 948 +f 952 951 948 +f 477 952 968 +f 513 477 968 +f 471 477 513 +f 472 477 471 +f 471 513 510 +f 466 471 510 +f 467 471 466 +f 1134 899 920 +f 467 472 471 +f 472 478 477 +f 1133 1134 915 +f 1132 1133 914 +f 1131 1132 914 +f 1143 1142 1131 +f 1147 1141 1142 +f 1141 1144 1051 +f 1059 1051 852 +f 1061 1059 832 +f 1063 1061 573 +f 893 1063 575 +f 888 893 575 +f 1140 1139 478 +f 1054 888 889 +f 1052 1054 574 +f 1145 933 1052 +f 995 934 933 +f 955 934 531 +f 531 934 517 +f 531 517 516 +f 521 531 516 +f 521 516 534 +f 576 521 534 +f 1136 576 534 +f 533 1136 534 +f 517 533 534 +f 517 534 518 +f 533 517 1179 +f 1179 517 1186 +f 1179 1186 759 +f 757 1179 759 +f 757 759 760 +f 758 757 760 +f 758 760 1033 +f 971 758 1033 +f 971 1033 821 +f 804 971 821 +f 804 821 816 +f 658 971 804 +f 790 658 804 +f 790 804 802 +f 786 790 802 +f 785 790 786 +f 785 656 790 +f 661 656 785 +f 661 785 851 +f 850 661 851 +f 850 851 847 +f 846 850 847 +f 846 847 844 +f 843 846 844 +f 843 844 840 +f 839 843 840 +f 839 840 838 +f 837 839 838 +f 837 838 836 +f 835 837 836 +f 835 836 831 +f 830 835 831 +f 830 831 828 +f 827 830 828 +f 827 828 829 +f 1137 827 829 +f 1008 1137 829 +f 1008 829 774 +f 791 1008 774 +f 791 774 561 +f 928 1008 791 +f 805 928 791 +f 805 791 560 +f 924 928 805 +f 815 924 805 +f 815 805 461 +f 826 815 461 +f 826 910 815 +f 821 910 826 +f 910 924 815 +f 910 1042 924 +f 1042 1047 924 +f 1047 1042 763 +f 1047 763 766 +f 1130 1047 766 +f 1130 766 768 +f 1137 1130 768 +f 1137 768 770 +f 768 551 770 +f 551 769 770 +f 770 769 598 +f 827 770 598 +f 769 596 598 +f 596 597 598 +f 597 830 598 +f 596 599 597 +f 599 600 597 +f 600 601 597 +f 601 835 597 +f 600 603 601 +f 603 604 601 +f 604 837 601 +f 603 606 604 +f 606 607 604 +f 607 839 604 +f 606 611 607 +f 611 612 607 +f 612 843 607 +f 611 617 612 +f 617 618 612 +f 618 846 612 +f 617 622 618 +f 618 622 850 +f 617 623 622 +f 623 627 622 +f 622 627 661 +f 623 628 627 +f 628 634 627 +f 627 634 656 +f 634 642 656 +f 642 657 656 +f 656 657 658 +f 657 687 658 +f 657 755 687 +f 755 756 687 +f 687 756 758 +f 755 1128 756 +f 1128 1179 756 +f 1128 1136 1179 +f 1040 1136 1128 +f 1021 1040 1128 +f 1127 1021 1128 +f 1127 1128 643 +f 1127 643 635 +f 1192 1127 635 +f 1192 635 628 +f 1187 1192 628 +f 845 1192 1187 +f 637 845 1187 +f 637 1187 1185 +f 637 1185 1024 +f 614 637 1024 +f 637 614 638 +f 636 637 638 +f 636 638 662 +f 616 636 662 +f 614 616 662 +f 614 615 616 +f 615 667 616 +f 616 667 668 +f 616 668 669 +f 668 748 669 +f 748 845 669 +f 669 845 636 +f 667 748 668 +f 683 748 667 +f 683 1021 748 +f 683 1180 1021 +f 1021 1180 544 +f 1021 544 566 +f 544 486 566 +f 486 488 566 +f 566 488 576 +f 1040 566 576 +f 486 487 488 +f 488 487 521 +f 950 487 486 +f 543 950 486 +f 1180 950 543 +f 1180 996 950 +f 996 997 950 +f 997 996 579 +f 997 579 569 +f 996 585 579 +f 579 585 554 +f 585 552 554 +f 841 552 585 +f 922 841 585 +f 921 922 585 +f 922 921 1180 +f 841 922 992 +f 966 841 992 +f 1150 966 992 +f 1150 992 1009 +f 992 991 1009 +f 990 991 992 +f 991 990 615 +f 1025 991 615 +f 990 683 615 +f 990 922 683 +f 966 1150 969 +f 966 842 841 +f 842 966 553 +f 552 842 553 +f 922 990 992 +f 841 842 552 +f 996 921 585 +f 921 996 1180 +f 950 997 487 +f 997 820 487 +f 820 531 487 +f 543 486 544 +f 1180 543 544 +f 683 922 1180 +f 615 683 667 +f 615 614 1025 +f 616 669 636 +f 614 662 638 +f 1185 1184 1024 +f 1024 1184 1183 +f 1024 1183 696 +f 1024 696 708 +f 708 696 695 +f 708 695 747 +f 1057 708 747 +f 754 1057 747 +f 751 754 747 +f 750 751 747 +f 697 750 747 +f 697 998 750 +f 998 1007 750 +f 998 1178 1007 +f 1178 1175 1007 +f 1007 1175 1048 +f 1007 1048 754 +f 1048 1175 1169 +f 1057 1048 1169 +f 1057 1169 1023 +f 1023 1169 1170 +f 1175 1012 1169 +f 1012 715 1169 +f 715 1012 493 +f 715 493 494 +f 491 715 494 +f 1045 715 491 +f 441 1045 491 +f 442 441 491 +f 484 442 491 +f 485 484 491 +f 493 485 491 +f 496 485 493 +f 496 440 485 +f 1177 440 496 +f 1176 1177 496 +f 1176 496 1012 +f 1177 1176 596 +f 1177 550 440 +f 550 441 440 +f 550 549 441 +f 549 1182 441 +f 1182 934 441 +f 1182 549 765 +f 762 1182 765 +f 762 765 766 +f 1186 1182 762 +f 765 549 551 +f 549 550 551 +f 550 1177 769 +f 440 484 485 +f 484 440 442 +f 440 441 442 +f 441 934 1045 +f 1045 934 999 +f 715 1045 999 +f 493 491 494 +f 1012 496 493 +f 1175 1176 1012 +f 1176 1175 599 +f 1175 1178 600 +f 696 1178 998 +f 1181 1178 696 +f 1178 1181 603 +f 696 998 697 +f 750 1007 751 +f 751 1007 754 +f 1048 1057 754 +f 708 1057 1023 +f 695 697 747 +f 695 696 697 +f 1183 1181 696 +f 1181 1183 606 +f 1183 1184 611 +f 1184 1185 617 +f 1185 1187 623 +f 845 637 636 +f 845 748 1192 +f 748 1127 1192 +f 635 643 642 +f 748 1021 1127 +f 1040 1021 566 +f 643 1128 755 +f 643 755 657 +f 642 643 657 +f 635 642 634 +f 628 635 634 +f 1187 628 623 +f 1185 623 617 +f 1184 617 611 +f 1183 611 606 +f 1181 606 603 +f 1178 603 600 +f 1175 600 599 +f 1176 599 596 +f 769 1177 596 +f 551 550 769 +f 765 551 768 +f 766 765 768 +f 1047 1130 928 +f 763 762 766 +f 759 762 763 +f 1042 760 763 +f 1033 1042 910 +f 924 1047 928 +f 928 1130 1008 +f 774 829 772 +f 1130 1137 1008 +f 827 1137 770 +f 829 828 772 +f 830 827 598 +f 828 831 773 +f 835 830 597 +f 831 836 793 +f 837 835 601 +f 836 838 809 +f 839 837 604 +f 838 840 817 +f 843 839 607 +f 840 844 917 +f 846 843 612 +f 844 847 917 +f 618 850 846 +f 847 851 923 +f 622 661 850 +f 851 785 926 +f 627 656 661 +f 656 658 790 +f 658 687 971 +f 821 1033 910 +f 687 758 971 +f 1033 760 1042 +f 756 757 758 +f 760 759 763 +f 756 1179 757 +f 759 1186 762 +f 1186 517 1182 +f 1136 533 1179 +f 1136 1040 576 +f 488 521 576 +f 534 516 518 +f 487 531 521 +f 516 517 518 +f 517 934 1182 +f 959 955 531 +f 819 959 531 +f 820 819 531 +f 820 997 569 +f 569 579 554 +f 784 785 786 +f 785 784 624 +f 450 570 723 +f 786 802 986 +f 802 804 816 +f 816 821 826 +f 460 826 461 +f 448 449 450 +f 511 526 449 +f 962 918 925 +f 962 925 981 +f 963 962 981 +f 511 605 602 +f 962 904 918 +f 682 648 605 +f 962 905 904 +f 941 932 682 +f 1098 932 941 +f 1115 1119 941 +f 1121 941 1119 +f 1121 1119 777 +f 1116 1121 777 +f 1116 777 776 +f 1116 776 779 +f 776 778 779 +f 778 1115 779 +f 776 777 778 +f 777 1119 778 +f 1119 1115 778 +f 1115 1116 779 +f 1114 1113 810 +f 1114 1118 1104 +f 1104 1109 1103 +f 1102 1103 1003 +f 1102 1106 1097 +f 535 1094 508 +f 1106 944 1097 +f 1094 1090 508 +f 1090 1085 1081 +f 1079 1080 476 +f 1083 1079 476 +f 1083 944 905 +f 620 689 621 +f 689 690 621 +f 690 1056 621 +f 1064 1056 536 +f 1064 1065 655 +f 1065 1068 678 +f 1072 1073 1068 +f 1171 1173 1174 +f 1171 1172 1173 +f 1172 1071 1173 +f 1071 1072 1062 +f 1082 1081 1072 +f 1077 1076 1029 +f 463 464 465 +f 463 473 464 +f 1084 1082 473 +f 1084 1081 1082 +f 1093 1092 1081 +f 1087 1088 1032 +f 454 455 456 +f 454 457 455 +f 1096 1093 457 +f 1096 1092 1093 +f 1101 1105 1092 +f 1101 1100 813 +f 1037 1108 1100 +f 1035 1087 1032 +f 1032 1077 1029 +f 1070 1041 1029 +f 1043 1041 1166 +f 1039 1044 672 +f 1044 1046 677 +f 1049 1043 1167 +f 1049 1058 1050 +f 1058 1060 1050 +f 1060 541 537 +f 680 681 674 +f 1046 680 677 +f 1044 677 672 +f 1039 672 670 +f 1026 1039 670 +f 1039 1026 1028 +f 874 875 742 +f 671 876 854 +f 875 878 745 +f 673 582 876 +f 878 882 749 +f 580 581 582 +f 581 609 1069 +f 1074 857 1078 +f 1074 1078 902 +f 608 610 609 +f 857 856 858 +f 537 532 610 +f 532 527 528 +f 527 739 523 +f 524 1034 1053 +f 523 739 905 +f 1034 1036 1053 +f 1053 1036 1089 +f 1001 905 962 +f 898 1000 911 +f 1011 1000 898 +f 962 963 895 +f 994 963 981 +f 980 994 993 +f 883 884 885 +f 883 894 890 +f 1011 898 894 +f 1013 1000 1011 +f 1013 1016 1000 +f 1036 1016 1089 +f 1053 1089 714 +f 775 1053 714 +f 859 522 775 +f 856 859 858 +f 857 858 1078 +f 1086 822 1095 +f 1095 713 1099 +f 713 712 1099 +f 593 712 595 +f 629 861 862 +f 862 861 728 +f 592 593 594 +f 1122 646 594 +f 1010 644 646 +f 645 629 630 +f 647 653 645 +f 979 651 644 +f 979 1015 651 +f 652 868 647 +f 1015 659 651 +f 660 720 652 +f 665 666 660 +f 1026 670 665 +f 1015 1027 659 +f 1028 1026 1014 +f 1030 1039 1028 +f 987 1194 1190 +f 1194 1191 1190 +f 1191 988 1193 +f 1188 972 1189 +f 1015 979 988 +f 979 1002 980 +f 972 973 974 +f 983 975 974 +f 984 975 983 +f 1030 984 1031 +f 1017 1018 1019 +f 1038 1037 1031 +f 1018 692 797 +f 1112 797 866 +f 1038 1117 1120 +f 1111 1112 865 +f 1124 1123 1111 +f 1123 1075 1067 +f 1067 1075 691 +f 1123 558 1075 +f 1117 1121 1116 +f 1098 941 1121 +f 1066 1067 701 +f 1067 691 701 +f 688 1098 702 +f 1075 557 691 +f 559 1098 688 +f 1075 558 557 +f 565 1098 559 +f 1123 1129 558 +f 430 1129 1123 +f 565 932 1098 +f 1139 932 942 +f 942 939 940 +f 943 942 940 +f 946 943 961 +f 964 961 848 +f 833 964 848 +f 823 965 833 +f 587 823 824 +f 586 824 725 +f 586 725 722 +f 583 722 718 +f 577 583 718 +f 577 718 716 +f 641 525 767 +f 733 525 641 +f 716 718 764 +f 571 716 711 +f 571 577 716 +f 578 583 577 +f 502 506 578 +f 458 506 502 +f 453 459 458 +f 453 447 693 +f 447 439 693 +f 446 452 497 +f 572 568 497 +f 564 568 567 +f 556 564 563 +f 438 495 492 +f 433 439 438 +f 433 430 1123 +f 430 930 1129 +f 931 930 929 +f 931 929 953 +f 432 431 489 +f 556 548 489 +f 545 548 546 +f 953 929 490 +f 897 545 547 +f 721 897 547 +f 721 547 700 +f 954 931 953 +f 892 897 721 +f 956 936 954 +f 886 892 735 +f 958 938 956 +f 871 960 958 +f 853 871 872 +f 887 886 735 +f 735 892 721 +f 724 721 700 +f 752 654 746 +f 547 699 700 +f 699 703 498 +f 703 499 498 +f 707 504 499 +f 710 505 504 +f 761 525 505 +f 967 908 525 +f 908 907 906 +f 538 539 540 +f 906 896 650 +f 896 879 881 +f 879 880 881 +f 949 706 726 +f 706 705 726 +f 879 891 880 +f 977 976 891 +f 704 705 706 +f 980 989 976 +f 709 705 704 +f 980 993 989 +f 736 705 709 +f 994 981 993 +f 981 925 503 +f 503 468 730 +f 730 530 825 +f 825 589 591 +f 732 664 736 +f 589 590 591 +f 590 1107 663 +f 663 1110 727 +f 664 705 736 +f 705 538 726 +f 862 728 727 +f 538 514 500 +f 861 731 728 +f 514 515 500 +f 867 734 731 +f 515 613 500 +f 870 737 734 +f 613 649 500 +f 873 740 737 +f 741 654 649 +f 874 742 740 +f 743 654 741 +f 875 745 742 +f 746 654 743 +f 878 749 745 +f 684 752 746 +f 882 685 749 +f 753 752 684 +f 860 729 753 +f 436 435 860 +f 685 698 686 +f 698 1074 902 +f 902 1078 588 +f 588 468 470 +f 468 469 470 +f 512 738 542 +f 512 434 436 +f 957 872 434 +f 849 869 957 +f 834 849 631 +f 632 469 462 +f 460 461 462 +f 461 805 560 +f 744 631 633 +f 562 919 744 +f 560 791 561 +f 561 774 771 +f 562 675 641 +f 774 772 771 +f 828 773 772 +f 675 676 641 +f 676 639 641 +f 831 793 773 +f 639 640 641 +f 836 809 793 +f 640 733 641 +f 838 817 809 +f 818 525 733 +f 840 917 817 +f 1138 525 818 +f 847 923 917 +f 985 525 1138 +f 851 926 923 +f 625 525 985 +f 785 624 926 +f 624 784 554 +f 552 553 554 +f 553 966 969 +f 969 1150 970 +f 877 525 625 +f 1150 982 970 +f 877 967 525 +f 982 1150 1009 +f 967 1019 908 +f 991 1025 1009 +f 1025 614 1024 +f 1024 708 1023 +f 1022 1020 1019 +f 1023 1170 1164 +f 1164 1170 427 +f 1164 427 437 +f 437 427 429 +f 1161 437 429 +f 428 1161 429 +f 427 428 429 +f 427 1170 428 +f 1170 1168 428 +f 1161 1164 437 +f 1022 1163 1165 +f 1168 1161 428 +f 1170 1169 1168 +f 927 916 1163 +f 715 999 1169 +f 999 934 995 +f 916 995 483 +f 916 927 424 +f 425 978 426 +f 927 425 424 + + +o Object.3 +v -152.290802 74.409988 -4.750584 +v -151.554810 74.374481 2.221806 +v -151.261688 74.894272 -4.750584 +v -147.288788 -0.591209 -0.500499 +v -146.088806 -0.313713 -0.500499 +v -146.552795 -0.387909 -2.450489 +v -146.088806 -63.296135 0.499577 +v -145.258301 -63.424538 0.499577 +v -145.583191 -63.395454 -2.450412 +v -146.088806 -63.313637 -0.500423 +v -144.715210 -63.723457 -2.450412 +v -142.924896 -17.796188 -0.500476 +v -143.763306 -4.493004 -0.141193 +v -142.924896 -3.696205 -0.500499 +v -145.197998 -4.552505 0.249508 +v -146.061310 -4.796005 0.249508 +v -144.442291 -3.639000 0.249501 +v -145.449799 -76.837517 2.200291 +v -145.718811 -77.662315 2.200291 +v -145.534393 -77.690422 -0.500408 +v -145.197998 58.447430 0.549435 +v -144.442291 59.360939 0.549435 +v -144.952301 58.623013 -2.450557 +v -144.009613 -64.326057 -2.450412 +v -152.477112 -79.843819 2.003796 +v -153.213013 -78.900719 1.259594 +v -153.579407 -78.668938 -4.750401 +v -141.651703 69.041382 0.798520 +v -141.352112 68.524979 0.670117 +v -141.466888 68.943726 -0.500583 +v -144.340607 -5.160103 0.106205 +v -144.024994 -64.242638 -0.028926 +v -147.288788 -31.096169 0.499539 +v -147.288788 -31.096169 -0.500461 +v -151.495209 -31.096169 -0.500461 +v -148.742889 -2.396210 -0.500499 +v -148.742889 -3.696205 -0.500499 +v -151.495209 -2.396210 -0.500499 +v -143.549805 -65.132057 -2.450412 +v -153.095093 -79.698128 -4.750401 +v -145.769714 74.002342 2.159710 +v -145.585205 71.157196 2.155415 +v -145.475189 71.323509 -0.500583 +v -145.566498 72.810097 -0.500591 +v -151.736511 73.309799 -2.900585 +v -152.204498 72.752007 -2.900585 +v -152.260498 72.784302 -4.750584 +v -143.430817 -65.396141 -0.283626 +v -143.390289 -66.046150 -2.450412 +v -151.518188 -80.383125 2.278691 +v -150.792694 -80.704002 2.200291 +v -152.882202 73.304413 1.706410 +v -153.343201 72.435310 1.006115 +v -145.465607 73.800308 -2.900585 +v -146.979614 -4.552505 0.249508 +v -146.116302 -1.296410 0.249501 +v -143.430817 -66.696129 -0.283626 +v -143.549805 -66.960228 -2.450412 +v -145.258301 -5.667801 0.499508 +v -145.461792 72.851990 -2.900585 +v -145.258301 -17.796188 0.499524 +v -143.803589 -67.556221 -0.123821 +v -144.009613 -67.766228 -2.450412 +v -142.924896 36.603745 -0.500545 +v -145.258301 45.603745 0.499447 +v -142.924896 45.603745 -0.500553 +v -143.274414 69.225388 1.557316 +v -142.089508 69.289276 0.954014 +v -143.669006 69.517319 -0.500583 +v -141.740112 69.219505 -0.500583 +v -147.288788 -32.396172 -0.500461 +v -147.288788 -32.396172 0.499539 +v -151.495209 -32.396172 -0.500461 +v -144.432800 -68.233818 0.145787 +v -144.715210 -68.368828 -2.450405 +v -144.442291 60.546513 0.549427 +v -145.470215 61.590755 0.549427 +v -144.568695 -2.179214 -2.450489 +v -144.442291 -2.453407 0.249501 +v -145.470215 -1.409210 -2.450489 +v -150.962891 72.698151 -2.900585 +v -146.088806 13.003777 0.499485 +v -146.088806 13.003777 -0.500515 +v -146.088806 25.003761 -0.500530 +v -145.258301 -68.667717 0.499585 +v -145.583191 -68.696831 -2.450405 +v -147.288788 -19.096191 0.499524 +v -147.288788 -19.096191 -0.500476 +v -145.258301 62.575314 0.499424 +v -146.088806 62.703724 0.499424 +v -145.258301 68.709854 0.499417 +v -144.715210 57.631004 -2.450557 +v -145.583191 57.303013 -2.450557 +v -146.088806 58.203724 -2.450557 +v -146.088806 69.475876 0.499417 +v -152.517212 72.078995 -4.750576 +v -146.045593 -68.795815 0.499585 +v -146.088806 58.203728 0.549435 +v -146.979614 58.447430 0.549435 +v -146.116302 61.703514 0.549427 +v -146.088806 -68.778618 -0.500415 +v -146.088806 45.603745 0.499447 +v -146.088806 45.603745 -0.500553 +v -151.778015 73.359283 -4.750584 +v -147.288788 -0.571808 0.499501 +v -147.425812 -0.702209 -2.450489 +v -152.453613 72.067780 -2.900577 +v -152.359009 -78.513237 -2.900402 +v -152.419708 -78.535332 -4.750401 +v -141.333405 -74.504326 0.662487 +v -141.266602 -3.046204 -0.500499 +v -146.241516 -81.025017 -4.750392 +v -151.261688 -80.986717 -4.750392 +v -145.784912 -64.322746 -2.450412 +v -145.784912 -64.322731 0.549580 +v -146.963806 -64.530647 -2.450412 +v -143.564514 -2.092308 -2.450489 +v -144.036804 -1.293709 -2.450489 +v -146.963806 -64.530632 0.549580 +v -145.258301 36.603745 0.499455 +v -145.068512 -76.573112 -0.500408 +v -151.477692 -32.396172 0.499539 +v -145.258301 26.303757 0.499470 +v -142.924896 26.303757 -0.500530 +v -146.088806 26.303757 -0.500530 +v -147.733307 -65.447655 -2.450412 +v -150.764099 -79.924538 -4.750401 +v -151.469391 -79.667839 -4.750401 +v -144.748199 -64.921242 0.549580 +v -144.748199 -64.921257 -2.450412 +v -145.465607 -79.892738 -2.900402 +v -145.764893 -79.959023 2.197590 +v -145.390991 -79.957329 -4.750401 +v -147.437195 -1.930710 -2.450489 +v -147.838806 -3.046204 -2.450489 +v -148.140808 -1.293709 -2.450489 +v -146.134796 -80.456398 2.259892 +v -148.613098 -2.092308 -2.450489 +v -147.429413 -64.921242 0.549580 +v -144.338806 -66.046135 0.549580 +v -144.338806 -66.046150 -2.450412 +v -147.838806 -66.046135 0.549580 +v -145.197998 -1.539909 0.249501 +v -146.416687 -1.327209 -2.450489 +v -147.733307 -66.644646 -2.450412 +v -147.288788 72.792641 0.499409 +v -150.933289 72.646751 0.499417 +v -147.288788 72.810097 -0.500591 +v -147.735413 59.360939 0.549435 +v -147.735413 60.546513 0.549427 +v -143.430817 -2.396210 -0.283702 +v -143.803589 -1.536110 -0.123897 +v -142.924896 11.703773 -0.500515 +v -145.390991 73.864899 -4.750584 +v -151.127991 73.734573 -4.750584 +v -141.266602 35.953751 -0.500545 +v -150.388794 74.672783 2.155407 +v -144.432800 -0.858513 0.145703 +v -143.390594 -3.088600 -2.450489 +v -145.583191 62.604431 -2.450565 +v -146.088806 62.686275 -0.500576 +v -144.715210 62.276440 -2.450565 +v -144.952301 61.284435 0.549427 +v -144.568695 60.820770 -2.450565 +v -146.088806 57.221188 -0.500568 +v -146.594513 57.303013 -2.450557 +v -147.288788 -41.396156 0.499546 +v -147.288788 57.498779 -0.500568 +v -144.432800 62.141445 0.145627 +v -144.009613 61.673809 -2.450565 +v -146.088806 26.303757 0.499470 +v -147.288788 57.479359 0.499432 +v -147.462494 57.631004 -2.450557 +v -148.207703 58.200817 0.499432 +v -151.105896 73.673866 -2.900585 +v -143.803589 61.463863 -0.123973 +v -143.549805 60.867809 -2.450565 +v -145.258301 -0.424614 0.499501 +v -144.751801 -0.702209 -2.450489 +v -145.624908 -0.387909 -2.450489 +v -143.430817 60.603725 -0.283779 +v -143.390289 59.953720 -2.450565 +v -148.167999 58.233635 -2.450557 +v -144.730194 -75.903313 2.169392 +v -143.430817 59.303726 -0.283771 +v -143.549805 59.039635 -2.450557 +v -145.056610 70.122757 2.217915 +v -148.627808 59.039635 -2.450557 +v -152.226715 73.855164 2.149212 +v -143.763306 58.506920 -0.141269 +v -144.009613 58.233635 -2.450557 +v -148.760895 59.303726 0.499432 +v -150.752899 -79.860832 -2.900402 +v -148.742889 59.303726 -0.500568 +v -148.787292 59.953720 -2.450565 +v -145.258301 57.332138 0.499432 +v -143.832794 -75.514626 1.729489 +v -144.492096 -76.002113 -0.500408 +v -146.534088 74.680511 2.116612 +v -145.936798 74.773682 -4.750584 +v -148.742889 60.603725 -0.500576 +v -148.627808 60.867809 -2.450565 +v -148.786987 -3.088600 -2.450489 +v -141.266602 -42.046150 -0.500454 +v -141.266602 -31.746162 -0.500461 +v -148.760895 60.603725 0.499424 +v -145.258301 11.703773 0.499485 +v -145.648407 70.643547 2.299420 +v -146.088806 57.203728 0.499432 +v -152.290802 -80.502419 -4.750401 +v -151.495209 60.603725 -0.500576 +v -146.088806 35.303749 0.499455 +v -146.088806 35.303749 -0.500545 +v -148.207703 61.706646 0.499424 +v -147.288788 -41.396156 -0.500454 +v -148.167999 61.673809 -2.450565 +v -143.434692 -3.696106 -0.500499 +v -143.564514 -4.000107 -2.450489 +v -141.472992 -75.044823 -0.500408 +v -147.462494 62.276440 -2.450565 +v -148.613098 -4.000107 -2.450489 +v -147.288788 62.428093 0.499424 +v -148.760895 -3.696205 0.499501 +v -147.288788 62.408684 -0.500576 +v -151.477692 60.603725 0.499424 +v -144.036804 -4.798706 -2.450481 +v -148.179901 -4.832207 0.499508 +v -148.140808 -4.798706 -2.450481 +v -146.594513 62.604431 -2.450565 +v -148.179901 -1.260208 0.499501 +v -146.088806 -0.296211 0.499501 +v -144.751801 -5.390205 -2.450481 +v -144.471008 69.894730 -0.500583 +v -147.425812 -5.390205 -2.450481 +v -151.495209 59.303726 -0.500568 +v -145.848206 -80.797920 -4.750401 +v -145.258301 46.903740 0.499447 +v -146.088806 46.903740 0.499447 +v -151.477692 -19.096191 0.499524 +v -151.495209 -19.096191 -0.500476 +v -147.288788 -5.520607 0.499508 +v -147.288788 -5.501205 -0.500492 +v -153.095093 73.605713 -4.750584 +v -145.624908 -5.704506 -2.450481 +v -146.552795 -5.704506 -2.450481 +v -151.477692 -31.096169 0.499539 +v -145.258301 13.003777 0.499485 +v -145.258301 25.003761 0.499470 +v -146.088806 25.003761 0.499470 +v -146.088806 -5.778702 -0.500492 +v -151.437103 -79.611839 -2.900402 +v -146.088806 36.603745 0.499455 +v -145.258301 35.303749 0.499455 +v -142.924896 35.303749 -0.500545 +v -151.477692 59.303726 0.499432 +v -146.088806 -5.796204 0.499508 +v -142.924896 25.003761 -0.500530 +v -151.495209 -41.396156 -0.500454 +v -147.225311 61.284435 0.549427 +v -146.416687 61.672722 -2.450565 +v -147.437195 61.069210 -2.450565 +v -144.547394 69.527054 2.149014 +v -144.952301 -4.376900 -2.450481 +v -144.364899 -3.347107 -2.450489 +v -151.477692 -2.396210 0.499501 +v -142.073395 -75.309319 1.031094 +v -141.569702 -74.995415 0.815190 +v -147.838806 59.953720 -2.450565 +v -148.760895 -2.396210 0.499501 +v -151.495209 -3.696205 -0.500499 +v -146.979614 58.447426 -2.450557 +v -151.477692 -3.696205 0.499501 +v -147.437195 58.838234 -2.450557 +v -145.097809 70.521492 -0.500583 +v -145.258301 -41.396156 0.499546 +v -146.088806 -41.396156 0.499546 +v -145.258301 -32.396172 0.499539 +v -146.088806 -32.396172 0.499539 +v -145.258301 -51.696144 0.499562 +v -146.088806 -51.696144 0.499562 +v -145.258301 -42.696144 0.499554 +v -146.088806 -42.696144 0.499554 +v -145.258301 -31.096169 0.499539 +v -146.088806 -31.096169 0.499539 +v -145.258301 -19.096191 0.499524 +v -146.088806 -19.096191 0.499524 +v -143.766907 -75.638618 -0.500408 +v -147.225311 -1.715508 0.249501 +v -145.470215 61.590752 -2.450565 +v -147.735413 -2.453407 0.249501 +v -142.924896 13.003777 -0.500515 +v -144.748199 -67.171013 0.549580 +v -146.088806 11.703773 0.499485 +v -146.088806 11.703773 -0.500515 +v -147.735413 -3.639000 0.249501 +v -147.437195 -4.161705 -2.450481 +v -151.477692 -41.396156 0.499546 +v -147.429413 -67.171013 0.549580 +v -146.979614 -4.552505 -2.450481 +v -146.088806 -4.796204 -2.450481 +v -146.088806 69.475876 -0.500583 +v -146.557404 -63.388649 -2.450412 +v -146.392700 -67.769524 0.549580 +v -147.288788 -63.591133 -0.500423 +v -147.438110 -63.709145 -2.450412 +v -147.288788 -63.571739 0.499577 +v -148.195404 -64.278435 0.499577 +v -148.156006 -64.311546 -2.450412 +v -148.624603 -65.123146 -2.450412 +v -145.784912 -67.769524 0.549580 +v -148.787292 -66.046150 -2.450412 +v -148.742889 -65.396141 -0.500423 +v -148.760895 -65.396141 0.499577 +v -148.742889 -66.696129 -0.500423 +v -148.624603 -66.969032 -2.450412 +v -146.088806 -32.396172 -0.500461 +v -148.760895 -66.696129 0.499577 +v -148.156006 -67.780739 -2.450412 +v -148.195404 -67.813820 0.499577 +v -141.266602 25.653755 -0.500530 +v -147.438110 -68.383141 -2.450405 +v -146.557404 -68.703636 -2.450405 +v -147.288788 -68.501015 -0.500415 +v -147.288788 -68.520515 0.499585 +v -142.988800 68.003716 -0.473186 +v -144.704712 68.390442 -0.500583 +v -142.924896 -32.396172 -0.500461 +v -147.288788 11.703773 0.499485 +v -147.288788 11.703773 -0.500515 +v -142.924896 -74.096123 -0.500415 +v -144.153503 -74.269417 0.026082 +v -147.288788 -17.796188 0.499524 +v -151.477692 -17.796188 0.499524 +v -153.579407 72.576546 -4.750576 +v -145.258301 -74.802223 0.499592 +v -151.412109 -78.168526 0.499592 +v -151.477692 -66.696129 0.499577 +v -146.088806 -52.996147 0.499562 +v -147.288788 -78.885017 0.499592 +v -150.577911 -78.868523 0.499592 +v -142.924896 -41.396156 -0.500454 +v -146.088806 -17.796188 0.499524 +v -151.477692 11.703773 0.499485 +v -151.495209 11.703773 -0.500515 +v -147.288788 13.003777 0.499485 +v -151.477692 13.003777 0.499485 +v -147.288788 25.003761 0.499470 +v -151.477692 25.003761 0.499470 +v -141.408905 68.398071 0.786015 +v -147.288788 26.303757 0.499470 +v -151.477692 26.303757 0.499470 +v -147.288788 35.303749 0.499455 +v -151.477692 35.303749 0.499455 +v -147.288788 36.603745 0.499455 +v -151.477692 36.603745 0.499455 +v -147.288788 45.603745 0.499447 +v -144.748199 -67.171028 -2.450412 +v -151.477692 45.603745 0.499447 +v -147.288788 46.903740 0.499447 +v -151.477692 46.903740 0.499447 +v -146.963806 -67.561638 -2.450412 +v -151.495209 -17.796188 -0.500476 +v -144.364899 59.652840 -2.450557 +v -145.784912 -67.769539 -2.450412 +v -147.288788 -17.796188 -0.500476 +v -146.088806 -41.396156 -0.500454 +v -151.461212 71.892807 0.499417 +v -151.477692 -51.696144 0.499562 +v -147.288788 -51.696144 0.499562 +v -151.495209 -51.696144 -0.500438 +v -147.288788 -52.996147 0.499562 +v -151.477692 -52.996147 0.499562 +v -152.044403 -79.185341 -4.750401 +v -151.477692 -65.396141 0.499577 +v -142.924896 -52.996147 -0.500438 +v -145.258301 -52.996147 0.499562 +v -147.288788 -51.696144 -0.500438 +v -142.101196 -75.480919 -0.500408 +v -151.495209 13.003777 -0.500515 +v -151.519592 71.903107 -2.900577 +v -145.218109 -74.774925 -0.500408 +v -144.153992 -74.269615 -0.500415 +v -146.088806 -42.696144 -0.500446 +v -146.088806 -75.568321 -0.500408 +v -146.088806 -75.568321 0.499592 +v -147.288788 -42.696144 -0.500446 +v -147.288788 -42.696144 0.499554 +v -151.495209 -42.696144 -0.500446 +v -142.924896 -42.696144 -0.500446 +v -147.288788 13.003777 -0.500515 +v -151.477692 -42.696144 0.499554 +v -147.288788 25.003761 -0.500530 +v -146.088806 -17.796188 -0.500476 +v -142.924896 59.303726 -0.500568 +v -142.924896 46.903740 -0.500553 +v -151.495209 25.003761 -0.500530 +v -142.924896 -51.696144 -0.500438 +v -151.994904 -79.143837 -2.900402 +v -147.288788 46.903740 -0.500553 +v -146.088806 46.903740 -0.500553 +v -151.495209 45.603745 -0.500553 +v -151.495209 46.903740 -0.500553 +v -147.288788 45.603745 -0.500553 +v -147.288788 36.603745 -0.500545 +v -146.088806 36.603745 -0.500545 +v -151.495209 35.303749 -0.500545 +v -151.495209 36.603745 -0.500545 +v -150.588196 -78.926933 -2.900402 +v -147.288788 35.303749 -0.500545 +v -145.461792 -78.944435 -2.900402 +v -147.288788 26.303757 -0.500530 +v -151.495209 26.303757 -0.500530 +v -146.088806 -19.096191 -0.500476 +v -142.924896 -19.096191 -0.500476 +v -146.088806 -31.096169 -0.500461 +v -142.924896 -31.096169 -0.500461 +v -151.268402 -78.534233 -2.900402 +v -146.088806 -51.696144 -0.500438 +v -151.537109 -77.796135 -2.900402 +v -151.495209 -52.996147 -0.500438 +v -147.288788 -52.996147 -0.500438 +v -146.088806 -52.996147 -0.500438 +v -147.288788 -78.902519 -0.500408 +v -145.566498 -78.902519 -0.500408 +v -151.495209 -66.696129 -0.500423 +v -151.495209 -65.396141 -0.500423 + +f 1195 1196 1197 +f 1349 1195 1197 +f 1348 1349 1197 +f 1394 1348 1197 +f 1351 1394 1197 +f 1351 1393 1394 +f 1393 1235 1394 +f 1351 1235 1393 +f 1196 1235 1351 +f 1402 1235 1196 +f 1212 1402 1196 +f 1244 1212 1196 +f 1244 1196 1383 +f 1244 1383 1219 +f 1244 1219 1404 +f 1307 1244 1404 +f 1307 1404 1322 +f 1321 1307 1322 +f 1445 1321 1322 +f 1592 1445 1322 +f 1592 1322 1567 +f 1302 1592 1567 +f 1302 1567 1303 +f 1301 1302 1303 +f 1301 1303 1290 +f 1240 1301 1290 +f 1240 1290 1241 +f 1239 1240 1241 +f 1239 1241 1298 +f 1369 1239 1298 +f 1369 1298 1349 +f 1275 1239 1369 +f 1248 1275 1369 +f 1248 1369 1348 +f 1235 1248 1348 +f 1235 1238 1248 +f 1238 1254 1248 +f 1254 1238 1275 +f 1238 1342 1275 +f 1342 1341 1275 +f 1341 1574 1275 +f 1275 1574 1240 +f 1341 1561 1574 +f 1561 1419 1574 +f 1419 1405 1574 +f 1405 1429 1574 +f 1429 1613 1574 +f 1613 1302 1574 +f 1611 1302 1613 +f 1530 1611 1613 +f 1619 1530 1613 +f 1620 1619 1613 +f 1614 1620 1613 +f 1564 1614 1613 +f 1582 1564 1613 +f 1452 1582 1613 +f 1267 1452 1613 +f 1229 1267 1613 +f 1434 1229 1613 +f 1556 1434 1613 +f 1464 1556 1613 +f 1232 1464 1613 +f 1538 1232 1613 +f 1573 1538 1613 +f 1590 1573 1613 +f 1606 1590 1613 +f 1600 1606 1613 +f 1601 1600 1613 +f 1595 1601 1613 +f 1596 1595 1613 +f 1593 1595 1596 +f 1553 1593 1596 +f 1554 1553 1596 +f 1554 1596 1429 +f 1449 1554 1429 +f 1386 1449 1429 +f 1388 1386 1429 +f 1386 1388 1382 +f 1368 1386 1382 +f 1377 1368 1382 +f 1377 1382 1467 +f 1465 1377 1467 +f 1293 1465 1467 +f 1343 1293 1467 +f 1343 1467 1462 +f 1344 1343 1462 +f 1344 1462 1455 +f 1453 1344 1455 +f 1453 1455 1454 +f 1294 1453 1454 +f 1271 1294 1454 +f 1483 1271 1454 +f 1483 1454 1354 +f 1356 1483 1354 +f 1283 1356 1354 +f 1284 1283 1354 +f 1355 1284 1354 +f 1423 1355 1354 +f 1418 1355 1423 +f 1414 1418 1423 +f 1455 1414 1423 +f 1455 1410 1414 +f 1410 1408 1414 +f 1408 1416 1414 +f 1416 1408 1561 +f 1396 1408 1410 +f 1462 1396 1410 +f 1462 1389 1396 +f 1389 1395 1396 +f 1395 1400 1396 +f 1400 1395 1405 +f 1395 1388 1405 +f 1388 1395 1389 +f 1400 1408 1396 +f 1400 1419 1408 +f 1416 1418 1414 +f 1418 1416 1342 +f 1416 1340 1342 +f 1340 1416 1341 +f 1355 1418 1342 +f 1495 1355 1342 +f 1237 1495 1342 +f 1468 1495 1237 +f 1236 1468 1237 +f 1235 1236 1237 +f 1236 1381 1468 +f 1381 1427 1468 +f 1427 1520 1468 +f 1263 1520 1427 +f 1519 1520 1263 +f 1264 1519 1263 +f 1262 1264 1263 +f 1261 1262 1263 +f 1381 1261 1263 +f 1381 1456 1261 +f 1261 1456 1543 +f 1456 1378 1543 +f 1378 1391 1543 +f 1391 1461 1543 +f 1461 1304 1543 +f 1543 1304 1223 +f 1222 1543 1223 +f 1222 1223 1224 +f 1222 1224 1264 +f 1224 1589 1264 +f 1589 1588 1264 +f 1588 1375 1264 +f 1588 1379 1375 +f 1375 1379 1376 +f 1375 1376 1371 +f 1370 1375 1371 +f 1370 1371 1364 +f 1363 1370 1364 +f 1363 1364 1356 +f 1364 1358 1356 +f 1370 1363 1519 +f 1363 1283 1519 +f 1283 1285 1519 +f 1371 1358 1364 +f 1557 1358 1371 +f 1557 1270 1358 +f 1270 1357 1358 +f 1358 1357 1483 +f 1357 1270 1271 +f 1270 1216 1271 +f 1216 1215 1271 +f 1215 1292 1271 +f 1292 1215 1288 +f 1293 1292 1288 +f 1292 1293 1294 +f 1288 1215 1217 +f 1286 1288 1217 +f 1385 1286 1217 +f 1380 1385 1217 +f 1380 1217 1557 +f 1380 1557 1376 +f 1217 1216 1557 +f 1384 1385 1380 +f 1379 1384 1380 +f 1384 1390 1385 +f 1390 1384 1589 +f 1431 1390 1589 +f 1431 1589 1594 +f 1432 1431 1594 +f 1432 1594 1359 +f 1403 1432 1359 +f 1403 1359 1287 +f 1390 1403 1287 +f 1390 1287 1286 +f 1287 1359 1360 +f 1287 1360 1288 +f 1288 1360 1465 +f 1360 1367 1465 +f 1360 1362 1367 +f 1362 1366 1367 +f 1366 1368 1367 +f 1366 1554 1368 +f 1593 1366 1362 +f 1359 1593 1362 +f 1359 1362 1360 +f 1594 1593 1359 +f 1594 1597 1593 +f 1431 1432 1403 +f 1589 1597 1594 +f 1297 1597 1589 +f 1260 1297 1589 +f 1260 1296 1297 +f 1296 1446 1297 +f 1446 1599 1297 +f 1599 1598 1297 +f 1599 1350 1598 +f 1350 1603 1598 +f 1598 1603 1600 +f 1603 1546 1600 +f 1546 1547 1600 +f 1547 1545 1600 +f 1546 1545 1547 +f 1544 1545 1546 +f 1544 1546 1605 +f 1544 1605 1606 +f 1545 1544 1606 +f 1605 1546 1603 +f 1407 1605 1603 +f 1319 1605 1407 +f 1365 1319 1407 +f 1406 1365 1407 +f 1448 1406 1407 +f 1448 1407 1350 +f 1318 1448 1350 +f 1514 1318 1350 +f 1223 1514 1350 +f 1223 1305 1514 +f 1305 1485 1514 +f 1485 1451 1514 +f 1451 1278 1514 +f 1514 1278 1605 +f 1278 1586 1605 +f 1605 1586 1590 +f 1586 1541 1590 +f 1541 1542 1590 +f 1542 1540 1590 +f 1541 1540 1542 +f 1539 1540 1541 +f 1539 1541 1584 +f 1539 1584 1573 +f 1584 1523 1573 +f 1488 1523 1584 +f 1277 1488 1584 +f 1277 1584 1586 +f 1347 1488 1277 +f 1485 1347 1277 +f 1441 1485 1277 +f 1276 1441 1277 +f 1276 1277 1278 +f 1443 1276 1278 +f 1442 1276 1443 +f 1442 1443 1451 +f 1441 1442 1451 +f 1441 1276 1442 +f 1347 1487 1488 +f 1487 1425 1488 +f 1425 1199 1488 +f 1425 1372 1199 +f 1199 1372 1374 +f 1200 1199 1374 +f 1338 1200 1374 +f 1274 1338 1374 +f 1373 1274 1374 +f 1312 1274 1373 +f 1352 1312 1373 +f 1372 1352 1373 +f 1352 1372 1347 +f 1346 1352 1347 +f 1345 1346 1347 +f 1305 1345 1347 +f 1305 1411 1345 +f 1345 1411 1353 +f 1345 1353 1311 +f 1353 1272 1311 +f 1311 1272 1312 +f 1346 1311 1312 +f 1353 1458 1272 +f 1458 1211 1272 +f 1211 1273 1272 +f 1272 1273 1274 +f 1273 1337 1274 +f 1273 1210 1337 +f 1210 1250 1337 +f 1337 1250 1338 +f 1250 1482 1338 +f 1482 1328 1338 +f 1338 1328 1300 +f 1328 1330 1300 +f 1330 1424 1300 +f 1424 1299 1300 +f 1299 1198 1300 +f 1300 1198 1200 +f 1299 1522 1198 +f 1198 1522 1523 +f 1199 1198 1523 +f 1523 1522 1538 +f 1522 1537 1538 +f 1522 1299 1537 +f 1299 1424 1537 +f 1424 1459 1537 +f 1537 1459 1232 +f 1459 1230 1232 +f 1230 1231 1232 +f 1231 1230 1397 +f 1415 1231 1397 +f 1415 1397 1490 +f 1422 1415 1490 +f 1493 1422 1490 +f 1249 1493 1490 +f 1489 1249 1490 +f 1489 1490 1329 +f 1484 1489 1329 +f 1484 1329 1328 +f 1489 1484 1250 +f 1249 1489 1250 +f 1249 1494 1493 +f 1494 1428 1493 +f 1439 1428 1494 +f 1438 1439 1494 +f 1426 1438 1494 +f 1426 1494 1457 +f 1420 1426 1457 +f 1412 1420 1457 +f 1412 1457 1458 +f 1207 1420 1412 +f 1411 1207 1412 +f 1207 1411 1208 +f 1206 1207 1208 +f 1206 1208 1305 +f 1399 1206 1305 +f 1304 1399 1305 +f 1304 1398 1399 +f 1398 1535 1399 +f 1535 1521 1399 +f 1521 1510 1399 +f 1399 1510 1228 +f 1609 1399 1228 +f 1609 1228 1607 +f 1478 1609 1607 +f 1480 1478 1607 +f 1608 1480 1607 +f 1608 1607 1587 +f 1206 1608 1587 +f 1255 1206 1587 +f 1536 1255 1587 +f 1536 1587 1444 +f 1450 1536 1444 +f 1253 1450 1444 +f 1253 1444 1438 +f 1255 1450 1253 +f 1587 1559 1444 +f 1444 1559 1436 +f 1444 1436 1439 +f 1559 1435 1436 +f 1436 1435 1428 +f 1435 1421 1428 +f 1428 1421 1422 +f 1435 1527 1421 +f 1421 1527 1466 +f 1417 1421 1466 +f 1417 1466 1464 +f 1231 1417 1464 +f 1421 1417 1415 +f 1466 1527 1464 +f 1526 1527 1435 +f 1527 1526 1556 +f 1526 1559 1556 +f 1559 1282 1556 +f 1607 1282 1559 +f 1526 1435 1559 +f 1255 1536 1450 +f 1255 1253 1206 +f 1253 1225 1206 +f 1225 1253 1426 +f 1587 1607 1559 +f 1479 1480 1608 +f 1477 1479 1608 +f 1610 1477 1608 +f 1399 1610 1608 +f 1478 1477 1610 +f 1477 1478 1479 +f 1479 1478 1480 +f 1478 1610 1609 +f 1607 1228 1282 +f 1228 1281 1282 +f 1282 1281 1434 +f 1281 1433 1434 +f 1433 1440 1434 +f 1281 1440 1433 +f 1227 1440 1281 +f 1440 1227 1229 +f 1227 1228 1229 +f 1227 1281 1228 +f 1610 1399 1609 +f 1510 1265 1228 +f 1228 1265 1267 +f 1265 1266 1267 +f 1266 1316 1267 +f 1316 1491 1267 +f 1361 1491 1316 +f 1491 1361 1452 +f 1361 1409 1452 +f 1409 1361 1265 +f 1266 1361 1316 +f 1361 1266 1265 +f 1510 1409 1265 +f 1560 1409 1510 +f 1472 1560 1510 +f 1471 1472 1510 +f 1471 1470 1472 +f 1469 1470 1471 +f 1469 1471 1521 +f 1470 1469 1535 +f 1470 1535 1560 +f 1472 1470 1560 +f 1560 1582 1409 +f 1398 1582 1560 +f 1398 1577 1582 +f 1577 1580 1582 +f 1580 1581 1582 +f 1581 1585 1582 +f 1585 1562 1582 +f 1563 1562 1585 +f 1562 1563 1564 +f 1563 1571 1564 +f 1571 1563 1580 +f 1581 1563 1585 +f 1563 1581 1580 +f 1577 1571 1580 +f 1612 1571 1577 +f 1476 1612 1577 +f 1475 1476 1577 +f 1583 1475 1577 +f 1473 1475 1583 +f 1591 1473 1583 +f 1591 1583 1398 +f 1569 1591 1398 +f 1413 1569 1398 +f 1413 1524 1569 +f 1524 1242 1569 +f 1242 1226 1569 +f 1226 1202 1569 +f 1202 1570 1569 +f 1569 1570 1616 +f 1570 1532 1616 +f 1532 1204 1616 +f 1616 1204 1615 +f 1616 1615 1612 +f 1591 1616 1612 +f 1474 1591 1612 +f 1204 1498 1615 +f 1498 1500 1615 +f 1500 1565 1615 +f 1615 1565 1614 +f 1615 1614 1571 +f 1565 1566 1614 +f 1565 1500 1566 +f 1500 1501 1566 +f 1501 1568 1566 +f 1566 1568 1620 +f 1568 1507 1620 +f 1507 1506 1620 +f 1506 1507 1503 +f 1505 1506 1503 +f 1320 1505 1503 +f 1320 1503 1502 +f 1320 1502 1499 +f 1310 1320 1499 +f 1310 1499 1496 +f 1310 1496 1203 +f 1308 1310 1203 +f 1205 1308 1203 +f 1202 1205 1203 +f 1201 1202 1203 +f 1204 1201 1203 +f 1202 1218 1205 +f 1218 1324 1205 +f 1335 1324 1218 +f 1233 1335 1218 +f 1226 1233 1218 +f 1243 1335 1233 +f 1242 1243 1233 +f 1242 1251 1243 +f 1251 1252 1243 +f 1252 1551 1243 +f 1252 1257 1551 +f 1257 1558 1551 +f 1558 1504 1551 +f 1504 1486 1551 +f 1551 1486 1335 +f 1486 1334 1335 +f 1334 1486 1323 +f 1334 1323 1324 +f 1324 1323 1308 +f 1323 1309 1308 +f 1323 1486 1309 +f 1486 1313 1309 +f 1309 1313 1310 +f 1486 1333 1313 +f 1313 1333 1320 +f 1333 1336 1320 +f 1336 1339 1320 +f 1336 1492 1339 +f 1492 1555 1339 +f 1555 1512 1339 +f 1512 1509 1339 +f 1339 1509 1505 +f 1509 1508 1505 +f 1511 1508 1509 +f 1508 1511 1619 +f 1508 1619 1506 +f 1511 1531 1619 +f 1511 1513 1531 +f 1513 1530 1531 +f 1518 1530 1513 +f 1518 1513 1515 +f 1517 1518 1515 +f 1516 1517 1515 +f 1516 1515 1555 +f 1280 1516 1555 +f 1280 1555 1558 +f 1269 1280 1558 +f 1279 1280 1269 +f 1268 1279 1269 +f 1268 1269 1257 +f 1256 1268 1257 +f 1268 1256 1524 +f 1256 1251 1524 +f 1279 1268 1524 +f 1525 1279 1524 +f 1525 1524 1576 +f 1575 1525 1576 +f 1481 1575 1576 +f 1572 1481 1576 +f 1572 1460 1481 +f 1460 1391 1481 +f 1391 1392 1481 +f 1461 1460 1572 +f 1461 1572 1413 +f 1481 1392 1575 +f 1392 1578 1575 +f 1578 1529 1575 +f 1579 1529 1578 +f 1579 1578 1295 +f 1291 1579 1295 +f 1291 1295 1280 +f 1578 1617 1295 +f 1295 1617 1517 +f 1214 1617 1578 +f 1315 1214 1578 +f 1212 1214 1315 +f 1378 1212 1315 +f 1378 1315 1392 +f 1212 1213 1214 +f 1213 1618 1214 +f 1213 1326 1618 +f 1618 1326 1604 +f 1617 1618 1604 +f 1617 1604 1602 +f 1533 1617 1602 +f 1534 1533 1602 +f 1534 1602 1611 +f 1602 1445 1611 +f 1387 1445 1602 +f 1325 1387 1602 +f 1387 1325 1327 +f 1387 1327 1321 +f 1327 1306 1321 +f 1430 1306 1327 +f 1326 1430 1327 +f 1326 1331 1430 +f 1331 1306 1430 +f 1331 1245 1306 +f 1306 1245 1307 +f 1245 1331 1213 +f 1244 1245 1213 +f 1325 1326 1327 +f 1533 1534 1518 +f 1533 1518 1617 +f 1604 1325 1602 +f 1326 1325 1604 +f 1331 1326 1213 +f 1618 1617 1214 +f 1529 1579 1291 +f 1529 1291 1279 +f 1392 1315 1578 +f 1529 1525 1575 +f 1524 1572 1576 +f 1529 1279 1525 +f 1279 1291 1280 +f 1555 1497 1558 +f 1280 1295 1516 +f 1295 1517 1516 +f 1617 1518 1517 +f 1515 1513 1512 +f 1534 1530 1518 +f 1513 1511 1512 +f 1512 1511 1509 +f 1515 1512 1555 +f 1492 1497 1555 +f 1497 1492 1333 +f 1504 1497 1333 +f 1492 1336 1333 +f 1486 1504 1333 +f 1497 1504 1558 +f 1257 1269 1558 +f 1256 1257 1252 +f 1251 1256 1252 +f 1243 1551 1335 +f 1335 1334 1324 +f 1324 1308 1205 +f 1308 1309 1310 +f 1496 1204 1203 +f 1499 1498 1496 +f 1313 1320 1310 +f 1502 1501 1499 +f 1503 1501 1502 +f 1339 1505 1320 +f 1508 1506 1505 +f 1507 1501 1503 +f 1507 1568 1501 +f 1501 1500 1499 +f 1500 1498 1499 +f 1498 1204 1496 +f 1532 1201 1204 +f 1570 1201 1532 +f 1202 1201 1570 +f 1202 1226 1218 +f 1226 1242 1233 +f 1251 1242 1524 +f 1413 1572 1524 +f 1569 1616 1591 +f 1474 1473 1591 +f 1473 1474 1475 +f 1475 1474 1476 +f 1476 1474 1612 +f 1612 1615 1571 +f 1583 1577 1398 +f 1521 1471 1510 +f 1535 1469 1521 +f 1535 1398 1560 +f 1304 1413 1398 +f 1399 1608 1206 +f 1225 1207 1206 +f 1207 1225 1420 +f 1225 1426 1420 +f 1494 1209 1457 +f 1209 1211 1457 +f 1209 1210 1211 +f 1210 1209 1494 +f 1253 1438 1426 +f 1444 1439 1438 +f 1439 1436 1428 +f 1249 1210 1494 +f 1428 1422 1493 +f 1422 1421 1415 +f 1490 1397 1329 +f 1329 1397 1332 +f 1329 1332 1330 +f 1417 1231 1415 +f 1397 1230 1332 +f 1230 1463 1332 +f 1463 1424 1332 +f 1459 1463 1230 +f 1463 1459 1424 +f 1332 1424 1330 +f 1328 1329 1330 +f 1482 1484 1328 +f 1484 1482 1250 +f 1210 1249 1250 +f 1211 1210 1273 +f 1457 1211 1458 +f 1412 1458 1353 +f 1411 1412 1353 +f 1208 1411 1305 +f 1346 1345 1311 +f 1372 1401 1347 +f 1401 1372 1487 +f 1352 1346 1312 +f 1272 1274 1312 +f 1274 1337 1338 +f 1338 1300 1200 +f 1198 1199 1200 +f 1372 1373 1374 +f 1372 1425 1487 +f 1401 1487 1347 +f 1488 1199 1523 +f 1540 1539 1573 +f 1584 1541 1586 +f 1278 1277 1586 +f 1451 1443 1278 +f 1485 1441 1451 +f 1305 1347 1485 +f 1318 1514 1319 +f 1317 1318 1319 +f 1317 1447 1318 +f 1447 1317 1406 +f 1318 1447 1448 +f 1447 1406 1448 +f 1317 1365 1406 +f 1365 1317 1319 +f 1319 1514 1605 +f 1407 1603 1350 +f 1258 1350 1599 +f 1314 1258 1599 +f 1314 1259 1258 +f 1258 1259 1260 +f 1259 1314 1296 +f 1350 1258 1260 +f 1350 1260 1224 +f 1446 1314 1599 +f 1314 1446 1296 +f 1259 1296 1260 +f 1297 1598 1597 +f 1598 1550 1597 +f 1597 1550 1595 +f 1550 1552 1595 +f 1550 1549 1552 +f 1552 1549 1601 +f 1549 1548 1601 +f 1548 1598 1601 +f 1548 1549 1550 +f 1548 1550 1598 +f 1431 1403 1390 +f 1390 1286 1385 +f 1286 1287 1288 +f 1215 1216 1217 +f 1216 1270 1557 +f 1375 1370 1519 +f 1376 1557 1371 +f 1379 1380 1376 +f 1384 1379 1588 +f 1589 1384 1588 +f 1260 1589 1224 +f 1223 1350 1224 +f 1222 1262 1543 +f 1223 1304 1305 +f 1304 1461 1413 +f 1391 1460 1461 +f 1391 1378 1392 +f 1402 1378 1456 +f 1402 1456 1381 +f 1262 1261 1543 +f 1262 1222 1264 +f 1375 1519 1264 +f 1519 1285 1520 +f 1285 1289 1520 +f 1520 1289 1495 +f 1285 1284 1289 +f 1381 1263 1427 +f 1236 1402 1381 +f 1520 1495 1468 +f 1289 1355 1495 +f 1289 1284 1355 +f 1283 1284 1285 +f 1283 1363 1356 +f 1358 1483 1356 +f 1454 1423 1354 +f 1357 1271 1483 +f 1271 1292 1294 +f 1454 1455 1423 +f 1344 1453 1294 +f 1455 1462 1410 +f 1343 1344 1294 +f 1467 1389 1462 +f 1293 1343 1294 +f 1293 1288 1465 +f 1367 1377 1465 +f 1382 1389 1467 +f 1367 1368 1377 +f 1382 1388 1389 +f 1386 1368 1449 +f 1368 1554 1449 +f 1553 1554 1366 +f 1553 1366 1593 +f 1597 1595 1593 +f 1552 1601 1595 +f 1598 1600 1601 +f 1545 1606 1600 +f 1605 1590 1606 +f 1540 1573 1590 +f 1523 1538 1573 +f 1537 1232 1538 +f 1231 1464 1232 +f 1527 1556 1464 +f 1282 1434 1556 +f 1440 1229 1434 +f 1228 1267 1229 +f 1491 1452 1267 +f 1409 1582 1452 +f 1562 1564 1582 +f 1571 1614 1564 +f 1566 1620 1614 +f 1506 1619 1620 +f 1531 1530 1619 +f 1530 1534 1611 +f 1429 1596 1613 +f 1388 1429 1405 +f 1419 1400 1405 +f 1408 1419 1561 +f 1416 1561 1341 +f 1340 1341 1342 +f 1238 1237 1342 +f 1235 1237 1238 +f 1254 1275 1248 +f 1298 1241 1437 +f 1298 1437 1195 +f 1437 1383 1195 +f 1246 1383 1437 +f 1528 1246 1437 +f 1247 1246 1528 +f 1221 1247 1528 +f 1290 1221 1528 +f 1220 1247 1221 +f 1219 1220 1221 +f 1234 1219 1221 +f 1234 1221 1303 +f 1220 1219 1246 +f 1220 1246 1247 +f 1241 1528 1437 +f 1275 1240 1239 +f 1290 1528 1241 +f 1574 1301 1240 +f 1303 1221 1290 +f 1574 1302 1301 +f 1567 1234 1303 +f 1404 1234 1567 +f 1592 1302 1611 +f 1445 1592 1611 +f 1445 1387 1321 +f 1306 1307 1321 +f 1322 1404 1567 +f 1245 1244 1307 +f 1404 1219 1234 +f 1219 1383 1246 +f 1244 1213 1212 +f 1212 1378 1402 +f 1235 1402 1236 +f 1235 1348 1394 +f 1348 1369 1349 +f 1349 1298 1195 +f 1196 1351 1197 +f 1383 1196 1195 + + +o Object.4 +v 147.288788 55.928806 -3.000560 +v 147.288788 46.903736 -3.000545 +v 147.850800 56.141174 -3.000560 +v 150.188797 46.903736 -3.000545 +v 148.855804 56.793976 -3.000560 +v 145.543701 0.044991 -1.000499 +v 144.669296 -0.587608 -1.300502 +v 145.595795 -0.250412 -1.300502 +v 144.519287 -0.327812 -1.000499 +v 152.309204 -78.134727 -3.000400 +v 152.077606 -78.771141 -3.000400 +v 152.278595 -78.484032 -4.750401 +v 151.254791 72.203705 -3.000576 +v 151.882599 72.957146 -3.000583 +v 151.363800 73.392456 -3.000583 +v 143.914093 -1.221413 -1.300502 +v 143.684296 -1.028511 -1.000499 +v 149.666702 57.744953 -3.000560 +v 150.084808 57.770443 -3.000560 +v 143.421097 -2.075211 -1.300502 +v 143.139175 -1.972610 -1.000499 +v 143.907990 -67.876030 -2.550418 +v 144.665405 -68.511528 -2.550411 +v 145.263794 -67.475029 -2.550418 +v 143.760406 -75.659416 -1.000408 +v 141.901688 -75.431313 -1.000408 +v 142.683044 -75.701332 -4.690197 +v 143.249878 -3.046204 -1.300502 +v 142.949875 -3.046204 -1.000499 +v 147.512207 -68.511528 -2.550411 +v 148.269592 -67.876030 -2.550418 +v 147.352798 -67.106728 -2.550418 +v 152.309204 72.042328 -3.000576 +v 143.421097 -4.017204 -1.300502 +v 143.139175 -4.119804 -1.000492 +v 145.802307 61.578651 -2.550571 +v 146.375305 61.578651 -2.550571 +v 146.583099 62.757259 -2.550571 +v 147.512207 62.419109 -2.550571 +v 143.914093 -4.871002 -1.300495 +v 143.684296 -5.063904 -1.000492 +v 147.288788 63.978638 -3.000568 +v 150.188797 71.503708 -3.000576 +v 147.288788 71.503708 -3.000576 +v 145.493896 -69.164940 -4.750408 +v 144.472595 -68.778938 -4.750408 +v 144.669296 -5.504807 -1.300495 +v 144.519287 -5.764603 -1.000492 +v 147.288788 17.003777 -1.000522 +v 147.288788 17.003777 -3.000515 +v 147.288788 25.003761 -3.000522 +v 146.088806 57.106945 -2.550563 +v 146.586899 57.128704 -1.300571 +v 146.583099 57.150185 -2.550563 +v 145.595795 -5.842003 -1.300495 +v 146.088806 -6.185104 -1.000492 +v 147.523102 57.469444 -1.300571 +v 147.512207 57.488335 -2.550563 +v 146.581787 -5.842003 -1.300495 +v 144.669296 -5.504807 -2.550487 +v 145.595795 -5.842003 -2.550487 +v 146.088806 -4.696205 -2.550487 +v 148.286301 58.109825 -1.300571 +v 148.269592 58.123844 -2.550563 +v 146.581787 -0.250412 -1.300502 +v 146.581787 -0.250412 -2.550495 +v 145.595795 -0.250412 -2.550495 +v 144.669296 -0.587608 -2.550495 +v 147.508301 -0.587608 -2.550495 +v 148.784393 58.972603 -1.300571 +v 148.763901 58.980064 -2.550563 +v 148.957397 59.953720 -1.300579 +v 148.935608 59.953720 -2.550571 +v 147.508301 -0.587608 -1.300502 +v 143.914093 -1.221413 -2.550495 +v 148.263596 -1.221413 -2.550495 +v 148.784393 60.934841 -1.300579 +v 148.763901 60.927380 -2.550571 +v 148.286301 61.797630 -1.300579 +v 148.263596 -1.221413 -1.300502 +v 148.269592 61.783600 -2.550571 +v 143.421097 -2.075211 -2.550495 +v 148.756500 -2.075211 -2.550495 +v 147.523102 62.438011 -1.300579 +v 146.586899 62.778736 -1.300579 +v 148.756500 -2.075211 -1.300502 +v 143.249878 -3.046204 -2.550495 +v 148.927704 -3.046204 -2.550495 +v 145.202393 62.681931 -1.300579 +v 145.620209 62.761677 -2.550571 +v 142.888809 -21.896187 -3.000469 +v 146.088806 -21.896187 -3.000469 +v 146.088806 -12.896194 -3.000476 +v 148.927704 -3.046204 -1.300502 +v 142.888809 -12.896194 -3.000476 +v 142.921509 0.258492 -1.000499 +v 143.230682 0.097687 -3.000492 +v 142.921509 0.258492 -3.000492 +v 142.914978 59.953720 -1.000576 +v 143.461792 58.801414 -1.300571 +v 143.229996 59.716831 -1.300571 +v 144.538300 -65.481850 -2.550418 +v 144.824799 -64.985542 -2.550418 +v 143.413696 -65.072456 -2.550418 +v 143.340195 58.366806 -1.000568 +v 142.888809 6.803780 -3.000499 +v 146.088806 6.803780 -3.000499 +v 146.088806 15.803787 -3.000515 +v 142.888809 15.803787 -3.000515 +v 142.888809 17.003777 -3.000515 +v 146.088806 17.003777 -3.000515 +v 142.888809 25.003761 -3.000522 +v 143.978302 58.010876 -1.300571 +v 146.088806 25.003761 -3.000522 +v 146.581787 -5.842003 -2.550487 +v 147.508301 -5.504807 -2.550487 +v 146.913788 -4.475105 -2.550487 +v 150.188797 17.003777 -3.000515 +v 150.188797 25.003761 -3.000522 +v 144.048706 57.522423 -1.000568 +v 144.723495 57.430862 -1.300571 +v 149.896301 -0.935707 -3.000492 +v 149.896301 -0.935707 -1.000499 +v 150.043091 -0.893112 -3.000492 +v 147.288788 6.803780 -3.000499 +v 150.188797 6.803780 -3.000499 +v 150.188797 15.803787 -3.000515 +v 147.288788 15.803787 -3.000515 +v 147.288788 -21.896187 -3.000469 +v 150.188797 -21.896187 -3.000469 +v 150.188797 -12.896194 -3.000476 +v 145.003296 56.971294 -1.000568 +v 145.590698 57.128704 -1.300571 +v 147.352798 -64.985542 -2.550418 +v 148.763901 -65.072456 -2.550418 +v 148.269592 -64.216255 -2.550418 +v 147.288788 -12.896194 -3.000476 +v 150.188797 -31.096184 -3.000454 +v 150.188797 -23.096191 -3.000469 +v 147.288788 -23.096191 -3.000469 +v 146.088806 56.779884 -1.000568 +v 147.288788 -31.096184 -3.000454 +v 145.263794 -4.475105 -2.550487 +v 145.537689 -62.920540 -1.000423 +v 144.654495 -63.561836 -1.300426 +v 145.590698 -63.221138 -1.300426 +v 144.501892 -63.297539 -1.000423 +v 148.376709 63.475895 -3.000568 +v 150.118591 62.171280 -3.000568 +v 143.891296 -64.202232 -1.300426 +v 143.657501 -64.006035 -1.000423 +v 146.088806 -4.696205 -2.925487 +v 143.393188 -65.065041 -1.300426 +v 143.106384 -64.960640 -1.000423 +v 146.913788 -4.475105 -2.925487 +v 143.220215 -66.046135 -1.300426 +v 142.914978 -66.046135 -1.000423 +v 145.263794 -4.475105 -2.925487 +v 149.790100 62.080811 -3.000568 +v 143.393188 -67.027214 -1.300426 +v 143.106384 -67.131615 -1.000423 +v 145.351196 -77.719734 -4.750401 +v 144.918793 -76.682838 -4.750401 +v 146.088806 -69.221138 -4.750408 +v 147.288788 25.003761 -1.000530 +v 143.891296 -67.890022 -1.300426 +v 143.657501 -68.086220 -1.000423 +v 144.824799 -4.106804 -2.550487 +v 150.188797 6.803780 -1.000507 +v 150.188797 15.803787 -1.000522 +v 144.654495 -68.530418 -1.300418 +v 144.501892 -68.794716 -1.000415 +v 147.352798 -4.106804 -2.550487 +v 147.352798 -4.106804 -2.925487 +v 145.590698 -68.871117 -1.300418 +v 146.088806 -69.219917 -1.000415 +v 144.824799 -4.106804 -2.925487 +v 150.738007 -79.776634 -4.750401 +v 146.586899 -68.871117 -1.300418 +v 150.188797 25.003761 -1.000530 +v 144.538300 -3.610504 -2.550495 +v 147.639297 -3.610504 -2.550495 +v 147.639297 -3.610504 -2.925495 +v 146.375305 -1.421310 -2.550495 +v 145.802307 -1.421310 -2.925495 +v 146.375305 -1.421310 -2.925495 +v 145.802307 -1.421310 -2.550495 +v 149.263794 -3.046204 -4.750492 +v 148.838409 58.366219 -4.750560 +v 149.215607 59.402386 -4.750560 +v 146.913788 -1.617310 -2.925495 +v 146.913788 -1.617310 -2.550495 +v 145.263794 -1.617310 -2.925495 +v 144.538300 -3.610504 -2.925495 +v 149.263397 -2.996300 -4.750492 +v 145.263794 -1.617310 -2.550495 +v 144.515701 -0.288307 -4.750492 +v 143.674500 -0.984207 -4.750492 +v 143.170227 58.703720 -4.750560 +v 147.352798 -1.985611 -2.925495 +v 147.352798 -1.985611 -2.550495 +v 144.384003 -76.152931 -4.750401 +v 144.824799 -1.985611 -2.925495 +v 148.838409 61.541218 -4.750568 +v 148.129700 62.385906 -4.750568 +v 152.399902 71.703705 -4.750576 +v 152.399902 -77.796135 -4.750401 +v 144.824799 -1.985611 -2.550495 +v 143.642395 57.929901 -4.750560 +v 147.639297 -2.481911 -2.925495 +v 147.639297 -2.481911 -2.550495 +v 144.438797 -3.046204 -2.550495 +v 144.538300 -2.481911 -2.925495 +v 143.355988 -1.430008 -4.750492 +v 142.960541 -2.503510 -4.739491 +v 144.538300 -2.481911 -2.550495 +v 143.413696 -67.019737 -2.550418 +v 144.824799 -67.106728 -2.550418 +v 147.738800 -3.046204 -2.925495 +v 147.738800 -3.046204 -2.550495 +v 142.888809 46.903736 -3.000545 +v 143.252411 56.805973 -3.000560 +v 142.892746 56.561245 -3.000560 +v 144.438797 -3.046204 -2.925495 +v 150.188797 5.603783 -3.000499 +v 144.927597 55.917439 -3.000560 +v 144.733902 62.457390 -2.550571 +v 141.353607 -74.883217 -1.000408 +v 141.249802 -74.503822 -1.000415 +v 141.171127 -74.511330 -2.810398 +v 143.914093 -4.871002 -2.550487 +v 144.402695 62.274471 -1.300579 +v 143.994400 61.881790 -2.550571 +v 143.907990 -64.216255 -2.550418 +v 148.376709 0.475990 -3.000492 +v 143.710907 -75.815529 -4.750401 +v 151.929398 -79.088829 -4.750401 +v 143.687302 61.522701 -1.300579 +v 143.481796 61.097260 -2.550571 +v 147.288788 0.978691 -3.000492 +v 151.394409 -79.537834 -4.750401 +v 147.174698 -69.029640 -4.750408 +v 148.263596 -4.871002 -2.550487 +v 143.360596 60.840172 -1.300579 +v 143.251740 60.188801 -2.550571 +v 151.076691 73.593536 -4.750584 +v 145.354599 71.649536 -4.750576 +v 145.380997 73.714813 -4.750584 +v 147.288788 5.603783 -3.000499 +v 146.088806 -67.696129 -2.550418 +v 143.329102 59.254875 -2.550563 +v 141.579819 -75.205116 -1.000408 +v 141.358948 -75.117638 -3.598499 +v 147.676300 -0.296608 -4.450489 +v 146.640106 0.080589 -4.450489 +v 143.705597 58.396675 -2.550563 +v 142.888809 -31.096184 -3.000454 +v 146.088806 -31.096184 -3.000454 +v 146.088806 -23.096191 -3.000469 +v 145.457397 73.653702 -3.000583 +v 150.727402 73.624084 -3.000583 +v 144.340302 57.707214 -2.550563 +v 141.835876 -75.556633 -4.240200 +v 142.683044 69.608887 -4.690372 +v 141.996887 69.533951 -4.370274 +v 145.164490 57.261185 -2.550563 +v 142.913818 -66.046150 -4.733913 +v 151.642197 -79.289940 -3.000400 +v 146.913788 -64.617256 -2.550418 +v 144.824799 61.014320 -2.550571 +v 145.263794 61.382660 -2.550571 +v 145.217987 68.682503 -3.000576 +v 146.088806 64.153717 -3.000568 +v 146.088806 69.475876 -3.000576 +v 144.153992 68.177170 -3.000576 +v 141.190552 68.593964 -3.034977 +v 142.913818 -3.046204 -4.733989 +v 146.583099 -68.849632 -2.550411 +v 146.913788 -67.475029 -2.550418 +v 142.888809 -23.096191 -3.000469 +v 142.913818 59.953716 -4.734066 +v 150.038788 62.104301 -1.000576 +v 145.594498 -68.849632 -2.550411 +v 148.520996 -64.005348 -4.750415 +v 147.676300 -63.296547 -4.750415 +v 141.244720 -42.046150 -1.000454 +v 141.244720 -22.496185 -1.000476 +v 149.888794 62.064110 -1.000576 +v 150.727402 -79.716530 -3.000400 +v 150.188797 17.003777 -1.000522 +v 145.263794 -64.617256 -2.550418 +v 146.088806 25.003761 -1.000530 +v 144.927597 63.990005 -3.000568 +v 143.242020 -66.046150 -2.550418 +v 144.438797 -66.046150 -2.550418 +v 147.512207 -63.580757 -2.550418 +v 144.665405 -63.580757 -2.550418 +v 141.244720 35.953751 -1.000545 +v 141.249802 68.411385 -1.000583 +v 150.043091 -0.893112 -1.000499 +v 141.244720 16.403770 -1.000522 +v 146.640106 56.826950 -4.450557 +v 146.088806 58.303722 -2.925563 +v 147.676300 57.204090 -4.450557 +v 147.523102 -68.530418 -1.300418 +v 146.375305 -64.421257 -2.550418 +v 142.888809 68.003708 -3.000576 +v 141.244720 0.093689 -1.000499 +v 145.493896 63.072472 -4.750568 +v 144.472595 62.686577 -4.750568 +v 142.988983 69.611160 -4.742374 +v 145.802307 -64.421257 -2.550418 +v 146.088806 55.753727 -3.000560 +v 141.260712 68.833786 -3.345378 +v 141.608246 69.311752 -3.999675 +v 149.888794 -63.935753 -3.000415 +v 150.038788 -63.895531 -1.000423 +v 150.170700 -63.738350 -3.000415 +v 148.286301 -67.890022 -1.300426 +v 142.961105 -66.592155 -4.739513 +v 146.913788 61.382660 -2.550571 +v 141.452789 68.961563 -1.000583 +v 146.640106 -62.919350 -4.750415 +v 146.640106 -62.919350 -4.450412 +v 145.493896 -62.927345 -4.750415 +v 150.730804 72.643394 -3.000576 +v 149.888794 -63.935738 -1.000423 +v 151.388794 71.703705 -3.000576 +v 148.784393 -67.027214 -1.300426 +v 148.763901 -67.019737 -2.550418 +v 144.927597 0.990089 -3.000492 +v 146.088806 1.153786 -3.000492 +v 146.088806 5.603783 -3.000499 +v 147.676300 -63.296547 -4.450412 +v 145.594498 -63.242653 -2.550418 +v 143.188812 63.094646 -3.000568 +v 151.388794 -77.796135 -3.000400 +v 141.730957 69.239746 -1.000583 +v 143.012482 63.151947 -3.000568 +v 142.086914 69.407242 -1.000583 +v 147.352798 61.014320 -2.550571 +v 149.263794 -66.046150 -4.750415 +v 149.072296 -64.960243 -4.750415 +v 144.538300 60.518051 -2.550571 +v 150.084808 57.770443 -1.000568 +v 149.747589 57.807995 -1.000568 +v 147.288788 15.803787 -1.000522 +v 146.913788 58.524784 -2.925563 +v 146.583099 -63.242653 -2.550418 +v 143.421097 -4.017204 -2.550495 +v 142.888809 5.603783 -3.000499 +v 143.390991 69.479630 -1.000583 +v 144.080902 69.875328 -4.750576 +v 148.957397 -66.046135 -1.300426 +v 148.935608 -66.046150 -2.550418 +v 148.756500 -4.017204 -2.550495 +v 145.537506 0.080589 -4.450489 +v 144.498901 69.941612 -1.000583 +v 144.688293 70.320168 -4.750576 +v 144.501297 -0.296608 -4.450489 +v 148.520996 57.912872 -4.450557 +v 143.656601 -1.005310 -4.450489 +v 145.065094 70.513092 -1.000583 +v 147.352798 58.893124 -2.925563 +v 145.127396 70.931755 -4.750576 +v 143.105286 -1.960312 -4.450489 +v 148.784393 -65.065041 -1.300426 +v 145.425507 71.232239 -1.000583 +v 149.072296 58.867809 -4.450557 +v 142.913818 -3.046204 -4.450489 +v 148.520996 -1.005310 -4.450489 +v 143.118774 -4.168503 -4.450481 +v 146.688797 72.668800 -1.000583 +v 150.871399 72.539497 -1.000583 +v 145.457397 72.703705 -3.000583 +v 147.639297 59.389393 -2.925563 +v 143.674500 -5.108200 -4.450481 +v 145.544708 72.668800 -1.000583 +v 148.286301 -64.202232 -1.300426 +v 148.520996 -64.005348 -4.450412 +v 144.515701 -5.804100 -4.450481 +v 149.263794 59.953716 -4.450565 +v 147.523102 -63.561836 -1.300426 +v 151.353897 -66.046135 -1.000423 +v 151.224609 -78.278618 -1.000408 +v 147.738800 59.953720 -2.925571 +v 145.537506 -6.173004 -4.450481 +v 151.353897 -52.346153 -1.000438 +v 145.457397 -78.796135 -3.000400 +v 145.512909 -77.693916 -1.000408 +v 151.353897 -42.046150 -1.000454 +v 151.353897 -31.746162 -1.000461 +v 145.493896 -62.927345 -4.450412 +v 151.353897 -22.496185 -1.000476 +v 144.472595 -63.313255 -4.450412 +v 144.472595 -63.313255 -4.750415 +v 151.353897 -3.046204 -1.000499 +v 147.639297 -65.481850 -2.550418 +v 143.642395 -64.022346 -4.450412 +v 143.642395 -64.022346 -4.750415 +v 149.072296 61.039627 -4.450565 +v 151.353897 6.203781 -1.000507 +v 147.639297 60.518051 -2.925571 +v 143.101501 -64.970650 -4.450412 +v 143.170227 -64.796150 -4.750415 +v 151.353897 16.403770 -1.000522 +v 146.586899 -63.221138 -1.300426 +v 151.353897 25.653755 -1.000530 +v 151.353897 35.953751 -1.000545 +v 143.105286 -67.132042 -4.450412 +v 143.642395 -68.069939 -4.750415 +v 151.353897 46.253735 -1.000553 +v 143.656601 -68.086937 -4.450412 +v 148.520996 61.994568 -4.450565 +v 151.353897 59.953720 -1.000576 +v 151.339203 71.871300 -1.000583 +v 147.352798 61.014320 -2.925571 +v 144.501297 -68.795738 -4.450405 +v 150.556396 -78.746513 -1.000408 +v 145.544708 -78.761223 -1.000408 +v 150.562500 -78.780937 -3.000400 +v 145.537506 -69.172935 -4.450405 +v 147.676300 62.703346 -4.450565 +v 146.088806 58.303722 -2.550563 +v 146.088806 17.003777 -1.000522 +v 146.913788 61.382660 -2.925571 +v 142.888809 17.003777 -1.000522 +v 143.674500 -5.108200 -4.750484 +v 143.170227 -4.296204 -4.750484 +v 145.050903 -76.586021 -1.000408 +v 142.913818 -66.046150 -4.450412 +v 146.640106 -6.173004 -4.450481 +v 146.640106 63.080471 -4.450565 +v 144.479492 -76.019920 -1.000408 +v 146.634705 0.081490 -4.750492 +v 145.542908 0.081490 -4.750492 +v 146.375305 61.578651 -2.925571 +v 147.288788 6.803780 -1.000507 +v 147.661896 -0.288307 -4.750492 +v 148.129700 57.521530 -4.750560 +v 146.088806 -67.696129 -2.925418 +v 146.640106 -69.172935 -4.450405 +v 146.088806 5.603783 -1.000507 +v 142.888809 5.603783 -1.000507 +v 149.072296 -64.960243 -4.450412 +v 146.088806 46.903736 -3.000545 +v 148.503098 -0.984207 -4.750492 +v 149.058807 -1.923912 -4.750492 +v 147.676300 -68.795738 -4.450405 +v 146.913788 -67.475029 -2.925418 +v 143.230682 0.097687 -1.000499 +v 144.927597 0.990089 -1.000499 +v 149.072296 -1.960312 -4.450489 +v 144.472595 57.220860 -4.750560 +v 147.288788 -21.896187 -1.000476 +v 150.188797 -21.896187 -1.000476 +v 149.263794 -3.046204 -4.450489 +v 146.088806 1.153786 -1.000499 +v 148.520996 -68.086937 -4.450412 +v 147.352798 -67.106728 -2.925418 +v 146.088806 -11.696198 -1.000484 +v 146.088806 -7.246201 -1.000492 +v 146.088806 -7.246201 -3.000484 +v 145.493896 63.072472 -4.450565 +v 146.088806 -11.696198 -3.000476 +v 145.502502 -7.205101 -1.000492 +v 144.472595 62.686577 -4.450565 +v 145.502502 -7.205101 -3.000484 +v 144.375488 -6.880905 -1.000492 +v 144.375488 -6.880905 -3.000484 +v 143.642395 61.977535 -4.450565 +v 143.642395 61.977535 -4.750568 +v 147.174698 56.970200 -4.750560 +v 143.342590 -6.229500 -1.000492 +v 149.072296 -67.132042 -4.450412 +v 143.107910 -6.198204 -3.000484 +v 143.101501 61.029205 -4.450565 +v 143.170227 61.203716 -4.750568 +v 147.639297 -66.610451 -2.925418 +v 151.681488 73.244301 -4.750584 +v 142.888809 -11.696198 -1.000484 +v 142.888809 -11.696198 -3.000476 +v 142.904449 -6.391502 -3.000484 +v 142.892746 -6.438705 -1.000492 +v 143.105286 58.867809 -4.450557 +v 143.656601 57.912872 -4.450557 +v 149.263794 -66.046150 -4.450412 +v 144.501297 57.204090 -4.450557 +v 147.738800 -66.046150 -2.925418 +v 145.493896 56.834961 -4.750560 +v 147.288788 -11.696198 -1.000484 +v 150.188797 -11.696198 -1.000484 +v 150.188797 -11.696198 -3.000476 +v 147.288788 -11.696198 -3.000476 +v 150.084808 -5.229500 -1.000492 +v 150.084808 -5.229500 -3.000484 +v 145.537506 56.826950 -4.450557 +v 147.850800 -6.858704 -1.000492 +v 147.288788 -7.071106 -1.000492 +v 147.288788 -7.071106 -3.000484 +v 146.913788 58.524784 -2.550563 +v 147.639297 -65.481850 -2.925418 +v 148.376709 -6.568405 -3.000484 +v 148.855804 -6.206001 -1.000492 +v 149.794891 -5.171700 -3.000484 +v 149.747589 -5.191902 -1.000492 +v 142.913818 59.953716 -4.450565 +v 142.982208 56.730305 -1.000568 +v 143.020035 56.760826 -3.000560 +v 146.640106 63.080471 -4.750568 +v 147.288788 5.603783 -1.000507 +v 147.288788 0.978691 -1.000499 +v 145.802307 61.578651 -2.925571 +v 145.263794 61.382660 -2.925571 +v 146.640106 56.826950 -4.750560 +v 144.824799 61.014320 -2.925571 +v 148.376709 0.475990 -1.000499 +v 144.538300 60.518051 -2.925571 +v 148.376709 -62.523949 -3.000415 +v 150.188797 -52.996162 -3.000431 +v 144.438797 59.953720 -2.550571 +v 144.438797 59.953720 -2.925571 +v 144.538300 59.389393 -2.550563 +v 144.538300 59.389393 -2.925563 +v 144.824799 58.893124 -2.925563 +v 146.088806 15.803787 -1.000522 +v 142.888809 15.803787 -1.000522 +v 147.288788 -62.021248 -3.000415 +v 144.824799 58.893124 -2.550563 +v 145.263794 58.524784 -2.925563 +v 147.288788 -52.996162 -3.000431 +v 145.263794 58.524784 -2.550563 +v 150.188797 5.603783 -1.000507 +v 145.802307 -64.421257 -2.925418 +v 146.375305 -64.421257 -2.925418 +v 145.263794 -64.617256 -2.925418 +v 152.130493 72.709259 -4.750584 +v 144.824799 -64.985542 -2.925418 +v 144.538300 -65.481850 -2.925418 +v 144.438797 -66.046150 -2.925418 +v 144.538300 -66.610451 -2.925418 +v 144.538300 -66.610451 -2.550418 +v 144.824799 -67.106728 -2.925418 +v 145.263794 -67.475029 -2.925418 +v 142.888809 -31.096169 -1.000461 +v 142.888809 -23.096191 -1.000476 +v 146.088806 -31.096169 -1.000461 +v 150.084808 -68.229439 -3.000408 +v 150.084808 -68.229424 -1.000415 +v 149.747589 -68.191841 -3.000408 +v 147.352798 -64.985542 -2.925418 +v 149.747589 -68.191826 -1.000415 +v 146.088806 -23.096191 -1.000476 +v 149.058807 -4.168503 -4.750484 +v 147.288788 -77.596138 -3.000400 +v 150.188797 -77.596138 -3.000400 +v 147.850800 -69.858635 -3.000408 +v 146.913788 -64.617256 -2.925418 +v 147.288788 -70.071037 -3.000408 +v 146.639893 -69.171715 -1.000415 +v 147.675690 -68.794716 -1.000415 +v 148.855804 -69.205940 -3.000408 +v 148.520096 -68.086220 -1.000423 +v 149.071198 -67.131615 -1.000423 +v 147.639297 -66.610451 -2.550418 +v 143.342590 56.770405 -1.000568 +v 149.262695 -66.046135 -1.000423 +v 149.071198 -64.960640 -1.000423 +v 142.888809 25.003761 -1.000530 +v 148.520096 -64.006035 -1.000423 +v 148.503098 -5.108200 -4.750484 +v 147.675690 -63.297539 -1.000423 +v 146.639893 -62.920540 -1.000423 +v 147.288788 -52.996147 -1.000438 +v 147.288788 -62.021233 -1.000423 +v 148.376709 -62.523933 -1.000423 +v 149.215607 60.505047 -4.750568 +v 146.633896 0.044991 -1.000499 +v 145.380997 -79.807228 -4.750401 +v 147.658295 -0.327812 -1.000499 +v 148.493408 -1.028511 -1.000499 +v 150.188797 -52.996147 -1.000438 +v 149.038391 -1.972610 -1.000499 +v 149.227692 -3.046204 -1.000499 +v 149.072296 -67.132042 -4.750415 +v 148.756500 -4.017204 -1.300502 +v 149.038391 -4.119804 -1.000492 +v 148.263596 -4.871002 -1.300495 +v 147.288788 -77.596123 -1.000408 +v 150.188797 -77.596123 -1.000408 +v 142.921509 63.258446 -1.000576 +v 143.188812 63.094646 -1.000576 +v 148.106506 -5.450806 -1.000492 +v 147.508301 -5.504807 -1.300495 +v 147.162399 -5.995804 -1.000492 +v 147.738800 -66.046150 -2.550418 +v 147.850800 -69.858620 -1.000415 +v 147.288788 -70.071022 -1.000415 +v 148.855804 -69.205925 -1.000415 +v 146.088806 -75.568321 -1.000408 +v 146.088806 -70.246117 -1.000415 +v 146.088806 -70.246132 -3.000408 +v 146.088806 -75.568336 -3.000400 +v 145.502502 -70.205025 -1.000415 +v 144.927597 -70.082436 -3.000408 +v 144.375488 -69.880821 -1.000415 +v 143.252411 -69.193932 -3.000408 +v 143.342590 -69.229424 -1.000415 +v 147.288788 71.503708 -1.000583 +v 147.288788 63.978638 -1.000576 +v 146.639893 63.079346 -1.000576 +v 146.088806 69.475876 -1.000583 +v 150.188797 71.503708 -1.000583 +v 142.892746 -69.438622 -1.000415 +v 142.888809 -74.096123 -1.000415 +v 142.923645 -69.346733 -3.000408 +v 151.128098 72.324059 -1.000583 +v 142.888809 -74.096138 -3.000408 +v 145.217987 -74.774925 -1.000408 +v 145.217987 -74.774940 -3.000400 +v 145.217987 68.682503 -1.000583 +v 144.153992 -74.269615 -1.000415 +v 144.153992 -74.269630 -3.000408 +v 144.153992 68.177170 -1.000583 +v 142.888809 68.003708 -1.000583 +v 143.062332 -69.215019 -1.000415 +v 146.088806 64.153717 -1.000576 +v 146.088806 -52.996162 -3.000431 +v 146.088806 -52.996147 -1.000438 +v 142.888809 -52.996162 -3.000431 +v 150.188797 -12.896194 -1.000484 +v 142.888809 -52.996147 -1.000438 +v 142.921509 -62.741432 -1.000423 +v 142.921509 -62.741447 -3.000415 +v 143.230682 -62.902229 -1.000423 +v 144.927597 -62.009834 -1.000423 +v 143.188812 -62.905251 -3.000415 +v 144.515701 -5.804100 -4.750484 +v 144.927597 -62.009850 -3.000415 +v 145.592300 63.088486 -1.000576 +v 147.661896 -5.804100 -4.750484 +v 147.661896 -5.804100 -4.450481 +v 144.647888 62.781628 -1.000576 +v 144.927597 63.990005 -1.000576 +v 146.088806 -61.846138 -1.000423 +v 146.088806 -61.846153 -3.000415 +v 148.376709 63.475895 -1.000576 +v 147.675690 62.702351 -1.000576 +v 146.088806 -32.396187 -3.000454 +v 146.088806 -32.396172 -1.000461 +v 142.888809 -32.396187 -3.000454 +v 143.844604 62.197960 -1.000576 +v 142.888809 -32.396172 -1.000461 +v 142.888809 -41.396156 -1.000454 +v 142.888809 -41.396172 -3.000446 +v 147.352798 58.893124 -2.550563 +v 145.542908 -6.173904 -4.750484 +v 146.088806 -41.396156 -1.000454 +v 146.088806 -41.396172 -3.000446 +v 148.520996 -68.086937 -4.750415 +v 148.520096 61.993820 -1.000576 +v 152.369400 72.052933 -4.750576 +v 146.088806 -42.696159 -3.000438 +v 146.088806 -42.696144 -1.000446 +v 142.888809 -42.696159 -3.000438 +v 143.260895 61.394611 -1.000576 +v 142.888809 -42.696144 -1.000446 +v 142.888809 -51.696144 -1.000438 +v 147.288788 -12.896194 -1.000484 +v 142.888809 -51.696159 -3.000431 +v 146.088806 -51.696144 -1.000438 +v 146.088806 -51.696159 -3.000431 +v 149.071198 61.039242 -1.000576 +v 150.188797 -42.696144 -1.000446 +v 147.288788 -42.696144 -1.000446 +v 150.188797 -42.696159 -3.000438 +v 147.288788 -42.696159 -3.000438 +v 147.288788 -51.696144 -1.000438 +v 146.634705 -6.173904 -4.750484 +v 149.214401 59.402592 -1.000568 +v 147.288788 -51.696159 -3.000431 +v 150.188797 -51.696144 -1.000438 +v 150.188797 -51.696159 -3.000431 +v 147.288788 -41.396156 -1.000454 +v 150.188797 -41.396156 -1.000454 +v 150.188797 -41.396172 -3.000446 +v 147.676300 -68.795738 -4.750408 +v 148.837402 58.366806 -1.000568 +v 147.288788 -41.396172 -3.000446 +v 148.855804 56.793976 -1.000568 +v 148.128906 57.522423 -1.000568 +v 150.188797 -32.396172 -1.000461 +v 143.062332 -6.215103 -1.000492 +v 150.188797 -32.396187 -3.000454 +v 147.288788 -32.396172 -1.000461 +v 147.288788 -32.396187 -3.000454 +v 147.850800 56.141174 -1.000568 +v 146.639893 56.828106 -1.000568 +v 147.288788 26.303757 -1.000530 +v 150.188797 26.303757 -1.000530 +v 147.288788 26.303757 -3.000522 +v 150.188797 26.303757 -3.000522 +v 144.375488 56.119053 -1.000568 +v 150.188797 35.303749 -3.000537 +v 150.188797 35.303749 -1.000545 +v 145.502502 55.794857 -1.000568 +v 147.288788 55.928806 -1.000568 +v 147.288788 35.303749 -1.000545 +v 147.288788 35.303749 -3.000537 +v 146.088806 6.803780 -1.000507 +v 146.088806 55.753727 -1.000568 +v 142.888809 46.903736 -1.000553 +v 146.088806 46.903736 -1.000553 +v 146.688797 46.253735 -1.000553 +v 147.288788 46.903736 -1.000553 +v 150.188797 46.903736 -1.000553 +v 142.888809 45.603741 -1.000553 +v 142.888809 36.603745 -1.000545 +v 146.088806 45.603741 -1.000553 +v 146.688797 35.953751 -1.000545 +v 147.288788 36.603745 -1.000545 +v 147.288788 45.603741 -1.000553 +v 150.188797 45.603741 -1.000553 +v 146.088806 36.603745 -1.000545 +v 150.188797 36.603745 -1.000545 +v 150.188797 45.603741 -3.000545 +v 142.888809 35.303749 -1.000545 +v 142.888809 26.303757 -1.000530 +v 146.688797 25.653755 -1.000530 +v 146.088806 35.303749 -1.000545 +v 146.088806 26.303757 -1.000530 +v 147.639297 59.389393 -2.550563 +v 149.058807 -4.168503 -4.450481 +v 146.688797 16.403770 -1.000522 +v 147.738800 59.953720 -2.550571 +v 147.288788 45.603741 -3.000545 +v 147.639297 60.518051 -2.550571 +v 147.288788 36.603745 -3.000537 +v 142.888809 6.803780 -1.000507 +v 146.688797 6.203781 -1.000507 +v 148.503098 -5.108200 -4.450481 +v 146.688797 0.093689 -1.000499 +v 150.188797 36.603745 -3.000537 +v 142.901886 0.093689 -1.000499 +v 145.457397 -79.746132 -3.000400 +v 147.174698 62.937233 -4.750568 +v 142.888809 45.603741 -3.000545 +v 146.088806 45.603741 -3.000545 +v 142.888809 36.603745 -3.000537 +v 150.188797 -31.096169 -1.000461 +v 146.088806 36.603745 -3.000537 +v 142.888809 35.303749 -3.000537 +v 146.088806 35.303749 -3.000537 +v 142.888809 26.303757 -3.000522 +v 146.088806 26.303757 -3.000522 +v 147.288788 -31.096169 -1.000461 +v 150.188797 -23.096191 -1.000476 +v 142.901886 -6.186104 -1.000492 +v 146.688797 -6.186104 -1.000492 +v 151.009201 -78.535423 -1.000408 +v 151.154907 -78.438942 -3.000400 +v 146.088806 -12.896194 -1.000484 +v 146.688797 -22.496185 -1.000476 +v 142.888809 -12.896194 -1.000484 +v 142.888809 -21.896187 -1.000476 +v 146.088806 -21.896187 -1.000476 +v 146.688797 -31.746162 -1.000461 +v 147.288788 -23.096191 -1.000476 +v 146.688797 -42.046150 -1.000454 +v 146.688797 -52.346153 -1.000438 + +f 1621 1622 1623 +f 2327 1621 1623 +f 2317 2327 1623 +f 2317 1623 1625 +f 2310 2317 1625 +f 2310 1625 1638 +f 1966 2310 1638 +f 1965 1966 1638 +f 1639 1965 1638 +f 1624 1639 1638 +f 1624 1965 1639 +f 2336 1965 1624 +f 2336 1624 1622 +f 2335 2336 1622 +f 2327 2335 1622 +f 2335 2327 2318 +f 2334 2335 2318 +f 2334 2318 2331 +f 2333 2334 2331 +f 2333 2331 1933 +f 2066 2333 1933 +f 1841 2066 1933 +f 1841 1933 1846 +f 1841 1846 1842 +f 1841 1842 1843 +f 2128 1841 1843 +f 2128 1843 2129 +f 2128 2129 1842 +f 2186 2128 1842 +f 2323 2186 1842 +f 2186 2323 1752 +f 2186 1752 1740 +f 1740 1752 1741 +f 1740 1741 1733 +f 1725 1740 1733 +f 1725 1733 1720 +f 1719 1725 1720 +f 1719 1720 1721 +f 1719 1721 1864 +f 2286 1719 1864 +f 2286 1864 1858 +f 2272 2286 1858 +f 2272 1858 1852 +f 2263 2272 1852 +f 2263 1852 1709 +f 2260 2263 1709 +f 2231 2260 1709 +f 1705 2231 1709 +f 1705 1709 1710 +f 1658 1705 1710 +f 1656 1658 1710 +f 1891 1656 1710 +f 1847 1891 1710 +f 1890 1891 1847 +f 1853 1890 1847 +f 1852 1853 1847 +f 1964 1890 1853 +f 1859 1964 1853 +f 1858 1859 1853 +f 2141 1964 1859 +f 1865 2141 1859 +f 1864 1865 1859 +f 1871 2141 1865 +f 1721 1871 1865 +f 1871 2143 2141 +f 2141 2143 2142 +f 2141 2142 2138 +f 2138 2142 2127 +f 2138 2127 2097 +f 2136 2138 2097 +f 2136 2097 2091 +f 2134 2136 2091 +f 2134 2091 2087 +f 2133 2134 2087 +f 2133 2087 2084 +f 2057 2133 2084 +f 2057 2084 2053 +f 2046 2057 2053 +f 2043 2046 2053 +f 2043 2053 2130 +f 2366 2043 2130 +f 2366 2130 1866 +f 2100 2366 1866 +f 1635 2100 1866 +f 1881 1635 1866 +f 1880 1881 1866 +f 1880 1866 1868 +f 1995 1880 1868 +f 1867 1995 1868 +f 1998 1995 1867 +f 1988 1998 1867 +f 1983 1988 1867 +f 1985 1983 1867 +f 1985 1867 1866 +f 1979 1983 1985 +f 2130 1979 1985 +f 2130 1973 1979 +f 1973 1978 1979 +f 1972 1978 1973 +f 1931 1972 1973 +f 1929 1931 1973 +f 1929 1930 1931 +f 1930 2092 1931 +f 2092 2098 1931 +f 1901 1931 2098 +f 2097 1901 2098 +f 1884 1931 1901 +f 1897 1884 1901 +f 1897 1901 1835 +f 1990 1897 1835 +f 1986 1990 1835 +f 1986 1835 1834 +f 1982 1986 1834 +f 1982 1834 1818 +f 1980 1982 1818 +f 1980 1818 1817 +f 1977 1980 1817 +f 1977 1817 2056 +f 1875 1977 2056 +f 2055 1875 2056 +f 2055 2056 2110 +f 2055 2110 2135 +f 2059 2055 2135 +f 2067 2059 2135 +f 2068 2067 2135 +f 1815 2068 2135 +f 1815 2135 2093 +f 1815 2093 2060 +f 1815 2060 1809 +f 1808 1815 1809 +f 1808 1809 1810 +f 1808 1810 1826 +f 1905 1808 1826 +f 1904 1905 1826 +f 1963 1904 1826 +f 1962 1963 1826 +f 1827 1962 1826 +f 1630 1827 1826 +f 1653 1630 1826 +f 1653 1826 2282 +f 1653 2282 2157 +f 1634 1653 2157 +f 1634 2157 2100 +f 1633 1653 1634 +f 1633 1634 1635 +f 1946 1633 1635 +f 1994 1633 1946 +f 1993 1994 1946 +f 1993 1946 1995 +f 1995 1946 1881 +f 2229 1994 1993 +f 2230 2229 1993 +f 2231 2230 1993 +f 2232 2231 1993 +f 1988 2232 1993 +f 2247 2231 2232 +f 2247 2232 1893 +f 1913 2247 1893 +f 1913 1893 1895 +f 1927 1913 1895 +f 2245 1927 1895 +f 2244 2245 1895 +f 2244 1895 1892 +f 2241 2244 1892 +f 2241 1892 1894 +f 2232 2241 1894 +f 2241 2232 1983 +f 1978 2241 1983 +f 1892 1893 1894 +f 2244 2241 1978 +f 2245 2244 1972 +f 2245 1972 1960 +f 1958 2245 1960 +f 1958 1960 1885 +f 1935 1958 1885 +f 1883 1935 1885 +f 1883 1885 1884 +f 1647 1883 1884 +f 1647 1884 1887 +f 1647 1887 1940 +f 2031 1647 1940 +f 2030 2031 1940 +f 2051 2030 1940 +f 2160 2030 2051 +f 2160 2051 2024 +f 2159 2160 2024 +f 2158 2159 2024 +f 2158 2024 2019 +f 2156 2158 2019 +f 2156 2019 2015 +f 2154 2156 2015 +f 2154 2015 2013 +f 2155 2154 2013 +f 2155 2013 1944 +f 2178 2155 1944 +f 1954 2178 1944 +f 1954 1944 1943 +f 1905 1954 1943 +f 2000 1954 1905 +f 2000 2171 1954 +f 2122 2171 2000 +f 2065 2122 2000 +f 2065 2000 1904 +f 2109 2122 2065 +f 2107 2109 2065 +f 2107 2065 1963 +f 2099 2109 2107 +f 2095 2099 2107 +f 2095 2107 1962 +f 2205 2095 1962 +f 2079 2095 2205 +f 2280 2079 2205 +f 1827 2280 2205 +f 1827 2307 2280 +f 2307 2069 2280 +f 2062 2069 2307 +f 1862 2062 2307 +f 1784 2062 1862 +f 1798 1784 1862 +f 1861 1798 1862 +f 1857 1861 1862 +f 1632 1857 1862 +f 1827 1632 1862 +f 1631 1857 1632 +f 1630 1631 1632 +f 1631 1630 2381 +f 1888 1631 2381 +f 2041 1888 2381 +f 2380 2041 2381 +f 2005 2380 2381 +f 2005 2381 1957 +f 2004 2005 1957 +f 2008 2004 1957 +f 2011 2008 1957 +f 2012 2011 1957 +f 2014 2012 1957 +f 2017 2014 1957 +f 2017 1957 1948 +f 2022 2017 1948 +f 2026 2022 1948 +f 2028 2026 1948 +f 2029 2028 1948 +f 2032 2029 1948 +f 2035 2032 1948 +f 2036 2035 1948 +f 2036 1948 1633 +f 2237 2036 1633 +f 2233 2036 2237 +f 2233 2237 1994 +f 1902 2036 2233 +f 1902 2233 1663 +f 1769 1902 1663 +f 1768 1769 1663 +f 1662 1768 1663 +f 1662 1663 1664 +f 2230 1662 1664 +f 2230 2267 1662 +f 2267 1768 1662 +f 2267 1908 1768 +f 1908 1779 1768 +f 1908 1902 1779 +f 1908 2035 1902 +f 2293 2035 1908 +f 2281 2293 1908 +f 2293 2281 1699 +f 1697 2293 1699 +f 1697 1699 1698 +f 1692 1697 1698 +f 1693 1692 1698 +f 2357 1693 1698 +f 1961 2357 1698 +f 1961 1698 1701 +f 1941 1961 1701 +f 1941 1701 1659 +f 1657 1941 1659 +f 1657 1659 1658 +f 1941 1657 2046 +f 1701 1704 1659 +f 1704 1705 1659 +f 1704 2268 1705 +f 2281 2268 1704 +f 2268 2281 2267 +f 2231 2268 2267 +f 1699 1704 1701 +f 1961 1941 2046 +f 2037 1961 2046 +f 2357 1961 2037 +f 2023 2357 2037 +f 2023 2037 2034 +f 2021 2023 2034 +f 2021 2034 1824 +f 2197 2021 1824 +f 2197 1824 1826 +f 1824 1825 1826 +f 2002 2021 2197 +f 1810 2002 2197 +f 1989 2002 1810 +f 1989 1996 2002 +f 1996 2006 2002 +f 1996 2352 2006 +f 2352 2355 2006 +f 2006 2355 2023 +f 2352 1691 2355 +f 1691 1693 2355 +f 1691 1690 1693 +f 1683 1690 1691 +f 1684 1683 1691 +f 1677 1683 1684 +f 1678 1677 1684 +f 1678 1684 2276 +f 2121 1678 2276 +f 2121 2276 1984 +f 1968 2121 1984 +f 1968 1984 1981 +f 1924 1968 1981 +f 1924 1981 2060 +f 1923 1968 1924 +f 1922 1923 1924 +f 1922 1924 2093 +f 1923 1922 2117 +f 2150 1923 2117 +f 2150 2117 2108 +f 2145 2150 2108 +f 2145 2108 2106 +f 2144 2145 2106 +f 2144 2106 2105 +f 2142 2144 2105 +f 2105 2106 1829 +f 2105 1829 1819 +f 1901 2105 1819 +f 2127 2105 1901 +f 1829 1817 1819 +f 2074 1817 1829 +f 2106 2074 1829 +f 2143 2145 2144 +f 2143 2149 2145 +f 1876 2149 2143 +f 1876 1882 2149 +f 1882 2152 2149 +f 2149 2152 2150 +f 1882 1886 2152 +f 1886 2044 2152 +f 2152 2044 1923 +f 1886 1672 2044 +f 1672 1674 2044 +f 2044 1674 2121 +f 1672 1673 1674 +f 1674 1673 1678 +f 1753 1673 1672 +f 1761 1673 1753 +f 1752 1761 1753 +f 2326 1761 1752 +f 2326 2331 1761 +f 1761 2318 1673 +f 1673 2318 1677 +f 2318 2311 1677 +f 2318 2317 2311 +f 1753 1672 1886 +f 1741 1753 1886 +f 1741 1886 1882 +f 1733 1882 1876 +f 2106 2108 2074 +f 2108 2110 2074 +f 2149 2150 2145 +f 2108 2117 2110 +f 2152 1923 2150 +f 2117 1922 2110 +f 1923 2044 1968 +f 1981 1984 1989 +f 1981 1989 1809 +f 2044 2121 1968 +f 1984 2276 1996 +f 1674 1678 2121 +f 2276 1684 2352 +f 1673 1677 1678 +f 1677 2311 1683 +f 2311 2308 1683 +f 2311 2310 2308 +f 1683 2308 1690 +f 2308 2300 1690 +f 1690 2300 1692 +f 2300 2293 1692 +f 2300 1966 2293 +f 2308 1966 2300 +f 1684 1691 2352 +f 2276 2352 1996 +f 1984 1996 1989 +f 2002 2006 2021 +f 1824 2034 1825 +f 2034 2043 1825 +f 2006 2023 2021 +f 2034 2037 2043 +f 2355 2357 2023 +f 2355 1693 2357 +f 1690 1692 1693 +f 1698 1699 1701 +f 1692 2293 1697 +f 1699 2281 1704 +f 1965 2035 2293 +f 2281 1908 2267 +f 1779 1769 1768 +f 1779 1902 1769 +f 1663 2233 1664 +f 2233 2229 1664 +f 1902 2035 2036 +f 1965 2032 2035 +f 2343 2029 2032 +f 2342 2343 2032 +f 2342 2032 2336 +f 2342 2336 2334 +f 2341 2342 2334 +f 2340 2341 2334 +f 2339 2340 2334 +f 2339 2334 2337 +f 2339 2337 2367 +f 2368 2339 2367 +f 2371 2368 2367 +f 2369 2371 2367 +f 2338 2371 2369 +f 2337 2338 2369 +f 2338 2337 1918 +f 1918 2344 2338 +f 2347 2344 1918 +f 2348 2347 1918 +f 1921 2348 1918 +f 1921 1918 1896 +f 1928 1921 1896 +f 1907 1928 1896 +f 1850 1907 1896 +f 1850 1896 1873 +f 1848 1850 1873 +f 1872 1848 1873 +f 1646 1872 1873 +f 1646 1873 1883 +f 1872 1646 2235 +f 1646 2242 2235 +f 2235 2242 2238 +f 2235 2238 2236 +f 2234 2235 2236 +f 2246 2234 2236 +f 2246 2236 2227 +f 2228 2246 2227 +f 2226 2228 2227 +f 2225 2226 2227 +f 2238 2225 2227 +f 2238 2243 2225 +f 2243 2222 2225 +f 2222 2224 2225 +f 2221 2224 2222 +f 2220 2221 2222 +f 2223 2220 2222 +f 2240 2223 2222 +f 2220 2223 2240 +f 2239 2220 2240 +f 2239 2240 2243 +f 2242 2239 2243 +f 1645 2239 2242 +f 1645 2054 2239 +f 2054 1645 1856 +f 1822 2054 1856 +f 1822 1856 1665 +f 1784 1822 1665 +f 2042 1784 1665 +f 2038 2042 1665 +f 2038 1665 1666 +f 2033 2038 1666 +f 2033 1666 2031 +f 2163 2038 2033 +f 2161 2163 2033 +f 2161 2033 2030 +f 2162 2163 2161 +f 1915 2162 2161 +f 1915 2161 2160 +f 1722 1915 2160 +f 1915 1722 1724 +f 1914 1915 1724 +f 1773 1914 1724 +f 1770 1773 1724 +f 1770 1724 1854 +f 1765 1770 1854 +f 1765 1854 1917 +f 1766 1765 1917 +f 1766 1917 1955 +f 2027 1766 1955 +f 1969 2027 1955 +f 1926 1969 1955 +f 1932 1926 1955 +f 1926 1932 2154 +f 1926 1916 1969 +f 1926 1889 1916 +f 1889 1756 1916 +f 1756 2003 1916 +f 2003 2027 1916 +f 2003 2192 2027 +f 2192 2193 2027 +f 2193 2192 2195 +f 2193 2195 2390 +f 2249 2193 2390 +f 2252 2249 2390 +f 2252 2390 2291 +f 2252 2291 2288 +f 1849 2252 2288 +f 1849 2288 1906 +f 1849 1906 1850 +f 2288 2287 1906 +f 2287 2278 1906 +f 1906 2278 2274 +f 2274 2273 1906 +f 1906 2273 2165 +f 1906 2165 1907 +f 2165 2166 1907 +f 2166 2385 1907 +f 1907 2385 2384 +f 1907 2384 2101 +f 2101 2104 1907 +f 2104 2378 1907 +f 2378 1649 1907 +f 2378 1655 1649 +f 1649 1655 1654 +f 1649 1654 1648 +f 1641 1649 1648 +f 1641 1648 1640 +f 1637 1641 1640 +f 1637 1640 1636 +f 1629 1637 1636 +f 1629 1636 1627 +f 1626 1629 1627 +f 1626 1627 1628 +f 2198 1626 1628 +f 1685 2198 1628 +f 1685 1628 1686 +f 1689 1685 1686 +f 1804 1689 1686 +f 1807 1804 1686 +f 1687 1807 1686 +f 1688 1807 1687 +f 1628 1688 1687 +f 1816 1807 1688 +f 1695 1816 1688 +f 1627 1695 1688 +f 1828 1816 1695 +f 1702 1828 1695 +f 1636 1702 1695 +f 1836 1828 1702 +f 1707 1836 1702 +f 1640 1707 1702 +f 1832 1836 1707 +f 1801 1832 1707 +f 1970 1801 1707 +f 1648 1970 1707 +f 1970 1788 1801 +f 1801 1788 1797 +f 1801 1797 1814 +f 1814 1797 1992 +f 1844 1814 1992 +f 1844 1992 1990 +f 1833 1844 1990 +f 1836 1844 1833 +f 1832 1814 1844 +f 1797 1997 1992 +f 1992 1997 2049 +f 1897 1992 2049 +f 2025 1897 2049 +f 2020 2025 2049 +f 2016 2020 2049 +f 1945 2016 2049 +f 2048 1945 2049 +f 2258 1945 2048 +f 2001 2258 2048 +f 1997 2001 2048 +f 1778 2001 1997 +f 1778 1772 2001 +f 1772 2007 2001 +f 2007 1772 2052 +f 2007 2052 2299 +f 2007 2299 2277 +f 2007 2277 2258 +f 2299 1945 2277 +f 1943 1945 2299 +f 1943 2299 2261 +f 1943 2261 2191 +f 1943 2191 2174 +f 1943 2174 1808 +f 2174 2353 1808 +f 2353 2077 1808 +f 2353 1803 2077 +f 1803 1839 2077 +f 1839 1830 2077 +f 2077 1830 2073 +f 2077 2073 1815 +f 1830 1820 2073 +f 2073 1820 1991 +f 2073 1991 2068 +f 1820 1811 1991 +f 1991 1811 1874 +f 1991 1874 2059 +f 1811 1806 1874 +f 1874 1806 1875 +f 1811 1812 1806 +f 1812 1804 1806 +f 1804 1805 1806 +f 1806 1805 1977 +f 1821 1812 1811 +f 1812 1821 1696 +f 1812 1696 1689 +f 1696 1694 1689 +f 1700 1694 1696 +f 1703 1700 1696 +f 1706 1700 1703 +f 1708 1706 1703 +f 1831 1708 1703 +f 1821 1831 1703 +f 1831 1821 1820 +f 1840 1708 1831 +f 1840 1831 1830 +f 1976 1708 1840 +f 1802 1976 1840 +f 1802 1840 1839 +f 1863 1976 1802 +f 1793 1863 1802 +f 1793 1802 1803 +f 1794 1793 1803 +f 1737 1793 1794 +f 1775 1737 1794 +f 1775 1794 2361 +f 2262 1775 2361 +f 2262 2361 2191 +f 1772 1775 2262 +f 1772 1682 1775 +f 1763 1682 1772 +f 1680 1682 1763 +f 1851 1680 1763 +f 1851 1763 1788 +f 1788 1763 1778 +f 1660 1680 1851 +f 1654 1660 1851 +f 1654 1851 1970 +f 1660 1667 1680 +f 1667 1681 1680 +f 1667 1675 1681 +f 1675 1735 1681 +f 1681 1735 1682 +f 1682 1735 1737 +f 1735 1736 1737 +f 1735 1679 1736 +f 1679 2214 1736 +f 1736 2214 1863 +f 2214 2208 1863 +f 2214 2213 2208 +f 2213 2207 2208 +f 2208 2207 2206 +f 2208 2206 1976 +f 2206 1714 1976 +f 2206 2207 1714 +f 2207 2204 1714 +f 1714 2204 1706 +f 2204 2203 1706 +f 2204 2126 2203 +f 2126 2115 2203 +f 2115 2017 2203 +f 2203 2017 1743 +f 2201 2203 1743 +f 2200 2201 1743 +f 2200 1743 2137 +f 2198 2200 2137 +f 2362 2198 2137 +f 2362 2137 2132 +f 2362 2132 2360 +f 2063 2362 2360 +f 2063 2360 2064 +f 2063 2064 1971 +f 1953 2063 1971 +f 1951 1953 1971 +f 1717 1951 1971 +f 1718 1717 1971 +f 1716 1718 1971 +f 1716 1717 1718 +f 1716 2071 1717 +f 2071 2072 1717 +f 2071 2362 2072 +f 2072 2362 2078 +f 2072 2078 1951 +f 1951 2078 1952 +f 1952 2078 1953 +f 2364 2362 2071 +f 1626 2362 2364 +f 2364 2071 1716 +f 1928 2364 1716 +f 1716 2064 1928 +f 1928 2064 2359 +f 2064 2330 2359 +f 2359 2330 1727 +f 2359 1727 1726 +f 2359 1726 1729 +f 2147 2359 1729 +f 2146 2147 1729 +f 1728 2146 1729 +f 1727 2146 1728 +f 2147 2146 2354 +f 2147 2354 2045 +f 2147 2045 1921 +f 1921 2045 2047 +f 2047 2189 1921 +f 2189 2047 1732 +f 1912 2189 1732 +f 1734 1912 1732 +f 1731 1734 1732 +f 1730 1731 1732 +f 2047 1731 1730 +f 1731 1912 1734 +f 2045 1912 1731 +f 1912 2349 2189 +f 2189 2349 2351 +f 2189 2351 2348 +f 2348 2351 2375 +f 2348 2375 2374 +f 2374 2375 2372 +f 2347 2374 2372 +f 2350 2347 2372 +f 2373 2350 2372 +f 2351 2350 2373 +f 2347 2350 2340 +f 2350 2349 2340 +f 2349 2319 2340 +f 2319 2328 2340 +f 2328 2029 2340 +f 2340 2029 2345 +f 2328 2325 2029 +f 2325 2328 2324 +f 2320 2325 2324 +f 2322 2320 2324 +f 2322 2324 2329 +f 2321 2322 2329 +f 2328 2321 2329 +f 2320 2322 2321 +f 2319 2320 2321 +f 2320 2028 2325 +f 1785 2028 2320 +f 1785 2320 2349 +f 1669 1785 2349 +f 2354 1669 2349 +f 2354 1910 1669 +f 1669 1910 1738 +f 1669 1738 1670 +f 1669 1670 1671 +f 1670 1739 1671 +f 1739 1785 1671 +f 1800 1785 1739 +f 1738 1800 1739 +f 1670 1738 1739 +f 1910 1800 1738 +f 1910 2026 1800 +f 1967 2026 1910 +f 1967 1790 2026 +f 1790 1967 1747 +f 1746 1790 1747 +f 1745 1746 1747 +f 1745 1747 1748 +f 2058 1745 1748 +f 1967 2058 1748 +f 2058 1967 2354 +f 2360 2058 2354 +f 2360 1789 2058 +f 2058 1789 1746 +f 2131 1789 2360 +f 2131 2022 1789 +f 1789 2022 1790 +f 2131 2153 2022 +f 1920 2022 2153 +f 1920 2153 1744 +f 1743 1920 1744 +f 1742 1743 1744 +f 1742 1744 1845 +f 1855 1742 1845 +f 1860 1855 1845 +f 1860 1845 1869 +f 2131 1860 1869 +f 2131 2132 1860 +f 1845 2131 1869 +f 2137 1855 1860 +f 2137 1742 1855 +f 1744 2153 1845 +f 2153 2131 1845 +f 2058 1746 1745 +f 1789 1790 1746 +f 1747 1967 1748 +f 1967 1910 2354 +f 1785 1669 1671 +f 1785 1800 2028 +f 2324 2328 2329 +f 2328 2319 2321 +f 2349 2320 2319 +f 2375 2373 2372 +f 2375 2351 2373 +f 2351 2349 2350 +f 1912 2354 2349 +f 2047 1730 1732 +f 2047 2045 1731 +f 2045 2354 1912 +f 2146 2360 2354 +f 2330 2360 2146 +f 2359 2147 1921 +f 1726 1728 1729 +f 1726 1727 1728 +f 2330 2146 1727 +f 1649 2364 1928 +f 1717 2072 1951 +f 1951 1952 1953 +f 2078 2063 1953 +f 2064 1716 1971 +f 2064 2360 2330 +f 2078 2362 2063 +f 2132 2131 2360 +f 2132 2137 1860 +f 2137 1743 1742 +f 2201 2200 1694 +f 1694 2200 1685 +f 2203 2201 1700 +f 1743 2017 1920 +f 2115 2126 2125 +f 2116 2115 2125 +f 2113 2116 2125 +f 2123 2113 2125 +f 2124 2123 2125 +f 2124 2118 2123 +f 2118 2120 2123 +f 2118 2119 2120 +f 2119 2114 2120 +f 2114 2113 2120 +f 2111 2113 2114 +f 2111 2112 2113 +f 2289 2112 2111 +f 2383 2289 2111 +f 2383 2111 2379 +f 2382 2383 2379 +f 2081 2382 2379 +f 2082 2081 2379 +f 2086 2082 2379 +f 2089 2086 2379 +f 2094 2089 2379 +f 2313 2094 2379 +f 2313 2379 2378 +f 2378 2379 1676 +f 2378 1676 1668 +f 2378 1668 1661 +f 1661 1668 1667 +f 1668 1676 1675 +f 1676 1679 1675 +f 1676 2215 1679 +f 1676 2379 2215 +f 2379 2124 2215 +f 2215 2124 2213 +f 2094 2313 2096 +f 2090 2094 2096 +f 2103 2090 2096 +f 2102 2090 2103 +f 2101 2102 2103 +f 2101 2085 2102 +f 2102 2085 2088 +f 2085 2083 2088 +f 2083 2086 2088 +f 2085 2081 2083 +f 2101 2081 2085 +f 2102 2088 2090 +f 2088 2089 2090 +f 2313 2103 2096 +f 2313 2104 2103 +f 2089 2094 2090 +f 2086 2089 2088 +f 2082 2086 2083 +f 2081 2082 2083 +f 2384 2382 2081 +f 2382 2384 1715 +f 1713 2382 1715 +f 1711 1713 1715 +f 2385 1711 1715 +f 2385 2386 1711 +f 2386 1712 1711 +f 2386 2382 1712 +f 2385 2383 2386 +f 1711 1712 1713 +f 1712 2382 1713 +f 2386 2383 2382 +f 2111 2119 2379 +f 2383 2075 2289 +f 2289 2075 1757 +f 1751 2289 1757 +f 1749 1751 1757 +f 1749 1750 1751 +f 1750 2251 1751 +f 2076 2251 1750 +f 2075 2076 1750 +f 2076 2014 2251 +f 2251 2014 2112 +f 2112 2014 2115 +f 2388 2014 2076 +f 2388 2076 2383 +f 2376 2388 2383 +f 2387 2376 2383 +f 2173 2387 2383 +f 2166 2173 2383 +f 2173 2166 1900 +f 1879 2173 1900 +f 1877 1879 1900 +f 2165 1877 1900 +f 2165 1878 1877 +f 2165 2167 1878 +f 1878 2167 1879 +f 1877 1878 1879 +f 2167 2173 1879 +f 2167 2387 2173 +f 2273 2387 2167 +f 2273 2270 2387 +f 2270 2389 2387 +f 2389 2304 2387 +f 2304 2315 2387 +f 2315 2370 2387 +f 2315 2012 2370 +f 2370 2012 2377 +f 2370 2377 1758 +f 2370 1758 1762 +f 2376 2370 1762 +f 1762 1758 1760 +f 2388 1762 1760 +f 1759 2388 1760 +f 2377 2388 1759 +f 1758 1759 1760 +f 1758 2377 1759 +f 2315 2312 2012 +f 2312 2315 2314 +f 2306 2312 2314 +f 2309 2306 2314 +f 2309 2314 2316 +f 2304 2309 2316 +f 2304 2306 2309 +f 2304 2305 2306 +f 2305 2312 2306 +f 2305 2011 2312 +f 2295 2011 2305 +f 2295 2305 2389 +f 2298 2295 2389 +f 2390 2298 2389 +f 2284 2390 2389 +f 2287 2284 2389 +f 2284 2287 2285 +f 2283 2284 2285 +f 2290 2283 2285 +f 2288 2290 2285 +f 2288 2292 2290 +f 2290 2292 2283 +f 2292 2284 2283 +f 2291 2284 2292 +f 2390 2302 2298 +f 2298 2302 2303 +f 2298 2303 2301 +f 2298 2301 2297 +f 2301 2296 2297 +f 2296 2295 2297 +f 2294 2295 2296 +f 2303 2294 2296 +f 2301 2303 2296 +f 2302 2294 2303 +f 2302 2008 2294 +f 2194 2008 2302 +f 2194 2202 2008 +f 1937 2008 2202 +f 1937 2202 1938 +f 1936 1937 1938 +f 1936 1938 2139 +f 1947 1936 2139 +f 2196 1947 2139 +f 2195 2196 2139 +f 2195 2139 2148 +f 2195 2148 2151 +f 2194 2195 2151 +f 2140 2194 2151 +f 2148 2140 2151 +f 2148 2139 2140 +f 2190 1947 2196 +f 2192 2190 2196 +f 2190 2188 1947 +f 2188 2004 1947 +f 1947 2004 1937 +f 2187 2004 2188 +f 2187 2188 1987 +f 1974 2187 1987 +f 1974 1987 1755 +f 1975 1974 1755 +f 2018 1975 1755 +f 1754 2018 1755 +f 1754 1755 1756 +f 2018 1754 2171 +f 2171 1754 2178 +f 1754 1889 2178 +f 2216 1975 2018 +f 2216 2018 2122 +f 1950 1975 2216 +f 2185 1950 2216 +f 2185 2216 2109 +f 1651 1950 2185 +f 1652 1651 2185 +f 1652 2185 2099 +f 2080 1652 2099 +f 1899 1652 2080 +f 2070 1899 2080 +f 2070 2080 2079 +f 2069 2070 2079 +f 2061 2070 2069 +f 2061 1870 2070 +f 1644 1870 2061 +f 1644 2061 2164 +f 1838 1644 2164 +f 1838 2164 2163 +f 1642 1644 1838 +f 1837 1642 1838 +f 1837 1838 2162 +f 1837 2162 1914 +f 1776 1837 1914 +f 1776 1780 1837 +f 1777 1780 1776 +f 1774 1777 1776 +f 1774 1776 1773 +f 1771 1774 1773 +f 1774 1771 2255 +f 2255 1771 1767 +f 2255 1767 2256 +f 2255 2256 2257 +f 2253 2255 2257 +f 2253 2257 2254 +f 2253 2254 2250 +f 2252 2253 2250 +f 2254 2257 2250 +f 2257 2259 2250 +f 2259 2266 2250 +f 2266 2248 2250 +f 2248 2249 2250 +f 2266 2249 2248 +f 2265 2249 2266 +f 2259 2265 2266 +f 2256 2265 2259 +f 1849 2255 2253 +f 1777 2255 1849 +f 2234 1777 1849 +f 2234 1781 1777 +f 2234 1787 1781 +f 1781 1787 1786 +f 1781 1786 1780 +f 1780 1786 1642 +f 1786 1643 1642 +f 1786 1791 1643 +f 1791 1903 1643 +f 1643 1903 1870 +f 1903 1898 1870 +f 1870 1898 1899 +f 1898 1650 1899 +f 1898 1799 1650 +f 1799 1925 1650 +f 1650 1925 1651 +f 1925 1939 1651 +f 1925 2181 1939 +f 2181 2183 1939 +f 1939 2183 1949 +f 1939 1949 1950 +f 2183 2184 1949 +f 1949 2184 1974 +f 2183 2172 2184 +f 2184 2172 2004 +f 2172 2169 2004 +f 2169 2172 2170 +f 2168 2169 2170 +f 2176 2168 2170 +f 2182 2176 2170 +f 2219 2182 2170 +f 2219 2217 2182 +f 2217 2177 2182 +f 2217 2218 2177 +f 2218 2179 2177 +f 2179 2175 2177 +f 2175 2176 2177 +f 2209 2176 2175 +f 2218 2209 2175 +f 2220 2209 2218 +f 2040 2209 2220 +f 2010 2040 2220 +f 2050 2010 2220 +f 2054 2050 2220 +f 2010 2050 1783 +f 1782 2010 1783 +f 1782 1783 1784 +f 2009 2010 1782 +f 2365 2009 1782 +f 2199 2365 1782 +f 1798 2199 1782 +f 1798 2365 2199 +f 1909 2365 1798 +f 2365 1909 2041 +f 2365 2041 2009 +f 2041 2040 2009 +f 2039 2040 2041 +f 2040 2039 2210 +f 2039 2380 2210 +f 1783 2050 1822 +f 2040 2010 2009 +f 2040 2210 2209 +f 2209 2210 2176 +f 2210 2169 2176 +f 2210 2005 2169 +f 2218 2175 2179 +f 2218 2217 2180 +f 2221 2218 2180 +f 1796 2221 2180 +f 1796 2180 1799 +f 1796 1799 1795 +f 1792 1796 1795 +f 1792 1795 1791 +f 1787 1792 1791 +f 2228 1792 1787 +f 2226 1796 1792 +f 2226 2224 1796 +f 2180 2217 2181 +f 2217 2219 2181 +f 2177 2176 2182 +f 2176 2169 2168 +f 2172 2219 2170 +f 2219 2172 2183 +f 2181 2219 2183 +f 2180 2181 1925 +f 1799 2180 1925 +f 1795 1799 1898 +f 1795 1898 1903 +f 1791 1795 1903 +f 1787 1791 1786 +f 2257 2256 2259 +f 2256 1767 2265 +f 1767 1764 2265 +f 1764 2193 2265 +f 2193 1764 1766 +f 1764 1767 1765 +f 1767 1771 1770 +f 1777 1774 2255 +f 1777 1781 1780 +f 1780 1642 1837 +f 1642 1643 1644 +f 2164 2061 2042 +f 2042 2061 2062 +f 1643 1870 1644 +f 1870 1899 2070 +f 1899 1650 1652 +f 1650 1651 1652 +f 1651 1939 1950 +f 1950 1949 1975 +f 1949 1974 1975 +f 1755 1987 1756 +f 1987 1999 1756 +f 2184 2187 1974 +f 1987 2188 1999 +f 2184 2004 2187 +f 2188 2190 1999 +f 1999 2190 2003 +f 2139 1938 2140 +f 1947 1937 1936 +f 1938 2202 2140 +f 2202 2194 2140 +f 2194 2302 2390 +f 2295 2298 2297 +f 2295 2294 2011 +f 2314 2315 2316 +f 2315 2304 2316 +f 2389 2305 2304 +f 2278 2389 2270 +f 2278 2270 2279 +f 2279 2270 2269 +f 2275 2279 2269 +f 2275 2269 2271 +f 2274 2275 2271 +f 2274 2279 2275 +f 2269 2270 2271 +f 2270 2273 2271 +f 2387 2370 2376 +f 2388 2376 1762 +f 2388 2377 2014 +f 2075 1750 1749 +f 2251 2289 1751 +f 2075 1749 1757 +f 2383 2076 2075 +f 2289 2251 2112 +f 2119 2111 2114 +f 2119 2118 2379 +f 2118 2124 2379 +f 2120 2113 2123 +f 2113 2112 2116 +f 2112 2115 2116 +f 2126 2124 2125 +f 2124 2126 2207 +f 2207 2126 2204 +f 2213 2124 2207 +f 2215 2213 2214 +f 1679 2215 2214 +f 1675 1679 1735 +f 1668 1675 1667 +f 1661 1667 1660 +f 1655 1661 1660 +f 1680 1681 1682 +f 2361 1794 2353 +f 1682 1737 1775 +f 1737 1736 1793 +f 1736 1863 1793 +f 1863 2208 1976 +f 1976 1714 1708 +f 1714 1706 1708 +f 1706 2203 1700 +f 1700 2201 1694 +f 1821 1703 1696 +f 1820 1821 1811 +f 1830 1831 1820 +f 1839 1840 1830 +f 1803 1802 1839 +f 1794 1803 2353 +f 2361 2353 2174 +f 2191 2361 2174 +f 2261 2262 2191 +f 2052 2262 2261 +f 2299 2052 2261 +f 2052 1772 2262 +f 1763 1772 1778 +f 2001 2007 2258 +f 2277 1945 2258 +f 2015 2016 1945 +f 2019 2020 2016 +f 2024 2025 2020 +f 2024 1887 2025 +f 1887 1897 2025 +f 1997 2048 2049 +f 1797 1778 1997 +f 1788 1778 1797 +f 1970 1851 1788 +f 1832 1801 1814 +f 1836 1832 1844 +f 1828 1836 1833 +f 1828 1833 1823 +f 1823 1833 1986 +f 1816 1828 1823 +f 1816 1823 1813 +f 1813 1823 1982 +f 1807 1816 1813 +f 1807 1813 1805 +f 1805 1813 1980 +f 1804 1807 1805 +f 1804 1812 1689 +f 1694 1685 1689 +f 1628 1687 1686 +f 2200 2198 1685 +f 1626 2198 2362 +f 1628 1627 1688 +f 1629 1626 2364 +f 1627 1636 1695 +f 1637 1629 2364 +f 1636 1640 1702 +f 1641 1637 2364 +f 1640 1648 1707 +f 1649 1641 2364 +f 1648 1654 1970 +f 1655 1660 1654 +f 2378 1661 1655 +f 2104 2313 2378 +f 2104 2101 2103 +f 2384 2081 2101 +f 2384 2385 1715 +f 2166 2383 2385 +f 2166 2165 1900 +f 2273 2167 2165 +f 2273 2274 2271 +f 2274 2278 2279 +f 2287 2389 2278 +f 2287 2288 2285 +f 2253 2252 1849 +f 2288 2291 2292 +f 2291 2390 2284 +f 2249 2252 2250 +f 2265 2193 2249 +f 2195 2194 2390 +f 2192 2196 2195 +f 2190 2192 2003 +f 1999 2003 1756 +f 1889 1754 1756 +f 1889 1926 2155 +f 1916 2027 1969 +f 2027 2193 1766 +f 1917 1932 1955 +f 1911 1932 1917 +f 1932 1911 2156 +f 1764 1765 1766 +f 1854 1911 1917 +f 1723 1911 1854 +f 1911 1723 2158 +f 1767 1770 1765 +f 1724 1723 1854 +f 1771 1773 1770 +f 1773 1776 1914 +f 1722 1723 1724 +f 1723 1722 2159 +f 2162 1915 1914 +f 2162 1838 2163 +f 2163 2164 2038 +f 1665 1647 1666 +f 2164 2042 2038 +f 1783 1822 1784 +f 1856 1647 1665 +f 2050 2054 1822 +f 1856 1645 1647 +f 1645 1646 1647 +f 2054 2220 2239 +f 2220 2218 2221 +f 2224 2221 1796 +f 2243 2240 2222 +f 2224 2226 2225 +f 2228 2226 1792 +f 2246 2228 1787 +f 2234 2246 1787 +f 2235 2234 1849 +f 1849 1848 2235 +f 2238 2227 2236 +f 2242 2243 2238 +f 1646 1645 2242 +f 1848 1872 2235 +f 1848 1849 1850 +f 1873 1896 1934 +f 1873 1934 1935 +f 1934 1942 1935 +f 1896 1942 1934 +f 1919 1942 1896 +f 1919 2245 1942 +f 2211 2245 1919 +f 1719 2211 1919 +f 2128 1719 1919 +f 2332 2128 1919 +f 1918 2332 1919 +f 2245 2211 1959 +f 2211 2212 1959 +f 2212 1956 1959 +f 1959 1956 1927 +f 2212 2264 1956 +f 1956 2264 1913 +f 2212 2272 2264 +f 2211 2272 2212 +f 1906 1907 1850 +f 1907 1649 1928 +f 1928 2359 1921 +f 1918 1919 1896 +f 1921 2189 2348 +f 2347 2348 2374 +f 2347 2340 2344 +f 1918 2337 2332 +f 2337 2333 2332 +f 2338 2344 2371 +f 2371 2344 2368 +f 2344 2339 2368 +f 2337 2369 2367 +f 2344 2340 2339 +f 2340 2345 2341 +f 2341 2345 2358 +f 2345 2363 2358 +f 2358 2363 2356 +f 2342 2358 2356 +f 2346 2342 2356 +f 2363 2346 2356 +f 2363 2345 2346 +f 2345 2343 2346 +f 2342 2341 2358 +f 2343 2342 2346 +f 2345 2029 2343 +f 2325 2028 2029 +f 1800 2026 2028 +f 1790 2022 2026 +f 1920 2017 2022 +f 1957 1630 1948 +f 2115 2014 2017 +f 2377 2012 2014 +f 2312 2011 2012 +f 2294 2008 2011 +f 1937 2004 2008 +f 2169 2005 2004 +f 2380 2005 2210 +f 2380 2039 2041 +f 1909 1888 2041 +f 1888 1909 1861 +f 2381 1630 1957 +f 1631 1888 1857 +f 1888 1861 1857 +f 1909 1798 1861 +f 1798 1782 1784 +f 2042 2062 1784 +f 2062 2061 2069 +f 1827 1862 2307 +f 2069 2079 2280 +f 2079 2080 2095 +f 2080 2099 2095 +f 2099 2185 2109 +f 2109 2216 2122 +f 2122 2018 2171 +f 1943 1944 1945 +f 2171 2178 1954 +f 2178 1889 2155 +f 1944 2013 1945 +f 1926 2154 2155 +f 2013 2015 1945 +f 1932 2156 2154 +f 2015 2019 2016 +f 1911 2158 2156 +f 2019 2024 2020 +f 1723 2159 2158 +f 1722 2160 2159 +f 2024 2051 1887 +f 2160 2161 2030 +f 2030 2033 2031 +f 1666 1647 2031 +f 1887 2051 1940 +f 1646 1883 1647 +f 1883 1873 1935 +f 1942 1958 1935 +f 1885 1960 1884 +f 1942 2245 1958 +f 2245 1959 1927 +f 1956 1913 1927 +f 1895 1893 1892 +f 2264 2247 1913 +f 2264 2263 2247 +f 1893 2232 1894 +f 2231 2267 2230 +f 2229 2230 1664 +f 2229 2233 1994 +f 1994 2237 1633 +f 1948 1653 1633 +f 2282 2366 2157 +f 1825 2366 2282 +f 1826 1825 2282 +f 1630 1653 1948 +f 1630 1632 1827 +f 1827 2205 1962 +f 1962 2107 1963 +f 1963 2065 1904 +f 1904 2000 1905 +f 1905 1943 1808 +f 1810 2197 1826 +f 1809 1989 1810 +f 1808 2077 1815 +f 2060 1981 1809 +f 2093 1924 2060 +f 2135 1922 2093 +f 1815 2073 2068 +f 2068 1991 2067 +f 2067 1991 2059 +f 2059 1874 2055 +f 2110 1922 2135 +f 2110 2056 2074 +f 1874 1875 2055 +f 1806 1977 1875 +f 2056 1817 2074 +f 1805 1980 1977 +f 1817 1818 1819 +f 1813 1982 1980 +f 1818 1834 1819 +f 1823 1986 1982 +f 1834 1835 1819 +f 1833 1990 1986 +f 1990 1992 1897 +f 1835 1901 1819 +f 1887 1884 1897 +f 1884 1960 1931 +f 2097 2098 2092 +f 2091 2092 1930 +f 2087 1930 1929 +f 1960 1972 1931 +f 1972 2244 1978 +f 2130 1929 1973 +f 1978 1983 1979 +f 1983 2232 1988 +f 1988 1993 1998 +f 1998 1993 1995 +f 1866 1867 1868 +f 1995 1881 1880 +f 1946 1635 1881 +f 1635 1634 2100 +f 2157 2366 2100 +f 2130 1985 1866 +f 1825 2043 2366 +f 2130 2053 1929 +f 2037 2046 2043 +f 2046 1657 2057 +f 1657 1656 2057 +f 2053 2084 1929 +f 1656 2133 2057 +f 2084 2087 1929 +f 1891 2134 2133 +f 2087 2091 1930 +f 1890 2136 2134 +f 2091 2097 2092 +f 1964 2138 2136 +f 2097 2127 1901 +f 2142 2105 2127 +f 2143 2144 2142 +f 1871 1876 2143 +f 1720 1876 1871 +f 1964 2141 2138 +f 1890 1964 2136 +f 1891 1890 2134 +f 1656 1891 2133 +f 1656 1657 1658 +f 1659 1705 1658 +f 1709 1847 1710 +f 2268 2231 1705 +f 2260 2231 2247 +f 2263 2260 2247 +f 1709 1852 1847 +f 2272 2263 2264 +f 1852 1858 1853 +f 2286 2272 2211 +f 1858 1864 1859 +f 1719 2286 2211 +f 1864 1721 1865 +f 1721 1720 1871 +f 2128 1725 1719 +f 1720 1733 1876 +f 2128 1740 1725 +f 1733 1741 1882 +f 1752 1753 1741 +f 2323 2326 1752 +f 2326 2323 1846 +f 2128 2186 1740 +f 2128 2332 1841 +f 2129 1843 1842 +f 1846 2323 1842 +f 1933 2326 1846 +f 2332 2066 1841 +f 2332 2333 2066 +f 2331 2326 1933 +f 2337 2334 2333 +f 1761 2331 2318 +f 2334 2336 2335 +f 2336 2032 1965 +f 1966 1965 2293 +f 2310 1966 2308 +f 1625 1624 1638 +f 2317 2310 2311 +f 1623 1624 1625 +f 2327 2317 2318 +f 1622 1624 1623 +f 2327 1622 1621 + + +o Object.5 +v -23.926620 -125.801857 3.382252 +v -24.023338 -125.849861 3.141255 +v -24.070038 -125.902565 3.008450 +v -24.577934 -125.658852 3.477345 +v -24.601799 -125.891762 3.211453 +v -24.496948 -125.886757 3.106450 +v -19.667480 -121.792259 0.999646 +v -19.967911 -121.761452 0.999646 +v -21.389999 -120.042473 0.999646 +v -16.561901 -125.754951 3.419354 +v -19.926620 -125.657555 3.476346 +v -19.971561 -125.779259 3.364651 +v 23.966848 -125.814659 3.327252 +v 24.041889 -125.814156 3.142651 +v 24.119698 -122.828163 3.169743 +v 24.000729 -122.909660 3.249646 +v 20.491549 -122.849251 3.451046 +v 19.893248 -122.905663 3.499943 +v 20.408529 -122.822060 3.249646 +v -20.530823 -121.548759 0.999646 +v -7.924133 -120.292168 3.497944 +v -4.566620 -117.310570 3.475636 +v -7.917381 -117.596077 3.497036 +v -8.502941 -116.312874 3.143734 +v -8.606071 -117.596077 3.499638 +v -8.372101 -120.262581 3.110142 +v 0.323380 -125.602058 3.490147 +v 3.893250 -122.905663 3.499943 +v 4.453819 -120.348473 3.477047 +v 8.088650 -120.342873 3.462445 +v 8.023129 -120.276878 3.208447 +v 8.028229 -120.306572 3.442547 +v 4.501518 -125.795357 3.241055 +v 4.494938 -122.909660 3.213948 +v 4.394829 -122.833153 3.164242 +v 8.556599 -125.856560 3.285351 +v 8.506050 -125.847466 3.191555 +v 8.504528 -125.900963 3.048352 +v 29.711819 -112.912270 1.313641 +v 29.890598 -112.991676 -0.500362 +v 29.643829 -112.586372 -0.500370 +v -27.021278 -124.440865 0.149647 +v 27.251488 -124.421852 0.149647 +v -27.132568 -124.436455 -1.000354 +v -20.988403 -121.157951 0.999646 +v -21.286545 -120.635277 0.999646 +v 20.389999 -123.370964 0.999646 +v 26.948259 -123.370964 0.999646 +v 20.389999 -123.400658 0.149647 +v 29.448778 -112.512474 1.076634 +v -3.961292 -120.276772 3.482342 +v -0.264442 -117.315773 3.430935 +v -3.893932 -116.832680 3.380238 +v 16.014118 -122.738457 3.499447 +v 15.966848 -125.743156 3.403950 +v 16.037308 -122.807762 3.469647 +v 0.335190 -120.296074 3.499249 +v 3.893929 -117.596077 3.499638 +v 0.323380 -117.305168 3.477437 +v -12.023201 -120.296272 3.432744 +v -11.943432 -117.305977 3.470440 +v -12.010670 -120.257179 3.215344 +v -0.327923 -125.603859 3.491246 +v -3.910461 -125.803062 3.386654 +v -0.327923 -125.800453 3.385754 +v -21.363945 -119.741570 0.999646 +v 16.008398 -122.895760 3.211743 +v -22.463058 -118.432167 0.999638 +v -22.144173 -117.970772 0.999638 +v -22.463058 -118.432182 -2.200351 +v -17.993462 -120.635277 0.999646 +v -18.291603 -121.157951 0.999646 +v -17.993462 -119.449669 0.999646 +v -28.249168 -123.709862 -1.000354 +v -29.668961 -124.451454 -1.000354 +v -28.398834 -123.274452 -1.000354 +v -0.326092 -122.920662 3.495144 +v -0.261841 -125.685555 3.407544 +v -0.170712 -122.835060 3.178944 +v -17.890003 -120.042473 0.999646 +v -24.367691 -122.824562 3.177845 +v -24.449699 -122.830559 3.424649 +v -24.457413 -122.886253 3.154446 +v -18.503471 -121.373161 0.999646 +v 29.282688 -112.278572 -0.500370 +v 29.036568 -112.245171 0.977429 +v -8.411350 -120.342873 3.462445 +v -8.071583 -120.364769 3.483944 +v -8.059650 -120.292366 3.169644 +v -21.160103 -119.175377 0.999638 +v 23.973488 -122.798561 3.495442 +v -18.291603 -118.926979 0.999638 +v -27.417862 -120.717476 -1.000354 +v -27.417862 -121.892464 -1.000354 +v -28.338051 -120.709877 -1.000354 +v 0.356068 -125.866554 3.293156 +v 0.245529 -125.786263 3.213353 +v 0.156559 -125.881660 3.063954 +v -20.032772 -122.761360 3.495747 +v -19.904942 -122.851860 3.499546 +v -16.595062 -120.291573 3.499546 +v -27.234619 -125.847557 3.286755 +v 4.556969 -120.284279 3.492344 +v 7.933380 -117.310570 3.475636 +v 4.573380 -117.596077 3.494435 +v -16.577923 -125.603859 3.491246 +v 19.691048 -116.792870 -0.500362 +v 18.889999 -116.880180 -0.500362 +v 18.889999 -114.033577 -0.500362 +v 28.594330 -112.141777 0.958828 +v -20.529041 -120.245979 3.467648 +v -23.992714 -122.890755 3.440342 +v -20.411350 -120.342873 3.462445 +v -20.776535 -118.711769 0.999638 +v -8.561901 -125.708153 3.449650 +v -11.982403 -125.690056 3.416348 +v -11.910461 -125.803062 3.386654 +v -18.749180 -118.536171 0.999638 +v -19.943031 -120.284279 3.492344 +v -16.566612 -117.310570 3.475636 +v -19.971561 -117.308479 3.449040 +v 15.915808 -120.295876 3.499142 +v 12.532259 -122.836555 3.487446 +v 16.493559 -120.358467 3.492344 +v -20.740898 -123.100273 -2.200344 +v -20.390003 -123.204659 0.999646 +v -21.250244 -122.865471 -2.200344 +v 8.576088 -120.222771 3.495144 +v 11.985558 -117.315773 3.430935 +v 8.573380 -117.305168 3.477437 +v -20.258591 -118.405373 0.999638 +v -12.606071 -117.596077 3.499638 +v -12.582840 -117.022667 3.430340 +v -15.943432 -117.305977 3.470440 +v -19.021423 -121.679451 0.999646 +v -19.312080 -118.323479 0.999638 +v -4.010490 -122.880760 3.227543 +v -4.120132 -122.833260 3.157742 +v -4.008041 -125.824455 3.186154 +v 28.752758 -112.080879 -0.500370 +v 27.230949 -123.253960 0.999943 +v 27.071838 -123.389458 0.149746 +v -19.312080 -121.761452 0.999646 +v 2.398289 -120.042488 -2.309047 +v 2.276810 -120.042488 -2.420047 +v 2.174217 -119.366982 -2.420047 +v -21.711624 -122.546577 -2.200344 +v -21.750710 -122.513756 0.999646 +v -22.111320 -122.153175 -2.200344 +v 28.502899 -112.059868 -0.500370 +v -16.029003 -120.391777 3.498143 +v -16.014400 -120.271675 3.233143 +v -2.251720 -120.717491 -2.361743 +v -2.398293 -120.042488 -2.309047 +v -2.205162 -120.042488 -2.458545 +v 29.845518 -117.101372 3.238736 +v 29.757259 -123.621254 3.286747 +v 29.992237 -114.163673 -0.500362 +v -22.463058 -121.652657 0.999646 +v -22.819145 -120.717476 0.999646 +v -22.680199 -121.191277 -2.200344 +v -21.294388 -122.839851 0.999646 +v -22.832428 -120.651482 -2.200344 +v -22.819145 -120.717476 -0.500354 +v -22.889603 -120.093483 -2.200344 +v 20.597258 -125.866264 3.292950 +v 20.489668 -125.870354 3.130650 +v 27.336849 -123.065163 0.999745 +v 27.363539 -123.106453 0.149746 +v 16.460869 -120.717476 -0.500354 +v 16.389999 -120.042473 -0.500354 +v 16.438389 -120.601189 -2.200344 +v 4.573380 -125.711266 3.452954 +v 4.520687 -125.885658 3.135556 +v -27.579819 -124.324364 -1.000354 +v -28.668991 -125.549355 -1.000354 +v -27.964371 -124.074654 -1.000354 +v 12.438299 -120.345467 3.470242 +v 15.948788 -117.025566 3.417935 +v 12.606068 -116.830467 3.379536 +v 18.503468 -121.373161 0.999646 +v 18.119898 -120.909462 0.999646 +v 17.916058 -120.343376 0.999646 +v 29.886719 -113.294670 1.389935 +v 19.900568 -117.309776 3.482937 +v 20.022268 -120.271675 3.201245 +v 20.073668 -116.268272 3.111439 +v 11.958969 -122.830559 3.492245 +v 11.938099 -125.754951 3.419354 +v 11.998379 -125.794456 3.243054 +v 27.882479 -124.144066 0.149647 +v 27.251488 -124.421852 -1.000354 +v -0.675503 -117.868294 -2.420055 +v 0.675030 -117.790688 -2.361553 +v 0.675690 -117.925987 -2.450954 +v 21.286539 -120.635277 0.999646 +v 20.988398 -121.157951 0.999646 +v 21.389999 -120.042473 0.999646 +v 24.038908 -125.901161 3.031750 +v 29.995628 -113.420967 -0.500362 +v 29.989639 -123.466164 -1.000354 +v 30.016998 -114.211571 -1.000362 +v -12.430103 -122.769661 3.489247 +v -12.006302 -122.831352 3.468342 +v -8.482861 -120.342278 3.482449 +v -19.640003 -121.792473 -2.500347 +v 17.916058 -119.741570 0.999646 +v 21.286539 -119.449669 0.999646 +v 4.032497 -122.760551 3.495945 +v 29.190548 -124.546364 3.442044 +v 28.737537 -125.090660 3.416043 +v 29.279799 -124.609856 3.326649 +v -20.258591 -121.679466 -2.500347 +v -20.776535 -121.373177 -2.500347 +v 28.417858 -121.892464 -1.000354 +v 28.478218 -120.662971 -1.000354 +v 28.604778 -120.570976 -1.000354 +v -28.417862 -121.892464 -1.000354 +v -28.634254 -120.538872 -1.000354 +v -16.400002 -122.764351 3.490048 +v 20.530819 -121.548759 0.999646 +v -0.200790 -122.802254 3.469944 +v 18.119898 -119.175377 0.999638 +v 20.988398 -118.926979 0.999638 +v -21.160103 -120.909477 -2.500347 +v -21.363945 -120.343391 -2.500347 +v 28.375978 -123.384056 -1.000354 +v 28.417858 -121.892464 0.149647 +v 19.639999 -121.792458 0.999646 +v 19.021418 -121.679451 0.999646 +v 18.503468 -118.711769 0.999638 +v -8.569160 -122.920753 3.492749 +v 27.260639 -123.283653 0.149945 +v -21.363945 -119.741585 -2.500347 +v -21.160103 -119.175392 -2.500354 +v -0.213242 -125.871452 3.105450 +v 19.967918 -121.761452 0.999646 +v 20.530819 -118.536171 0.999638 +v 12.077429 -122.890862 3.123944 +v -20.776535 -118.711784 -2.500354 +v -2.350803 -119.367287 -2.236248 +v -4.541031 -122.830559 3.492245 +v -4.523483 -122.910652 3.459546 +v -4.452442 -122.842354 3.207249 +v -24.507599 -116.576271 3.224736 +v -24.477730 -120.271675 3.201245 +v -24.411514 -116.193474 3.089634 +v -20.258591 -118.405388 -2.500354 +v 28.375978 -123.384056 0.149647 +v 19.021418 -118.405373 0.999638 +v 27.377708 -121.892464 0.149647 +v 27.417858 -121.892464 -1.000354 +v 27.400398 -120.717476 -0.500354 +v 28.329437 -120.711281 -0.500354 +v 27.417858 -120.717476 -1.000354 +v 19.967918 -118.323479 0.999638 +v -19.312080 -118.323494 -2.500354 +v 23.922068 -125.603859 3.491246 +v 29.668959 -124.451454 -1.000354 +v 28.193048 -123.804558 -1.000354 +v 28.655727 -120.511375 -0.500354 +v 28.745068 -120.295677 -1.000354 +v -23.983063 -120.281578 3.468243 +v -20.606060 -117.596077 3.499638 +v -23.943428 -117.019875 3.419735 +v -20.577930 -125.603859 3.491246 +v -23.982399 -125.595757 3.448246 +v -27.579819 -124.324364 0.149647 +v 4.507290 -122.890755 3.440342 +v 29.448238 -112.641975 1.261227 +v 29.721409 -113.237267 1.561337 +v 19.639999 -121.792473 -2.500347 +v 19.021418 -121.679466 -2.500347 +v -7.926620 -125.602058 3.490147 +v -7.934341 -122.890465 3.492245 +v -8.114540 -122.835060 3.156147 +v 7.997059 -116.312874 3.143734 +v 20.389999 -123.204659 0.999646 +v 20.389999 -123.204659 0.149647 +v 20.098768 -125.895164 3.037556 +v 19.899498 -125.887566 3.231053 +v 16.098759 -125.895164 3.037556 +v -19.312080 -121.761467 -2.500347 +v 20.389999 -114.033577 -0.500362 +v 18.503468 -121.373177 -2.500347 +v 21.750708 -117.571175 0.999638 +v 21.294378 -117.245079 0.999638 +v 27.348019 -116.658073 0.999638 +v 18.119898 -120.909477 -2.500347 +v 28.776447 -114.643578 -1.000362 +v -16.071232 -116.366966 3.121838 +v -15.910473 -116.742775 3.348141 +v -18.749180 -121.548775 -2.500347 +v 17.916058 -120.343391 -2.500347 +v -8.063923 -125.793663 3.126950 +v 8.042587 -122.886253 3.154446 +v 7.978539 -125.772453 3.359654 +v 8.030640 -125.800758 3.158055 +v 4.517597 -125.595757 3.448246 +v 7.995979 -122.854851 3.460049 +v 17.916058 -119.741585 -2.500347 +v -18.291603 -121.157967 -2.500347 +v 18.119898 -119.175392 -2.500354 +v -17.993462 -120.635292 -2.500347 +v 19.922068 -125.603859 3.491246 +v 19.938099 -125.754951 3.419354 +v -8.452633 -125.850960 3.118550 +v 20.070049 -120.373070 3.488842 +v 20.556969 -120.284279 3.492344 +v 18.503468 -118.711784 -2.500354 +v -17.890003 -120.042488 -2.500347 +v 20.389999 -116.880180 0.999638 +v 28.762287 -114.692772 -0.500362 +v -12.569160 -122.920753 3.492749 +v -12.577930 -125.603859 3.491246 +v -12.430401 -122.822655 3.425549 +v 19.021418 -118.405388 -2.500354 +v -28.531158 -112.178078 1.027432 +v -28.980484 -112.137978 -0.500370 +v 22.819128 -119.367470 0.999646 +v 22.463049 -118.432167 0.999638 +v 27.811419 -125.617958 3.416043 +v 27.670038 -125.776756 3.244252 +v 16.606068 -116.830467 3.379536 +v 19.967918 -118.323494 -2.500354 +v -2.405453 -120.717476 -2.080745 +v -2.505001 -120.042473 -0.500354 +v -2.498062 -120.042473 -2.083347 +v -29.995628 -113.420967 -0.500362 +v -29.844559 -113.169472 1.368840 +v -29.876938 -112.959373 -0.500362 +v -17.993462 -119.449684 -2.500347 +v -15.926620 -125.657555 3.476346 +v -12.467140 -120.381981 3.495747 +v -12.540310 -116.446770 3.207638 +v -12.467411 -120.234779 3.157643 +v -12.411522 -116.193474 3.089634 +v 20.248989 -123.234871 -2.200344 +v 19.639999 -123.292473 -2.200344 +v 20.192778 -122.940178 -2.500347 +v -18.291603 -118.926994 -2.500354 +v 19.639999 -122.992470 -2.500347 +v 20.788788 -123.082680 -2.200344 +v -18.749180 -118.536186 -2.500354 +v -29.741470 -123.136665 3.416043 +v -29.524643 -117.286674 3.480435 +v -29.655128 -116.988670 3.399540 +v 21.294378 -122.839867 -2.200344 +v 21.141668 -122.581673 -2.500347 +v 21.750708 -122.513771 -2.200344 +v 22.144169 -122.114067 -2.200344 +v 21.913008 -121.922874 -2.500347 +v 27.348019 -119.367470 0.999646 +v 28.880058 -114.407280 -1.000362 +v 18.889999 -123.400658 0.149647 +v 18.889999 -123.370964 0.999646 +v 18.889999 -123.204659 0.149647 +v -27.204819 -125.602455 3.491543 +v 22.463049 -121.652672 -2.200344 +v 22.697859 -121.143379 -2.200344 +v 22.415598 -121.041771 -2.500347 +v 24.556568 -117.305977 3.470440 +v 29.652868 -117.363579 3.464337 +v 24.606068 -116.811974 3.373440 +v 29.658928 -123.237465 3.463345 +v 24.493698 -122.831352 3.468342 +v 15.899498 -125.887566 3.231053 +v 12.439648 -125.827461 3.122853 +v 12.573378 -125.602562 3.490048 +v 12.506048 -125.847466 3.191555 +v 19.967918 -121.761467 -2.500347 +v 22.841608 -120.601189 -2.200344 +v -28.572624 -120.600471 -0.500354 +v -28.338051 -120.709877 -0.500354 +v 22.889999 -120.042488 -2.200344 +v 22.589998 -120.042488 -2.500347 +v 22.144169 -117.970772 0.999638 +v 29.188028 -114.112175 -0.500362 +v 29.297367 -114.083778 -1.000362 +v 22.841608 -119.483696 -2.200344 +v 20.530819 -121.548775 -2.500347 +v -7.910461 -125.803062 3.386654 +v 18.889999 -123.204659 0.999646 +v 22.697859 -118.941582 -2.200351 +v 22.415598 -119.043190 -2.500354 +v 20.988398 -121.157967 -2.500347 +v 8.573380 -125.602562 3.490048 +v 8.467228 -122.761360 3.495747 +v 8.457027 -122.839561 3.249646 +v 22.463049 -118.432182 -2.200351 +v -16.529491 -122.897362 3.468045 +v 22.144169 -117.970787 -2.200351 +v 21.913008 -118.162086 -2.500354 +v 28.838417 -114.462074 -0.500362 +v 21.750708 -117.571190 -2.200351 +v -20.594452 -125.838264 3.342953 +v 20.389948 -120.282677 3.126744 +v 21.286539 -120.635292 -2.500347 +v 21.294378 -117.245094 -2.200351 +v 21.141668 -117.503288 -2.500354 +v -24.099991 -122.748055 3.496045 +v 20.788788 -117.002281 -2.200351 +v 21.389999 -120.042488 -2.500347 +v 20.248989 -116.849983 -2.200351 +v 20.192778 -117.144691 -2.500354 +v 20.389999 -116.880180 -0.500362 +v 19.691048 -116.792885 -2.200351 +v 0.000000 -117.544380 -2.083355 +v 0.675117 -117.637367 -2.083355 +v 0.000000 -117.644188 -2.309055 +v -29.989639 -123.466164 -1.000354 +v 20.389999 -116.658073 0.999638 +v 21.286539 -119.449684 -2.500347 +v 11.967289 -120.351372 3.497448 +v 12.023129 -120.276878 3.208447 +v -19.640003 -123.292458 0.149647 +v -19.640003 -123.292473 -2.200344 +v -19.081230 -123.244072 -2.200344 +v -20.740898 -116.984596 -2.200351 +v -19.588951 -116.792870 -0.500362 +v -19.640003 -116.792488 -2.200351 +v -20.400002 -122.757362 3.493046 +v -20.022270 -122.871651 3.201245 +v 27.117809 -125.814461 3.363354 +v 7.899498 -125.887566 3.231053 +v 4.400749 -125.863258 3.082554 +v -18.890003 -123.204659 0.149647 +v -0.675243 -117.657066 -2.159252 +v -18.539101 -123.100273 -2.200344 +v 20.988398 -118.926994 -2.500354 +v -18.890003 -123.204659 0.999646 +v -22.437408 -121.696877 -2.200344 +v -30.012695 -114.191170 -1.000362 +v 4.489330 -120.257179 3.215344 +v -17.985622 -122.839851 0.999646 +v -18.029762 -122.865471 -2.200344 +v 8.041180 -125.880455 3.089451 +v 16.546318 -122.894264 3.482045 +v 19.904938 -120.291573 3.499546 +v 23.985558 -117.315773 3.430935 +v 20.573389 -117.305168 3.477437 +v 20.530819 -118.536186 -2.500354 +v 3.976688 -125.900459 3.063855 +v 3.899498 -125.887566 3.231053 +v -17.529301 -122.513756 0.999646 +v -17.568371 -122.546577 -2.200344 +v 27.400398 -114.033577 -0.500362 +v -24.506088 -122.819054 3.482548 +v 4.573380 -117.018272 3.426640 +v 4.441628 -116.169975 3.080441 +v 4.451729 -116.356880 3.134335 +v 23.948788 -116.747475 3.334935 +v 20.602808 -116.608269 3.295842 +v -17.135830 -122.114052 0.999646 +v -17.168682 -122.153175 -2.200344 +v -20.043610 -125.871651 3.100354 +v -20.491600 -122.895760 3.211743 +v -12.556160 -120.284081 3.492047 +v 21.294378 -122.839851 0.999646 +v -29.230309 -112.433372 1.156033 +v -28.456490 -112.298576 1.129132 +v 29.568548 -116.904671 3.399640 +v -27.860580 -125.438255 3.491543 +v -24.450600 -120.340767 3.469548 +v -16.816952 -121.652657 0.999646 +v -16.842590 -121.696877 -2.200344 +v 12.385458 -122.835060 3.156147 +v -16.458881 -120.278481 3.174443 +v -16.460873 -120.717476 0.999646 +v -16.599812 -121.191277 -2.200344 +v 0.674999 -119.367470 0.999646 +v 16.460869 -119.367470 0.999646 +v 16.460869 -119.367470 -0.500354 +v -16.460873 -120.717476 -0.500354 +v 24.466179 -120.317680 3.452549 +v -8.485882 -122.738457 3.499447 +v -8.445583 -122.848457 3.180249 +v 21.750708 -122.513756 0.999646 +v -19.132813 -122.948479 -2.500347 +v -19.640003 -122.992470 -2.500347 +v -16.447571 -120.651482 -2.200344 +v -4.082481 -125.899254 3.028454 +v -16.390400 -120.093483 -2.200344 +v -16.390003 -120.042473 -0.500354 +v -16.460873 -119.367470 -0.500354 +v -16.438393 -119.483696 -2.200344 +v 2.385330 -119.367180 -2.159244 +v -16.460873 -119.367470 0.999646 +v -16.582142 -118.941582 -2.200351 +v 27.762018 -125.474358 3.491543 +v -18.178402 -122.604866 -2.500347 +v 0.674999 -114.033577 -0.500362 +v 0.674999 -117.630074 -0.500362 +v -0.675003 -114.033577 -0.500362 +v -20.639282 -122.818077 -2.500347 +v 2.412338 -119.367470 -0.500354 +v -16.816952 -118.432167 0.999638 +v 23.957838 -120.367378 3.499142 +v 20.418459 -122.722359 3.500348 +v -16.816952 -118.432182 -2.200351 +v -17.135830 -117.970772 0.999638 +v -20.390003 -116.880180 -0.500362 +v -17.135830 -117.970787 -2.200351 +v -17.396801 -121.958275 -2.500347 +v -22.819145 -119.367470 -0.500354 +v -22.841599 -119.483696 -2.200344 +v -21.520401 -122.315468 -2.500347 +v 2.405308 -120.717476 -2.083347 +v 2.301388 -120.717491 -2.309246 +v 2.498070 -120.042473 -2.083347 +v -17.529301 -117.571175 0.999638 +v 3.995979 -122.854851 3.460049 +v -17.529301 -117.571190 -2.200351 +v -17.985622 -117.245079 0.999638 +v 16.816948 -121.652672 -2.200344 +v 16.460869 -120.717476 0.999646 +v 16.582138 -121.143379 -2.200344 +v -29.673904 -112.799767 1.221432 +v -16.880440 -121.085167 -2.500347 +v -16.060352 -125.827461 3.122853 +v -16.463230 -125.801064 3.150654 +v -16.401241 -125.895164 3.037556 +v -22.179192 -121.544075 -2.500347 +v -8.006821 -122.785561 3.492047 +v 24.079229 -120.326073 3.435246 +v -17.985622 -117.245094 -2.200351 +v -18.890003 -116.880180 0.999638 +v -18.890003 -116.880180 -0.500362 +v -18.539101 -116.984596 -2.200351 +v -29.058289 -125.244560 -1.000354 +v 16.036768 -125.801064 3.150654 +v -22.537750 -120.595192 -2.500347 +v -16.400002 -120.366966 3.483349 +v -4.477722 -120.271675 3.201245 +v -4.059650 -120.292366 3.169644 +v -16.690361 -120.088783 -2.500347 +v -4.472301 -125.893654 3.069851 +v -4.514542 -125.857857 3.192250 +v -8.140671 -125.852760 3.083050 +v -8.023350 -125.849861 3.141255 +v 29.702608 -113.479271 1.701535 +v 19.639999 -123.292458 0.149647 +v -22.537750 -119.489693 -2.500347 +v -16.880440 -118.999687 -2.500354 +v 22.144169 -122.114052 0.999646 +v -8.602802 -116.607475 3.295437 +v -11.926620 -117.018272 3.426640 +v -22.179192 -118.540794 -2.500354 +v 22.463049 -121.652657 0.999646 +v -17.396801 -118.126595 -2.500354 +v 4.017147 -120.342278 3.482449 +v 0.282848 -122.792152 3.497448 +v 12.506519 -116.416878 3.179837 +v 12.400059 -116.152473 3.071637 +v 12.486019 -120.234779 3.188443 +v -21.520401 -117.769493 -2.500354 +v 22.819128 -120.717476 0.999646 +v -0.290291 -120.312477 3.491948 +v -3.960373 -122.785255 3.498745 +v -27.915482 -125.579964 3.416043 +v -28.523384 -125.213554 3.442044 +v 22.819128 -120.717476 -0.500354 +v -4.546272 -120.249367 3.482045 +v -0.161350 -120.342873 3.462445 +v 0.139950 -120.282677 3.126744 +v -0.234520 -120.268181 3.216443 +v -18.178402 -117.479988 -2.500354 +v -4.540310 -116.446770 3.207638 +v 11.976679 -125.900459 3.063855 +v -11.926620 -125.602058 3.490147 +v 22.889999 -120.042473 -0.500354 +v 22.819128 -119.367470 -0.500354 +v -20.523312 -125.900459 3.063855 +v -16.012012 -122.793556 3.487744 +v -20.639282 -117.266884 -2.500354 +v 29.929607 -114.075676 -1.000362 +v 29.853218 -114.031776 -0.500362 +v -19.132813 -117.136391 -2.500354 +v 0.158527 -122.829262 3.183545 +v -16.600502 -125.887566 3.231053 +v -8.401241 -125.895164 3.037556 +v -8.594452 -125.838264 3.342953 +v -12.082481 -125.899254 3.028454 +v -29.912544 -114.065575 -1.000362 +v 4.007668 -120.247566 3.214543 +v -27.178154 -123.298363 0.999943 +v -26.948265 -123.370964 0.999646 +v -27.083458 -123.386559 0.149746 +v 2.174408 -120.717491 -2.420146 +v -1.945930 -120.717491 -2.497448 +v 16.422699 -120.319069 3.249646 +v 16.486029 -120.234779 3.188443 +v 16.101448 -120.315178 3.179348 +v 20.565649 -122.855659 3.495442 +v 24.569748 -125.881660 3.231755 +v 24.573378 -125.602058 3.490147 +v 24.384068 -122.883354 3.111348 +v -29.753822 -123.693062 3.244244 +v -29.860420 -123.146461 3.199849 +v 0.674999 -119.367485 -2.500347 +v -20.390003 -123.204659 0.149647 +v -2.032162 -119.366890 -2.481350 +v -0.675003 -119.367485 -2.500347 +v 29.603798 -123.956566 3.363347 +v 12.025558 -122.742760 3.499249 +v 16.441629 -116.169975 3.080441 +v -16.042973 -122.839561 3.249646 +v 27.400398 -119.367470 -0.500354 +v -0.675003 -117.630074 -0.500362 +v -29.768272 -113.322075 1.581234 +v -4.511841 -125.761360 3.349255 +v 16.476648 -125.849861 3.141255 +v -29.568008 -112.503868 -0.500370 +v -4.577930 -125.603859 3.491246 +v 27.348019 -120.717476 0.999646 +v 8.541397 -117.022072 3.410237 +v 11.917158 -117.022667 3.430340 +v 28.298119 -125.757164 -1.000347 +v 27.882479 -124.144066 -1.000354 +v -3.926613 -125.602058 3.490147 +v -22.144173 -117.970787 -2.200351 +v 16.573378 -125.657555 3.476346 +v -27.275345 -123.201164 0.999943 +v -27.260643 -123.283653 0.149945 +v -27.366531 -123.094856 0.149746 +v 18.597248 -122.801979 -2.500347 +v -20.198772 -123.244072 -2.200344 +v -24.029045 -122.871651 3.186146 +v 3.922070 -125.658852 3.477345 +v 0.323380 -125.757957 3.422650 +v 4.413967 -120.315178 3.192944 +v 17.724129 -122.285667 -2.500347 +v -29.358139 -124.115654 3.479947 +v -0.281071 -116.752876 3.320141 +v 7.978539 -125.646461 3.441143 +v 17.077538 -121.504066 -2.500347 +v 27.021269 -126.042458 -1.000347 +v -29.525314 -124.197563 3.326649 +v -21.750710 -117.571175 0.999638 +v -29.067688 -124.760551 3.416043 +v -29.001503 -112.229774 0.969632 +v 16.733929 -120.549690 -2.500347 +v -24.134415 -122.860756 3.121243 +v 0.181808 -120.382973 3.493443 +v 8.465919 -116.286079 3.125439 +v 8.389938 -120.282677 3.126744 +v -12.501011 -125.859459 3.162152 +v -15.926620 -125.835457 3.339055 +v -15.995472 -125.900963 3.048352 +v 4.040268 -122.895760 3.152447 +v 29.058298 -125.244560 -1.000354 +v 16.733929 -119.535286 -2.500347 +v -16.491592 -122.895760 3.211743 +v -27.400398 -120.717476 -0.500354 +v 20.573389 -125.602058 3.490147 +v -27.348022 -120.717476 0.999646 +v -27.348022 -119.367470 0.999646 +v -22.819145 -119.367470 0.999646 +v -27.400398 -119.367470 -0.500354 +v 8.459728 -122.895760 3.152447 +v -27.348022 -116.658073 0.999638 +v -27.400398 -114.033577 -0.500362 +v 17.077538 -118.580894 -2.500354 +v -20.390003 -116.658073 0.999638 +v -20.390003 -114.033577 -0.500362 +v 28.193048 -123.804558 0.149647 +v -7.943432 -117.305977 3.470440 +v -8.058372 -116.169975 3.080441 +v -27.964371 -124.074654 0.149647 +v -20.390003 -116.880180 0.999638 +v 17.724129 -117.799294 -2.500354 +v -20.390003 -123.370964 0.999646 +v -3.992710 -122.890755 3.440342 +v -18.890003 -116.658073 0.999638 +v -29.846069 -117.035179 3.222935 +v -29.658401 -116.696480 3.305737 +v -18.890003 -114.033577 -0.500362 +v -0.675003 -116.658073 0.999638 +v -28.762291 -114.710274 -1.000362 +v -29.304008 -114.081581 -1.000362 +v 18.597248 -117.282890 -2.500354 +v -20.059650 -120.292366 3.169644 +v -0.675003 -119.367470 0.999646 +v 4.088478 -116.193474 3.089634 +v 24.375938 -125.816261 3.099553 +v 20.038048 -122.860756 3.185048 +v -28.904015 -114.372368 -1.000362 +v 28.456490 -112.298576 1.129132 +v 16.385458 -122.835060 3.156147 +v -24.571671 -120.223473 3.493947 +v -24.537071 -117.312675 3.457837 +v -2.412342 -120.717476 -0.500354 +v 7.917160 -117.022667 3.430340 +v -12.455170 -122.838264 3.249646 +v -12.062141 -122.911461 3.128743 +v -22.144173 -122.114052 0.999646 +v -12.040241 -122.853554 3.193745 +v 0.267609 -117.028069 3.385441 +v -24.059654 -120.292366 3.169644 +v -20.058361 -116.169975 3.080441 +v -20.502941 -116.312874 3.143734 +v -23.981514 -116.301476 3.142941 +v -20.492332 -120.247566 3.214543 +v 2.504997 -120.042473 -0.500354 +v 2.412338 -120.717476 -0.500354 +v -16.411522 -116.193474 3.089634 +v 27.318838 -126.027657 -1.000347 +v -12.058372 -116.169975 3.080441 +v -4.058372 -116.169975 3.080441 +v -4.411522 -116.193474 3.089634 +v 0.191628 -116.169975 3.080441 +v -0.161522 -116.193474 3.089634 +v 8.127899 -120.262581 3.110142 +v 20.451729 -116.356880 3.134335 +v 11.997059 -116.312874 3.143734 +v 12.127899 -120.262581 3.110142 +v 16.088478 -116.193474 3.089634 +v 24.495188 -116.520378 3.195637 +v -28.586899 -125.302757 3.326649 +v 19.987429 -120.254280 3.450047 +v 24.440348 -120.292366 3.169644 +v 24.349998 -116.234871 3.095738 +v 24.096018 -116.154076 3.072438 +v 24.022278 -120.271675 3.201245 +v 19.900568 -116.742378 3.349141 +v 16.492268 -120.269371 3.421147 +v -27.021278 -126.042458 -1.000347 +v -12.546833 -125.790062 3.376057 +v -22.697861 -118.941582 -2.200351 +v -20.576881 -116.743675 3.345440 +v -20.390003 -123.400658 0.149647 +v -27.786682 -125.943153 -1.000347 +v -21.750710 -117.571190 -2.200351 +v -21.294388 -117.245094 -2.200351 +v -28.818344 -114.504570 -0.500362 +v -29.171249 -114.121071 -0.500362 +v -28.249168 -123.709862 0.149647 +v -29.978844 -114.131874 -0.500362 +v 0.674999 -120.717476 0.999646 +v -0.675003 -120.717476 0.149647 +v -0.675003 -120.717476 0.999646 +v 0.674999 -120.717476 0.149647 +v -28.398834 -123.274452 0.149647 +v 19.031008 -123.234871 -2.200344 +v 18.491209 -123.082680 -2.200344 +v 0.674999 -116.658073 0.999638 +v 17.985609 -122.839867 -2.200344 +v -22.890015 -120.042473 -0.500354 +v 17.529289 -122.513771 -2.200344 +v -18.890003 -123.370964 0.999646 +v -18.890003 -123.400658 0.149647 +v 17.135828 -122.114067 -2.200344 +v -21.294388 -117.245079 0.999638 +v 0.674999 -123.400658 0.149647 +v -0.675003 -123.400658 0.149647 +v 16.389999 -120.042488 -2.200344 +v 16.438389 -119.483696 -2.200344 +v 16.582138 -118.941582 -2.200351 +v 16.816948 -118.432182 -2.200351 +v 17.135828 -117.970787 -2.200351 +v 17.529289 -117.571190 -2.200351 +v -2.405113 -119.367378 -2.083347 +v -0.675003 -123.370964 0.999646 +v 17.985609 -117.245094 -2.200351 +v 18.491209 -117.002281 -2.200351 +v 19.031008 -116.849983 -2.200351 +v 0.674999 -123.370964 0.999646 +v 17.985609 -122.839851 0.999646 +v 17.529289 -122.513756 0.999646 +v 17.135828 -122.114052 0.999646 +v 16.816948 -121.652657 0.999646 +v -2.412342 -119.367470 -0.500354 +v -28.721085 -120.388481 -0.500354 +v -27.377701 -121.892464 0.149647 +v -28.417862 -121.892464 0.149647 +v 17.135828 -117.970772 0.999638 +v 16.816948 -118.432167 0.999638 +v 18.889999 -116.880180 0.999638 +v 18.889999 -116.658073 0.999638 +v 17.985609 -117.245079 0.999638 +v 17.529289 -117.571175 0.999638 +v -28.754692 -114.751076 -0.500362 + +f 2391 2392 2393 +f 2963 2391 2393 +f 2963 2393 3117 +f 2970 2963 3117 +f 2912 2970 3117 +f 3039 2912 3117 +f 3027 3039 3117 +f 3027 3117 2434 +f 2582 3027 2434 +f 2433 2582 2434 +f 2432 2433 2434 +f 2658 2432 2434 +f 2658 2434 2565 +f 2658 2565 2567 +f 3059 2658 2567 +f 3059 2567 2464 +f 3127 3059 2464 +f 3127 2464 2466 +f 3133 3127 2466 +f 3133 2466 2608 +f 3165 3133 2608 +f 2484 3165 2608 +f 2484 2608 2485 +f 2483 2484 2485 +f 3044 2483 2485 +f 2764 3044 2485 +f 2763 2764 2485 +f 2763 2485 2609 +f 3163 2763 2609 +f 3172 3163 2609 +f 3172 2609 3069 +f 3125 3172 3069 +f 3125 3069 3077 +f 3126 3125 3077 +f 3126 3077 3070 +f 3128 3126 3070 +f 3128 3070 2974 +f 2823 3128 2974 +f 2609 2823 2974 +f 2609 2608 2823 +f 2608 2801 2823 +f 2801 3128 2823 +f 3065 3128 2801 +f 2989 3065 2801 +f 2988 2989 2801 +f 2465 2988 2801 +f 2465 2801 2466 +f 3028 2988 2465 +f 3030 3028 2465 +f 2920 3030 2465 +f 2920 2465 2464 +f 2566 3030 2920 +f 2566 2920 2567 +f 3109 3030 2566 +f 2950 3109 2566 +f 3122 2950 2566 +f 3122 2566 2565 +f 2492 2950 3122 +f 3117 2492 3122 +f 2396 2492 3117 +f 2395 2492 2396 +f 2394 2395 2396 +f 2472 2394 2396 +f 2472 2396 2473 +f 2471 2472 2473 +f 2471 2473 3018 +f 3018 2473 3033 +f 2392 3018 3033 +f 2657 3018 2392 +f 2657 2502 3018 +f 2502 2791 3018 +f 2791 2472 3018 +f 2838 2472 2791 +f 2838 2791 2653 +f 2653 2854 2838 +f 2748 2838 2854 +f 2853 2748 2854 +f 2853 2854 3080 +f 3023 2853 3080 +f 2736 3023 3080 +f 3080 3081 2736 +f 2736 3081 2737 +f 2735 2736 2737 +f 2735 2737 3065 +f 3065 2737 3066 +f 3065 3066 2720 +f 3065 2720 2719 +f 2719 2720 2721 +f 3128 2719 2721 +f 2720 2908 2721 +f 2721 2908 3003 +f 3126 2721 3003 +f 2908 2850 3003 +f 3003 2850 2709 +f 3052 3003 2709 +f 3055 3052 2709 +f 2540 3055 2709 +f 2500 2540 2709 +f 2708 2500 2709 +f 3031 2708 2709 +f 3031 2850 2708 +f 2850 2851 2708 +f 2850 2635 2851 +f 2635 2637 2851 +f 2637 3091 2851 +f 3091 3090 2851 +f 3090 3096 2851 +f 3096 2727 2851 +f 2727 3098 2851 +f 3098 2414 2851 +f 2414 3058 2851 +f 3058 3100 2851 +f 3100 3099 2851 +f 3099 3102 2851 +f 3102 3101 2851 +f 3101 3074 2851 +f 3074 2840 2851 +f 2840 2944 2851 +f 2944 3107 2851 +f 3107 3078 2851 +f 2851 3078 2500 +f 3078 2661 2500 +f 2500 2661 2660 +f 2500 2660 2440 +f 2500 2440 2476 +f 2500 2476 2475 +f 2500 2475 2530 +f 2475 2837 2530 +f 2530 2837 2540 +f 2837 2674 2540 +f 2674 2499 2540 +f 2499 2882 2540 +f 2882 2884 2540 +f 2884 3067 2540 +f 2884 3068 3067 +f 3068 3064 3067 +f 3064 2918 3067 +f 2918 2810 3067 +f 3067 2810 3055 +f 2810 2892 3055 +f 2892 3054 3055 +f 3060 3054 2892 +f 3060 2892 2809 +f 3124 3060 2809 +f 3124 2809 2946 +f 3123 3124 2946 +f 2938 3123 2946 +f 2630 2938 2946 +f 2638 2630 2946 +f 2638 2946 2965 +f 2647 2638 2965 +f 2647 2965 2968 +f 2734 2647 2968 +f 2957 2734 2968 +f 2919 2957 2968 +f 2811 2919 2968 +f 2810 2919 2811 +f 2809 2810 2811 +f 2809 2811 2965 +f 2919 2916 2957 +f 2916 2940 2957 +f 2940 2731 2957 +f 2722 2731 2940 +f 2934 2722 2940 +f 2893 2934 2940 +f 2903 2893 2940 +f 2901 2893 2903 +f 2904 2901 2903 +f 2904 2903 2916 +f 2917 2904 2916 +f 2904 2917 3068 +f 2901 2904 3068 +f 2891 2901 3068 +f 2887 2891 3068 +f 2878 2887 3068 +f 3073 2878 3068 +f 2878 3073 3162 +f 2878 3162 2875 +f 2878 2875 2879 +f 2875 2876 2879 +f 2879 2876 2926 +f 2879 2926 2934 +f 2890 2879 2934 +f 2887 2879 2890 +f 2926 2701 2934 +f 2926 2694 2701 +f 2694 2461 2701 +f 2461 2470 2701 +f 2701 2470 2722 +f 2470 2463 2722 +f 2470 2461 2463 +f 2461 2462 2463 +f 2462 2474 2463 +f 2463 2474 2482 +f 2463 2482 2731 +f 2731 2482 2734 +f 2482 2508 2734 +f 2482 2474 2508 +f 2508 2474 2526 +f 2508 2526 2647 +f 2474 2525 2526 +f 2525 2533 2526 +f 2533 2397 2526 +f 2397 2521 2526 +f 2526 2521 2638 +f 2397 2504 2521 +f 2521 2504 2630 +f 2504 2625 2630 +f 2504 2480 2625 +f 2480 2624 2625 +f 2625 2624 2933 +f 2625 2933 2938 +f 2933 2460 2938 +f 2460 3011 2938 +f 2460 2459 3011 +f 2459 3029 3011 +f 3011 3029 3123 +f 3029 3143 3123 +f 3143 3029 3051 +f 3060 3143 3051 +f 3029 2459 3051 +f 2459 2458 3051 +f 2458 3048 3051 +f 3048 3047 3051 +f 3051 3047 3049 +f 3051 3049 3052 +f 3054 3051 3052 +f 3049 3163 3052 +f 3047 3048 3049 +f 3048 2895 3049 +f 2895 2763 3049 +f 3138 2763 2895 +f 3138 2895 2555 +f 2554 3138 2555 +f 2553 2554 2555 +f 2553 2555 2922 +f 2551 2553 2922 +f 2913 2551 2922 +f 2913 2922 2616 +f 2615 2913 2616 +f 2436 2615 2616 +f 2399 2436 2616 +f 2456 2399 2616 +f 2456 2616 2624 +f 2397 2399 2456 +f 2397 2456 2480 +f 2397 2398 2399 +f 2398 2410 2399 +f 2410 2435 2399 +f 2435 2410 2604 +f 2435 2604 2615 +f 2604 2897 2615 +f 2885 2897 2604 +f 2603 2885 2604 +f 2870 2885 2603 +f 2596 2870 2603 +f 2398 2596 2603 +f 2869 2870 2596 +f 2869 2596 2673 +f 2881 2869 2673 +f 2881 2673 2683 +f 2894 2881 2683 +f 2894 2683 2692 +f 2909 2894 2692 +f 2909 2692 2694 +f 2692 2462 2694 +f 2856 2894 2909 +f 2860 2856 2909 +f 2871 2860 2909 +f 2871 2909 2926 +f 2873 2871 2926 +f 2864 2871 2873 +f 2874 2864 2873 +f 2875 2874 2873 +f 2717 2874 2875 +f 2717 2864 2874 +f 3082 2864 2717 +f 3082 2717 2716 +f 3130 3082 2716 +f 3130 2716 2543 +f 3130 2543 2980 +f 3132 3130 2980 +f 2979 3132 2980 +f 2979 2980 2535 +f 2899 2979 2535 +f 2534 2899 2535 +f 2534 2535 2536 +f 2877 2534 2536 +f 2877 2536 2990 +f 2886 2877 2990 +f 2861 2886 2990 +f 2883 2861 2990 +f 2883 2990 2585 +f 2584 2883 2585 +f 2583 2584 2585 +f 2583 2800 2584 +f 2800 2799 2584 +f 2798 2799 2800 +f 2818 2798 2800 +f 2818 2999 2798 +f 2999 2883 2798 +f 2883 2999 2884 +f 2999 3073 2884 +f 3073 2999 2993 +f 2999 2818 2993 +f 2993 2818 2583 +f 2990 2993 2583 +f 2990 2980 2993 +f 2980 2992 2993 +f 3162 2993 2992 +f 2631 3162 2992 +f 2545 2631 2992 +f 2544 2631 2545 +f 2543 2544 2545 +f 2718 2631 2544 +f 2716 2718 2544 +f 2718 3152 2631 +f 2718 2717 3152 +f 2717 3162 3152 +f 3152 3162 2631 +f 2980 2545 2992 +f 2883 2799 2798 +f 2818 2800 2583 +f 2799 2883 2584 +f 2585 2990 2583 +f 3136 2861 2883 +f 3136 2883 2882 +f 3169 3136 2882 +f 3169 3168 3136 +f 3168 3170 3136 +f 3170 3171 3136 +f 3171 3166 3136 +f 3166 3167 3136 +f 3167 2862 3136 +f 2862 3167 3148 +f 2863 2862 3148 +f 3147 2863 3148 +f 3147 3148 3042 +f 3032 3147 3042 +f 2691 3032 3042 +f 2693 2691 3042 +f 2693 3042 3053 +f 2700 2693 3053 +f 2700 3053 3061 +f 2707 2700 3061 +f 2707 3061 3071 +f 2715 2707 3071 +f 2715 3071 2795 +f 2832 2715 2795 +f 2790 2832 2795 +f 2792 2790 2795 +f 2794 2792 2795 +f 2797 2794 2795 +f 2796 2794 2797 +f 2497 2796 2797 +f 3156 2497 2797 +f 3156 2797 3071 +f 3155 3156 3071 +f 3155 2498 3156 +f 3168 2498 3155 +f 3154 3168 3155 +f 3154 3155 3061 +f 3151 3154 3061 +f 3151 3170 3154 +f 2498 2497 3156 +f 2497 2498 2499 +f 2498 3169 2499 +f 2796 2497 2674 +f 2802 2796 2674 +f 2678 2802 2674 +f 2678 2702 2802 +f 2677 2702 2678 +f 2676 2677 2678 +f 2767 2676 2678 +f 2711 2767 2678 +f 2710 2711 2678 +f 2743 2710 2678 +f 2743 2678 2998 +f 2743 2998 2962 +f 2961 2962 2998 +f 2644 2961 2998 +f 2651 2644 2998 +f 2651 2998 2703 +f 2651 2703 2680 +f 2652 2651 2680 +f 2652 2680 2744 +f 2652 2744 2769 +f 2966 2652 2769 +f 2768 2966 2769 +f 2768 2967 2966 +f 2967 2548 2966 +f 2548 2592 2966 +f 2548 2591 2592 +f 2591 2605 2592 +f 2605 2652 2592 +f 2605 2607 2652 +f 2605 2606 2607 +f 2606 2644 2607 +f 2644 2606 2645 +f 2643 2644 2645 +f 2642 2643 2645 +f 2605 2642 2645 +f 2605 2641 2642 +f 2641 3005 2642 +f 2558 3005 2641 +f 2559 2558 2641 +f 2618 2559 2641 +f 2639 2559 2618 +f 2639 2618 2617 +f 2650 2639 2617 +f 2649 2650 2617 +f 2591 2649 2617 +f 2547 2649 2591 +f 2547 2994 2649 +f 2994 2602 2649 +f 2602 3041 2649 +f 2602 2601 3041 +f 2601 3008 3041 +f 3041 3008 3009 +f 3041 3009 2650 +f 3009 3056 2650 +f 2581 3056 3009 +f 2582 2581 3009 +f 2581 2623 3056 +f 2623 2559 3056 +f 2623 2531 2559 +f 2531 2623 2532 +f 2438 2531 2532 +f 2438 2532 2439 +f 2437 2438 2439 +f 2437 2439 2669 +f 2668 2437 2669 +f 2668 2669 2733 +f 2668 2733 2738 +f 2849 2668 2738 +f 2849 2738 2740 +f 2868 2849 2740 +f 2868 2740 2741 +f 2935 2868 2741 +f 2935 2741 2749 +f 2939 2935 2749 +f 2939 2749 2750 +f 2947 2939 2750 +f 2952 2947 2750 +f 2952 2750 2762 +f 2952 2762 2765 +f 2961 2952 2765 +f 2961 2765 2770 +f 2770 2765 2766 +f 2770 2766 2775 +f 2774 2770 2775 +f 2780 2774 2775 +f 2780 2775 2783 +f 2782 2780 2783 +f 2785 2782 2783 +f 2785 2783 2790 +f 2789 2785 2790 +f 2676 2785 2789 +f 2783 2820 2790 +f 2803 2820 2783 +f 2803 2598 2820 +f 2598 2614 2820 +f 2820 2614 2832 +f 2614 2628 2832 +f 2614 2611 2628 +f 2611 2627 2628 +f 2628 2627 2646 +f 2628 2646 2715 +f 2627 2619 2646 +f 2619 2640 2646 +f 2646 2640 2707 +f 2619 2621 2640 +f 2640 2621 2700 +f 2619 2620 2621 +f 2620 2571 2621 +f 2571 2613 2621 +f 2621 2613 2693 +f 2571 2597 2613 +f 2613 2597 2691 +f 2597 2684 2691 +f 2597 2573 2684 +f 2573 2679 2684 +f 2679 3026 2684 +f 3026 3032 2684 +f 3026 2562 3032 +f 2562 3146 3032 +f 2562 2561 3146 +f 2561 2863 3146 +f 2561 3094 2863 +f 3094 2886 2863 +f 2886 3094 2900 +f 3094 3095 2900 +f 3095 2898 2900 +f 2898 2899 2900 +f 2898 3132 2899 +f 3129 3132 2898 +f 3129 3157 3132 +f 3157 3144 3132 +f 3144 3145 3132 +f 3144 2432 3145 +f 3145 2432 3141 +f 3153 3145 3141 +f 3140 3153 3141 +f 3140 3141 2817 +f 2821 3140 2817 +f 2821 2817 2819 +f 2821 2819 2826 +f 2825 2821 2826 +f 2825 2826 2836 +f 2835 2825 2836 +f 2835 2836 2845 +f 2844 2835 2845 +f 2844 2845 2856 +f 2855 2844 2856 +f 3153 2844 2855 +f 3153 2855 2859 +f 3153 2859 3131 +f 3131 2859 2864 +f 2864 2859 2860 +f 2859 2855 2860 +f 3153 2835 2844 +f 2845 2836 2894 +f 3153 2825 2835 +f 2836 2826 2881 +f 3153 2821 2825 +f 2826 2819 2881 +f 2817 2808 2819 +f 2819 2808 2869 +f 2808 2807 2869 +f 2806 2807 2808 +f 2807 2806 3017 +f 2807 3017 2870 +f 2806 2991 3017 +f 3017 2991 2515 +f 3017 2515 2885 +f 2515 2517 2885 +f 2515 2516 2517 +f 2516 2552 2517 +f 2517 2552 2537 +f 2517 2537 2897 +f 2537 2539 2897 +f 2897 2539 2913 +f 2539 2822 2913 +f 2539 3086 2822 +f 3086 2549 2822 +f 2822 2549 2551 +f 2549 2550 2551 +f 2550 2554 2551 +f 2554 2550 3044 +f 2550 3046 3044 +f 3046 3164 3044 +f 3044 3164 2484 +f 3046 3015 3164 +f 3015 3133 3164 +f 3015 3014 3133 +f 3013 3014 3015 +f 3013 2976 3014 +f 3014 2976 2978 +f 3014 2978 2658 +f 2976 2977 2978 +f 2977 3062 2978 +f 3062 3121 2978 +f 3121 2432 2978 +f 3121 3062 2991 +f 3062 2516 2991 +f 3062 2977 2516 +f 2977 2976 3013 +f 2977 3013 2550 +f 3046 3013 3015 +f 2550 3013 3046 +f 2549 2977 2550 +f 3086 2977 2549 +f 2538 2977 3086 +f 2552 2977 2538 +f 2538 3086 2539 +f 2537 2538 2539 +f 2552 2538 2537 +f 2516 2977 2552 +f 2991 2516 2515 +f 2806 3121 2991 +f 3141 3121 2806 +f 2817 2806 2808 +f 3141 2806 2817 +f 3153 3140 2821 +f 3153 3131 3145 +f 3145 3131 3130 +f 3141 2432 3121 +f 2745 2432 3144 +f 2746 2745 3144 +f 2745 2746 2747 +f 2932 2745 2747 +f 2932 2747 2729 +f 2932 2729 2728 +f 2669 2932 2728 +f 2728 2729 2730 +f 2733 2728 2730 +f 2733 2730 2739 +f 2739 2730 2761 +f 2739 2761 2771 +f 2742 2739 2771 +f 2742 2771 2776 +f 2751 2742 2776 +f 2751 2776 2788 +f 2751 2788 2766 +f 2762 2751 2766 +f 2766 2788 2793 +f 2788 2586 2793 +f 2586 2588 2793 +f 2793 2588 2803 +f 2793 2803 2775 +f 2586 2587 2588 +f 2588 2587 2598 +f 2587 2611 2598 +f 2611 2587 2776 +f 2587 2586 2788 +f 2776 2587 2788 +f 2749 2742 2751 +f 2771 2611 2776 +f 2740 2739 2742 +f 2761 2627 2771 +f 2730 2662 2761 +f 2662 2619 2761 +f 2730 2732 2662 +f 2662 2732 2663 +f 2620 2662 2663 +f 2732 3016 2663 +f 2663 3016 2675 +f 2571 2663 2675 +f 2572 2571 2675 +f 2572 2675 2679 +f 2675 3022 2679 +f 2571 2572 2573 +f 3016 3022 2675 +f 3016 3139 3022 +f 3139 3142 3022 +f 3142 2905 3022 +f 3022 2905 3026 +f 2905 2907 3026 +f 2905 2906 2907 +f 2906 2560 2907 +f 2907 2560 2562 +f 2560 2906 3095 +f 2560 3095 2561 +f 2906 3129 3095 +f 3161 2906 2905 +f 3161 3157 2906 +f 3160 3157 3161 +f 3160 3161 3142 +f 3159 3157 3160 +f 3159 3160 3139 +f 3137 3159 3139 +f 3158 3159 3137 +f 3135 3158 3137 +f 3135 3137 3016 +f 2773 3158 3135 +f 2747 2773 3135 +f 3134 2747 3135 +f 3134 3135 2732 +f 2729 3134 2732 +f 2773 3157 3158 +f 2746 3157 2773 +f 3158 3157 3159 +f 3142 3161 2905 +f 3139 3160 3142 +f 3137 3139 3016 +f 2732 3135 3016 +f 2729 2732 2730 +f 2729 2747 3134 +f 2439 2745 2932 +f 2746 2773 2747 +f 2439 2432 2745 +f 3157 2746 3144 +f 2906 3157 3129 +f 3095 3129 2898 +f 2561 3095 3094 +f 2560 2561 2562 +f 2907 2562 3026 +f 3022 3026 2679 +f 2573 2572 2679 +f 2571 2573 2597 +f 2571 2620 2663 +f 2620 2619 2662 +f 2619 2627 2761 +f 2627 2611 2771 +f 2598 2611 2614 +f 2588 2598 2803 +f 2767 2782 2785 +f 2711 2780 2782 +f 2775 2803 2783 +f 2710 2774 2780 +f 2710 2962 2774 +f 2962 2770 2774 +f 2766 2793 2775 +f 2643 2952 2961 +f 2643 3005 2952 +f 2765 2762 2766 +f 2762 2750 2751 +f 3005 2947 2952 +f 2558 2939 2947 +f 2558 2531 2939 +f 2750 2749 2751 +f 2438 2935 2939 +f 2749 2741 2742 +f 2438 2868 2935 +f 2741 2740 2742 +f 2438 2849 2868 +f 2740 2738 2739 +f 2438 2668 2849 +f 2738 2733 2739 +f 2669 2728 2733 +f 2439 2932 2669 +f 2438 2437 2668 +f 2532 2433 2439 +f 2531 2438 2939 +f 2532 2623 2433 +f 2433 2623 2581 +f 3008 2582 3009 +f 3008 3097 2582 +f 2713 3097 3008 +f 2713 2814 3097 +f 2814 3027 3097 +f 2814 2985 3027 +f 2985 3075 3027 +f 3075 2589 3027 +f 2589 2557 3027 +f 2557 2670 3027 +f 2670 2672 3027 +f 2672 2758 3027 +f 2758 2959 3027 +f 2959 2428 3027 +f 2428 2827 3027 +f 2827 2816 3027 +f 2816 2833 3027 +f 2833 2488 3027 +f 2488 2872 3027 +f 2872 2927 3027 +f 2927 2929 3027 +f 2929 2971 3027 +f 2971 2973 3027 +f 2971 2972 2973 +f 2972 2507 2973 +f 2507 2506 2973 +f 2506 3085 2973 +f 2973 3085 3084 +f 3037 2973 3084 +f 3084 3118 3037 +f 3118 3038 3037 +f 3037 3038 3039 +f 3038 2910 3039 +f 3038 2723 2910 +f 2723 2997 2910 +f 2910 2997 3043 +f 2911 2910 3043 +f 2781 2911 3043 +f 2610 2781 3043 +f 2541 2781 2610 +f 2522 2541 2610 +f 2522 2610 2964 +f 2848 2522 2964 +f 2964 2723 2848 +f 2723 2724 2848 +f 2848 2724 2523 +f 2523 2724 2726 +f 2523 2726 2725 +f 2523 2725 2681 +f 2682 2523 2681 +f 2681 2524 2682 +f 2524 2681 2542 +f 2541 2524 2542 +f 2858 2541 2542 +f 2858 2542 3096 +f 3096 2510 2858 +f 2510 2491 2858 +f 2923 2858 2491 +f 2401 2923 2491 +f 2490 2401 2491 +f 2489 2490 2491 +f 2490 2489 2813 +f 2489 2812 2813 +f 2813 2812 2847 +f 2846 2813 2847 +f 2963 2846 2847 +f 2402 2813 2846 +f 2400 2402 2846 +f 2400 2846 2970 +f 2911 2400 2970 +f 2400 2401 2402 +f 2496 2401 2400 +f 2496 2400 2781 +f 2496 2781 2401 +f 2401 2813 2402 +f 2812 2963 2847 +f 2812 2656 2963 +f 2656 2786 2963 +f 2656 2391 2786 +f 2656 2657 2391 +f 2656 2503 2657 +f 2503 2656 2812 +f 2812 2509 2503 +f 2503 2509 3093 +f 2501 2503 3093 +f 2654 2501 3093 +f 2654 3093 3091 +f 3120 2654 3091 +f 3120 3091 3092 +f 2655 3120 3092 +f 2655 3092 3089 +f 2653 2655 3089 +f 2653 3089 2636 +f 2636 3089 2637 +f 2653 2654 2655 +f 3092 2637 3089 +f 2654 3120 2655 +f 3093 3072 3091 +f 2501 2654 2502 +f 2501 2502 2503 +f 2509 3072 3093 +f 2509 2511 3072 +f 2511 3090 3072 +f 2509 2510 2511 +f 2510 2509 2489 +f 2812 2489 2509 +f 2401 2490 2813 +f 2401 2781 2923 +f 2491 2510 2489 +f 2511 2510 3096 +f 2923 2541 2858 +f 2681 3096 2542 +f 2524 2523 2682 +f 2522 2523 2524 +f 2681 2725 2727 +f 2725 2726 2727 +f 2726 2452 2727 +f 2450 2452 2726 +f 2450 2451 2452 +f 2451 3098 2452 +f 2451 2937 3098 +f 2937 2936 3098 +f 2415 2936 2937 +f 2415 2414 2936 +f 2414 2415 2416 +f 2416 2479 2414 +f 2477 2479 2416 +f 2595 2477 2416 +f 2622 2477 2595 +f 2960 2622 2595 +f 2594 2960 2595 +f 2593 2594 2595 +f 2595 2415 2593 +f 2415 2450 2593 +f 2450 2704 2593 +f 2593 2704 2706 +f 2704 2705 2706 +f 2705 3118 2706 +f 2705 2704 2723 +f 2450 2724 2704 +f 2594 2593 2706 +f 2594 2706 3087 +f 2506 2594 3087 +f 3087 2706 3084 +f 2960 2594 2506 +f 2505 2960 2506 +f 2505 2622 2960 +f 2622 2505 2697 +f 2622 2697 2867 +f 2866 2622 2867 +f 2866 2867 2666 +f 2914 2866 2666 +f 2665 2914 2666 +f 2664 2665 2666 +f 2685 2664 2666 +f 2772 2664 2685 +f 2772 2685 2930 +f 2928 2772 2930 +f 2928 2930 2929 +f 3001 2772 2928 +f 2634 3001 2928 +f 2634 2928 2927 +f 2633 3001 2634 +f 2632 2633 2634 +f 2528 2632 2634 +f 2872 2528 2634 +f 2529 2528 2872 +f 2454 2529 2872 +f 2455 2454 2872 +f 2626 2455 2872 +f 2468 2455 2626 +f 2468 2626 2469 +f 2467 2468 2469 +f 2612 2467 2469 +f 2969 2612 2469 +f 2487 2969 2469 +f 2487 3020 2969 +f 3020 2942 2969 +f 2417 2942 3020 +f 3019 2417 3020 +f 3020 2486 3019 +f 3019 2486 2834 +f 3019 2834 2833 +f 2902 3019 2833 +f 2902 2833 3040 +f 2425 2902 3040 +f 2816 2425 3040 +f 2423 2425 2816 +f 2564 2423 2816 +f 2815 2564 2816 +f 2815 2563 2564 +f 2687 2563 2815 +f 2687 2815 2827 +f 2688 2687 2827 +f 2427 2688 2827 +f 2688 2427 2686 +f 2427 3050 2686 +f 2779 2686 3050 +f 2690 2686 2779 +f 2778 2690 2779 +f 2777 2778 2779 +f 2427 2777 2779 +f 2426 2777 2427 +f 2426 2427 2428 +f 2579 2777 2426 +f 2579 2426 2959 +f 2579 2959 2580 +f 2578 2579 2580 +f 2578 2580 2629 +f 2578 2629 2857 +f 2513 2578 2857 +f 2759 2513 2857 +f 2760 2759 2857 +f 2760 2857 2758 +f 2757 2760 2758 +f 2445 2760 2757 +f 2445 2757 2921 +f 2457 2445 2921 +f 2921 3002 2457 +f 3002 3079 2457 +f 3079 2446 2457 +f 2828 2446 3079 +f 2444 2446 2828 +f 2444 2828 2829 +f 2829 2575 2444 +f 2575 2514 2444 +f 2759 2444 2514 +f 2445 2444 2759 +f 2514 2575 2714 +f 2514 2714 3116 +f 2514 3116 2512 +f 2512 2513 2514 +f 2512 2569 2513 +f 2569 2568 2513 +f 2995 2513 2568 +f 2995 2568 2578 +f 2568 2804 2578 +f 2777 2578 2804 +f 2804 2568 2945 +f 2805 2804 2945 +f 2805 2945 3106 +f 3105 2805 3106 +f 3105 2519 2805 +f 3007 2519 3105 +f 3007 3105 3035 +f 3006 3007 3035 +f 3006 3035 3036 +f 2518 3006 3036 +f 2420 2518 3036 +f 2420 3036 2421 +f 2420 2421 2422 +f 2422 2599 2420 +f 2599 2659 2420 +f 2659 2689 2420 +f 2689 2690 2420 +f 3025 2690 2689 +f 3025 2689 2563 +f 2563 2689 2423 +f 2423 2689 2424 +f 2690 3025 2687 +f 2689 2659 2424 +f 2424 2659 2425 +f 2599 2902 2659 +f 2599 2418 2902 +f 2493 2418 2599 +f 2494 2493 2599 +f 2493 2494 2495 +f 2493 2495 2824 +f 2419 2493 2824 +f 2419 2824 3021 +f 2419 3021 2975 +f 2941 2419 2975 +f 2448 2941 2975 +f 2448 2975 3074 +f 2448 3074 3088 +f 2449 2448 3088 +f 2449 3088 2447 +f 2447 3088 2955 +f 3034 2447 2955 +f 3034 2955 2954 +f 3034 2954 2467 +f 3010 2467 2954 +f 2949 3010 2954 +f 2948 2949 2954 +f 2948 2954 2956 +f 2442 2948 2956 +f 3024 2442 2956 +f 3102 3024 2956 +f 2956 2955 3102 +f 2442 3024 2443 +f 2441 2442 2443 +f 2441 2443 2925 +f 2924 2441 2925 +f 2924 2925 3100 +f 2958 2924 3100 +f 2412 2924 2958 +f 2412 2958 3058 +f 3057 2412 3058 +f 2479 3057 3058 +f 2411 3057 2479 +f 2478 2411 2479 +f 2622 2411 2478 +f 2413 3057 2411 +f 2411 2412 2413 +f 2412 2411 2914 +f 2953 2412 2914 +f 2413 2412 3057 +f 2412 2953 2924 +f 2953 2441 2924 +f 2441 2953 2632 +f 2441 2632 2949 +f 2949 2632 3063 +f 2664 2632 2953 +f 3004 2632 2664 +f 3004 2664 3001 +f 2925 2443 3099 +f 2442 2441 2949 +f 2443 3024 3099 +f 2948 2442 2949 +f 3010 2949 3063 +f 3010 3063 2527 +f 2529 3010 2527 +f 2527 3063 2528 +f 2453 2467 3010 +f 2453 3010 2454 +f 2954 2955 2956 +f 3034 2467 2447 +f 3088 3101 2955 +f 2447 2448 2449 +f 2448 2447 2942 +f 2612 2942 2447 +f 2941 2448 2942 +f 2417 2419 2941 +f 2417 2418 2419 +f 2975 3021 3074 +f 3021 2841 3074 +f 2824 2841 3021 +f 2495 2841 2824 +f 2495 2839 2841 +f 2839 2840 2841 +f 2839 3083 2840 +f 3083 2667 2840 +f 2667 3035 2840 +f 3083 2494 2667 +f 2667 2494 2421 +f 2667 2421 3103 +f 3103 3036 2667 +f 2494 3083 2839 +f 2495 2494 2839 +f 2419 2418 2493 +f 2422 2494 2599 +f 2494 2422 2421 +f 2421 3036 3103 +f 2518 2420 2690 +f 2520 3006 2518 +f 2518 2519 2520 +f 2519 2518 2778 +f 2804 2519 2778 +f 2520 2519 3006 +f 3036 3035 2667 +f 3035 3105 2944 +f 2945 2944 3105 +f 2943 2944 2945 +f 2945 2570 2943 +f 2570 2569 2943 +f 2569 3107 2943 +f 2569 2983 3107 +f 2983 2982 3107 +f 2982 2996 3107 +f 2982 2714 2996 +f 2714 3115 2996 +f 3115 2577 2996 +f 2996 2577 3078 +f 2577 3104 3078 +f 3104 2843 3078 +f 2843 3113 3078 +f 3113 3112 3078 +f 3111 3112 3113 +f 3114 3111 3113 +f 2842 3114 3113 +f 2830 3114 2842 +f 2830 2842 2831 +f 2699 2830 2831 +f 2699 2831 2787 +f 2699 2787 2576 +f 2698 2699 2576 +f 3110 2698 2576 +f 2575 3110 2576 +f 2575 2576 2577 +f 2829 2698 3110 +f 2408 2698 2829 +f 3012 2408 2829 +f 2695 2408 3012 +f 2695 3012 2696 +f 2696 3012 2671 +f 2696 2671 2670 +f 3076 2696 2670 +f 2408 2696 3076 +f 2409 2408 3076 +f 2557 2409 3076 +f 3045 2409 2557 +f 2556 3045 2557 +f 2403 2556 2557 +f 2648 2556 2403 +f 2481 2648 2403 +f 2481 2403 2406 +f 2481 2406 2405 +f 2987 2481 2405 +f 3075 2987 2405 +f 2404 3075 2405 +f 2403 2404 2405 +f 2403 2589 2404 +f 2756 2481 2987 +f 2986 2756 2987 +f 2985 2986 2987 +f 2880 2756 2986 +f 2880 2986 2712 +f 2601 2880 2712 +f 2601 2712 2713 +f 2600 2880 2601 +f 2712 2986 2814 +f 2880 2600 2756 +f 2600 2755 2756 +f 2755 2753 2756 +f 2753 2865 2756 +f 2865 2753 2752 +f 2865 2752 3111 +f 3111 2752 3108 +f 2752 2754 3108 +f 2754 2852 3108 +f 3108 2852 2931 +f 3108 2931 2661 +f 3112 3108 2661 +f 2931 2852 2661 +f 2852 2546 2661 +f 2661 2546 2574 +f 2429 2661 2574 +f 2429 2574 2430 +f 2429 2430 2431 +f 2440 2429 2431 +f 2440 2431 2475 +f 2431 2768 2475 +f 2768 2784 2475 +f 2784 2768 2744 +f 2430 2768 2431 +f 2574 2590 2430 +f 2590 2967 2430 +f 2574 2548 2590 +f 2574 2546 2548 +f 2546 2547 2548 +f 2755 2547 2546 +f 2852 2753 2546 +f 2753 2852 2754 +f 2752 2753 2754 +f 2753 2755 2546 +f 2755 2600 2994 +f 2481 2756 2865 +f 2865 2888 2481 +f 3045 2481 2888 +f 2984 3045 2888 +f 2889 2984 2888 +f 2888 2830 2889 +f 2888 2915 2830 +f 2984 2889 2407 +f 2889 2408 2407 +f 2889 2699 2408 +f 2984 2407 3045 +f 2888 2865 2915 +f 2915 2865 3114 +f 2406 2403 2405 +f 2648 2481 3045 +f 2648 3045 2556 +f 3045 2407 2409 +f 2407 2408 2409 +f 2671 3012 3002 +f 2671 3002 2672 +f 3012 2828 3002 +f 2408 2695 2696 +f 2408 2699 2698 +f 2576 2787 2577 +f 2787 2831 3104 +f 2830 2699 2889 +f 2831 2842 2843 +f 2830 2915 3114 +f 3114 2865 3111 +f 3108 3112 3111 +f 2843 2842 3113 +f 2831 2843 3104 +f 2787 3104 2577 +f 3115 2575 2577 +f 2981 2982 2983 +f 2512 2981 2983 +f 2981 3116 2982 +f 2519 3007 3006 +f 3106 2945 3105 +f 2519 2804 2805 +f 2568 2570 2945 +f 2568 2569 2570 +f 2569 2512 2983 +f 2512 3116 2981 +f 3116 2714 2982 +f 2575 3115 2714 +f 2829 3110 2575 +f 2828 3012 2829 +f 2444 2445 2446 +f 3002 2828 3079 +f 3002 2921 2672 +f 2446 2445 2457 +f 2921 2757 2672 +f 2445 2759 2760 +f 2513 2759 2514 +f 2513 2995 2578 +f 2758 2857 2629 +f 2580 2758 2629 +f 2579 2578 2777 +f 2778 2777 2804 +f 2518 2690 2778 +f 2690 2687 2686 +f 2779 3050 2427 +f 2686 2687 2688 +f 3025 2563 2687 +f 2563 2423 2564 +f 2423 2424 2425 +f 2659 2902 2425 +f 2418 3019 2902 +f 2834 2486 2488 +f 2486 2487 2488 +f 2487 2626 2488 +f 3019 2418 2417 +f 2942 2417 2941 +f 2486 3020 2487 +f 2942 2612 2969 +f 2447 2467 2612 +f 2453 2468 2467 +f 2626 2487 2469 +f 2468 2453 2455 +f 2453 2454 2455 +f 2454 3010 2529 +f 2527 2528 2529 +f 3063 2632 2528 +f 2632 3004 2633 +f 2633 3004 3001 +f 2929 2930 2685 +f 2685 2697 2929 +f 3001 2664 2772 +f 2665 2664 2953 +f 2914 2665 2953 +f 2866 2914 2411 +f 2685 2666 2867 +f 2411 2622 2866 +f 2697 2685 2867 +f 2505 2972 2697 +f 2478 2477 2622 +f 2477 2478 2479 +f 2415 2595 2416 +f 2451 2415 2937 +f 2450 2415 2451 +f 2724 2450 2726 +f 2723 2704 2724 +f 2522 2848 2523 +f 2964 2610 2997 +f 2541 2522 2524 +f 2541 2923 2781 +f 2781 2400 2911 +f 2910 2911 2912 +f 2610 3043 2997 +f 2723 2964 2997 +f 2705 2723 3038 +f 2705 3038 3118 +f 2706 3118 3084 +f 2973 3037 3039 +f 3087 3084 3085 +f 2506 3087 3085 +f 2505 2506 2507 +f 2505 2507 2972 +f 2697 2972 2971 +f 2929 2697 2971 +f 2927 2928 2929 +f 2927 2872 2634 +f 2626 2872 2488 +f 2833 2834 2488 +f 2833 2816 3040 +f 2827 2815 2816 +f 2428 2427 2827 +f 2959 2426 2428 +f 2758 2580 2959 +f 2672 2757 2758 +f 2670 2671 2672 +f 2670 2557 3076 +f 2589 2403 2557 +f 3075 2404 2589 +f 2985 2987 3075 +f 2814 2986 2985 +f 2712 2814 2713 +f 2601 2713 3008 +f 2600 2601 2602 +f 2600 2602 2994 +f 2755 2994 2547 +f 2649 3041 2650 +f 3056 2639 2650 +f 2617 2618 2605 +f 3056 2559 2639 +f 2531 2558 2559 +f 2558 2947 3005 +f 2618 2641 2605 +f 3005 2643 2642 +f 2606 2605 2645 +f 2591 2617 2605 +f 2548 2547 2591 +f 2548 2967 2590 +f 2967 2768 2430 +f 2592 2652 2966 +f 2744 2768 2769 +f 2680 2784 2744 +f 2607 2651 2652 +f 2703 2784 2680 +f 2784 2703 2837 +f 2703 2998 2837 +f 2644 2651 2607 +f 2644 2643 2961 +f 2962 2961 2770 +f 2998 2678 2837 +f 2710 2743 2962 +f 2711 2710 2780 +f 2767 2711 2782 +f 2676 2767 2785 +f 2677 2676 2789 +f 2677 2789 2792 +f 2702 2677 2792 +f 2796 2702 2792 +f 2802 2702 2796 +f 2796 2792 2794 +f 2792 2789 2790 +f 2820 2832 2790 +f 2832 2628 2715 +f 3071 2797 2795 +f 2646 2707 2715 +f 3061 3155 3071 +f 2640 2700 2707 +f 3053 3151 3061 +f 3150 3151 3053 +f 3149 3150 3053 +f 3149 3166 3150 +f 3150 3171 3151 +f 2621 2693 2700 +f 3042 3149 3053 +f 2613 2691 2693 +f 2684 3032 2691 +f 3146 3147 3032 +f 3148 3149 3042 +f 3146 2863 3147 +f 2861 2862 2863 +f 3148 3167 3149 +f 3167 3166 3149 +f 3166 3171 3150 +f 3171 3170 3151 +f 3170 3168 3154 +f 3168 3169 2498 +f 2862 2861 3136 +f 2861 2863 2886 +f 2886 2900 2877 +f 2536 2980 2990 +f 2900 2534 2877 +f 2900 2899 2534 +f 2535 2980 2536 +f 2899 3132 2979 +f 3132 3145 3130 +f 2543 2545 2980 +f 2716 2544 2543 +f 3130 3131 3082 +f 2716 2717 2718 +f 3082 3131 2864 +f 2864 2860 2871 +f 2855 2856 2860 +f 2856 2845 2894 +f 2683 2474 2692 +f 2836 2881 2894 +f 2673 2525 2683 +f 2819 2869 2881 +f 2596 2533 2673 +f 2807 2870 2869 +f 2870 3017 2885 +f 2885 2517 2897 +f 2410 2603 2604 +f 2410 2398 2603 +f 2398 2397 2596 +f 2435 2436 2399 +f 2436 2435 2615 +f 2897 2913 2615 +f 2616 2922 2624 +f 2822 2551 2913 +f 2555 2896 2922 +f 2922 2896 2933 +f 2896 3119 2933 +f 2896 2895 3119 +f 2551 2554 2553 +f 2554 3044 3138 +f 2555 2895 2896 +f 3044 2763 3138 +f 2895 3048 3119 +f 3048 2458 3119 +f 3119 2458 2460 +f 2458 2459 2460 +f 3119 2460 2933 +f 2624 2922 2933 +f 2480 2456 2624 +f 2397 2480 2504 +f 2397 2533 2596 +f 2533 2525 2673 +f 2525 2474 2683 +f 2474 2462 2692 +f 2462 2461 2694 +f 2909 2694 2926 +f 2876 2873 2926 +f 2875 2873 2876 +f 3162 2717 2875 +f 3162 3073 2993 +f 2887 2878 2879 +f 2891 2887 2890 +f 2891 2890 2893 +f 2901 2891 2893 +f 2893 2890 2934 +f 2701 2722 2934 +f 2722 2463 2731 +f 2916 2903 2940 +f 2917 2916 2919 +f 2918 2917 2919 +f 2731 2734 2957 +f 2734 2508 2647 +f 2965 2811 2968 +f 2526 2638 2647 +f 2521 2630 2638 +f 2630 2625 2938 +f 3011 3123 2938 +f 3123 3143 3124 +f 2946 2809 2965 +f 3143 3060 3124 +f 3054 3060 3051 +f 2892 2810 2809 +f 2810 2918 2919 +f 3064 2917 2918 +f 3068 2917 3064 +f 3073 3068 2884 +f 2882 2883 2884 +f 2499 3169 2882 +f 2674 2497 2499 +f 2837 2678 2674 +f 2784 2837 2475 +f 2476 2440 2475 +f 2660 2429 2440 +f 2660 2661 2429 +f 3112 2661 3078 +f 3107 2996 3078 +f 2944 2943 3107 +f 2840 3035 2944 +f 2841 2840 3074 +f 3088 3074 3101 +f 2955 3101 3102 +f 3099 3024 3102 +f 2925 3099 3100 +f 3058 2958 3100 +f 2479 3058 2414 +f 2936 2414 3098 +f 2452 3098 2727 +f 3096 2681 2727 +f 3090 2511 3096 +f 3072 3090 3091 +f 2637 3092 3091 +f 2635 2636 2637 +f 3081 2636 2635 +f 3066 3081 2635 +f 3066 2635 3000 +f 3000 2635 2850 +f 2851 2500 2708 +f 2500 2530 2540 +f 3067 3055 2540 +f 3055 3054 3052 +f 3052 3125 3003 +f 2850 3031 2709 +f 2908 3000 2850 +f 2720 3000 2908 +f 3066 3000 2720 +f 2737 3081 3066 +f 3081 3080 2636 +f 3023 2736 2735 +f 3023 2735 2988 +f 2951 2853 3023 +f 2951 3023 3030 +f 2950 2853 2951 +f 3080 2854 2636 +f 2748 2853 2950 +f 2394 2838 2748 +f 2394 2748 2492 +f 2854 2653 2636 +f 2654 2653 2791 +f 2654 2791 2502 +f 2502 2657 2503 +f 2392 3033 2473 +f 2472 2471 3018 +f 2396 2392 2473 +f 2838 2394 2472 +f 2395 2394 2492 +f 2492 2748 2950 +f 3109 2950 2951 +f 3109 2951 3030 +f 3030 3023 3028 +f 3028 3023 2988 +f 2988 2735 2989 +f 2989 2735 3065 +f 3128 3065 2719 +f 3070 2609 2974 +f 3126 3128 2721 +f 3125 3126 3003 +f 3077 3069 3070 +f 3172 3125 3052 +f 3069 2609 3070 +f 3163 3172 3052 +f 2763 3163 3049 +f 3044 2764 2763 +f 3044 2484 2483 +f 2485 2608 2609 +f 3164 3165 2484 +f 3164 3133 3165 +f 2466 2801 2608 +f 3014 3127 3133 +f 2464 2465 2466 +f 3014 3059 3127 +f 2567 2920 2464 +f 3014 2658 3059 +f 2565 2566 2567 +f 2434 3122 2565 +f 2978 2432 2658 +f 2433 2432 2439 +f 2433 2581 2582 +f 3097 3027 2582 +f 3117 3122 2434 +f 2973 3039 3027 +f 2910 2912 3039 +f 2911 2970 2912 +f 2970 2846 2963 +f 2393 2396 3117 +f 2786 2391 2963 +f 2392 2396 2393 +f 2391 2657 2392 + + +o Object.6 +v 19.639999 -123.492470 -4.100346 +v 20.819969 -123.284370 -4.100346 +v 19.639999 -123.554680 -7.383235 +v 23.089998 -120.042488 -4.100346 +v 21.289999 -120.042488 -4.100346 +v 22.881939 -118.862495 -4.100353 +v -20.239082 -116.644875 -1.000362 +v -21.364998 -117.054695 -2.600353 +v -20.239082 -116.644890 -2.600353 +v -21.364998 -117.054680 -1.000362 +v -17.990002 -120.042488 -4.100346 +v -17.990002 -120.042488 -2.600345 +v -18.376030 -118.981895 -4.100353 +v -18.376030 -118.981895 -2.600353 +v -22.282860 -117.824791 -2.600353 +v -22.282860 -117.824776 -1.000362 +v 20.903969 -118.981895 -2.600353 +v 21.289999 -120.042488 -2.600345 +v 22.881939 -118.862495 -2.600353 +v 18.089508 -120.606789 -2.600345 +v 18.089508 -119.478096 -2.600345 +v 16.398058 -118.862495 -2.600353 +v -22.881943 -118.862495 -2.600353 +v -22.881943 -118.862480 -1.000362 +v 18.089508 -119.478096 -4.100346 +v 18.089508 -120.606789 -4.100346 +v 16.189999 -120.042488 -4.100346 +v -19.353481 -118.417488 -4.100353 +v -23.089989 -120.042488 -2.600345 +v -23.089989 -120.042473 -1.000354 +v -19.353481 -118.417488 -2.600353 +v 16.398058 -121.222374 -4.100346 +v -22.881943 -121.222374 -2.600345 +v -22.881943 -121.222359 -1.000354 +v 16.189999 -120.042488 -2.600345 +v -22.282860 -122.260078 -2.600345 +v -21.364998 -123.030174 -2.600345 +v -20.465000 -121.471367 -2.600345 +v -22.282860 -122.260063 -1.000354 +v -17.915001 -123.030174 -2.600345 +v -16.997150 -122.260078 -2.600345 +v -18.376030 -121.103081 -2.600345 +v 20.903969 -121.103081 -4.100346 +v -21.364998 -123.030159 -1.000354 +v 22.881939 -121.222374 -4.100346 +v -27.314049 -126.015755 -1.350345 +v 27.314049 -126.015755 -1.350345 +v 27.976858 -125.500465 -1.350353 +v -20.239082 -123.440071 -2.600345 +v -20.234371 -123.440865 -1.000354 +v -28.173988 -125.414665 -1.350353 +v -18.376030 -121.103081 -4.100346 +v -19.040913 -123.440071 -2.600345 +v 23.347578 -123.322075 -4.400349 +v 27.184269 -123.269768 -4.400349 +v 24.148718 -122.085472 -4.400349 +v -19.640003 -123.492455 -0.000354 +v -19.353481 -121.667366 -2.600345 +v 21.857618 -122.685280 -4.100346 +v 22.594679 -121.941277 -7.383235 +v 20.239088 -116.644875 -1.000362 +v 19.040909 -116.644890 -2.600353 +v 20.239088 -116.644890 -2.600353 +v 19.040909 -116.644875 -1.000362 +v 28.429049 -125.677666 -1.350353 +v -28.429054 -125.677666 -1.350353 +v 17.914999 -117.054695 -2.600353 +v 17.914999 -117.054680 -1.000362 +v 18.814999 -121.471367 -4.100346 +v 16.997149 -122.260078 -4.100346 +v 16.997149 -117.824791 -2.600353 +v 16.997149 -117.824776 -1.000362 +v 16.398058 -118.862480 -1.000362 +v -14.850410 -118.792595 -4.400356 +v 14.707909 -120.463188 -4.400349 +v -15.932423 -116.762794 -4.400356 +v 16.189999 -120.042473 -1.000354 +v 23.089998 -120.042488 -2.600345 +v 27.448698 -122.221062 -0.117351 +v 27.417858 -122.042458 -1.000354 +v 16.398058 -121.222374 -2.600345 +v 16.398058 -121.222359 -1.000354 +v 23.224518 -120.042488 -7.450542 +v 23.030298 -118.878593 -7.450550 +v 28.343929 -115.717995 -7.500347 +v 16.997149 -122.260078 -2.600345 +v 16.997149 -122.260063 -1.000354 +v 29.814678 -114.341286 -6.173458 +v 29.776989 -123.568779 -6.228146 +v 29.406948 -114.676888 -7.028248 +v 17.914999 -123.030174 -2.600345 +v 17.914999 -123.030159 -1.000354 +v 17.914999 -123.030174 -4.100346 +v -16.398060 -121.222374 -2.600345 +v 19.040909 -123.440071 -2.600345 +v 19.045628 -123.440865 -1.000354 +v -21.190498 -120.606789 -2.600345 +v -29.338959 -124.299858 -1.350353 +v 20.239088 -123.440071 -2.600345 +v -15.131283 -122.085472 -4.400349 +v -15.932423 -123.322075 -4.400349 +v 19.639999 -123.492455 -0.000354 +v -16.242413 -120.641594 -4.100346 +v 19.926519 -121.667366 -4.100346 +v -20.465000 -118.613487 -4.100353 +v 29.329538 -124.938759 -1.350353 +v -29.329544 -124.938759 -1.350353 +v -20.465000 -118.613487 -2.600353 +v -21.190498 -119.478096 -4.100346 +v -16.997150 -117.824791 -4.100353 +v -17.915001 -117.054695 -4.100353 +v -16.190002 -120.042488 -2.600345 +v -21.190498 -119.478096 -2.600345 +v 29.391699 -124.196953 -1.350353 +v -20.819969 -123.284370 -4.100346 +v -21.857620 -122.685280 -4.100346 +v -20.465000 -121.471367 -4.100346 +v -21.190498 -120.606789 -4.100346 +v -22.545418 -121.909676 -7.247143 +v -28.749458 -123.764977 -7.396038 +v -23.058525 -120.533989 -7.247143 +v 29.363068 -124.588966 -6.228146 +v 28.063389 -125.543678 -6.576046 +v 28.973080 -124.071266 -7.213139 +v -16.398060 -118.862495 -2.600353 +v -22.282860 -117.824791 -4.100353 +v -21.364998 -117.054695 -4.100353 +v 27.314289 -123.361351 -0.000255 +v 16.221479 -120.533989 -7.247143 +v 16.624508 -121.980370 -7.450542 +v 16.116018 -121.077171 -7.490238 +v 20.903969 -121.103081 -2.600345 +v 22.881939 -121.222374 -2.600345 +v -27.255798 -125.661079 -6.740543 +v -27.814850 -125.734978 -6.228138 +v -28.512329 -125.304680 -6.576046 +v -16.685322 -121.941277 -7.383235 +v -16.200680 -121.052269 -7.450542 +v 19.332838 -116.335594 -7.498844 +v 27.250389 -116.882790 -4.400356 +v 27.318989 -116.778175 -1.000263 +v 14.850399 -118.792595 -4.400356 +v 23.239069 -116.643974 -1.000362 +v 23.347578 -116.762794 -4.400356 +v -19.040913 -116.644890 -4.100353 +v 15.131279 -122.085472 -4.400349 +v -16.997150 -117.824791 -2.600353 +v 19.926519 -118.417488 -2.600353 +v 18.814999 -118.613487 -4.100353 +v 19.926519 -118.417488 -4.100353 +v 16.222639 -119.472191 -7.292843 +v 18.814999 -118.613487 -2.600353 +v -29.878578 -123.911263 -1.350353 +v -17.422382 -122.685280 -4.100346 +v -18.460033 -123.284370 -4.100346 +v -19.353481 -121.667366 -4.100346 +v 29.878578 -123.911263 -1.350353 +v -19.349960 -116.542183 -7.383244 +v -28.343933 -115.717995 -7.500347 +v 18.814999 -121.471367 -2.600345 +v 15.932419 -116.762794 -4.400356 +v 28.678259 -123.916267 -7.396038 +v 28.267859 -122.221062 -0.117351 +v -17.915001 -117.054695 -2.600353 +v -16.104370 -119.452492 -7.450542 +v 22.282848 -122.260078 -2.600345 +v 27.840168 -125.727379 -6.228138 +v 28.588049 -125.371376 -6.228146 +v 27.352718 -124.699867 -7.455036 +v -27.021278 -124.366875 -7.500340 +v -22.627785 -121.767479 -4.100346 +v -23.037582 -120.641594 -4.100346 +v -20.239082 -116.644890 -4.100353 +v 27.665218 -125.153572 -7.213139 +v -20.502201 -116.637688 -7.383244 +v -21.561012 -117.102089 -7.383244 +v 27.790459 -124.025658 -0.000354 +v 27.790459 -124.025658 -1.000354 +v 29.657009 -114.404869 -1.350360 +v -22.677414 -118.398689 -7.247150 +v 21.129068 -123.303078 -7.450542 +v 29.984119 -114.161278 -1.350360 +v -30.000473 -114.202980 -1.350360 +v -28.809761 -115.314293 -7.426144 +v -23.037582 -119.443382 -4.100346 +v -19.040913 -116.644890 -2.600353 +v -29.657013 -114.404869 -1.350360 +v -27.790749 -124.939568 -7.314739 +v -23.175629 -119.452492 -7.450542 +v -17.741142 -122.997169 -7.383235 +v 19.926519 -121.667366 -2.600345 +v 21.364998 -123.030174 -2.600345 +v -22.538315 -117.786583 -7.490246 +v 17.152519 -117.340294 -7.490246 +v -19.106323 -123.754280 -7.500340 +v 18.229149 -116.826088 -7.383244 +v -29.349709 -124.305656 -1.000354 +v -29.669235 -114.392677 -1.000362 +v -21.507202 -122.947868 -7.247143 +v -16.398060 -118.862495 -4.100353 +v -27.718658 -124.369377 -7.490139 +v 29.669228 -114.392677 -1.000362 +v -20.131512 -123.460976 -7.247143 +v 15.932419 -123.322075 -4.400349 +v -14.707912 -120.463188 -4.400349 +v -19.640003 -123.492470 -4.100346 +v 29.402687 -124.202354 -1.000354 +v -16.868351 -117.885185 -7.383244 +v 20.239088 -116.644890 -4.100353 +v 19.040909 -116.644890 -4.100353 +v 28.560228 -125.199165 -1.000354 +v 27.981289 -125.511864 -1.000354 +v 17.914999 -117.054695 -4.100353 +v -29.267502 -124.556572 -6.576046 +v -29.771935 -123.594566 -6.228146 +v 16.997149 -117.824791 -4.100353 +v 16.551079 -118.370796 -7.383244 +v 16.398058 -118.862495 -4.100353 +v 27.227098 -124.273857 -0.000354 +v -29.687408 -123.044273 -6.667446 +v -27.298912 -123.374855 -0.000255 +v -27.450638 -122.302666 -0.061657 +v -28.267860 -122.221062 -0.117351 +v -28.002640 -123.813454 -0.000354 +v -18.650490 -123.412376 -7.383235 +v 18.180958 -123.237267 -7.383235 +v -19.640003 -123.626976 -7.450542 +v -27.879723 -125.548851 -1.000354 +v -27.172379 -123.277870 -4.400349 +v -23.347580 -123.322075 -4.400349 +v -24.148720 -122.085472 -4.400349 +v 28.755409 -115.259285 -7.428249 +v -29.799248 -114.338081 -6.241657 +v 24.148718 -122.085457 -1.000354 +v 23.239069 -123.440865 -1.000354 +v 22.282848 -117.824791 -4.100353 +v 22.411648 -117.885185 -7.383244 +v -16.040932 -116.643974 -1.000362 +v 16.040928 -116.643974 -1.000362 +v 22.282848 -117.824791 -2.600353 +v -28.267860 -122.042458 -1.000354 +v -27.417862 -122.042458 -1.000354 +v -27.319145 -116.778374 -1.000263 +v -28.789444 -125.222374 -6.228146 +v -19.040913 -116.644875 -1.000362 +v -23.239075 -116.643974 -1.000362 +v -27.700424 -124.089851 -0.000354 +v 28.267859 -122.042458 -1.000354 +v -24.572090 -120.463188 -4.400349 +v 24.572088 -120.463173 -1.000354 +v 24.572088 -120.463188 -4.400349 +v -24.148720 -117.999367 -1.000362 +v -17.915001 -117.054680 -1.000362 +v -16.997150 -117.824776 -1.000362 +v -18.229153 -116.826088 -7.383244 +v -24.429588 -118.792595 -4.400356 +v -27.251450 -116.884285 -4.400356 +v 15.131279 -117.999367 -1.000362 +v 21.364998 -117.054680 -1.000362 +v 22.282848 -117.824776 -1.000362 +v -14.850410 -118.792580 -1.000362 +v 20.903969 -118.981895 -4.100353 +v 22.881939 -118.862480 -1.000362 +v 24.429588 -118.792580 -1.000362 +v -24.572090 -119.621773 -1.000354 +v -23.239075 -123.440865 -1.000354 +v -16.398060 -118.862480 -1.000362 +v 14.707909 -119.621773 -1.000354 +v -14.707912 -120.463173 -1.000354 +v -23.347580 -116.762794 -4.400356 +v 23.089998 -120.042473 -1.000354 +v -16.190002 -120.042473 -1.000354 +v 21.561008 -117.102089 -7.383244 +v -24.429588 -121.292351 -1.000354 +v -20.649872 -123.481773 -7.450542 +v 14.850399 -121.292351 -1.000354 +v -16.398060 -121.222359 -1.000354 +v -15.131283 -122.085457 -1.000354 +v 22.881939 -121.222359 -1.000354 +v -16.040932 -123.440865 -1.000354 +v -16.997150 -122.260063 -1.000354 +v 16.040928 -123.440865 -1.000354 +v 22.282848 -122.260063 -1.000354 +v 21.364998 -117.054695 -2.600353 +v -28.117249 -123.638359 -1.000354 +v -17.915001 -123.030159 -1.000354 +v 24.429588 -118.792595 -4.400356 +v 21.364998 -123.030159 -1.000354 +v 21.364998 -117.054695 -4.100353 +v -19.045631 -123.440865 -1.000354 +v 20.234369 -123.440865 -1.000354 +v -16.652210 -121.767479 -4.100346 +v -27.520454 -124.186562 -1.000354 +v 27.227098 -124.273857 -1.000354 + +f 3173 3174 3175 +f 3173 3175 3398 +f 3265 3173 3398 +f 3242 3265 3398 +f 3242 3398 3302 +f 3204 3242 3302 +f 3204 3302 3301 +f 3199 3204 3301 +f 3199 3301 3323 +f 3390 3199 3323 +f 3390 3323 3389 +f 3388 3390 3389 +f 3388 3389 3366 +f 3385 3388 3366 +f 3385 3366 3368 +f 3382 3385 3368 +f 3382 3368 3311 +f 3381 3382 3311 +f 3445 3381 3311 +f 3445 3311 3257 +f 3409 3445 3257 +f 3256 3409 3257 +f 3255 3256 3257 +f 3334 3255 3257 +f 3404 3334 3257 +f 3404 3257 3331 +f 3356 3404 3331 +f 3292 3356 3331 +f 3361 3292 3331 +f 3365 3361 3331 +f 3348 3365 3331 +f 3347 3348 3331 +f 3330 3347 3331 +f 3330 3345 3347 +f 3345 3299 3347 +f 3200 3299 3345 +f 3317 3200 3345 +f 3185 3200 3317 +f 3283 3185 3317 +f 3283 3317 3427 +f 3380 3283 3427 +f 3380 3427 3257 +f 3427 3330 3257 +f 3282 3283 3380 +f 3372 3282 3380 +f 3337 3372 3380 +f 3337 3380 3311 +f 3310 3337 3311 +f 3309 3310 3311 +f 3362 3309 3311 +f 3397 3362 3311 +f 3367 3397 3311 +f 3399 3397 3367 +f 3342 3399 3367 +f 3342 3367 3303 +f 3302 3342 3303 +f 3303 3367 3323 +f 3399 3342 3447 +f 3375 3399 3447 +f 3375 3447 3371 +f 3287 3375 3371 +f 3288 3287 3371 +f 3288 3371 3291 +f 3343 3288 3291 +f 3344 3343 3291 +f 3344 3291 3293 +f 3344 3293 3361 +f 3357 3344 3361 +f 3357 3361 3352 +f 3298 3357 3352 +f 3298 3352 3348 +f 3299 3298 3348 +f 3277 3298 3299 +f 3277 3281 3298 +f 3280 3281 3277 +f 3203 3280 3277 +f 3203 3277 3200 +f 3186 3203 3200 +f 3203 3186 3336 +f 3203 3336 3358 +f 3203 3358 3181 +f 3358 3417 3181 +f 3417 3179 3181 +f 3179 3180 3181 +f 3180 3280 3181 +f 3285 3280 3180 +f 3187 3285 3180 +f 3182 3187 3180 +f 3182 3188 3187 +f 3188 3195 3187 +f 3188 3196 3195 +f 3196 3201 3195 +f 3201 3269 3195 +f 3269 3285 3195 +f 3285 3269 3290 +f 3285 3290 3281 +f 3281 3290 3357 +f 3269 3289 3290 +f 3289 3343 3290 +f 3269 3210 3289 +f 3289 3210 3328 +f 3378 3289 3328 +f 3327 3378 3328 +f 3326 3327 3328 +f 3326 3328 3224 +f 3464 3326 3224 +f 3275 3464 3224 +f 3275 3224 3183 +f 3275 3183 3372 +f 3224 3214 3183 +f 3214 3184 3183 +f 3183 3184 3185 +f 3183 3185 3282 +f 3184 3186 3185 +f 3186 3184 3319 +f 3184 3297 3319 +f 3297 3439 3319 +f 3439 3426 3319 +f 3319 3426 3336 +f 3426 3425 3336 +f 3425 3426 3410 +f 3417 3425 3410 +f 3417 3410 3370 +f 3410 3411 3370 +f 3411 3233 3370 +f 3233 3315 3370 +f 3315 3374 3370 +f 3370 3374 3359 +f 3270 3370 3359 +f 3270 3359 3355 +f 3325 3270 3355 +f 3325 3355 3387 +f 3279 3325 3387 +f 3386 3279 3387 +f 3386 3387 3392 +f 3386 3392 3292 +f 3308 3386 3292 +f 3360 3308 3292 +f 3360 3292 3373 +f 3342 3360 3373 +f 3342 3373 3291 +f 3341 3360 3342 +f 3334 3341 3342 +f 3334 3342 3175 +f 3334 3175 3353 +f 3334 3353 3232 +f 3353 3231 3232 +f 3231 3217 3232 +f 3232 3217 3255 +f 3217 3176 3255 +f 3217 3215 3176 +f 3176 3215 3177 +f 3176 3177 3178 +f 3176 3178 3256 +f 3178 3177 3408 +f 3178 3408 3409 +f 3177 3434 3408 +f 3408 3434 3461 +f 3408 3461 3445 +f 3461 3434 3381 +f 3434 3322 3381 +f 3434 3189 3322 +f 3189 3320 3322 +f 3320 3321 3322 +f 3322 3321 3385 +f 3320 3324 3321 +f 3324 3197 3321 +f 3321 3197 3388 +f 3324 3193 3197 +f 3193 3198 3197 +f 3197 3198 3199 +f 3193 3192 3198 +f 3192 3241 3198 +f 3241 3242 3198 +f 3192 3332 3241 +f 3241 3332 3276 +f 3174 3241 3276 +f 3231 3174 3276 +f 3231 3276 3215 +f 3276 3363 3215 +f 3363 3304 3215 +f 3363 3364 3304 +f 3364 3338 3304 +f 3338 3305 3304 +f 3304 3305 3190 +f 3304 3190 3177 +f 3305 3250 3190 +f 3190 3250 3191 +f 3189 3190 3191 +f 3189 3191 3412 +f 3189 3412 3456 +f 3412 3432 3456 +f 3432 3431 3456 +f 3456 3431 3235 +f 3320 3456 3235 +f 3234 3320 3235 +f 3233 3234 3235 +f 3233 3236 3234 +f 3236 3239 3234 +f 3239 3324 3234 +f 3236 3240 3239 +f 3240 3243 3239 +f 3243 3193 3239 +f 3194 3193 3243 +f 3244 3194 3243 +f 3244 3245 3194 +f 3245 3207 3194 +f 3207 3192 3194 +f 3253 3192 3207 +f 3249 3253 3207 +f 3249 3254 3253 +f 3254 3258 3253 +f 3253 3258 3332 +f 3258 3263 3332 +f 3263 3267 3332 +f 3267 3271 3332 +f 3332 3271 3363 +f 3268 3271 3267 +f 3264 3268 3267 +f 3454 3268 3264 +f 3454 3264 3259 +f 3454 3259 3254 +f 3448 3454 3254 +f 3454 3448 3318 +f 3376 3454 3318 +f 3273 3376 3318 +f 3273 3318 3247 +f 3272 3273 3247 +f 3272 3247 3377 +f 3450 3272 3377 +f 3441 3450 3377 +f 3441 3377 3246 +f 3433 3441 3246 +f 3433 3246 3248 +f 3410 3433 3248 +f 3333 3410 3248 +f 3314 3333 3248 +f 3247 3314 3248 +f 3247 3440 3314 +f 3440 3430 3314 +f 3440 3249 3430 +f 3249 3245 3430 +f 3430 3245 3411 +f 3430 3411 3333 +f 3448 3249 3440 +f 3448 3440 3247 +f 3314 3430 3333 +f 3246 3247 3248 +f 3439 3441 3433 +f 3444 3441 3439 +f 3450 3441 3444 +f 3449 3450 3444 +f 3449 3444 3284 +f 3266 3449 3284 +f 3266 3284 3184 +f 3453 3449 3266 +f 3213 3453 3266 +f 3213 3266 3214 +f 3212 3213 3214 +f 3230 3212 3214 +f 3225 3212 3230 +f 3210 3225 3230 +f 3221 3225 3210 +f 3209 3221 3210 +f 3208 3209 3210 +f 3205 3208 3210 +f 3206 3208 3205 +f 3202 3206 3205 +f 3202 3205 3201 +f 3446 3206 3202 +f 3446 3202 3437 +f 3446 3437 3421 +f 3403 3446 3421 +f 3401 3403 3421 +f 3401 3421 3429 +f 3415 3401 3429 +f 3442 3415 3429 +f 3428 3442 3429 +f 3428 3424 3442 +f 3424 3418 3442 +f 3424 3196 3418 +f 3202 3196 3424 +f 3437 3424 3428 +f 3418 3415 3442 +f 3415 3418 3370 +f 3414 3415 3370 +f 3413 3414 3370 +f 3369 3413 3370 +f 3369 3457 3413 +f 3457 3395 3413 +f 3395 3394 3413 +f 3393 3394 3395 +f 3396 3393 3395 +f 3419 3393 3396 +f 3419 3396 3465 +f 3466 3419 3465 +f 3400 3466 3465 +f 3369 3400 3465 +f 3400 3369 3270 +f 3223 3400 3270 +f 3223 3270 3238 +f 3218 3223 3238 +f 3218 3238 3307 +f 3339 3218 3307 +f 3339 3307 3295 +f 3339 3295 3340 +f 3237 3339 3340 +f 3237 3340 3294 +f 3278 3237 3294 +f 3278 3294 3261 +f 3329 3278 3261 +f 3329 3261 3260 +f 3354 3329 3260 +f 3354 3260 3405 +f 3355 3354 3405 +f 3260 3262 3405 +f 3262 3404 3405 +f 3351 3329 3354 +f 3359 3351 3354 +f 3286 3329 3351 +f 3379 3286 3351 +f 3374 3379 3351 +f 3420 3379 3374 +f 3313 3420 3374 +f 3252 3420 3313 +f 3252 3313 3312 +f 3227 3252 3312 +f 3423 3227 3312 +f 3459 3423 3312 +f 3316 3459 3312 +f 3436 3459 3316 +f 3315 3436 3316 +f 3313 3315 3316 +f 3435 3436 3315 +f 3432 3435 3315 +f 3435 3443 3436 +f 3443 3422 3436 +f 3406 3422 3443 +f 3451 3406 3443 +f 3451 3443 3250 +f 3407 3406 3451 +f 3455 3407 3451 +f 3455 3451 3305 +f 3460 3407 3455 +f 3460 3455 3338 +f 3463 3407 3460 +f 3463 3460 3364 +f 3271 3463 3364 +f 3274 3463 3271 +f 3274 3407 3463 +f 3274 3300 3407 +f 3407 3300 3226 +f 3407 3226 3228 +f 3226 3227 3228 +f 3226 3300 3227 +f 3300 3251 3227 +f 3300 3349 3251 +f 3349 3335 3251 +f 3251 3335 3252 +f 3335 3349 3350 +f 3335 3350 3420 +f 3349 3391 3350 +f 3391 3466 3350 +f 3466 3384 3350 +f 3384 3383 3350 +f 3383 3379 3350 +f 3383 3384 3220 +f 3383 3220 3286 +f 3286 3220 3278 +f 3384 3400 3220 +f 3300 3391 3349 +f 3391 3300 3274 +f 3391 3274 3229 +f 3419 3391 3229 +f 3229 3274 3452 +f 3229 3452 3462 +f 3229 3462 3225 +f 3222 3229 3225 +f 3229 3222 3438 +f 3393 3229 3438 +f 3393 3438 3401 +f 3414 3393 3401 +f 3438 3402 3401 +f 3402 3438 3403 +f 3438 3222 3216 +f 3438 3216 3211 +f 3438 3211 3206 +f 3211 3216 3209 +f 3216 3222 3221 +f 3462 3452 3458 +f 3462 3458 3212 +f 3458 3452 3453 +f 3274 3454 3452 +f 3452 3454 3273 +f 3406 3407 3228 +f 3406 3228 3423 +f 3422 3406 3423 +f 3443 3435 3191 +f 3436 3422 3459 +f 3422 3423 3459 +f 3228 3227 3423 +f 3251 3252 3227 +f 3313 3316 3312 +f 3335 3420 3252 +f 3350 3379 3420 +f 3379 3383 3286 +f 3260 3261 3262 +f 3262 3261 3296 +f 3296 3334 3262 +f 3296 3295 3334 +f 3295 3346 3334 +f 3295 3306 3346 +f 3346 3306 3360 +f 3294 3295 3296 +f 3278 3329 3286 +f 3261 3294 3296 +f 3220 3237 3278 +f 3220 3219 3237 +f 3218 3219 3220 +f 3237 3219 3339 +f 3294 3340 3295 +f 3295 3307 3306 +f 3306 3307 3308 +f 3308 3307 3416 +f 3219 3218 3339 +f 3307 3238 3416 +f 3238 3279 3416 +f 3218 3220 3223 +f 3238 3270 3279 +f 3220 3400 3223 +f 3400 3384 3466 +f 3391 3419 3466 +f 3465 3396 3457 +f 3419 3229 3393 +f 3394 3393 3414 +f 3396 3395 3457 +f 3369 3465 3457 +f 3394 3414 3413 +f 3418 3179 3370 +f 3182 3179 3418 +f 3415 3414 3401 +f 3421 3428 3429 +f 3401 3402 3403 +f 3438 3446 3403 +f 3421 3437 3428 +f 3437 3202 3424 +f 3446 3438 3206 +f 3206 3211 3208 +f 3211 3209 3208 +f 3216 3221 3209 +f 3222 3225 3221 +f 3225 3462 3212 +f 3212 3458 3213 +f 3458 3453 3213 +f 3453 3452 3449 +f 3284 3444 3297 +f 3452 3450 3449 +f 3450 3452 3272 +f 3377 3247 3246 +f 3452 3273 3272 +f 3454 3376 3273 +f 3318 3448 3247 +f 3259 3264 3263 +f 3274 3268 3454 +f 3268 3274 3271 +f 3264 3267 3263 +f 3259 3263 3258 +f 3254 3259 3258 +f 3448 3254 3249 +f 3245 3249 3207 +f 3245 3244 3411 +f 3244 3240 3411 +f 3240 3244 3243 +f 3240 3236 3411 +f 3431 3233 3235 +f 3431 3432 3315 +f 3435 3432 3412 +f 3191 3435 3412 +f 3250 3443 3191 +f 3305 3451 3250 +f 3338 3455 3305 +f 3364 3460 3338 +f 3271 3364 3363 +f 3332 3363 3276 +f 3253 3332 3192 +f 3192 3193 3194 +f 3193 3324 3239 +f 3324 3320 3234 +f 3320 3189 3456 +f 3190 3189 3434 +f 3177 3190 3434 +f 3215 3304 3177 +f 3217 3231 3215 +f 3174 3231 3353 +f 3334 3346 3341 +f 3346 3360 3341 +f 3373 3292 3291 +f 3306 3308 3360 +f 3308 3416 3386 +f 3392 3405 3292 +f 3387 3405 3392 +f 3416 3279 3386 +f 3387 3355 3405 +f 3279 3270 3325 +f 3359 3354 3355 +f 3369 3370 3270 +f 3374 3351 3359 +f 3315 3313 3374 +f 3233 3431 3315 +f 3411 3236 3233 +f 3411 3410 3333 +f 3426 3433 3410 +f 3426 3439 3433 +f 3444 3439 3297 +f 3184 3284 3297 +f 3214 3266 3184 +f 3230 3214 3224 +f 3464 3275 3310 +f 3326 3464 3309 +f 3328 3230 3224 +f 3327 3326 3362 +f 3378 3327 3397 +f 3375 3378 3397 +f 3378 3287 3289 +f 3210 3230 3328 +f 3205 3210 3269 +f 3205 3269 3201 +f 3196 3202 3201 +f 3196 3188 3418 +f 3188 3182 3418 +f 3195 3285 3187 +f 3179 3182 3180 +f 3179 3417 3370 +f 3425 3417 3358 +f 3336 3425 3358 +f 3186 3319 3336 +f 3280 3203 3181 +f 3280 3285 3281 +f 3281 3357 3298 +f 3290 3344 3357 +f 3291 3292 3293 +f 3343 3344 3290 +f 3288 3343 3289 +f 3371 3342 3291 +f 3287 3288 3289 +f 3287 3378 3375 +f 3447 3342 3371 +f 3375 3397 3399 +f 3397 3327 3362 +f 3362 3326 3309 +f 3309 3464 3310 +f 3310 3275 3337 +f 3275 3372 3337 +f 3372 3183 3282 +f 3427 3317 3330 +f 3282 3185 3283 +f 3185 3186 3200 +f 3200 3277 3299 +f 3317 3345 3330 +f 3299 3348 3347 +f 3352 3365 3348 +f 3352 3361 3365 +f 3293 3292 3361 +f 3292 3405 3356 +f 3405 3404 3356 +f 3257 3330 3331 +f 3262 3334 3404 +f 3334 3232 3255 +f 3255 3176 3256 +f 3256 3178 3409 +f 3409 3408 3445 +f 3311 3380 3257 +f 3461 3381 3445 +f 3322 3382 3381 +f 3368 3367 3311 +f 3322 3385 3382 +f 3366 3367 3368 +f 3321 3388 3385 +f 3389 3367 3366 +f 3197 3390 3388 +f 3323 3367 3389 +f 3197 3199 3390 +f 3301 3303 3323 +f 3198 3204 3199 +f 3301 3302 3303 +f 3242 3204 3198 +f 3398 3342 3302 +f 3265 3242 3241 +f 3173 3265 3241 +f 3175 3342 3398 +f 3175 3174 3353 +f 3174 3173 3241 + + +o Object.7 +v 146.251007 61.444931 -3.300571 +v 146.237701 62.699688 -4.550571 +v 145.643890 62.667496 -4.550571 +v 144.458588 59.781425 -4.747760 +v 143.354889 59.656387 -4.750560 +v 143.354889 60.251045 -4.750568 +v 148.774506 59.362549 -4.750560 +v 147.630997 59.759605 -4.716564 +v 148.838806 59.953716 -4.750568 +v 145.070892 62.508408 -4.750568 +v 145.070892 62.508408 -4.550571 +v 145.643890 62.667496 -4.750568 +v 146.200897 58.457912 -3.300563 +v 145.459000 58.592365 -3.300563 +v 145.070892 57.399029 -4.550563 +v 146.862091 61.239010 -3.300571 +v 146.824493 62.603477 -4.550571 +v 146.237701 62.699688 -4.750568 +v 146.035309 58.668484 -3.750560 +v 146.089600 58.633354 -3.750560 +v 145.932999 58.476540 -4.625362 +v 147.376892 62.383377 -4.550571 +v 147.518295 60.180138 -4.643772 +v 147.718994 60.126007 -4.747768 +v 146.015106 61.178909 -3.750568 +v 146.005798 60.248440 -3.750568 +v 145.842987 60.403305 -4.637669 +v 147.869095 62.049667 -4.550571 +v 147.869095 62.049667 -4.750568 +v 147.169998 60.474384 0.249424 +v 146.837006 60.891926 0.249424 +v 146.527191 61.070774 0.249424 +v 144.803101 59.900532 -3.750568 +v 145.639191 59.707897 -4.637661 +v 144.635101 59.680386 -4.707157 +v 144.092300 58.062550 -4.750560 +v 143.732498 58.535950 -4.750560 +v 144.529907 59.645329 -4.747760 +v 144.545502 57.677582 -4.550563 +v 145.181091 58.759583 -3.300563 +v 144.565491 60.157406 -4.707164 +v 144.593994 59.819328 -4.651859 +v 146.364700 60.311516 -4.615268 +v 146.198395 60.180401 -3.750568 +v 146.308701 61.379848 -4.628170 +v 147.120392 61.042709 -3.300571 +v 148.278107 61.617947 -4.550571 +v 147.409195 59.954491 -3.750568 +v 146.469101 60.216255 -4.615268 +v 145.684387 60.244038 -4.678768 +v 144.640991 60.145016 -4.598964 +v 144.666504 60.333927 -4.747768 +v 146.381592 60.037182 -3.750568 +v 146.087296 61.273891 -3.750568 +v 147.534088 60.355011 -3.300571 +v 145.778290 60.324207 -4.678768 +v 148.278107 61.617947 -4.750568 +v 148.584595 61.108418 -4.550571 +v 144.849487 59.108746 -3.300563 +v 144.545502 62.229866 -4.550571 +v 144.092300 58.062550 -4.550563 +v 143.482788 59.075642 -4.750560 +v 148.584595 58.799030 -4.750560 +v 148.278107 58.289490 -4.750560 +v 147.537903 59.647316 -4.725559 +v 148.774506 60.544888 -4.550571 +v 145.966400 61.447937 -4.649868 +v 145.890991 61.395016 -4.598964 +v 143.732498 61.371487 -4.750568 +v 143.732498 61.371487 -4.550571 +v 144.092300 61.844887 -4.750568 +v 145.726105 61.373207 -4.743969 +v 144.092300 61.844887 -4.550571 +v 144.545502 62.229866 -4.750568 +v 147.569092 59.711052 -3.300563 +v 148.838806 59.953716 -4.550571 +v 145.070892 57.399029 -4.750560 +v 144.545502 57.677582 -4.750560 +v 145.885101 58.430389 -4.707157 +v 148.584595 61.108418 -4.750568 +v 145.900909 61.483788 -4.706768 +v 147.376892 62.383377 -4.750568 +v 143.732498 58.535950 -4.550563 +v 148.774506 59.362549 -4.550563 +v 145.818909 59.490566 -4.678761 +v 145.808701 58.515820 -4.706760 +v 145.718292 59.643246 -4.678761 +v 145.770203 60.031631 -3.750568 +v 146.237701 57.207760 -4.550563 +v 145.643890 57.239952 -4.550563 +v 143.482788 60.831795 -4.750568 +v 143.482788 60.831795 -4.550571 +v 146.346191 59.501286 -4.658962 +v 146.408203 59.617428 -4.658962 +v 146.478302 59.553387 -4.736660 +v 146.824493 62.603477 -4.750568 +v 147.328201 59.108746 -3.300563 +v 148.584595 58.799030 -4.550563 +v 148.774506 60.544888 -4.750568 +v 147.376892 57.524059 -4.750560 +v 146.237701 57.207760 -4.750560 +v 146.430206 58.435261 -4.747760 +v 147.505295 60.300179 -4.738864 +v 148.278107 58.289490 -4.550563 +v 143.482788 59.075642 -4.550563 +v 145.888794 59.827660 -3.750560 +v 146.010895 59.635120 -3.750560 +v 146.172302 59.660889 -3.750560 +v 146.246307 58.469761 -4.640759 +v 147.869095 57.857780 -4.550563 +v 145.643890 57.239952 -4.750560 +v 146.200897 61.449535 -0.050579 +v 145.755005 61.416115 -0.050579 +v 146.996597 58.759583 -3.300563 +v 147.376892 57.524059 -4.550563 +v 145.821808 61.123634 0.249424 +v 146.357300 61.545067 -4.747768 +v 146.718597 58.592365 -3.300563 +v 147.553696 59.768158 -4.629360 +v 146.824493 57.303959 -4.550563 +v 147.869095 57.857780 -4.750560 +v 146.636795 61.350033 -0.050579 +v 145.007599 59.433064 0.249432 +v 144.902191 60.132576 0.249424 +v 144.605591 59.730164 -0.050571 +v 144.608597 59.711052 -3.300563 +v 145.338806 61.252766 -0.050579 +v 143.354889 59.656387 -4.550563 +v 147.275391 59.774876 0.249432 +v 145.209106 60.769936 0.249424 +v 146.443100 60.413216 -4.736668 +v 143.354889 60.251045 -4.550571 +v 145.057297 61.042709 -3.300571 +v 145.609894 61.375202 -3.300571 +v 144.768402 59.954491 -3.750568 +v 146.178497 58.757088 0.249432 +v 146.688797 58.914497 0.249432 +v 146.968506 59.137520 0.249432 +v 144.643494 60.355011 -3.300571 +v 146.824493 57.303959 -4.750560 +v 147.024002 61.126472 -0.050579 +v 147.588806 59.953724 -0.050579 +v 147.522202 59.511593 -0.050571 +v 144.737396 59.302898 -0.050571 +v 144.605591 60.177284 -0.050579 +v 144.989197 60.973984 -0.050579 +v 147.328201 59.108749 -0.050571 +v 147.522202 60.395855 -0.050579 +v 145.153595 58.780979 -0.050571 +v 147.371094 59.898041 -3.750568 +v 147.024002 58.780979 -0.050571 +v 146.286499 59.826080 -3.750560 +v 144.737396 60.604553 -0.050579 +v 146.636795 58.557419 -0.050571 +v 147.328201 60.798706 -0.050579 +v 145.540802 58.557419 -0.050571 +v 146.200897 58.457916 -0.050571 +v 145.209106 59.137520 0.249432 +v 145.821808 58.783817 0.249432 + +f 3467 3468 3469 +f 3600 3467 3469 +f 3477 3600 3469 +f 3477 3469 3478 +f 3476 3477 3478 +f 3547 3476 3478 +f 3583 3547 3478 +f 3484 3583 3478 +f 3562 3583 3484 +f 3483 3562 3484 +f 3468 3483 3484 +f 3482 3483 3468 +f 3482 3488 3483 +f 3483 3488 3548 +f 3488 3495 3548 +f 3495 3583 3548 +f 3597 3583 3495 +f 3569 3597 3495 +f 3523 3569 3495 +f 3513 3523 3495 +f 3494 3513 3495 +f 3512 3513 3494 +f 3482 3512 3494 +f 3607 3512 3482 +f 3588 3607 3482 +f 3578 3588 3482 +f 3578 3482 3467 +f 3579 3578 3467 +f 3498 3578 3579 +f 3582 3498 3579 +f 3593 3582 3579 +f 3593 3579 3600 +f 3599 3593 3600 +f 3612 3593 3599 +f 3605 3612 3599 +f 3605 3599 3539 +f 3536 3605 3539 +f 3536 3539 3537 +f 3535 3536 3537 +f 3538 3535 3537 +f 3538 3537 3540 +f 3547 3538 3540 +f 3534 3538 3547 +f 3533 3534 3547 +f 3511 3533 3547 +f 3511 3520 3533 +f 3510 3520 3511 +f 3509 3510 3511 +f 3509 3511 3583 +f 3519 3510 3509 +f 3515 3519 3509 +f 3515 3509 3597 +f 3514 3519 3515 +f 3489 3514 3515 +f 3489 3515 3569 +f 3490 3489 3569 +f 3490 3569 3565 +f 3475 3490 3565 +f 3542 3475 3565 +f 3532 3542 3565 +f 3532 3565 3546 +f 3524 3532 3546 +f 3524 3546 3523 +f 3521 3532 3524 +f 3521 3524 3513 +f 3521 3541 3532 +f 3614 3541 3521 +f 3621 3614 3521 +f 3621 3521 3512 +f 3496 3614 3621 +f 3497 3496 3621 +f 3497 3621 3607 +f 3498 3497 3607 +f 3496 3497 3498 +f 3496 3608 3614 +f 3496 3595 3608 +f 3595 3609 3608 +f 3608 3609 3541 +f 3609 3563 3541 +f 3541 3563 3550 +f 3541 3550 3542 +f 3542 3550 3473 +f 3550 3529 3473 +f 3473 3529 3474 +f 3473 3474 3475 +f 3529 3531 3474 +f 3531 3585 3474 +f 3585 3489 3474 +f 3585 3531 3560 +f 3618 3585 3560 +f 3574 3618 3560 +f 3559 3574 3560 +f 3559 3560 3561 +f 3568 3559 3561 +f 3568 3561 3531 +f 3587 3568 3531 +f 3530 3587 3531 +f 3570 3587 3530 +f 3564 3570 3530 +f 3564 3530 3529 +f 3563 3570 3564 +f 3563 3576 3570 +f 3563 3580 3576 +f 3580 3581 3576 +f 3576 3581 3566 +f 3576 3566 3587 +f 3581 3586 3566 +f 3586 3606 3566 +f 3566 3606 3567 +f 3566 3567 3568 +f 3568 3567 3545 +f 3487 3568 3545 +f 3552 3487 3545 +f 3545 3544 3552 +f 3552 3544 3504 +f 3553 3552 3504 +f 3501 3553 3504 +f 3508 3501 3504 +f 3508 3504 3470 +f 3507 3508 3470 +f 3507 3470 3557 +f 3507 3557 3535 +f 3518 3507 3535 +f 3517 3507 3518 +f 3516 3517 3518 +f 3522 3516 3518 +f 3522 3518 3538 +f 3538 3493 3522 +f 3493 3492 3522 +f 3492 3554 3522 +f 3519 3554 3492 +f 3519 3618 3554 +f 3616 3618 3519 +f 3491 3492 3493 +f 3491 3493 3534 +f 3520 3491 3534 +f 3520 3492 3491 +f 3554 3516 3522 +f 3516 3554 3517 +f 3554 3601 3517 +f 3601 3508 3517 +f 3554 3572 3601 +f 3572 3499 3601 +f 3601 3499 3501 +f 3499 3500 3501 +f 3499 3572 3500 +f 3500 3572 3553 +f 3572 3573 3553 +f 3573 3551 3553 +f 3573 3487 3551 +f 3573 3485 3487 +f 3485 3486 3487 +f 3486 3575 3487 +f 3575 3486 3559 +f 3486 3485 3574 +f 3574 3485 3573 +f 3574 3573 3554 +f 3573 3572 3554 +f 3557 3558 3535 +f 3598 3558 3557 +f 3472 3598 3557 +f 3594 3598 3472 +f 3471 3594 3472 +f 3470 3471 3472 +f 3528 3471 3470 +f 3528 3571 3471 +f 3549 3571 3528 +f 3503 3549 3528 +f 3503 3528 3504 +f 3502 3503 3504 +f 3502 3527 3503 +f 3505 3527 3502 +f 3544 3505 3502 +f 3481 3505 3544 +f 3543 3481 3544 +f 3556 3481 3543 +f 3577 3556 3543 +f 3577 3543 3545 +f 3555 3556 3577 +f 3567 3555 3577 +f 3586 3555 3567 +f 3479 3555 3586 +f 3584 3479 3586 +f 3620 3479 3584 +f 3617 3620 3584 +f 3617 3584 3580 +f 3603 3620 3617 +f 3604 3603 3617 +f 3604 3617 3613 +f 3604 3613 3609 +f 3613 3617 3563 +f 3602 3603 3604 +f 3602 3604 3595 +f 3625 3602 3595 +f 3624 3625 3595 +f 3589 3624 3595 +f 3624 3589 3615 +f 3622 3624 3615 +f 3622 3615 3480 +f 3479 3622 3480 +f 3479 3480 3481 +f 3623 3622 3479 +f 3623 3625 3622 +f 3480 3615 3506 +f 3480 3506 3505 +f 3506 3525 3505 +f 3506 3615 3525 +f 3615 3610 3525 +f 3525 3610 3592 +f 3525 3592 3571 +f 3571 3592 3594 +f 3610 3591 3592 +f 3591 3611 3592 +f 3592 3611 3605 +f 3592 3605 3598 +f 3611 3619 3605 +f 3611 3590 3619 +f 3590 3596 3619 +f 3619 3596 3612 +f 3590 3496 3596 +f 3596 3496 3582 +f 3589 3496 3590 +f 3589 3590 3591 +f 3591 3590 3611 +f 3610 3589 3591 +f 3615 3589 3610 +f 3625 3624 3622 +f 3602 3625 3623 +f 3602 3623 3620 +f 3603 3602 3620 +f 3620 3623 3479 +f 3555 3479 3556 +f 3556 3479 3481 +f 3481 3480 3505 +f 3505 3525 3527 +f 3527 3525 3549 +f 3527 3549 3503 +f 3549 3525 3571 +f 3571 3594 3471 +f 3594 3592 3598 +f 3598 3605 3558 +f 3470 3472 3557 +f 3517 3508 3507 +f 3504 3528 3470 +f 3508 3601 3501 +f 3501 3500 3553 +f 3551 3552 3553 +f 3544 3502 3504 +f 3543 3544 3545 +f 3487 3552 3551 +f 3575 3568 3487 +f 3567 3577 3545 +f 3586 3567 3606 +f 3584 3586 3581 +f 3580 3584 3581 +f 3617 3580 3563 +f 3570 3576 3587 +f 3587 3566 3568 +f 3575 3559 3568 +f 3486 3574 3559 +f 3618 3574 3554 +f 3618 3616 3585 +f 3616 3514 3585 +f 3560 3531 3561 +f 3529 3530 3531 +f 3550 3564 3529 +f 3563 3564 3550 +f 3609 3613 3563 +f 3595 3604 3609 +f 3589 3595 3496 +f 3614 3608 3541 +f 3541 3542 3532 +f 3542 3473 3475 +f 3474 3490 3475 +f 3565 3569 3546 +f 3474 3489 3490 +f 3585 3514 3489 +f 3514 3616 3519 +f 3519 3492 3510 +f 3510 3492 3520 +f 3533 3520 3534 +f 3534 3493 3538 +f 3538 3518 3535 +f 3558 3536 3535 +f 3537 3539 3540 +f 3539 3526 3540 +f 3540 3526 3476 +f 3558 3605 3536 +f 3539 3599 3526 +f 3526 3599 3477 +f 3619 3612 3605 +f 3612 3596 3593 +f 3596 3582 3593 +f 3496 3498 3582 +f 3498 3588 3578 +f 3498 3607 3588 +f 3607 3621 3512 +f 3512 3521 3513 +f 3513 3524 3523 +f 3546 3569 3523 +f 3569 3515 3597 +f 3509 3583 3597 +f 3488 3494 3495 +f 3482 3494 3488 +f 3483 3548 3562 +f 3548 3583 3562 +f 3511 3547 3583 +f 3547 3540 3476 +f 3526 3477 3476 +f 3469 3484 3478 +f 3599 3600 3477 +f 3600 3579 3467 +f 3469 3468 3484 +f 3467 3482 3468 + + +o Object.8 +v 143.732498 -1.628410 -4.550495 +v 144.545502 -0.770111 -4.550495 +v 143.732498 -1.628410 -4.750492 +v 146.267700 -4.232803 0.249508 +v 145.910004 -4.232803 0.249508 +v 146.088806 -4.546204 -0.050495 +v 147.551208 -3.380005 -3.300495 +v 148.584595 -4.200905 -4.550488 +v 148.838806 -3.046204 -4.550495 +v 145.888794 -3.172302 -3.750492 +v 145.897491 -4.494003 -4.598880 +v 145.818909 -3.509407 -4.678691 +v 144.626404 -3.380005 -3.300495 +v 144.623901 -2.723709 -3.300495 +v 143.354889 -2.748909 -4.550495 +v 144.916107 -2.111008 -0.050502 +v 145.272598 -2.166512 0.249501 +v 145.437988 -1.694809 -0.050502 +v 144.894699 -2.138412 -3.300495 +v 145.243805 -1.806808 -3.300495 +v 146.198395 -2.819511 -3.750492 +v 145.962799 -2.846214 -3.750492 +v 146.159195 -1.795410 -3.750492 +v 145.842987 -2.596611 -4.637592 +v 145.664398 -2.793015 -4.637592 +v 144.651398 -2.803909 -4.671695 +v 146.090302 -4.366402 -3.750484 +v 146.169998 -1.548409 -3.300495 +v 144.999802 -4.077705 -3.300495 +v 143.482788 -3.924301 -4.550495 +v 146.255295 -1.449715 -4.738789 +v 145.900909 -1.516113 -4.706691 +v 143.482788 -3.924301 -4.750492 +v 147.518097 -2.788910 -4.683895 +v 146.459290 -2.689407 -4.712390 +v 147.869095 -0.950310 -4.750492 +v 146.261108 -4.676407 -4.747684 +v 145.884491 -4.616005 -4.732685 +v 144.092300 -4.937401 -4.550488 +v 147.553696 -2.723709 -3.300495 +v 148.584595 -1.891510 -4.550495 +v 146.286591 -4.487503 -4.598880 +v 147.177795 -4.077705 -3.300495 +v 145.049591 -3.646202 0.249501 +v 148.584595 -4.200905 -4.750484 +v 147.607300 -3.347603 -4.739292 +v 148.838806 -3.046204 -4.750492 +v 147.869095 -5.142105 -4.550488 +v 146.237701 -5.792206 -4.750484 +v 144.803101 -3.099403 -3.750492 +v 144.647491 -3.244003 -4.598888 +v 144.789795 -3.796204 -0.050502 +v 144.592987 -2.934105 -0.050502 +v 146.824493 -5.696007 -4.750484 +v 146.297394 -1.602112 -4.629695 +v 146.169998 -4.544006 -3.300487 +v 145.687500 -4.491501 -3.300487 +v 144.529907 -3.354607 -4.747692 +v 143.354889 -2.748909 -4.750492 +v 146.933807 -1.806808 -3.300495 +v 147.282990 -2.138412 -3.300495 +v 145.070892 -5.600906 -4.550488 +v 147.567902 -3.191002 -4.623196 +v 147.355804 -3.110703 -3.750492 +v 146.933807 -4.285606 -0.050495 +v 145.639191 -3.292000 -4.637592 +v 146.552002 -3.316101 -4.678691 +v 146.351410 -3.426506 -4.615192 +v 146.824493 -5.696007 -4.550488 +v 146.214905 -3.246201 -3.750492 +v 145.070892 -5.600906 -4.750484 +v 147.869095 -0.950310 -4.550495 +v 144.892197 -3.135902 0.249501 +v 148.584595 -1.891510 -4.750492 +v 146.237701 -5.792206 -4.550488 +v 146.824493 -0.396408 -4.750492 +v 145.643890 -0.332413 -4.750492 +v 146.824493 -0.396408 -4.550495 +v 145.437988 -4.397606 -0.050495 +v 147.869095 -5.142105 -4.750484 +v 146.267700 -1.859612 0.249501 +v 145.643890 -0.332413 -4.550495 +v 144.545502 -0.770111 -4.750492 +v 144.092300 -4.937401 -4.750484 +v 146.904999 -3.925903 0.249501 +v 147.205902 -3.484604 0.249501 +v 147.485107 -3.594200 -0.050502 +v 147.258698 -2.779213 0.249501 +v 147.551208 -2.712410 -0.050502 +v 146.312408 -1.563011 -0.050502 +v 147.109100 -1.946609 -0.050502 +v 146.904999 -2.166512 0.249501 + +f 3626 3627 3628 +f 3684 3626 3628 +f 3683 3684 3628 +f 3651 3683 3628 +f 3657 3651 3628 +f 3657 3628 3708 +f 3657 3708 3702 +f 3656 3657 3702 +f 3701 3656 3702 +f 3707 3701 3702 +f 3627 3707 3702 +f 3627 3645 3707 +f 3645 3653 3707 +f 3653 3685 3707 +f 3685 3703 3707 +f 3685 3697 3703 +f 3703 3697 3661 +f 3703 3661 3701 +f 3697 3666 3661 +f 3666 3699 3661 +f 3699 3659 3661 +f 3659 3660 3661 +f 3660 3680 3661 +f 3680 3656 3661 +f 3648 3656 3680 +f 3646 3648 3680 +f 3646 3647 3648 +f 3648 3647 3649 +f 3648 3649 3657 +f 3647 3650 3649 +f 3649 3650 3651 +f 3650 3647 3651 +f 3647 3675 3651 +f 3675 3676 3651 +f 3675 3691 3676 +f 3676 3691 3683 +f 3691 3663 3683 +f 3663 3696 3683 +f 3696 3709 3683 +f 3709 3658 3683 +f 3709 3655 3658 +f 3655 3640 3658 +f 3658 3640 3684 +f 3655 3638 3640 +f 3638 3639 3640 +f 3640 3639 3626 +f 3639 3644 3626 +f 3644 3645 3626 +f 3644 3641 3645 +f 3641 3643 3645 +f 3641 3642 3643 +f 3642 3706 3643 +f 3706 3715 3643 +f 3643 3715 3653 +f 3706 3717 3715 +f 3717 3716 3715 +f 3715 3716 3685 +f 3716 3686 3685 +f 3685 3686 3666 +f 3686 3665 3666 +f 3665 3634 3666 +f 3665 3632 3634 +f 3632 3633 3634 +f 3634 3633 3672 +f 3634 3672 3699 +f 3633 3670 3672 +f 3670 3671 3672 +f 3671 3659 3672 +f 3688 3659 3671 +f 3688 3671 3692 +f 3695 3688 3692 +f 3695 3692 3693 +f 3652 3695 3693 +f 3667 3652 3693 +f 3667 3693 3671 +f 3705 3667 3671 +f 3705 3679 3667 +f 3679 3662 3667 +f 3667 3662 3636 +f 3636 3662 3663 +f 3637 3636 3663 +f 3635 3636 3637 +f 3635 3637 3691 +f 3635 3652 3636 +f 3674 3663 3662 +f 3679 3674 3662 +f 3700 3674 3679 +f 3694 3700 3679 +f 3681 3700 3694 +f 3681 3694 3673 +f 3668 3681 3673 +f 3668 3673 3633 +f 3690 3681 3668 +f 3712 3690 3668 +f 3712 3668 3632 +f 3710 3690 3712 +f 3711 3710 3712 +f 3711 3712 3714 +f 3713 3711 3714 +f 3713 3714 3716 +f 3716 3714 3665 +f 3714 3712 3665 +f 3710 3711 3713 +f 3710 3713 3717 +f 3710 3629 3690 +f 3629 3631 3690 +f 3629 3630 3631 +f 3631 3630 3704 +f 3631 3704 3682 +f 3681 3631 3682 +f 3682 3704 3654 +f 3682 3654 3664 +f 3687 3682 3664 +f 3687 3664 3696 +f 3674 3687 3696 +f 3700 3682 3687 +f 3664 3654 3655 +f 3704 3677 3654 +f 3654 3677 3638 +f 3677 3678 3638 +f 3677 3698 3678 +f 3678 3698 3641 +f 3678 3641 3639 +f 3669 3698 3677 +f 3698 3669 3642 +f 3669 3630 3642 +f 3704 3669 3677 +f 3630 3669 3704 +f 3630 3629 3706 +f 3629 3710 3706 +f 3690 3631 3681 +f 3673 3694 3705 +f 3673 3705 3670 +f 3681 3682 3700 +f 3700 3687 3674 +f 3694 3679 3705 +f 3652 3667 3636 +f 3695 3652 3635 +f 3695 3635 3647 +f 3695 3689 3688 +f 3689 3695 3646 +f 3689 3646 3660 +f 3692 3671 3693 +f 3688 3689 3659 +f 3670 3705 3671 +f 3633 3673 3670 +f 3632 3668 3633 +f 3712 3632 3665 +f 3716 3665 3686 +f 3717 3713 3716 +f 3710 3717 3706 +f 3630 3706 3642 +f 3698 3642 3641 +f 3639 3641 3644 +f 3638 3678 3639 +f 3654 3638 3655 +f 3664 3655 3709 +f 3696 3664 3709 +f 3674 3696 3663 +f 3637 3663 3691 +f 3675 3635 3691 +f 3647 3635 3675 +f 3646 3695 3647 +f 3660 3646 3680 +f 3659 3689 3660 +f 3672 3659 3699 +f 3666 3634 3699 +f 3685 3666 3697 +f 3715 3685 3653 +f 3645 3643 3653 +f 3707 3703 3701 +f 3661 3656 3701 +f 3656 3648 3657 +f 3708 3627 3702 +f 3649 3651 3657 +f 3651 3676 3683 +f 3683 3658 3684 +f 3640 3626 3684 +f 3628 3627 3708 +f 3626 3645 3627 + + +o Object.9 +v 145.755005 -64.583733 -0.050426 +v 146.200897 -64.550331 -0.050426 +v 145.609894 -64.624657 -3.300418 +v 146.251007 -64.554955 -3.300418 +v 146.966888 -63.440147 -4.550418 +v 146.386108 -63.312248 -4.550418 +v 146.088806 -68.796135 -4.550411 +v 145.497589 -68.731834 -4.550411 +v 146.088806 -68.796135 -4.750408 +v 145.718292 -66.356651 -4.678616 +v 145.808701 -67.484032 -4.706615 +v 144.669296 -66.408852 -4.743816 +v 144.424591 -68.235435 -4.750408 +v 146.351410 -66.426445 -4.615116 +v 146.510193 -66.290749 -4.615116 +v 146.376892 -66.506050 -4.696613 +v 146.862091 -64.760857 -3.300418 +v 147.506592 -63.689751 -4.550418 +v 147.518097 -65.788857 -4.683818 +v 147.409195 -66.045357 -3.750415 +v 146.469101 -65.783653 -4.615116 +v 146.200897 -67.541924 -0.050426 +v 145.568100 -67.127312 0.249577 +v 145.540802 -67.442421 -0.050426 +v 144.989197 -65.025932 -0.050426 +v 145.338806 -64.747139 -0.050426 +v 145.057297 -64.957146 -3.300418 +v 145.049591 -66.646141 0.249577 +v 144.892197 -66.135841 0.249577 +v 144.605591 -66.269737 -0.050426 +v 147.120392 -64.957146 -3.300418 +v 147.979996 -64.049644 -4.550418 +v 143.438995 -66.781853 -4.750415 +v 143.342804 -66.195045 -4.550418 +v 143.342804 -66.195045 -4.750415 +v 145.568100 -64.964928 0.249577 +v 143.375000 -65.601250 -4.550418 +v 144.803101 -66.099342 -3.750415 +v 145.888794 -66.172249 -3.750415 +v 145.639191 -66.291954 -4.637516 +v 148.364990 -64.502846 -4.550418 +v 146.459290 -65.689354 -4.712315 +v 147.534088 -65.644844 -3.300418 +v 146.636795 -64.649834 -0.050426 +v 148.643494 -65.028252 -4.550418 +v 143.992889 -67.826439 -4.750415 +v 146.198395 -65.819450 -3.750415 +v 146.172302 -66.338951 -3.750415 +v 145.962799 -65.846153 -3.750415 +v 145.815491 -64.592445 -4.707012 +v 145.842987 -65.596550 -4.637516 +v 145.780396 -64.487251 -4.747615 +v 146.267700 -67.232719 0.249577 +v 146.010895 -66.364754 -3.750415 +v 145.877808 -67.467842 -4.596912 +v 145.818909 -66.509346 -4.678616 +v 148.802597 -65.601250 -4.550418 +v 143.375000 -65.601250 -4.750415 +v 145.497589 -68.731834 -4.750408 +v 147.569092 -66.288857 -3.300418 +v 148.518494 -67.334236 -4.750415 +v 148.184799 -67.826439 -4.750415 +v 147.528107 -66.388649 -4.739117 +v 143.534088 -65.028252 -4.550418 +v 146.333405 -65.624748 -4.615116 +v 148.834808 -66.195045 -4.550418 +v 146.035309 -67.331337 -3.750415 +v 144.558701 -66.234047 -4.706615 +v 148.738602 -66.781853 -4.550418 +v 146.090302 -67.366341 -3.750415 +v 145.942902 -67.532127 -4.639019 +v 146.407410 -66.124046 -3.750415 +v 147.543091 -66.236351 -4.613712 +v 143.659195 -67.334236 -4.750415 +v 147.328201 -66.891151 -3.300418 +v 146.267700 -64.859535 0.249577 +v 147.355804 -66.110649 -3.750415 +v 148.518494 -67.334236 -4.550418 +v 143.534088 -65.028252 -4.750415 +v 147.641602 -66.168556 -4.714016 +v 148.184799 -67.826439 -4.550418 +v 143.812698 -64.502846 -4.550418 +v 144.643494 -65.644844 -3.300418 +v 146.996597 -67.240334 -3.300418 +v 147.752991 -68.235435 -4.550411 +v 146.381592 -65.962654 -3.750415 +v 148.738602 -66.781853 -4.750415 +v 146.718597 -67.407539 -3.300418 +v 147.243500 -68.541939 -4.550411 +v 145.049591 -65.446129 0.249577 +v 147.575500 -65.912453 -4.636318 +v 144.768402 -66.045357 -3.750415 +v 144.611603 -66.201744 -4.624912 +v 146.679993 -68.731834 -4.550411 +v 147.328201 -65.201134 -0.050426 +v 143.812698 -64.502846 -4.750415 +v 146.200897 -67.541939 -3.300418 +v 144.934097 -68.541939 -4.550411 +v 146.276703 -67.576241 -4.706615 +v 145.811096 -67.651833 -4.749813 +v 147.127991 -66.646141 0.249577 +v 147.285492 -66.135841 0.249577 +v 147.127991 -65.446129 0.249577 +v 145.597900 -65.816444 -4.615116 +v 145.770203 -65.968254 -3.750415 +v 144.650909 -65.766045 -4.706615 +v 148.834808 -66.195045 -4.750415 +v 146.386108 -63.312248 -4.750415 +v 146.966888 -63.440147 -4.750415 +v 144.577393 -65.880745 -4.682819 +v 147.506592 -63.689751 -4.750415 +v 144.685608 -66.321648 -4.694019 +v 147.618896 -65.858253 -4.706615 +v 147.979996 -64.049644 -4.750415 +v 144.197601 -64.049644 -4.550418 +v 147.024002 -64.873329 -0.050426 +v 148.364990 -64.502846 -4.750415 +v 145.667206 -65.673256 -4.736515 +v 144.737396 -65.395332 -0.050426 +v 148.643494 -65.028252 -4.750415 +v 148.802597 -65.601250 -4.750415 +v 146.331100 -64.608757 -4.671619 +v 146.035599 -64.760445 -3.750415 +v 145.890991 -64.604851 -4.598812 +v 146.159195 -64.795357 -3.750415 +v 144.197601 -64.049644 -4.750415 +v 146.272400 -64.527946 -4.695713 +v 146.423309 -67.506233 -4.738918 +v 145.153595 -67.218819 -0.050426 +v 144.670990 -63.689751 -4.550418 +v 147.752991 -68.235435 -4.750408 +v 144.934097 -68.541939 -4.750408 +v 144.424591 -68.235435 -4.550411 +v 147.243500 -68.541939 -4.750408 +v 146.679993 -68.731834 -4.750408 +v 144.670990 -63.689751 -4.750415 +v 145.210693 -63.440147 -4.550418 +v 147.588806 -66.046135 -0.050426 +v 147.522202 -66.488228 -0.050426 +v 146.322800 -67.453835 -4.640918 +v 144.737396 -66.696938 -0.050426 +v 144.608597 -66.288857 -3.300418 +v 144.849487 -66.891151 -3.300418 +v 143.992889 -67.826439 -4.550418 +v 145.916504 -64.415947 -4.747615 +v 144.605591 -65.822533 -0.050426 +v 145.210693 -63.440147 -4.750415 +v 147.328201 -66.891136 -0.050426 +v 145.791504 -63.312248 -4.550418 +v 143.438995 -66.781853 -4.550418 +v 145.791504 -63.312248 -4.750415 +v 147.024002 -67.218819 -0.050426 +v 145.181091 -67.240334 -3.300418 +v 147.522202 -65.604042 -0.050426 +v 145.459000 -67.407539 -3.300418 +v 146.636795 -67.442421 -0.050426 +v 146.609497 -67.127312 0.249577 +v 146.468994 -64.623848 -4.747615 +v 143.659195 -67.334236 -4.550418 +v 146.609497 -64.964928 0.249577 + +f 3718 3719 3720 +f 3743 3718 3720 +f 3744 3743 3720 +f 3744 3720 3854 +f 3847 3744 3854 +f 3847 3854 3853 +f 3843 3847 3853 +f 3769 3843 3853 +f 3769 3853 3864 +f 3862 3769 3864 +f 3862 3864 3868 +f 3862 3868 3825 +f 3844 3862 3825 +f 3826 3844 3825 +f 3722 3826 3825 +f 3723 3722 3825 +f 3721 3722 3723 +f 3720 3721 3723 +f 3866 3720 3723 +f 3866 3723 3868 +f 3721 3734 3722 +f 3734 3735 3722 +f 3734 3748 3735 +f 3748 3749 3735 +f 3735 3749 3828 +f 3735 3828 3826 +f 3749 3831 3828 +f 3831 3875 3828 +f 3875 3844 3828 +f 3875 3839 3844 +f 3842 3844 3839 +f 3764 3842 3839 +f 3782 3764 3839 +f 3782 3839 3759 +f 3759 3738 3782 +f 3736 3738 3759 +f 3736 3759 3831 +f 3830 3736 3831 +f 3834 3830 3831 +f 3758 3834 3831 +f 3758 3762 3834 +f 3762 3837 3834 +f 3762 3774 3837 +f 3774 3838 3837 +f 3838 3830 3837 +f 3824 3830 3838 +f 3783 3824 3838 +f 3783 3786 3824 +f 3786 3804 3824 +f 3804 3797 3824 +f 3804 3780 3797 +f 3790 3797 3780 +f 3733 3790 3780 +f 3845 3733 3780 +f 3779 3845 3780 +f 3778 3779 3780 +f 3798 3779 3778 +f 3795 3798 3778 +f 3795 3778 3804 +f 3792 3798 3795 +f 3792 3795 3786 +f 3777 3792 3786 +f 3856 3792 3777 +f 3855 3856 3777 +f 3855 3777 3760 +f 3871 3855 3760 +f 3812 3871 3760 +f 3812 3760 3748 +f 3833 3812 3748 +f 3877 3812 3833 +f 3877 3833 3761 +f 3877 3761 3719 +f 3793 3877 3719 +f 3818 3877 3793 +f 3874 3818 3793 +f 3770 3874 3793 +f 3740 3770 3793 +f 3753 3740 3793 +f 3753 3793 3718 +f 3807 3740 3753 +f 3807 3753 3743 +f 3742 3807 3743 +f 3836 3807 3742 +f 3836 3742 3800 +f 3863 3836 3800 +f 3859 3863 3800 +f 3859 3800 3754 +f 3751 3859 3754 +f 3751 3754 3752 +f 3750 3751 3752 +f 3785 3750 3752 +f 3785 3752 3827 +f 3810 3785 3827 +f 3809 3810 3827 +f 3823 3809 3827 +f 3823 3827 3796 +f 3823 3796 3813 +f 3769 3823 3813 +f 3835 3823 3769 +f 3769 3768 3835 +f 3768 3821 3835 +f 3768 3766 3821 +f 3766 3822 3821 +f 3821 3822 3823 +f 3756 3822 3766 +f 3771 3756 3766 +f 3765 3771 3766 +f 3764 3765 3766 +f 3803 3765 3764 +f 3803 3764 3738 +f 3737 3803 3738 +f 3737 3794 3803 +f 3794 3789 3803 +f 3789 3794 3790 +f 3789 3790 3732 +f 3765 3789 3732 +f 3765 3732 3731 +f 3787 3765 3731 +f 3857 3787 3731 +f 3857 3731 3733 +f 3787 3857 3816 +f 3787 3816 3788 +f 3787 3788 3772 +f 3784 3787 3772 +f 3771 3784 3772 +f 3771 3772 3773 +f 3771 3773 3727 +f 3773 3728 3727 +f 3727 3728 3729 +f 3729 3757 3727 +f 3757 3756 3727 +f 3755 3756 3757 +f 3755 3757 3829 +f 3810 3755 3829 +f 3810 3829 3729 +f 3756 3755 3809 +f 3829 3757 3729 +f 3728 3730 3729 +f 3730 3763 3729 +f 3729 3763 3785 +f 3763 3791 3785 +f 3763 3876 3791 +f 3876 3867 3791 +f 3791 3867 3750 +f 3876 3860 3867 +f 3860 3859 3867 +f 3860 3858 3859 +f 3858 3747 3859 +f 3858 3745 3747 +f 3745 3746 3747 +f 3747 3746 3863 +f 3746 3745 3807 +f 3846 3745 3858 +f 3740 3745 3846 +f 3741 3740 3846 +f 3741 3846 3872 +f 3814 3741 3872 +f 3814 3872 3815 +f 3725 3814 3815 +f 3725 3815 3776 +f 3726 3725 3776 +f 3726 3776 3817 +f 3852 3726 3817 +f 3852 3817 3816 +f 3851 3852 3816 +f 3848 3851 3816 +f 3779 3848 3816 +f 3802 3848 3779 +f 3802 3806 3848 +f 3805 3806 3802 +f 3801 3805 3802 +f 3801 3802 3798 +f 3873 3805 3801 +f 3869 3873 3801 +f 3865 3869 3801 +f 3865 3801 3792 +f 3874 3869 3865 +f 3874 3873 3869 +f 3873 3814 3805 +f 3805 3814 3811 +f 3814 3724 3811 +f 3811 3724 3852 +f 3873 3739 3814 +f 3770 3739 3873 +f 3805 3811 3806 +f 3806 3811 3851 +f 3806 3851 3848 +f 3811 3852 3851 +f 3724 3726 3852 +f 3776 3849 3817 +f 3849 3730 3817 +f 3849 3850 3730 +f 3850 3861 3730 +f 3850 3860 3861 +f 3870 3860 3850 +f 3815 3870 3850 +f 3870 3846 3860 +f 3815 3850 3849 +f 3724 3725 3726 +f 3776 3815 3849 +f 3724 3814 3725 +f 3872 3870 3815 +f 3739 3741 3814 +f 3872 3846 3870 +f 3739 3740 3741 +f 3846 3858 3860 +f 3861 3860 3876 +f 3861 3876 3763 +f 3730 3861 3763 +f 3817 3730 3728 +f 3728 3788 3817 +f 3773 3772 3728 +f 3728 3772 3788 +f 3788 3816 3817 +f 3816 3857 3845 +f 3787 3784 3765 +f 3731 3732 3733 +f 3794 3737 3790 +f 3790 3737 3808 +f 3808 3737 3736 +f 3789 3765 3803 +f 3765 3784 3771 +f 3756 3771 3727 +f 3822 3756 3809 +f 3840 3766 3768 +f 3840 3768 3841 +f 3844 3840 3841 +f 3844 3841 3767 +f 3841 3768 3767 +f 3842 3766 3840 +f 3767 3768 3769 +f 3821 3823 3835 +f 3796 3799 3813 +f 3799 3832 3813 +f 3813 3832 3843 +f 3799 3800 3832 +f 3800 3744 3832 +f 3781 3800 3799 +f 3781 3799 3796 +f 3775 3781 3796 +f 3754 3781 3775 +f 3827 3775 3796 +f 3822 3809 3823 +f 3809 3755 3810 +f 3810 3729 3785 +f 3827 3752 3775 +f 3791 3750 3785 +f 3867 3751 3750 +f 3752 3754 3775 +f 3867 3859 3751 +f 3754 3800 3781 +f 3747 3863 3859 +f 3863 3746 3836 +f 3800 3742 3744 +f 3746 3807 3836 +f 3745 3740 3807 +f 3770 3740 3739 +f 3874 3770 3873 +f 3818 3874 3865 +f 3818 3865 3856 +f 3819 3818 3856 +f 3818 3819 3820 +f 3820 3819 3871 +f 3818 3820 3877 +f 3719 3761 3734 +f 3761 3833 3734 +f 3877 3820 3812 +f 3748 3760 3758 +f 3820 3871 3812 +f 3819 3855 3871 +f 3760 3777 3774 +f 3777 3783 3774 +f 3819 3856 3855 +f 3856 3865 3792 +f 3792 3801 3798 +f 3798 3802 3779 +f 3779 3816 3845 +f 3857 3733 3845 +f 3732 3790 3733 +f 3790 3808 3797 +f 3797 3808 3830 +f 3804 3778 3780 +f 3786 3795 3804 +f 3777 3786 3783 +f 3824 3797 3830 +f 3774 3783 3838 +f 3760 3774 3762 +f 3760 3762 3758 +f 3837 3830 3834 +f 3808 3736 3830 +f 3736 3737 3738 +f 3764 3782 3738 +f 3764 3766 3842 +f 3842 3840 3844 +f 3759 3839 3875 +f 3759 3875 3831 +f 3749 3758 3831 +f 3748 3758 3749 +f 3833 3748 3734 +f 3719 3734 3721 +f 3722 3735 3826 +f 3828 3844 3826 +f 3844 3767 3862 +f 3868 3723 3825 +f 3864 3866 3868 +f 3854 3866 3864 +f 3767 3769 3862 +f 3769 3813 3843 +f 3832 3847 3843 +f 3853 3854 3864 +f 3832 3744 3847 +f 3854 3720 3866 +f 3742 3743 3744 +f 3743 3753 3718 +f 3719 3721 3720 +f 3718 3793 3719 + + +o Object.10 +v -145.708496 60.216255 -4.615268 +v -145.979187 60.180401 -3.750568 +v -145.812897 60.311516 -4.615268 +v -146.567810 61.375202 -3.300571 +v -145.609894 61.375202 -3.300571 +v -145.791504 62.687595 -4.550571 +v -144.670990 62.310078 -4.550571 +v -148.802612 60.398617 -4.550571 +v -147.485107 60.501732 -3.300571 +v -148.364990 61.496986 -4.550571 +v -146.679993 57.268009 -4.750560 +v -147.243500 57.457890 -4.550563 +v -147.752991 57.764462 -4.750560 +v -145.999115 61.150375 0.249424 +v -145.488800 60.992954 0.249424 +v -145.755005 61.416115 -0.050579 +v -147.374512 59.900532 -3.750568 +v -146.538391 59.707897 -4.637661 +v -147.530090 59.755947 -4.598957 +v -147.120392 61.042709 -3.300571 +v -144.737396 59.302898 -0.050571 +v -145.338806 58.654690 -0.050571 +v -144.695313 59.398510 -3.300563 +v -146.342194 59.567558 -4.596263 +v -146.246796 58.402290 -4.715663 +v -144.902191 60.132576 0.249424 +v -144.605591 60.177284 -0.050579 +v -145.097290 59.277748 0.249432 +v -144.424591 57.764462 -4.750560 +v -145.497589 57.268009 -4.750560 +v -145.699310 59.553387 -4.736660 +v -143.812714 61.496986 -4.550571 +v -148.184814 58.173412 -4.550563 +v -147.506592 62.310078 -4.550571 +v -145.057312 61.042709 -3.300571 +v -146.018402 61.204491 -3.750568 +v -146.189514 60.198181 -3.750568 +v -146.334595 60.403305 -4.637669 +v -147.572113 60.177284 -0.050579 +v -147.261597 60.888954 -0.050579 +v -148.834808 59.804836 -4.750560 +v -148.643494 60.971596 -4.750568 +v -146.088806 58.453724 -3.300563 +v -146.739594 58.602280 -0.050571 +v -146.718597 58.592365 -3.300563 +v -144.639709 59.647316 -4.725559 +v -143.375000 60.398617 -4.550571 +v -147.492004 59.678238 -4.694164 +v -146.190704 59.711761 -3.750560 +v -146.088806 58.453728 -0.050571 +v -144.692505 60.501732 -3.300571 +v -147.569092 59.711052 -3.300563 +v -144.838013 59.883350 -3.750560 +v -147.618896 59.765816 -4.706760 +v -144.591003 60.034931 -3.300571 +v -147.387909 59.203728 -0.050571 +v -147.288788 59.953724 0.249424 +v -146.530914 61.387085 -0.050579 +v -143.438995 59.218021 -4.550563 +v -144.596497 60.141148 -4.671772 +v -147.170013 60.474384 0.249424 +v -146.688812 60.992954 0.249424 +v -146.966888 62.559765 -4.750568 +v -146.005310 59.660889 -3.750560 +v -144.575012 59.802326 -4.681858 +v -145.826294 59.573418 -4.615261 +v -143.659088 58.665600 -4.750560 +v -143.992889 58.173412 -4.550563 +v -147.232117 58.982643 -3.300563 +v -146.688812 58.914497 0.249432 +v -145.488800 58.914497 0.249432 +v -148.738586 59.218021 -4.550563 +v -148.518494 58.665600 -4.750560 +v -146.088806 57.203720 -4.750560 +v -146.088806 57.203720 -4.550563 +v -146.088013 58.633354 -3.750560 +v -144.945587 58.982643 -3.300563 +v -145.766296 58.488792 -3.300563 +v -144.934113 57.457890 -4.550563 +v -144.989197 60.973984 -0.050579 +v -147.524292 60.168427 -4.629169 +v -147.980011 61.950207 -4.750568 +v -145.497589 57.268009 -4.550563 +v -145.929108 58.461750 -4.655560 +v -145.999115 58.757088 0.249432 +v -143.438995 59.218021 -4.750560 +v -145.820313 61.545067 -4.747768 +v -146.276703 61.483788 -4.706768 +v -145.791504 62.687595 -4.750568 +v -144.670990 62.310078 -4.750568 +v -143.812714 61.496986 -4.750568 +v -145.870209 61.353848 -4.592868 +v -143.375000 60.398617 -4.750568 +v -147.511108 60.333927 -4.747768 +v -147.080292 59.277748 0.249432 +v -146.551910 60.223618 -4.678768 + +f 3878 3879 3880 +f 3937 3878 3880 +f 3937 3880 3968 +f 3970 3937 3968 +f 3924 3970 3968 +f 3909 3924 3968 +f 3909 3968 3967 +f 3884 3909 3967 +f 3884 3967 3966 +f 3883 3884 3966 +f 3940 3883 3966 +f 3965 3940 3966 +f 3964 3965 3966 +f 3969 3965 3964 +f 3880 3969 3964 +f 3969 3913 3965 +f 3913 3915 3965 +f 3915 3971 3965 +f 3965 3971 3919 +f 3965 3919 3959 +f 3919 3887 3959 +f 3887 3911 3959 +f 3911 3940 3959 +f 3911 3881 3940 +f 3897 3881 3911 +f 3897 3917 3881 +f 3917 3935 3881 +f 3935 3882 3881 +f 3881 3882 3883 +f 3935 3893 3882 +f 3893 3957 3882 +f 3957 3912 3882 +f 3882 3912 3909 +f 3957 3904 3912 +f 3904 3928 3912 +f 3912 3928 3924 +f 3928 3932 3924 +f 3932 3936 3924 +f 3932 3900 3936 +f 3900 3945 3936 +f 3936 3945 3963 +f 3936 3963 3970 +f 3945 3944 3963 +f 3963 3944 3942 +f 3963 3942 3937 +f 3942 3930 3937 +f 3941 3930 3942 +f 3941 3942 3943 +f 3953 3941 3943 +f 3961 3953 3943 +f 3961 3943 3908 +f 3907 3961 3908 +f 3906 3907 3908 +f 3906 3908 3923 +f 3944 3906 3923 +f 3956 3907 3906 +f 3945 3956 3906 +f 3955 3956 3945 +f 3954 3955 3945 +f 3899 3955 3954 +f 3899 3954 3900 +f 3898 3899 3900 +f 3905 3899 3898 +f 3903 3905 3898 +f 3903 3898 3904 +f 3904 3898 3932 +f 3934 3905 3903 +f 3934 3903 3892 +f 3938 3934 3892 +f 3938 3892 3939 +f 3938 3939 3917 +f 3916 3938 3917 +f 3939 3892 3891 +f 3939 3891 3935 +f 3891 3892 3893 +f 3934 3938 3916 +f 3933 3934 3916 +f 3933 3916 3929 +f 3946 3933 3929 +f 3946 3929 3949 +f 3910 3946 3949 +f 3910 3949 3950 +f 3890 3910 3950 +f 3890 3950 3931 +f 3925 3890 3931 +f 3931 3896 3925 +f 3896 3895 3925 +f 3895 3902 3925 +f 3901 3902 3895 +f 3926 3901 3895 +f 3894 3926 3895 +f 3914 3926 3894 +f 3914 3894 3958 +f 3973 3914 3958 +f 3973 3958 3971 +f 3958 3918 3971 +f 3931 3918 3958 +f 3914 3973 3915 +f 3894 3896 3958 +f 3941 3926 3914 +f 3879 3941 3914 +f 3879 3914 3913 +f 3926 3902 3901 +f 3926 3953 3902 +f 3894 3895 3896 +f 3896 3931 3958 +f 3902 3890 3925 +f 3888 3890 3902 +f 3951 3888 3902 +f 3951 3902 3961 +f 3951 3952 3888 +f 3952 3889 3888 +f 3952 3922 3889 +f 3922 3946 3889 +f 3922 3921 3946 +f 3920 3921 3922 +f 3927 3921 3920 +f 3927 3920 3955 +f 3955 3920 3952 +f 3955 3952 3960 +f 3960 3952 3907 +f 3927 3947 3921 +f 3947 3972 3921 +f 3921 3972 3933 +f 3972 3947 3905 +f 3947 3948 3905 +f 3947 3962 3948 +f 3948 3962 3927 +f 3948 3927 3899 +f 3962 3947 3927 +f 3920 3922 3952 +f 3952 3951 3907 +f 3888 3889 3890 +f 3931 3950 3918 +f 3889 3910 3890 +f 3950 3949 3918 +f 3949 3885 3918 +f 3918 3885 3919 +f 3889 3946 3910 +f 3949 3929 3885 +f 3929 3886 3885 +f 3885 3886 3887 +f 3886 3897 3887 +f 3886 3916 3897 +f 3921 3933 3946 +f 3929 3916 3886 +f 3972 3934 3933 +f 3892 3903 3957 +f 3972 3905 3934 +f 3905 3948 3899 +f 3899 3927 3955 +f 3955 3960 3956 +f 3956 3960 3907 +f 3907 3951 3961 +f 3943 3923 3908 +f 3953 3961 3902 +f 3941 3953 3926 +f 3942 3923 3943 +f 3930 3941 3879 +f 3944 3923 3942 +f 3945 3906 3944 +f 3900 3954 3945 +f 3898 3900 3932 +f 3904 3932 3928 +f 3903 3904 3957 +f 3892 3957 3893 +f 3891 3893 3935 +f 3917 3939 3935 +f 3916 3917 3897 +f 3887 3897 3911 +f 3885 3887 3919 +f 3971 3918 3919 +f 3915 3973 3971 +f 3913 3914 3915 +f 3879 3913 3969 +f 3965 3959 3940 +f 3940 3881 3883 +f 3882 3884 3883 +f 3967 3964 3966 +f 3882 3909 3884 +f 3968 3964 3967 +f 3912 3924 3909 +f 3924 3936 3970 +f 3963 3937 3970 +f 3880 3964 3968 +f 3937 3930 3878 +f 3880 3879 3969 +f 3930 3879 3878 + + +o Object.11 +v -147.526306 -2.803909 -4.671695 +v -147.581116 -3.233604 -4.671695 +v -147.640198 -2.888214 -4.715595 +v -146.968506 -2.230011 0.249501 +v -145.097290 -2.370209 0.249501 +v -145.650391 -1.929214 0.249501 +v -148.834808 -3.195107 -4.750492 +v -148.802612 -2.601311 -4.750492 +v -146.018402 -1.795410 -3.750492 +v -145.966400 -1.519508 -4.692195 +v -145.823608 -1.578209 -4.707394 +v -146.150696 -1.774010 -3.750492 +v -146.679993 -5.731903 -4.750484 +v -147.243500 -5.542000 -4.750484 +v -146.366608 -4.651901 -4.749881 +v -146.355804 -1.876312 0.249501 +v -146.331116 -4.483604 -4.671688 +v -146.268311 -4.522606 -4.643688 +v -144.588806 -3.046204 -3.300495 +v -143.482788 -3.924301 -4.550495 +v -143.354889 -3.343506 -4.550495 +v -146.966888 -0.440208 -4.750492 +v -146.679993 -0.360512 -4.550495 +v -146.386108 -0.312309 -4.750492 +v -148.643494 -4.064102 -4.550495 +v -147.588806 -3.046204 -3.300495 +v -148.802612 -3.491104 -4.550495 +v -143.342804 -3.195107 -4.750492 +v -144.458588 -2.873909 -4.747692 +v -143.375000 -2.601311 -4.750492 +v -147.752991 -5.235504 -4.750484 +v -146.468994 -4.468506 -4.747684 +v -147.510315 -3.525200 -3.300495 +v -148.738586 -3.781906 -4.750492 +v -147.170013 -3.566902 0.249501 +v -145.097290 -3.722206 0.249501 +v -144.888794 -3.046204 0.249501 +v -147.616608 -3.401901 -4.749889 +v -145.820313 -1.454910 -4.747692 +v -145.497589 -5.731903 -4.750484 +v -145.900909 -4.576302 -4.706684 +v -148.364990 -1.502914 -4.750492 +v -148.184814 -1.265907 -4.550495 +v -147.980011 -1.049713 -4.750492 +v -144.667297 -3.525200 -3.300495 +v -147.275391 -2.867409 0.249501 +v -143.732513 -4.464005 -4.550488 +v -144.575012 -3.197601 -4.681789 +v -144.596497 -2.858810 -4.671695 +v -148.834808 -2.897308 -4.550495 +v -148.738586 -2.310509 -4.550495 +v -148.364990 -4.589500 -4.550488 +v -146.579712 -2.816513 -4.615192 +v -147.511108 -2.666008 -4.747692 +v -145.979187 -2.819511 -3.750492 +v -144.727509 -2.416412 -3.300495 +v -143.354889 -2.748909 -4.550495 +v -143.482788 -2.168114 -4.550495 +v -146.399292 -2.675713 -4.678691 +v -147.506592 -0.689812 -4.750492 +v -147.243500 -0.550407 -4.550495 +v -143.992889 -4.826500 -4.750484 +v -144.424591 -5.235504 -4.750484 +v -145.742401 -4.462700 -4.738781 +v -146.189514 -2.801712 -3.750492 +v -146.334595 -2.596611 -4.637592 +v -147.374512 -3.099403 -3.750492 +v -146.333313 -3.146904 -3.750492 +v -146.538391 -3.292000 -4.637592 +v -146.362091 -1.592514 -4.707088 +v -147.177795 -4.077705 -3.300495 +v -145.800690 -3.506104 -4.696690 +v -144.570313 -3.347603 -4.739292 +v -144.092316 -4.937401 -4.550488 +v -147.980011 -5.042702 -4.550488 +v -146.142395 -4.331406 -3.750484 +v -146.088013 -4.366600 -3.750484 +v -144.999786 -4.077705 -3.300495 +v -147.450195 -2.416412 -3.300495 +v -144.570313 -2.704910 -4.747692 +v -143.534088 -2.028313 -4.750492 +v -148.643494 -2.028313 -4.750492 +v -144.665192 -3.260803 -4.612094 +v -146.088806 -5.796204 -4.750484 +v -145.730988 -3.322105 -4.615192 +v -144.545502 -5.322304 -4.550488 +v -145.903290 -4.510902 -4.629086 +v -148.518494 -4.334305 -4.750484 +v -147.506592 -5.402603 -4.550488 +v -146.166687 -3.364799 -3.750492 +v -146.459290 -3.356705 -4.678691 +v -145.858307 -3.529305 -4.615192 +v -145.976715 -1.550407 -0.050502 +v -146.636810 -4.442505 -3.300487 +v -145.795990 -2.962700 -3.750492 +v -145.718292 -2.689407 -4.712390 +v -145.070892 -5.600906 -4.550488 +v -146.342010 -3.470604 -4.637592 +v -148.518494 -1.758110 -4.550495 +v -146.966888 -5.652206 -4.550488 +v -147.522186 -3.488304 -0.050502 +v -147.572113 -2.822609 -0.050502 +v -145.540802 -4.442505 -3.300487 +v -145.117706 -1.903008 -3.300495 +v -143.732513 -1.628410 -4.550495 +v -146.005310 -3.339005 -3.750492 +v -146.260498 -1.557709 -4.656894 +v -146.444489 -1.518509 -4.749889 +v -146.261108 -1.416008 -4.747692 +v -146.407410 -2.968300 -3.750492 +v -145.643890 -5.760002 -4.550488 +v -148.184814 -4.826500 -4.750484 +v -146.088806 -5.796204 -4.550488 +v -147.752991 -0.856911 -4.550495 +v -144.768494 -3.045403 -3.750492 +v -145.708496 -2.783714 -4.615192 +v -143.812714 -1.502914 -4.750492 +v -146.007599 -4.544006 -3.300487 +v -146.422607 -1.583809 -0.050502 +v -144.197601 -1.049713 -4.750492 +v -147.409210 -3.045403 -3.750492 +v -145.844208 -2.624809 -4.615192 +v -146.237701 -0.300209 -4.550495 +v -145.791504 -0.312309 -4.750492 +v -145.643890 -0.332413 -4.550495 +v -145.650391 -4.163300 0.249508 +v -145.210693 -0.440208 -4.750492 +v -145.070892 -0.491508 -4.550495 +v -144.934113 -5.542000 -4.750484 +v -144.545502 -0.770111 -4.550495 +v -145.540802 -1.649910 -0.050502 +v -144.670990 -0.689812 -4.750492 +v -144.092316 -1.155014 -4.550495 +v -144.821198 -3.110504 -3.750492 +v -143.438995 -3.781906 -4.750492 +v -147.059906 -1.903008 -3.300495 +v -145.891113 -3.173805 -3.750492 +v -146.838806 -1.747208 -0.050502 +v -143.659088 -4.334305 -4.750484 +v -145.153595 -1.873512 -0.050502 +v -147.188416 -2.025909 -0.050502 +v -144.588806 -3.046204 -0.050502 +v -144.655396 -2.604111 -0.050502 +v -144.655396 -3.488304 -0.050502 +v -145.533600 -1.652710 -3.300495 +v -147.440308 -2.395409 -0.050502 +v -144.849396 -3.891205 -0.050502 +v -147.328217 -3.891205 -0.050502 +v -147.024109 -4.218903 -0.050495 +v -145.153595 -4.218903 -0.050495 +v -146.688812 -4.085403 0.249501 +v -144.849396 -2.201210 -0.050502 +v -146.636810 -4.442505 -0.050495 +v -145.540802 -4.442505 -0.050495 +v -145.976715 -4.542000 -0.050495 +v -145.976715 -1.550407 -3.300495 +v -146.331512 -1.566010 -3.300495 +v -145.999115 -4.242805 0.249508 + +f 3974 3975 3976 +f 3974 3976 4027 +f 4026 3974 4027 +f 4032 4026 4027 +f 4032 4027 4081 +f 4043 4032 4081 +f 4080 4043 4081 +f 4080 4081 4082 +f 3983 4080 4082 +f 3983 4082 4012 +f 3984 3983 4012 +f 3984 4012 4100 +f 4105 3984 4100 +f 4103 4105 4100 +f 4101 4103 4100 +f 4098 4101 4100 +f 4098 4100 4097 +f 4096 4098 4097 +f 4096 4097 3997 +f 3996 4096 3997 +f 3995 3996 3997 +f 4082 3995 3997 +f 4034 3996 3995 +f 4033 4034 3995 +f 4081 4033 3995 +f 4081 4017 4033 +f 4017 4087 4033 +f 4016 4087 4017 +f 4015 4016 4017 +f 4072 4016 4015 +f 4055 4072 4015 +f 3976 4055 4015 +f 3976 3981 4055 +f 3981 4024 4055 +f 4023 4024 3981 +f 3980 4023 3981 +f 4000 4023 3980 +f 4007 4000 3980 +f 4011 4007 3980 +f 4011 3980 3976 +f 4061 4007 4011 +f 4085 4061 4011 +f 4005 4085 4011 +f 4011 4064 4005 +f 4071 4005 4064 +f 4063 4071 4064 +f 4041 4063 4064 +f 4042 4041 4064 +f 4040 4041 4042 +f 4040 4042 3975 +f 4094 4040 3975 +f 3975 4042 4011 +f 4041 4040 4094 +f 4083 4041 4094 +f 4083 4094 3974 +f 4110 4041 4083 +f 4110 4083 4038 +f 4068 4110 4038 +f 4068 4038 4028 +f 4068 4028 4069 +f 4089 4068 4069 +f 4053 4089 4069 +f 4053 4069 4105 +f 4093 4053 4105 +f 4106 4093 4105 +f 4106 4078 4093 +f 4078 4090 4093 +f 4078 4054 4090 +f 4054 4053 4090 +f 4002 4053 4054 +f 4003 4002 4054 +f 4031 4003 4054 +f 4031 4030 4003 +f 4030 4001 4003 +f 4030 3994 4001 +f 3994 4108 4001 +f 4108 4021 4001 +f 4001 4021 4002 +f 4021 4022 4002 +f 4021 4088 4022 +f 4022 4088 4089 +f 4107 4088 4021 +f 4056 4107 4021 +f 4056 4021 4046 +f 4056 4046 4058 +f 4110 4056 4058 +f 4079 4110 4058 +f 4065 4079 4058 +f 4065 4058 4045 +f 4065 4045 4060 +f 4060 4050 4065 +f 4050 4060 3991 +f 4049 4050 3991 +f 3990 4049 3991 +f 3990 3991 3988 +f 3990 3988 4005 +f 3988 4004 4005 +f 3987 4004 3988 +f 3986 3987 3988 +f 4057 3986 3988 +f 4013 4057 3988 +f 4013 3988 4014 +f 4013 4014 4037 +f 4102 4013 4037 +f 4036 4102 4037 +f 4035 4036 4037 +f 4035 4037 4046 +f 4112 4035 4046 +f 4108 4112 4046 +f 3993 4112 4108 +f 3993 4020 4112 +f 4018 4020 3993 +f 3992 4018 3993 +f 3992 3993 3994 +f 4117 4018 3992 +f 4115 4117 3992 +f 4115 3992 4029 +f 4116 4115 4029 +f 4125 4116 4029 +f 4125 4029 4077 +f 4113 4125 4077 +f 4113 4077 4118 +f 4104 4113 4118 +f 4104 4118 4129 +f 4066 4104 4129 +f 4066 4129 4130 +f 4092 4066 4130 +f 4109 4092 4130 +f 4109 4130 3996 +f 4111 4092 4109 +f 4114 4111 4109 +f 4052 4114 4109 +f 4052 4109 4016 +f 4119 4114 4052 +f 3999 4119 4052 +f 3999 4052 4024 +f 4024 4052 4072 +f 4075 4119 3999 +f 4074 4075 3999 +f 4006 4074 3999 +f 4006 3999 3998 +f 4025 4006 3998 +f 4025 3998 4061 +f 4044 4006 4025 +f 4048 4044 4025 +f 4048 4025 4085 +f 4004 4048 4085 +f 4062 4048 4004 +f 4062 4044 4048 +f 4067 4044 4062 +f 4073 4067 4062 +f 4073 4062 3987 +f 4086 4067 4073 +f 4086 4073 3986 +f 4091 4067 4086 +f 4091 4086 4084 +f 4076 4091 4084 +f 4076 4084 4070 +f 4051 4076 4070 +f 4051 4070 4059 +f 4051 4059 4047 +f 4018 4051 4047 +f 4120 4051 4018 +f 4120 4123 4051 +f 4123 4127 4051 +f 4099 4127 4123 +f 4099 4131 4127 +f 4131 4128 4127 +f 4127 4128 4091 +f 4128 4131 4126 +f 4128 4126 4067 +f 4131 4124 4126 +f 4126 4124 4122 +f 4126 4122 4044 +f 4122 4121 4044 +f 4122 4008 4121 +f 4121 4008 4074 +f 4008 4019 4074 +f 4019 4008 4010 +f 4019 4010 3978 +f 3977 4019 3978 +f 3977 3978 3979 +f 3989 3977 3979 +f 3989 3979 4066 +f 3977 3989 4114 +f 3979 3978 4113 +f 4019 3977 4075 +f 3978 4010 4125 +f 4008 4009 4010 +f 4010 4009 4115 +f 4099 4009 4008 +f 4124 4099 4008 +f 4009 4099 4120 +f 4009 4120 4117 +f 4124 4008 4122 +f 4124 4131 4099 +f 4099 4123 4120 +f 4047 4059 4036 +f 4059 4070 4102 +f 4127 4076 4051 +f 4070 4084 4013 +f 4127 4091 4076 +f 4084 4086 4013 +f 4091 4128 4067 +f 4067 4126 4044 +f 4044 4121 4006 +f 3998 3999 4000 +f 4121 4074 4006 +f 4074 4019 4075 +f 4075 3977 4119 +f 4119 3977 4114 +f 4114 3989 4111 +f 4111 3989 4092 +f 4092 3989 4066 +f 4130 4129 4096 +f 3979 4104 4066 +f 4129 4118 4098 +f 3979 4113 4104 +f 4118 4077 4106 +f 4118 4106 4103 +f 3978 4125 4113 +f 4077 4029 4078 +f 4029 4031 4078 +f 4010 4116 4125 +f 4010 4115 4116 +f 4029 3992 4030 +f 4009 4117 4115 +f 4117 4120 4018 +f 4018 4047 4020 +f 4020 4047 4035 +f 4020 4035 4112 +f 4037 4045 4046 +f 4047 4036 4035 +f 4059 4102 4036 +f 4070 4013 4102 +f 4060 4037 4014 +f 4086 4057 4013 +f 4057 4086 3986 +f 3986 4073 3987 +f 3987 4062 4004 +f 3991 4014 3988 +f 4063 4049 3990 +f 4079 4049 4063 +f 4050 4049 4079 +f 4060 4014 3991 +f 4060 4045 4037 +f 4050 4079 4065 +f 4110 4079 4063 +f 4058 4046 4045 +f 4110 4107 4056 +f 4088 4107 4068 +f 4108 4046 4021 +f 3994 3993 4108 +f 3992 3994 4030 +f 4029 4030 4031 +f 4001 4002 4003 +f 4002 4022 4053 +f 4078 4031 4054 +f 4077 4078 4106 +f 4090 4053 4093 +f 4022 4089 4053 +f 4088 4068 4089 +f 4028 4095 4069 +f 4095 3984 4069 +f 4095 4028 3984 +f 4028 3982 3984 +f 4028 4038 3982 +f 3982 4038 3985 +f 3982 3985 3983 +f 3985 4038 4039 +f 3985 4039 4043 +f 4039 4038 4032 +f 4107 4110 4068 +f 4038 4083 4032 +f 4110 4063 4041 +f 4063 3990 4071 +f 4071 3990 4005 +f 4011 4042 4064 +f 4004 4085 4005 +f 4085 4025 4061 +f 4061 3998 4007 +f 3998 4000 4007 +f 4000 3999 4023 +f 4023 3999 4024 +f 3976 3980 3981 +f 4024 4072 4055 +f 4072 4052 4016 +f 4016 4109 4087 +f 4087 4109 4034 +f 4081 4015 4017 +f 4087 4034 4033 +f 4034 4109 3996 +f 3996 4130 4096 +f 4097 4082 3997 +f 4129 4098 4096 +f 4118 4101 4098 +f 4118 4103 4101 +f 4103 4106 4105 +f 4069 3984 4105 +f 4100 4012 4097 +f 3982 3983 3984 +f 4012 4082 4097 +f 3983 3985 4080 +f 4082 4081 3995 +f 4080 3985 4043 +f 4043 4039 4032 +f 4081 4027 4015 +f 4083 4026 4032 +f 4026 4083 3974 +f 4027 3976 4015 +f 3976 3975 4011 +f 4094 3975 3974 + + +o Object.12 +v -146.261108 -64.415947 -4.747615 +v -146.386108 -63.312248 -4.750415 +v -145.791504 -63.312248 -4.750415 +v -148.518494 -67.334236 -4.750415 +v -148.738586 -66.781853 -4.550418 +v -148.738586 -66.781853 -4.750415 +v -146.088806 -64.546150 -3.300418 +v -145.210693 -63.440147 -4.550418 +v -145.791504 -63.312248 -4.550418 +v -145.901398 -67.538429 -4.671619 +v -145.742401 -67.462639 -4.738712 +v -145.916504 -67.676338 -4.747615 +v -147.235504 -66.399834 0.249577 +v -147.235504 -65.692436 0.249577 +v -147.572113 -65.822533 -0.050426 +v -145.437988 -64.694649 -3.300418 +v -145.800690 -66.506050 -4.696613 +v -144.620392 -66.311455 -4.707515 +v -148.834808 -66.195045 -4.550418 +v -144.670990 -63.689751 -4.550418 +v -147.188416 -65.025932 -0.050426 +v -146.968506 -65.229927 0.249577 +v -146.838806 -64.747139 -0.050426 +v -145.891113 -66.173744 -3.750415 +v -145.730988 -66.322044 -4.615116 +v -143.992889 -67.826439 -4.750415 +v -144.838013 -66.116554 -3.750415 +v -144.197601 -64.049644 -4.550418 +v -148.834808 -66.195045 -4.750415 +v -146.150696 -64.773949 -3.750415 +v -146.312897 -65.563850 -4.591915 +v -146.303711 -64.633247 -4.595317 +v -145.057312 -64.957146 -3.300418 +v -143.812714 -64.502846 -4.550418 +v -148.802612 -65.601250 -4.550418 +v -145.795990 -65.962654 -3.750415 +v -145.979187 -65.819450 -3.750415 +v -146.422607 -64.583733 -0.050426 +v -146.355804 -64.876228 0.249577 +v -145.755005 -64.583733 -0.050426 +v -146.189514 -65.801643 -3.750415 +v -147.581116 -66.233543 -4.671619 +v -146.386108 -66.375450 -4.615116 +v -147.542511 -66.319450 -4.707012 +v -143.534088 -65.028252 -4.550418 +v -147.522186 -66.488228 -0.050426 +v -147.586609 -65.964943 -3.300418 +v -147.120392 -64.957146 -3.300418 +v -148.802612 -65.601250 -4.750415 +v -144.692505 -65.498146 -3.300418 +v -143.375000 -65.601250 -4.550418 +v -146.323792 -66.501854 -4.615116 +v -146.468994 -67.468437 -4.747615 +v -146.489105 -66.435646 -4.736515 +v -147.752991 -68.235435 -4.750408 +v -144.591003 -65.964943 -3.300418 +v -146.088806 -68.796135 -4.550411 +v -146.679993 -68.731834 -4.550411 +v -146.088806 -68.796135 -4.750408 +v -148.643494 -65.028252 -4.550418 +v -143.342804 -66.195045 -4.550418 +v -145.768890 -65.659355 -4.696613 +v -145.599701 -65.763252 -4.696613 +v -144.695313 -66.601357 -3.300418 +v -148.184814 -67.826439 -4.750415 +v -147.569092 -66.288857 -3.300418 +v -143.438995 -66.781853 -4.550418 +v -146.376892 -65.586250 -4.696613 +v -144.888794 -66.046135 0.249577 +v -144.605591 -66.269737 -0.050426 +v -144.605591 -65.822533 -0.050426 +v -143.659088 -67.334236 -4.750415 +v -146.407410 -65.968254 -3.750415 +v -143.659088 -67.334236 -4.550418 +v -148.643494 -65.028252 -4.750415 +v -148.364990 -64.502846 -4.550418 +v -146.366608 -67.651833 -4.749813 +v -144.575012 -66.197548 -4.681713 +v -143.992889 -67.826439 -4.550418 +v -146.088013 -67.366539 -3.750415 +v -146.142395 -67.331337 -3.750415 +v -146.005310 -66.338951 -3.750415 +v -145.858887 -64.663048 -4.620213 +v -145.930817 -64.494743 -4.715519 +v -145.823608 -64.578148 -4.707317 +v -146.166687 -66.364754 -3.750415 +v -144.945587 -67.017235 -3.300418 +v -145.459015 -67.407539 -3.300418 +v -144.424591 -68.235435 -4.550411 +v -144.424591 -68.235435 -4.750408 +v -144.934113 -68.541939 -4.550411 +v -148.364990 -64.502846 -4.750415 +v -147.980011 -64.049644 -4.550418 +v -147.232117 -67.017235 -3.300418 +v -146.392487 -65.724144 -4.615116 +v -145.766296 -67.511040 -3.300418 +v -145.497589 -68.731834 -4.550411 +v -147.980011 -64.049644 -4.750415 +v -146.251099 -64.545052 -4.669513 +v -145.650391 -64.929131 0.249577 +v -145.338806 -64.747139 -0.050426 +v -145.097290 -65.370140 0.249577 +v -146.288788 -66.172249 -3.750415 +v -143.438995 -66.781853 -4.750415 +v -147.506592 -63.689751 -4.550418 +v -147.387909 -66.796135 -0.050426 +v -146.088806 -67.546135 -3.300418 +v -145.756592 -64.673744 -4.731213 +v -147.718994 -66.218452 -4.747615 +v -145.210693 -63.440147 -4.750415 +v -144.670990 -63.689751 -4.750415 +v -143.342804 -66.195045 -4.750415 +v -144.197601 -64.049644 -4.750415 +v -147.243500 -68.541939 -4.750408 +v -143.812714 -64.502846 -4.750415 +v -147.374512 -66.099342 -3.750415 +v -147.669617 -65.882652 -4.732212 +v -143.534088 -65.028252 -4.750415 +v -144.558716 -65.858253 -4.706615 +v -143.375000 -65.601250 -4.750415 +v -146.018402 -64.795357 -3.750415 +v -147.440308 -65.395332 -0.050426 +v -145.858307 -66.529243 -4.615116 +v -147.506592 -63.689751 -4.750415 +v -144.768494 -66.045357 -3.750415 +v -147.510498 -65.807655 -4.656818 +v -146.966888 -63.440147 -4.550418 +v -144.934113 -68.541939 -4.750408 +v -146.679993 -68.731834 -4.750408 +v -145.497589 -68.731834 -4.750408 +v -146.293091 -67.615929 -4.732616 +v -146.258698 -67.508141 -4.596614 +v -147.243500 -68.541939 -4.550411 +v -146.966888 -63.440147 -4.750415 +v -146.386108 -63.312248 -4.550418 +v -147.409210 -66.045357 -3.750415 +v -146.397186 -64.487251 -4.747615 +v -146.567810 -64.624657 -3.300418 +v -144.989197 -65.025932 -0.050426 +v -147.511108 -65.665947 -4.747615 +v -144.737396 -65.395332 -0.050426 +v -147.752991 -68.235435 -4.550411 +v -147.485107 -65.498146 -3.300418 +v -146.527191 -67.163216 0.249577 +v -145.999115 -67.242821 0.249577 +v -145.650391 -67.163216 0.249577 +v -144.737396 -66.696938 -0.050426 +v -146.837006 -66.984322 0.249577 +v -146.718597 -67.407539 -3.300418 +v -144.989197 -67.066414 -0.050426 +v -144.659515 -65.788857 -4.683818 +v -145.097290 -66.722130 0.249577 +v -145.338806 -67.345116 -0.050426 +v -148.184814 -67.826439 -4.550418 +v -147.109100 -67.145714 -0.050426 +v -145.755005 -67.508522 -0.050426 +v -146.088806 -67.546120 -0.050426 +v -148.518494 -67.334236 -4.550418 +v -146.739594 -67.397621 -0.050426 + +f 4132 4133 4134 +f 4215 4132 4134 +f 4216 4215 4134 +f 4241 4216 4134 +f 4139 4241 4134 +f 4140 4139 4134 +f 4138 4139 4140 +f 4266 4138 4140 +f 4266 4140 4133 +f 4265 4266 4133 +f 4258 4266 4265 +f 4255 4258 4265 +f 4268 4255 4265 +f 4132 4268 4265 +f 4230 4268 4132 +f 4230 4163 4268 +f 4163 4199 4268 +f 4199 4271 4268 +f 4268 4271 4223 +f 4268 4223 4229 +f 4223 4224 4229 +f 4224 4236 4229 +f 4229 4236 4255 +f 4224 4179 4236 +f 4179 4269 4236 +f 4236 4269 4258 +f 4269 4138 4258 +f 4269 4169 4138 +f 4169 4171 4138 +f 4171 4147 4138 +f 4171 4232 4147 +f 4232 4164 4147 +f 4147 4164 4159 +f 4147 4159 4151 +f 4147 4151 4139 +f 4151 4159 4242 +f 4151 4242 4241 +f 4159 4244 4242 +f 4244 4239 4242 +f 4239 4216 4242 +f 4239 4214 4216 +f 4193 4214 4239 +f 4193 4168 4214 +f 4168 4252 4214 +f 4252 4215 4214 +f 4252 4161 4215 +f 4215 4161 4230 +f 4252 4172 4161 +f 4161 4172 4162 +f 4161 4162 4163 +f 4162 4172 4226 +f 4162 4226 4199 +f 4172 4204 4226 +f 4226 4204 4257 +f 4226 4257 4271 +f 4257 4248 4271 +f 4271 4248 4206 +f 4248 4180 4206 +f 4180 4191 4206 +f 4191 4207 4206 +f 4206 4207 4223 +f 4191 4274 4207 +f 4274 4179 4207 +f 4274 4253 4179 +f 4253 4152 4179 +f 4152 4154 4179 +f 4152 4153 4154 +f 4154 4153 4169 +f 4153 4170 4169 +f 4153 4231 4170 +f 4170 4231 4171 +f 4153 4233 4231 +f 4231 4233 4232 +f 4233 4270 4232 +f 4233 4272 4270 +f 4270 4272 4164 +f 4272 4181 4164 +f 4164 4181 4176 +f 4164 4176 4165 +f 4165 4176 4246 +f 4165 4246 4244 +f 4246 4250 4244 +f 4250 4282 4244 +f 4282 4193 4244 +f 4282 4194 4193 +f 4282 4256 4194 +f 4256 4167 4194 +f 4167 4168 4194 +f 4167 4155 4168 +f 4168 4155 4172 +f 4158 4155 4167 +f 4155 4158 4149 +f 4155 4149 4156 +f 4213 4155 4156 +f 4254 4213 4156 +f 4148 4254 4156 +f 4141 4254 4148 +f 4141 4148 4142 +f 4141 4142 4143 +f 4262 4141 4143 +f 4262 4143 4208 +f 4263 4262 4208 +f 4263 4208 4184 +f 4183 4263 4184 +f 4183 4184 4185 +f 4174 4183 4185 +f 4175 4174 4185 +f 4185 4196 4175 +f 4196 4135 4175 +f 4175 4135 4240 +f 4173 4175 4240 +f 4248 4173 4240 +f 4240 4160 4248 +f 4240 4137 4160 +f 4137 4150 4160 +f 4150 4166 4160 +f 4160 4166 4180 +f 4150 4178 4166 +f 4166 4178 4191 +f 4197 4178 4150 +f 4136 4197 4150 +f 4225 4197 4136 +f 4289 4225 4136 +f 4289 4136 4135 +f 4135 4136 4137 +f 4285 4225 4289 +f 4285 4289 4196 +f 4186 4285 4196 +f 4273 4285 4186 +f 4245 4273 4186 +f 4245 4186 4208 +f 4260 4245 4208 +f 4190 4260 4208 +f 4261 4190 4208 +f 4188 4190 4261 +f 4228 4188 4261 +f 4228 4261 4259 +f 4222 4228 4259 +f 4222 4259 4221 +f 4220 4222 4221 +f 4220 4221 4157 +f 4210 4220 4157 +f 4210 4157 4203 +f 4205 4210 4203 +f 4205 4203 4235 +f 4198 4205 4235 +f 4198 4235 4243 +f 4192 4198 4243 +f 4192 4243 4251 +f 4182 4192 4251 +f 4182 4251 4249 +f 4176 4182 4249 +f 4251 4250 4249 +f 4187 4192 4182 +f 4181 4187 4182 +f 4202 4187 4181 +f 4202 4201 4187 +f 4201 4195 4187 +f 4201 4278 4195 +f 4278 4281 4195 +f 4281 4218 4195 +f 4195 4218 4210 +f 4218 4219 4210 +f 4281 4219 4218 +f 4281 4284 4219 +f 4284 4287 4219 +f 4287 4227 4219 +f 4219 4227 4222 +f 4287 4238 4227 +f 4227 4238 4228 +f 4287 4288 4238 +f 4238 4288 4280 +f 4238 4280 4189 +f 4188 4238 4189 +f 4189 4280 4264 +f 4189 4264 4260 +f 4264 4280 4273 +f 4280 4225 4273 +f 4280 4286 4225 +f 4286 4237 4225 +f 4237 4177 4225 +f 4237 4144 4177 +f 4177 4144 4146 +f 4177 4146 4178 +f 4178 4146 4274 +f 4144 4145 4146 +f 4146 4145 4253 +f 4144 4200 4145 +f 4145 4200 4233 +f 4144 4283 4200 +f 4200 4283 4201 +f 4279 4283 4144 +f 4279 4277 4283 +f 4283 4277 4281 +f 4275 4277 4279 +f 4275 4279 4286 +f 4290 4275 4286 +f 4288 4275 4290 +f 4276 4275 4288 +f 4275 4276 4277 +f 4277 4276 4287 +f 4279 4144 4237 +f 4286 4279 4237 +f 4290 4286 4280 +f 4288 4290 4280 +f 4276 4288 4287 +f 4277 4287 4284 +f 4277 4284 4281 +f 4283 4281 4278 +f 4283 4278 4201 +f 4200 4201 4202 +f 4200 4202 4272 +f 4187 4195 4192 +f 4243 4250 4251 +f 4243 4209 4250 +f 4209 4256 4250 +f 4158 4256 4209 +f 4195 4198 4192 +f 4235 4209 4243 +f 4235 4149 4209 +f 4195 4205 4198 +f 4235 4203 4149 +f 4195 4210 4205 +f 4203 4157 4149 +f 4157 4142 4149 +f 4219 4220 4210 +f 4157 4221 4142 +f 4219 4222 4220 +f 4221 4259 4142 +f 4227 4228 4222 +f 4259 4261 4143 +f 4238 4188 4228 +f 4188 4189 4190 +f 4190 4189 4260 +f 4260 4264 4245 +f 4264 4273 4245 +f 4273 4225 4285 +f 4225 4177 4197 +f 4197 4177 4178 +f 4136 4150 4137 +f 4135 4137 4240 +f 4196 4289 4135 +f 4186 4196 4185 +f 4173 4174 4175 +f 4247 4174 4173 +f 4267 4247 4173 +f 4267 4173 4257 +f 4234 4247 4267 +f 4204 4234 4267 +f 4217 4234 4204 +f 4155 4217 4204 +f 4234 4217 4174 +f 4247 4234 4174 +f 4217 4183 4174 +f 4184 4186 4185 +f 4217 4263 4183 +f 4217 4212 4263 +f 4212 4211 4263 +f 4211 4141 4263 +f 4211 4212 4213 +f 4213 4212 4217 +f 4208 4186 4184 +f 4261 4208 4143 +f 4263 4141 4262 +f 4259 4143 4142 +f 4142 4148 4149 +f 4141 4211 4254 +f 4211 4213 4254 +f 4155 4213 4217 +f 4156 4149 4148 +f 4158 4209 4149 +f 4256 4158 4167 +f 4250 4256 4282 +f 4249 4250 4246 +f 4176 4249 4246 +f 4181 4182 4176 +f 4272 4202 4181 +f 4233 4200 4272 +f 4153 4145 4233 +f 4145 4153 4152 +f 4253 4145 4152 +f 4146 4253 4274 +f 4178 4274 4191 +f 4166 4191 4180 +f 4248 4160 4180 +f 4257 4173 4248 +f 4204 4267 4257 +f 4155 4204 4172 +f 4168 4172 4252 +f 4168 4193 4194 +f 4193 4239 4244 +f 4159 4165 4244 +f 4164 4165 4159 +f 4232 4270 4164 +f 4231 4232 4171 +f 4169 4170 4171 +f 4154 4169 4269 +f 4179 4154 4269 +f 4207 4179 4224 +f 4207 4224 4223 +f 4271 4206 4223 +f 4199 4226 4271 +f 4162 4199 4163 +f 4230 4161 4163 +f 4268 4229 4255 +f 4236 4258 4255 +f 4258 4138 4266 +f 4138 4147 4139 +f 4139 4151 4241 +f 4242 4216 4241 +f 4214 4215 4216 +f 4215 4230 4132 +f 4133 4140 4134 +f 4132 4265 4133 + + +o Object.13 +v 19.639999 -122.542473 -4.100346 +v 21.297808 -121.913673 -4.100346 +v 20.320988 -121.378975 -4.100346 +v 21.511278 -121.700279 -7.100338 +v 20.379009 -121.322472 -7.100338 +v 21.118019 -120.042488 -7.100338 +v 19.874649 -118.560875 0.549641 +v 20.700659 -118.981773 0.549641 +v 19.874649 -118.560890 -4.100353 +v 20.700659 -118.981789 -4.100353 +v 22.067348 -120.640785 -7.100338 +v 17.982189 -121.913673 -7.100338 +v 17.302458 -120.928978 -7.100338 +v 18.161978 -120.042488 -7.100338 +v 20.453169 -119.229271 0.899640 +v 20.775839 -119.862572 0.899647 +v 18.158468 -120.277077 0.549649 +v 18.504158 -119.862572 0.899647 +v 18.303488 -119.361473 0.549649 +v 18.900988 -121.322472 -7.100338 +v 18.753489 -122.379967 -4.100346 +v 19.405348 -121.523979 -4.100346 +v 18.579338 -121.103081 -4.100346 +v 21.121529 -119.807777 0.549649 +v 21.121529 -119.807793 -4.100346 +v 17.158228 -119.741081 -7.100338 +v 22.067348 -119.444191 -7.100338 +v 17.768719 -121.700279 -4.100346 +v 20.664658 -120.564568 0.899647 +v 20.976509 -120.723473 0.549649 +v 18.615339 -120.564568 0.899647 +v 20.976509 -120.723488 -4.100346 +v 18.900988 -118.762489 -7.100346 +v 20.379009 -118.762489 -7.100346 +v 21.977539 -120.928978 -4.100346 +v 22.030729 -121.297173 -4.300350 +v 22.339998 -120.042488 -4.300350 +v 17.582539 -118.622292 -7.100346 +v 21.511278 -118.384682 -7.100346 +v 20.320988 -121.378960 0.549649 +v 17.619019 -121.832878 -4.300350 +v 17.212648 -120.640785 -4.100346 +v 17.018459 -120.688591 -4.300350 +v 18.158468 -120.277092 -4.100346 +v 18.478188 -117.828789 -7.100346 +v 20.526508 -117.704887 -7.100346 +v 22.030729 -121.297173 -6.900349 +v 21.173769 -122.264473 -6.900349 +v 22.121769 -119.741081 -4.100346 +v 18.161978 -120.042488 -5.100346 +v 18.900988 -121.322472 -5.100346 +v 18.579338 -121.103065 0.549649 +v 21.173769 -122.264473 -4.300350 +v 20.379009 -118.762489 -5.100353 +v 18.900988 -118.762489 -5.100353 +v 19.117908 -121.067055 0.899647 +v 20.162088 -121.067055 0.899647 +v 21.118019 -120.042488 -5.100346 +v 19.639999 -122.542473 -7.100338 +v 20.379009 -121.322472 -5.100346 +v 18.303488 -119.361488 -4.100346 +v 19.819899 -118.906578 0.899640 +v 17.212648 -119.444191 -4.100346 +v 19.405348 -121.523964 0.549649 +v 18.682568 -122.566978 -4.300350 +v 18.682568 -122.566978 -6.900349 +v 17.619019 -121.832878 -6.900349 +v 22.339998 -120.042488 -6.900349 +v 21.697458 -118.622292 -4.100353 +v 19.965448 -122.722771 -4.300350 +v 18.682568 -117.517891 -4.300357 +v 18.753489 -117.704887 -4.100353 +v 19.965448 -117.362190 -4.300357 +v 17.018459 -120.688591 -6.900349 +v 17.768719 -118.384682 -4.100353 +v 18.959009 -118.705986 -4.100353 +v 17.619019 -118.251991 -4.300357 +v 17.018459 -119.396294 -6.900349 +v 20.526508 -122.379967 -7.100338 +v 20.801809 -117.828789 -4.100353 +v 17.018459 -119.396294 -4.300350 +v 17.619019 -118.251991 -6.900356 +v 21.173769 -117.820396 -4.300357 +v 18.682568 -117.517891 -6.900356 +v 19.965448 -117.362190 -6.900356 +v 22.030729 -118.787682 -4.300357 +v 22.030729 -118.787682 -6.900356 +v 18.826828 -119.229271 0.899640 +v 19.965448 -122.722771 -6.900349 +v 18.959009 -118.705971 0.549641 +v 21.173769 -117.820396 -6.900356 + +f 4291 4292 4293 +f 4291 4293 4312 +f 4311 4291 4312 +f 4311 4312 4313 +f 4318 4311 4313 +f 4332 4318 4313 +f 4332 4313 4334 +f 4334 4351 4332 +f 4332 4351 4353 +f 4332 4353 4333 +f 4331 4332 4333 +f 4331 4333 4357 +f 4356 4331 4357 +f 4356 4357 4302 +f 4349 4356 4302 +f 4349 4302 4310 +f 4295 4349 4310 +f 4341 4295 4310 +f 4340 4341 4310 +f 4340 4310 4304 +f 4345 4340 4304 +f 4345 4304 4323 +f 4344 4345 4323 +f 4324 4344 4323 +f 4324 4323 4335 +f 4324 4335 4336 +f 4329 4324 4336 +f 4381 4329 4336 +f 4375 4381 4336 +f 4373 4381 4375 +f 4363 4373 4375 +f 4374 4363 4375 +f 4374 4375 4335 +f 4372 4374 4335 +f 4328 4372 4335 +f 4368 4372 4328 +f 4316 4368 4328 +f 4323 4316 4328 +f 4364 4368 4316 +f 4303 4364 4316 +f 4304 4303 4316 +f 4302 4303 4304 +f 4357 4364 4303 +f 4364 4371 4368 +f 4371 4367 4368 +f 4371 4365 4367 +f 4365 4362 4367 +f 4367 4362 4361 +f 4367 4361 4372 +f 4361 4362 4363 +f 4362 4370 4363 +f 4299 4370 4362 +f 4366 4299 4362 +f 4366 4297 4299 +f 4297 4298 4299 +f 4298 4300 4299 +f 4298 4314 4300 +f 4314 4315 4300 +f 4300 4315 4359 +f 4300 4359 4370 +f 4370 4359 4373 +f 4359 4376 4373 +f 4359 4339 4376 +f 4339 4327 4376 +f 4376 4327 4377 +f 4376 4377 4381 +f 4327 4358 4377 +f 4377 4358 4317 +f 4377 4317 4329 +f 4358 4301 4317 +f 4301 4296 4317 +f 4296 4324 4317 +f 4296 4348 4324 +f 4350 4348 4296 +f 4295 4350 4296 +f 4294 4295 4296 +f 4294 4369 4295 +f 4338 4369 4294 +f 4337 4338 4294 +f 4337 4294 4301 +f 4343 4338 4337 +f 4326 4343 4337 +f 4326 4337 4358 +f 4292 4343 4326 +f 4325 4292 4326 +f 4325 4326 4327 +f 4292 4325 4322 +f 4322 4325 4315 +f 4320 4322 4315 +f 4320 4330 4322 +f 4330 4293 4322 +f 4330 4354 4293 +f 4330 4347 4354 +f 4347 4346 4354 +f 4354 4346 4342 +f 4354 4342 4312 +f 4346 4321 4342 +f 4342 4321 4307 +f 4342 4307 4313 +f 4321 4308 4307 +f 4307 4308 4309 +f 4307 4309 4334 +f 4308 4378 4309 +f 4309 4378 4380 +f 4309 4380 4351 +f 4351 4380 4366 +f 4351 4366 4365 +f 4380 4378 4297 +f 4378 4352 4297 +f 4352 4305 4297 +f 4308 4305 4352 +f 4308 4306 4305 +f 4305 4306 4298 +f 4378 4308 4352 +f 4321 4306 4308 +f 4321 4346 4306 +f 4346 4347 4306 +f 4347 4319 4306 +f 4306 4319 4314 +f 4319 4320 4314 +f 4319 4347 4320 +f 4347 4330 4320 +f 4315 4325 4339 +f 4343 4360 4338 +f 4360 4379 4338 +f 4360 4355 4379 +f 4355 4356 4379 +f 4291 4355 4360 +f 4291 4360 4343 +f 4338 4379 4369 +f 4379 4349 4369 +f 4350 4341 4348 +f 4301 4294 4296 +f 4358 4337 4301 +f 4327 4326 4358 +f 4339 4325 4327 +f 4315 4339 4359 +f 4314 4320 4315 +f 4306 4314 4298 +f 4305 4298 4297 +f 4380 4297 4366 +f 4299 4300 4370 +f 4365 4366 4362 +f 4353 4365 4371 +f 4333 4371 4364 +f 4368 4367 4372 +f 4372 4361 4374 +f 4361 4363 4374 +f 4370 4373 4363 +f 4373 4376 4381 +f 4381 4377 4329 +f 4317 4324 4329 +f 4335 4375 4336 +f 4323 4328 4335 +f 4348 4344 4324 +f 4348 4340 4344 +f 4304 4316 4323 +f 4344 4340 4345 +f 4348 4341 4340 +f 4341 4350 4295 +f 4369 4349 4295 +f 4310 4302 4304 +f 4379 4356 4349 +f 4302 4357 4303 +f 4355 4331 4356 +f 4355 4318 4331 +f 4357 4333 4364 +f 4333 4353 4371 +f 4353 4351 4365 +f 4334 4309 4351 +f 4313 4307 4334 +f 4318 4332 4331 +f 4311 4318 4355 +f 4312 4342 4313 +f 4291 4311 4355 +f 4293 4354 4312 +f 4293 4292 4322 +f 4292 4291 4343 + + +o Object.14 +v -20.162090 -121.067055 0.899647 +v -18.826832 -120.855553 0.899647 +v -20.775841 -120.222374 0.899647 +v -17.768723 -121.700279 -7.100338 +v -18.901173 -121.322578 -7.100338 +v -18.161980 -120.042686 -7.100338 +v -19.405350 -118.560875 0.549641 +v -18.579342 -118.981773 0.549641 +v -19.405350 -118.560890 -4.100353 +v -18.579342 -118.981789 -4.100353 +v -18.161980 -120.042686 -5.100346 +v -21.118019 -120.042290 -5.100346 +v -18.900810 -118.762596 -5.100353 +v -17.212643 -120.640785 -7.100338 +v -19.874653 -121.523964 0.549649 +v -20.700661 -121.103065 0.549649 +v -18.900810 -118.762596 -7.100346 +v -18.753822 -122.380074 -4.100346 +v -17.768963 -121.700478 -4.100346 +v -18.959011 -121.378975 -4.100346 +v -20.802124 -122.255867 -4.100346 +v -19.874653 -121.523979 -4.100346 +v -20.700661 -121.103081 -4.100346 +v -18.158463 -119.807777 0.549649 +v -18.158463 -119.807793 -4.100346 +v -21.297798 -121.913673 -7.100338 +v -21.977539 -120.928978 -7.100338 +v -21.118019 -120.042290 -7.100338 +v -20.379192 -121.322380 -7.100338 +v -19.640003 -121.192451 0.899647 +v -22.121773 -119.741081 -7.100338 +v -17.212643 -119.444191 -7.100338 +v -18.303490 -120.723473 0.549649 +v -18.303490 -120.723488 -4.100346 +v -21.697662 -121.462273 -4.100346 +v -18.106232 -122.264473 -6.900349 +v -19.314552 -122.722771 -6.900349 +v -18.753490 -122.379967 -7.100338 +v -17.212730 -120.641090 -4.100346 +v -20.378830 -118.762383 -7.100346 +v -18.959011 -121.378960 0.549649 +v -21.697464 -118.622292 -7.100346 +v -17.768723 -118.384682 -7.100346 +v -17.249451 -121.297569 -4.300350 +v -16.940002 -120.042488 -4.300350 +v -22.121819 -120.343391 -4.100346 +v -22.261635 -120.688286 -4.300350 +v -21.661240 -121.832573 -4.300350 +v -21.121529 -120.277092 -4.100346 +v -19.640003 -122.542473 -7.100338 +v -20.801804 -117.828789 -7.100346 +v -18.753490 -117.704887 -7.100346 +v -18.901173 -121.322578 -5.100346 +v -20.379192 -121.322380 -5.100346 +v -20.162090 -119.017769 0.899640 +v -19.460102 -118.906578 0.899640 +v -18.106541 -122.264671 -4.300350 +v -20.976509 -119.361488 -4.100346 +v -17.212570 -119.444496 -4.100346 +v -18.615341 -119.520378 0.899647 +v -19.640362 -122.542473 -4.100346 +v -22.261551 -120.688591 -6.900349 +v -22.261551 -119.396294 -6.900349 +v -18.504162 -120.222374 0.899647 +v -20.597790 -122.566872 -4.300350 +v -21.977440 -119.155693 -4.100353 +v -16.940002 -120.042488 -6.900349 +v -20.378830 -118.762383 -5.100353 +v -19.314930 -122.722771 -4.300350 +v -17.768600 -118.384789 -4.100353 +v -20.320980 -118.705986 -4.100353 +v -20.597443 -122.566978 -6.900349 +v -21.660980 -121.832878 -6.900349 +v -20.976509 -119.361473 0.549649 +v -20.664661 -119.520378 0.899647 +v -20.320980 -118.705971 0.549641 +v -17.249271 -118.787682 -6.900356 +v -20.238243 -117.615089 -4.100353 +v -18.753410 -117.704887 -4.100353 +v -20.597351 -117.517891 -4.300357 +v -21.297691 -118.171089 -4.100353 +v -21.660980 -118.251991 -6.900356 +v -21.660843 -118.251884 -4.300357 +v -21.121529 -120.277077 0.549649 +v -22.261475 -119.395988 -4.300350 +v -18.106232 -117.820396 -6.900356 +v -19.314522 -117.362190 -4.300357 +v -20.597443 -117.517891 -6.900356 +v -18.106102 -117.820488 -4.300357 +v -17.249271 -121.297173 -6.900349 +v -17.249142 -118.787987 -4.300357 +v -19.314552 -117.362190 -6.900356 + +f 4382 4383 4384 +f 4382 4384 4397 +f 4396 4382 4397 +f 4396 4397 4403 +f 4396 4403 4401 +f 4422 4396 4401 +f 4422 4401 4415 +f 4414 4422 4415 +f 4414 4415 4406 +f 4405 4414 4406 +f 4405 4406 4391 +f 4389 4405 4391 +f 4389 4391 4390 +f 4388 4389 4390 +f 4457 4388 4390 +f 4452 4457 4390 +f 4452 4390 4462 +f 4447 4452 4462 +f 4447 4462 4464 +f 4466 4447 4464 +f 4466 4464 4444 +f 4443 4466 4444 +f 4443 4444 4412 +f 4408 4443 4412 +f 4409 4408 4412 +f 4409 4412 4421 +f 4449 4409 4421 +f 4394 4449 4421 +f 4398 4394 4421 +f 4398 4421 4433 +f 4424 4398 4433 +f 4467 4424 4433 +f 4473 4467 4433 +f 4469 4473 4433 +f 4432 4469 4433 +f 4463 4469 4432 +f 4423 4463 4432 +f 4421 4423 4432 +f 4444 4463 4423 +f 4463 4461 4469 +f 4461 4468 4469 +f 4460 4468 4461 +f 4459 4460 4461 +f 4462 4459 4461 +f 4459 4390 4460 +f 4460 4470 4468 +f 4468 4470 4467 +f 4470 4472 4467 +f 4472 4458 4467 +f 4472 4426 4458 +f 4426 4448 4458 +f 4458 4448 4413 +f 4458 4413 4424 +f 4448 4395 4413 +f 4395 4387 4413 +f 4387 4398 4413 +f 4387 4392 4398 +f 4434 4392 4387 +f 4386 4434 4387 +f 4385 4386 4387 +f 4385 4419 4386 +f 4419 4431 4386 +f 4386 4431 4410 +f 4435 4386 4410 +f 4393 4435 4410 +f 4393 4410 4409 +f 4410 4407 4409 +f 4392 4435 4393 +f 4392 4393 4394 +f 4431 4407 4410 +f 4431 4453 4407 +f 4453 4454 4407 +f 4407 4454 4408 +f 4453 4429 4454 +f 4429 4428 4454 +f 4454 4428 4443 +f 4429 4416 4428 +f 4416 4427 4428 +f 4428 4427 4466 +f 4427 4416 4430 +f 4430 4439 4427 +f 4427 4439 4447 +f 4430 4455 4439 +f 4455 4457 4439 +f 4455 4456 4457 +f 4456 4436 4457 +f 4456 4383 4436 +f 4383 4437 4436 +f 4436 4437 4388 +f 4383 4445 4437 +f 4445 4441 4437 +f 4437 4441 4389 +f 4441 4445 4405 +f 4445 4383 4422 +f 4383 4411 4422 +f 4384 4456 4455 +f 4465 4384 4455 +f 4465 4455 4430 +f 4404 4465 4430 +f 4397 4465 4404 +f 4416 4404 4430 +f 4416 4402 4404 +f 4402 4403 4404 +f 4402 4442 4403 +f 4442 4402 4446 +f 4450 4442 4446 +f 4450 4446 4453 +f 4450 4453 4418 +f 4450 4418 4417 +f 4438 4450 4417 +f 4438 4417 4471 +f 4425 4438 4471 +f 4426 4425 4471 +f 4420 4425 4426 +f 4440 4420 4426 +f 4406 4420 4440 +f 4406 4440 4451 +f 4451 4440 4472 +f 4420 4400 4425 +f 4400 4420 4415 +f 4400 4438 4425 +f 4400 4399 4438 +f 4399 4400 4401 +f 4442 4399 4401 +f 4471 4417 4385 +f 4471 4385 4395 +f 4399 4450 4438 +f 4417 4418 4419 +f 4399 4442 4450 +f 4446 4402 4429 +f 4402 4416 4429 +f 4446 4429 4453 +f 4418 4453 4431 +f 4418 4431 4419 +f 4417 4419 4385 +f 4435 4434 4386 +f 4434 4435 4392 +f 4395 4385 4387 +f 4448 4471 4395 +f 4426 4471 4448 +f 4440 4426 4472 +f 4451 4472 4470 +f 4460 4451 4470 +f 4391 4451 4460 +f 4464 4461 4463 +f 4468 4473 4469 +f 4468 4467 4473 +f 4467 4458 4424 +f 4413 4398 4424 +f 4421 4432 4433 +f 4392 4394 4398 +f 4394 4393 4449 +f 4449 4393 4409 +f 4421 4412 4423 +f 4407 4408 4409 +f 4454 4443 4408 +f 4412 4444 4423 +f 4428 4466 4443 +f 4444 4464 4463 +f 4427 4447 4466 +f 4464 4462 4461 +f 4439 4452 4447 +f 4462 4390 4459 +f 4439 4457 4452 +f 4457 4436 4388 +f 4437 4389 4388 +f 4390 4391 4460 +f 4441 4405 4389 +f 4391 4406 4451 +f 4445 4414 4405 +f 4415 4420 4406 +f 4445 4422 4414 +f 4401 4400 4415 +f 4411 4396 4422 +f 4403 4442 4401 +f 4403 4397 4404 +f 4411 4382 4396 +f 4397 4384 4465 +f 4384 4383 4456 +f 4411 4383 4382 + + +o Object.15 +v -134.485016 108.676865 -0.500629 +v -132.832306 110.646484 -0.500629 +v -132.485016 110.676865 -0.500629 +v 134.514999 108.676865 -0.500629 +v 132.514999 110.676865 -0.500629 +v 132.862305 110.646484 -0.500629 +v -134.454590 109.024162 -0.500629 +v -134.364410 109.360909 -0.500629 +v -134.217010 109.676865 -0.500629 +v -133.169006 110.556252 -0.500629 +v 133.199036 110.556252 -0.500629 +v -133.485016 110.408913 -0.500629 +v 133.514999 110.408913 -0.500629 +v -134.017090 109.962440 -0.500629 +v -133.770599 110.208954 -0.500629 +v 133.800568 110.208954 -0.500629 +v 134.047089 109.962440 -0.500629 +v 134.247040 109.676865 -0.500629 +v 134.484619 109.024162 -0.500629 +v 134.394379 109.360909 -0.500629 +v -134.485016 -106.322884 -0.500377 +v 134.514999 -106.322884 -0.500377 +v -134.364410 -107.006889 -0.500370 +v -134.454590 -106.670189 -0.500370 +v 132.514999 -108.322868 -0.500370 +v -132.485016 -108.322868 -0.500370 +v -132.832306 -108.292473 -0.500370 +v -133.169006 -108.202278 -0.500370 +v -133.485016 -108.054970 -0.500370 +v -133.770599 -107.854973 -0.500370 +v -134.017090 -107.608467 -0.500370 +v -134.217010 -107.322884 -0.500370 +v 134.394379 -107.006889 -0.500370 +v 134.247040 -107.322884 -0.500370 +v 134.484619 -106.670189 -0.500370 +v 134.047089 -107.608467 -0.500370 +v 133.800568 -107.854973 -0.500370 +v 133.514999 -108.054970 -0.500370 +v 133.199036 -108.202278 -0.500370 +v 132.862305 -108.292473 -0.500370 +v -132.485016 110.676865 -0.000629 +v 132.514999 110.676865 -0.000629 +v 132.862305 110.646484 -0.000629 +v 133.199036 110.556252 -0.000629 +v 133.514999 110.408920 -0.000629 +v 133.800568 110.208954 -0.000629 +v 134.047089 109.962440 -0.000629 +v 134.247040 109.676865 -0.000629 +v 134.394379 109.360909 -0.000629 +v 134.484619 109.024162 -0.000629 +v 134.514999 108.676865 -0.000629 +v 134.514999 -106.322884 -0.000377 +v 134.484619 -106.670189 -0.000370 +v 134.394379 -107.006889 -0.000370 +v 134.247040 -107.322884 -0.000370 +v 134.047089 -107.608467 -0.000370 +v 133.800568 -107.854973 -0.000370 +v 133.514999 -108.054970 -0.000370 +v 133.199036 -108.202278 -0.000370 +v 132.862305 -108.292473 -0.000370 +v 132.514999 -108.322868 -0.000370 +v -132.485016 -108.322868 -0.000370 +v -134.485016 -106.322884 -0.000377 +v -134.454590 -106.670189 -0.000370 +v -134.364410 -107.006889 -0.000370 +v -134.217010 -107.322884 -0.000370 +v -134.017090 -107.608467 -0.000370 +v -133.770599 -107.854973 -0.000370 +v -133.485016 -108.054970 -0.000370 +v -133.169006 -108.202278 -0.000370 +v -132.832306 -108.292473 -0.000370 +v -134.485016 108.676865 -0.000629 +v -132.832306 110.646484 -0.000629 +v -133.169006 110.556252 -0.000629 +v -133.485016 110.408920 -0.000629 +v -133.770599 110.208954 -0.000629 +v -134.017090 109.962440 -0.000629 +v -134.217010 109.676865 -0.000629 +v -134.364410 109.360909 -0.000629 +v -134.454590 109.024162 -0.000629 + +f 4474 4475 4476 +f 4477 4474 4476 +f 4478 4477 4476 +f 4514 4478 4476 +f 4514 4515 4478 +f 4515 4516 4478 +f 4516 4479 4478 +f 4516 4517 4479 +f 4517 4484 4479 +f 4484 4477 4479 +f 4486 4477 4484 +f 4518 4486 4484 +f 4518 4519 4486 +f 4519 4489 4486 +f 4519 4520 4489 +f 4520 4490 4489 +f 4490 4477 4489 +f 4491 4477 4490 +f 4521 4491 4490 +f 4521 4522 4491 +f 4522 4493 4491 +f 4493 4492 4491 +f 4523 4492 4493 +f 4523 4524 4492 +f 4524 4477 4492 +f 4524 4495 4477 +f 4495 4494 4477 +f 4495 4498 4494 +f 4498 4499 4494 +f 4499 4500 4494 +f 4500 4501 4494 +f 4501 4502 4494 +f 4502 4503 4494 +f 4503 4504 4494 +f 4504 4505 4494 +f 4505 4496 4494 +f 4496 4497 4494 +f 4497 4536 4494 +f 4494 4536 4474 +f 4536 4545 4474 +f 4545 4553 4474 +f 4474 4553 4480 +f 4553 4552 4480 +f 4480 4552 4481 +f 4480 4481 4475 +f 4481 4482 4475 +f 4482 4483 4475 +f 4483 4546 4475 +f 4546 4514 4475 +f 4546 4545 4514 +f 4547 4545 4546 +f 4548 4545 4547 +f 4548 4547 4485 +f 4488 4548 4485 +f 4487 4488 4485 +f 4482 4487 4485 +f 4482 4550 4487 +f 4550 4549 4487 +f 4550 4545 4549 +f 4551 4545 4550 +f 4552 4545 4551 +f 4551 4550 4482 +f 4487 4549 4488 +f 4549 4548 4488 +f 4485 4547 4483 +f 4549 4545 4548 +f 4547 4546 4483 +f 4482 4485 4483 +f 4481 4551 4482 +f 4552 4551 4481 +f 4553 4545 4552 +f 4536 4525 4545 +f 4525 4524 4545 +f 4545 4524 4515 +f 4535 4525 4536 +f 4537 4535 4536 +f 4538 4535 4537 +f 4538 4537 4496 +f 4539 4535 4538 +f 4539 4538 4505 +f 4540 4535 4539 +f 4540 4539 4504 +f 4541 4535 4540 +f 4541 4540 4503 +f 4542 4535 4541 +f 4542 4541 4502 +f 4543 4535 4542 +f 4543 4542 4501 +f 4544 4535 4543 +f 4544 4543 4500 +f 4535 4544 4499 +f 4534 4535 4499 +f 4535 4534 4525 +f 4534 4533 4525 +f 4533 4532 4525 +f 4532 4531 4525 +f 4531 4530 4525 +f 4530 4529 4525 +f 4529 4528 4525 +f 4528 4527 4525 +f 4527 4526 4525 +f 4525 4526 4495 +f 4526 4508 4495 +f 4508 4506 4495 +f 4506 4507 4495 +f 4507 4509 4495 +f 4509 4510 4495 +f 4510 4511 4495 +f 4511 4512 4495 +f 4512 4513 4495 +f 4533 4513 4512 +f 4532 4512 4511 +f 4531 4511 4510 +f 4530 4510 4509 +f 4529 4509 4507 +f 4528 4507 4506 +f 4527 4506 4508 +f 4526 4527 4508 +f 4527 4528 4506 +f 4528 4529 4507 +f 4529 4530 4509 +f 4530 4531 4510 +f 4531 4532 4511 +f 4532 4533 4512 +f 4533 4534 4513 +f 4534 4498 4513 +f 4537 4536 4497 +f 4496 4537 4497 +f 4505 4538 4496 +f 4504 4539 4505 +f 4503 4540 4504 +f 4502 4541 4503 +f 4501 4542 4502 +f 4500 4543 4501 +f 4499 4544 4500 +f 4498 4534 4499 +f 4513 4498 4495 +f 4524 4525 4495 +f 4524 4523 4521 +f 4524 4521 4520 +f 4522 4523 4493 +f 4523 4522 4521 +f 4492 4477 4491 +f 4520 4521 4490 +f 4524 4520 4519 +f 4524 4519 4518 +f 4524 4518 4517 +f 4489 4477 4486 +f 4517 4518 4484 +f 4524 4517 4516 +f 4524 4516 4515 +f 4545 4515 4514 +f 4479 4477 4478 +f 4477 4494 4474 +f 4475 4514 4476 +f 4474 4480 4475 + + +o Object.16 +v -145.570892 62.890945 -1.000576 +v -145.570892 62.890949 -0.500576 +v -146.088806 62.936268 -1.000576 +v -146.088806 62.936272 -0.500576 +v -146.606689 62.890945 -1.000576 +v -146.606689 62.890949 -0.500576 +v -147.108887 62.756390 -1.000576 +v -145.068695 62.756390 -1.000576 +v -145.068695 62.756393 -0.500576 +v -147.108887 62.756393 -0.500576 +v -147.580109 62.536682 -1.000576 +v -144.597504 62.536682 -1.000576 +v -144.597504 62.536686 -0.500576 +v -147.580109 62.536686 -0.500576 +v -148.005890 62.238480 -1.000576 +v -144.171692 62.238480 -1.000576 +v -144.171692 62.238483 -0.500576 +v -148.005890 62.238483 -0.500576 +v -148.373596 61.870861 -1.000576 +v -143.804016 61.870861 -1.000576 +v -143.804016 61.870865 -0.500576 +v -148.373596 61.870865 -0.500576 +v -148.671814 61.444992 -1.000576 +v -143.505890 61.444992 -1.000576 +v -143.505890 61.444996 -0.500576 +v -148.671814 61.444996 -0.500576 +v -148.891510 60.973812 -1.000576 +v -143.286102 60.973812 -1.000576 +v -143.286102 60.973816 -0.500576 +v -148.891510 60.973816 -0.500576 +v -149.026001 60.471630 -1.000576 +v -143.151611 60.471630 -1.000576 +v -143.151611 60.471634 -0.500576 +v -149.026001 60.471634 -0.500576 +v -149.071411 59.953720 -1.000576 +v -143.106293 59.953720 -1.000576 +v -143.106293 59.953724 -0.500576 +v -149.071411 59.953724 -0.500576 +v -146.088806 -0.063713 -0.500499 +v -146.606689 -0.109009 -1.000499 +v -146.088806 -0.063713 -1.000499 +v -146.606689 -0.109009 -0.500499 +v -147.108887 -0.243507 -1.000499 +v -147.108887 -0.243507 -0.500499 +v -147.580109 -0.463211 -1.000499 +v -147.580109 -0.463211 -0.500499 +v -148.005890 -0.761414 -1.000499 +v -148.005890 -0.761414 -0.500499 +v -148.373596 -1.129112 -1.000499 +v -148.373596 -1.129112 -0.500499 +v -148.671814 -1.554909 -1.000499 +v -148.671814 -1.554909 -0.500499 +v -148.891510 -2.026108 -1.000499 +v -148.891510 -2.026108 -0.500499 +v -149.026001 -2.528313 -1.000499 +v -149.026001 -2.528313 -0.500499 +v -149.071411 -3.046204 -1.000499 +v -149.071411 -3.046204 -0.500499 +v -149.026001 -3.564102 -1.000499 +v -149.026001 -3.564102 -0.500499 +v -148.891510 -4.066299 -1.000499 +v -148.891510 -4.066299 -0.500499 +v -148.671814 -4.537506 -1.000492 +v -148.671814 -4.537506 -0.500492 +v -148.373596 -4.963303 -1.000492 +v -148.373596 -4.963303 -0.500492 +v -148.005890 -5.331001 -1.000492 +v -148.005890 -5.331001 -0.500492 +v -147.580109 -5.629204 -1.000492 +v -147.580109 -5.629204 -0.500492 +v -147.108887 -5.848900 -1.000492 +v -147.108887 -5.848900 -0.500492 +v -146.606689 -5.983406 -1.000492 +v -146.606689 -5.983406 -0.500492 +v -146.088806 -6.028702 -1.000492 +v -146.088806 -6.028702 -0.500492 +v 146.606689 -63.108940 -1.000423 +v 146.606689 -63.108940 -0.500423 +v 146.088806 -63.063637 -1.000423 +v 146.088806 -63.063637 -0.500423 +v 145.570892 -63.108940 -1.000423 +v 145.570892 -63.108940 -0.500423 +v 145.068695 -63.243431 -1.000423 +v 147.108902 -63.243431 -1.000423 +v 147.108902 -63.243431 -0.500423 +v 145.068695 -63.243431 -0.500423 +v 144.597504 -63.463127 -1.000423 +v 147.580109 -63.463127 -1.000423 +v 147.580109 -63.463127 -0.500423 +v 144.597504 -63.463127 -0.500423 +v 144.171692 -63.761330 -1.000423 +v 148.005997 -63.761330 -1.000423 +v 148.005997 -63.761330 -0.500423 +v 144.171692 -63.761330 -0.500423 +v 143.804001 -64.129036 -1.000423 +v 148.373596 -64.129036 -1.000423 +v 148.373596 -64.129036 -0.500423 +v 143.804001 -64.129036 -0.500423 +v 143.505798 -64.554832 -1.000423 +v 148.671799 -64.554832 -1.000423 +v 148.671799 -64.554832 -0.500423 +v 143.505798 -64.554832 -0.500423 +v 143.286133 -65.026039 -1.000423 +v 148.891495 -65.026039 -1.000423 +v 148.891495 -65.026039 -0.500423 +v 143.286133 -65.026039 -0.500423 +v 143.151581 -65.528236 -1.000423 +v 149.026001 -65.528236 -1.000423 +v 149.026001 -65.528236 -0.500423 +v 143.151581 -65.528236 -0.500423 +v 143.106262 -66.046135 -1.000423 +v 149.071396 -66.046135 -1.000423 +v 149.071396 -66.046135 -0.500423 +v 143.106262 -66.046135 -0.500423 +v 146.606689 62.890945 -1.000576 +v 146.606689 62.890949 -0.500576 +v 146.088806 62.936268 -1.000576 +v 146.088806 62.936272 -0.500576 +v 145.570892 62.890945 -1.000576 +v 145.570892 62.890949 -0.500576 +v 145.068695 62.756390 -1.000576 +v 147.108902 62.756390 -1.000576 +v 147.108902 62.756393 -0.500576 +v 145.068695 62.756393 -0.500576 +v 144.597504 62.536682 -1.000576 +v 147.580109 62.536682 -1.000576 +v 147.580109 62.536686 -0.500576 +v 144.597504 62.536686 -0.500576 +v 144.171692 62.238480 -1.000576 +v 148.005997 62.238480 -1.000576 +v 148.005997 62.238483 -0.500576 +v 144.171692 62.238483 -0.500576 +v 143.804001 61.870861 -1.000576 +v 148.373596 61.870861 -1.000576 +v 148.373596 61.870865 -0.500576 +v 143.804001 61.870865 -0.500576 +v 143.505798 61.444992 -1.000576 +v 148.671799 61.444992 -1.000576 +v 148.671799 61.444996 -0.500576 +v 143.505798 61.444996 -0.500576 +v 143.286133 60.973812 -1.000576 +v 148.891495 60.973812 -1.000576 +v 148.891495 60.973816 -0.500576 +v 143.286133 60.973816 -0.500576 +v 143.151581 60.471630 -1.000576 +v 149.026001 60.471630 -1.000576 +v 149.026001 60.471634 -0.500576 +v 143.151581 60.471634 -0.500576 +v 143.106262 59.953720 -1.000576 +v 149.071396 59.953720 -1.000576 +v 149.071396 59.953724 -0.500576 +v 143.106262 59.953724 -0.500576 +v 146.606689 -0.109009 -1.000499 +v 146.606689 -0.109009 -0.500499 +v 146.088806 -0.063713 -1.000499 +v 146.088806 -0.063713 -0.500499 +v 145.570892 -0.109009 -1.000499 +v 145.570892 -0.109009 -0.500499 +v 145.068695 -0.243507 -1.000499 +v 147.108902 -0.243507 -1.000499 +v 147.108902 -0.243507 -0.500499 +v 145.068695 -0.243507 -0.500499 +v 144.597504 -0.463211 -1.000499 +v 147.580109 -0.463211 -1.000499 +v 147.580109 -0.463211 -0.500499 +v 144.597504 -0.463211 -0.500499 +v 144.171692 -0.761414 -1.000499 +v 148.005997 -0.761414 -1.000499 +v 148.005997 -0.761414 -0.500499 +v 144.171692 -0.761414 -0.500499 +v 143.804001 -1.129112 -1.000499 +v 148.373596 -1.129112 -1.000499 +v 148.373596 -1.129112 -0.500499 +v 143.804001 -1.129112 -0.500499 +v 143.505798 -1.554909 -1.000499 +v 148.671799 -1.554909 -1.000499 +v 148.671799 -1.554909 -0.500499 +v 143.505798 -1.554909 -0.500499 +v 143.286133 -2.026108 -1.000499 +v 148.891495 -2.026108 -1.000499 +v 148.891495 -2.026108 -0.500499 +v 143.286133 -2.026108 -0.500499 +v 143.151581 -2.528313 -1.000499 +v 149.026001 -2.528313 -1.000499 +v 149.026001 -2.528313 -0.500499 +v 143.151581 -2.528313 -0.500499 +v 143.106262 -3.046204 -1.000499 +v 149.071396 -3.046204 -1.000499 +v 149.071396 -3.046204 -0.500499 +v 143.106262 -3.046204 -0.500499 +v -145.570892 -63.108940 -1.000423 +v -145.570892 -63.108940 -0.500423 +v -146.088806 -63.063637 -1.000423 +v -146.088806 -63.063637 -0.500423 +v -146.606689 -63.108940 -1.000423 +v -146.606689 -63.108940 -0.500423 +v -147.108887 -63.243431 -1.000423 +v -145.068695 -63.243431 -1.000423 +v -145.068695 -63.243431 -0.500423 +v -147.108887 -63.243431 -0.500423 +v -147.580109 -63.463127 -1.000423 +v -144.597504 -63.463127 -1.000423 +v -144.597504 -63.463127 -0.500423 +v -147.580109 -63.463127 -0.500423 +v -148.005890 -63.761330 -1.000423 +v -144.171692 -63.761330 -1.000423 +v -144.171692 -63.761330 -0.500423 +v -148.005890 -63.761330 -0.500423 +v -148.373596 -64.129036 -1.000423 +v -143.804016 -64.129036 -1.000423 +v -143.804016 -64.129036 -0.500423 +v -148.373596 -64.129036 -0.500423 +v -148.671814 -64.554832 -1.000423 +v -143.505890 -64.554832 -1.000423 +v -143.505890 -64.554832 -0.500423 +v -148.671814 -64.554832 -0.500423 +v -148.891510 -65.026039 -1.000423 +v -143.286102 -65.026039 -1.000423 +v -143.286102 -65.026039 -0.500423 +v -148.891510 -65.026039 -0.500423 +v -149.026001 -65.528236 -1.000423 +v -143.151611 -65.528236 -1.000423 +v -143.151611 -65.528236 -0.500423 +v -149.026001 -65.528236 -0.500423 +v -149.071411 -66.046135 -1.000423 +v -143.106293 -66.046135 -1.000423 +v -143.106293 -66.046135 -0.500423 +v -149.071411 -66.046135 -0.500423 +v 0.453159 -117.426369 -0.500362 +v 0.000000 -117.387474 -0.500362 +v 0.000000 -117.387474 -1.000362 +v 0.453159 -117.426369 -1.000362 +v 0.893028 -117.542168 -0.500362 +v 0.893028 -117.542168 -1.000362 +v 1.306690 -117.731270 -0.500362 +v 1.306690 -117.731270 -1.000362 +v 1.681999 -117.988167 -0.500362 +v 1.681999 -117.988167 -1.000362 +v 2.007938 -118.305473 -0.500362 +v 2.007938 -118.305473 -1.000362 +v 2.274960 -118.673668 -0.500362 +v 2.274960 -118.673668 -1.000362 +v 2.475208 -119.082069 -0.500362 +v 2.475208 -119.082069 -1.000362 +v 2.602810 -119.518578 -0.500354 +v 2.602810 -119.518578 -1.000354 +v 2.654030 -119.970573 -0.500354 +v 2.654030 -119.970573 -1.000354 +v 2.627357 -120.424568 -0.500354 +v 2.627357 -120.424568 -1.000354 +v 2.523567 -120.867455 -0.500354 +v 2.523567 -120.867455 -1.000354 +v -108.280006 113.448616 -0.500637 +v -111.521309 116.042473 -0.500637 +v -138.588806 116.042473 -0.500637 +v -143.588806 111.042473 -0.500629 +v -143.512787 111.910713 -0.500637 +v -139.457092 115.966507 -0.500637 +v -108.459007 113.601486 -0.500637 +v -111.286705 116.024002 -0.500637 +v 143.588806 71.953712 -0.500583 +v 143.588806 111.042473 -0.500629 +v 111.521317 116.042473 -0.500637 +v 111.286667 116.024002 -0.500637 +v 138.588806 116.042473 -0.500637 +v 139.457062 115.966507 -0.500637 +v -111.057808 115.969048 -0.500637 +v 111.057785 115.969048 -0.500637 +v -110.840309 115.878983 -0.500637 +v 110.840332 115.878983 -0.500637 +v -140.298889 115.740929 -0.500637 +v 143.512802 111.910713 -0.500637 +v 140.298920 115.740929 -0.500637 +v -110.639702 115.755997 -0.500637 +v 110.639641 115.755997 -0.500637 +v -110.460701 115.603134 -0.500637 +v 110.460655 115.603134 -0.500637 +v -143.287292 112.752571 -0.500637 +v -141.088806 115.372604 -0.500637 +v -141.802704 114.872688 -0.500637 +v -142.419006 114.256409 -0.500637 +v -142.918915 113.542473 -0.500637 +v 141.088821 115.372604 -0.500637 +v 108.459000 113.601486 -0.500637 +v 141.802750 114.872688 -0.500637 +v 142.419037 114.256409 -0.500637 +v 143.287262 112.752571 -0.500637 +v 142.918945 113.542473 -0.500637 +v 108.280022 113.448616 -0.500637 +v -108.079308 113.325630 -0.500637 +v 108.079330 113.325630 -0.500637 +v -143.588806 71.953712 -0.500583 +v -107.861900 113.235550 -0.500637 +v 72.880630 28.453758 -0.500537 +v 107.861870 113.235550 -0.500637 +v -107.633003 113.180603 -0.500637 +v 107.632996 113.180603 -0.500637 +v -72.880600 28.453758 -0.500537 +v -107.398399 113.162140 -0.500637 +v 107.398346 113.162140 -0.500637 +v 16.176128 -122.951759 -1.000354 +v 16.077459 -122.959953 -1.000354 +v 16.272108 -122.927452 -1.000354 +v -23.103874 -122.951759 -1.000354 +v -23.202530 -122.959953 -1.000354 +v -23.007889 -122.927452 -1.000354 +v -147.588806 71.953712 -0.500583 +v -148.136292 71.910622 -0.500583 +v 147.588806 71.953712 -0.500583 +v 148.136292 71.910622 -0.500583 +v -148.670410 71.782410 -0.500583 +v 148.670395 71.782410 -0.500583 +v -149.177795 71.572235 -0.500583 +v 149.177795 71.572235 -0.500583 +v -149.646088 71.285271 -0.500583 +v 149.646088 71.285271 -0.500583 +v -150.063690 70.928581 -0.500583 +v 150.063690 70.928581 -0.500583 +v -150.420410 70.510963 -0.500583 +v 150.420395 70.510963 -0.500583 +v -150.080109 28.453758 -0.500537 +v -150.707306 70.042679 -0.500583 +v -151.045715 69.001236 -0.500583 +v -151.088806 68.453720 -0.500583 +v 150.707306 70.042679 -0.500583 +v -150.917511 69.535271 -0.500583 +v 150.917496 69.535271 -0.500583 +v 151.045700 69.001236 -0.500583 +v 151.088806 68.453720 -0.500583 +v 16.362789 -122.887764 -1.000354 +v 151.088806 28.453758 -0.500537 +v -149.026001 59.435814 -0.500568 +v -143.151611 59.435814 -0.500568 +v 143.151581 59.435814 -0.500568 +v 149.026001 59.435814 -0.500568 +v -148.891510 58.933640 -0.500568 +v -143.286102 58.933640 -0.500568 +v 143.286133 58.933640 -0.500568 +v 148.891495 58.933640 -0.500568 +v -148.671814 58.462460 -0.500568 +v -143.505890 58.462460 -0.500568 +v 143.505798 58.462460 -0.500568 +v 148.671799 58.462460 -0.500568 +v -148.373596 58.036587 -0.500568 +v -143.804016 58.036587 -0.500568 +v 143.804001 58.036587 -0.500568 +v 148.373596 58.036587 -0.500568 +v -148.005890 57.668968 -0.500568 +v -144.171692 57.668968 -0.500568 +v 144.171692 57.668968 -0.500568 +v 148.005997 57.668968 -0.500568 +v -147.580109 57.370770 -0.500568 +v -144.597504 57.370770 -0.500568 +v 144.597504 57.370770 -0.500568 +v 147.580109 57.370770 -0.500568 +v -147.108887 57.151047 -0.500568 +v -145.068695 57.151047 -0.500568 +v 145.068695 57.151047 -0.500568 +v 147.108902 57.151047 -0.500568 +v -146.606689 57.016499 -0.500568 +v -145.570892 57.016499 -0.500568 +v 145.570892 57.016499 -0.500568 +v 146.606689 57.016499 -0.500568 +v -146.088806 56.971188 -0.500568 +v 146.088806 56.971188 -0.500568 +v -150.080109 -34.546165 -0.500461 +v -151.088806 -74.546120 -0.500408 +v -145.570892 -0.109009 -0.500499 +v -145.068695 -0.243507 -0.500499 +v -143.286102 -2.026108 -0.500499 +v -143.151611 -2.528313 -0.500499 +v -72.880600 -34.546165 -0.500461 +v -144.597504 -0.463211 -0.500499 +v -144.171692 -0.761414 -0.500499 +v -143.804016 -1.129112 -0.500499 +v -143.505890 -1.554909 -0.500499 +v 72.880630 -34.546165 -0.500461 +v 151.088806 -34.546165 -0.500461 +v -143.106293 -3.046204 -0.500499 +v -143.151611 -3.564102 -0.500499 +v 143.151581 -3.564102 -0.500499 +v 149.026001 -3.564102 -0.500499 +v -143.286102 -4.066299 -0.500499 +v 143.286133 -4.066299 -0.500499 +v 148.891495 -4.066299 -0.500499 +v -143.505890 -4.537506 -0.500492 +v 143.505798 -4.537506 -0.500492 +v 148.671799 -4.537506 -0.500492 +v -143.804016 -4.963303 -0.500492 +v 143.804001 -4.963303 -0.500492 +v 148.373596 -4.963303 -0.500492 +v -144.171692 -5.331001 -0.500492 +v 144.171692 -5.331001 -0.500492 +v 148.005997 -5.331001 -0.500492 +v -144.597504 -5.629204 -0.500492 +v 144.597504 -5.629204 -0.500492 +v 147.580109 -5.629204 -0.500492 +v -145.068695 -5.848900 -0.500492 +v 145.068695 -5.848900 -0.500492 +v 147.108902 -5.848900 -0.500492 +v -145.570892 -5.983406 -0.500492 +v 145.570892 -5.983406 -0.500492 +v 146.606689 -5.983406 -0.500492 +v 146.088806 -6.028702 -0.500492 +v -16.176132 -122.951759 -1.000354 +v -16.272110 -122.927452 -1.000354 +v -16.362801 -122.887764 -1.000354 +v -150.420410 -76.603416 -0.500408 +v -72.880600 -93.208107 -0.500392 +v 72.880630 -93.208107 -0.500392 +v 151.088806 -74.546120 -0.500408 +v -149.026001 -66.564034 -0.500423 +v -143.151611 -66.564034 -0.500423 +v 143.151581 -66.564034 -0.500423 +v 149.026001 -66.564034 -0.500423 +v -148.891510 -67.066216 -0.500423 +v -143.286102 -67.066216 -0.500423 +v 143.286133 -67.066216 -0.500423 +v 148.891495 -67.066216 -0.500423 +v -148.671814 -67.537422 -0.500423 +v -143.505890 -67.537422 -0.500423 +v 143.505798 -67.537422 -0.500423 +v 148.671799 -67.537422 -0.500423 +v -148.373596 -67.963219 -0.500423 +v -143.804016 -67.963219 -0.500423 +v 143.804001 -67.963219 -0.500423 +v 148.373596 -67.963219 -0.500423 +v -148.005890 -68.330925 -0.500415 +v -144.171692 -68.330925 -0.500415 +v 144.171692 -68.330925 -0.500415 +v 148.005997 -68.330925 -0.500415 +v -147.580109 -68.629112 -0.500415 +v -144.597504 -68.629112 -0.500415 +v 144.597504 -68.629112 -0.500415 +v 147.580109 -68.629112 -0.500415 +v -147.108887 -68.848824 -0.500415 +v -145.068695 -68.848824 -0.500415 +v 143.588806 -78.046120 -0.500408 +v 145.068695 -68.848824 -0.500415 +v 151.045700 -75.093620 -0.500408 +v 147.108902 -68.848824 -0.500415 +v -150.063690 -77.021019 -0.500408 +v -146.606689 -68.983315 -0.500415 +v -145.570892 -68.983315 -0.500415 +v 145.570892 -68.983315 -0.500415 +v 150.420395 -76.603416 -0.500408 +v 150.707306 -76.135124 -0.500408 +v 150.917496 -75.627724 -0.500408 +v 146.606689 -68.983315 -0.500415 +v 149.646088 -77.377724 -0.500408 +v 150.063690 -77.021019 -0.500408 +v -147.588806 -78.046120 -0.500408 +v -146.088806 -69.028618 -0.500415 +v -149.177795 -77.664619 -0.500408 +v -148.670410 -77.874825 -0.500408 +v -148.136292 -78.003014 -0.500408 +v -149.646088 -77.377724 -0.500408 +v 146.088806 -69.028618 -0.500415 +v 147.588806 -78.046120 -0.500408 +v 148.136292 -78.003014 -0.500408 +v 148.670395 -77.874825 -0.500408 +v 149.177795 -77.664619 -0.500408 +v -143.588806 -78.046120 -0.500408 +v -151.045715 -75.093620 -0.500408 +v -150.707306 -76.135124 -0.500408 +v -150.917511 -75.627724 -0.500408 +v -143.588806 -93.208107 -0.500392 +v 143.588806 -93.208107 -0.500392 +v -128.915192 -109.782967 -0.500370 +v -128.684906 -109.727272 -0.500370 +v -129.133911 -109.874275 -0.500370 +v -143.588806 -109.134880 -0.500370 +v -130.812408 -112.582069 -0.500370 +v -129.790192 -110.537773 -0.500370 +v -129.667816 -110.334770 -0.500370 +v -129.515015 -110.153679 -0.500370 +v -129.335510 -109.998878 -0.500370 +v -128.448608 -109.708580 -0.500370 +v -16.077473 -122.959953 -1.000354 +v -91.145195 -109.786369 -0.500370 +v -90.922295 -109.881767 -0.500370 +v -90.717705 -110.011879 -0.500370 +v -90.536797 -110.173180 -0.500370 +v -90.384209 -110.361473 -0.500370 +v -90.263908 -110.571877 -0.500370 +v -89.166100 -112.913872 -0.500362 +v -91.622108 -109.708580 -0.500370 +v -91.380501 -109.728172 -0.500370 +v -87.305199 -114.320076 -0.500362 +v -86.902504 -114.352776 -0.500362 +v -88.965599 -113.264580 -0.500362 +v -88.711296 -113.578468 -0.500362 +v -88.409706 -113.847374 -0.500362 +v -88.068703 -114.064079 -0.500362 +v -87.697304 -114.223076 -0.500362 +v 16.359869 -118.441475 -0.500362 +v 16.681858 -117.904274 -0.500362 +v 17.090958 -117.429970 -0.500362 +v 30.207767 -111.524071 -0.500370 +v 30.675508 -111.309975 -0.500370 +v 17.575108 -117.032677 -0.500362 +v 18.120058 -116.723976 -0.500362 +v -69.674500 -112.573769 -0.500370 +v -69.473999 -112.223076 -0.500370 +v -67.410805 -111.134880 -0.500370 +v -31.685455 -111.134880 -0.500370 +v -31.172951 -111.178978 -0.500370 +v -30.675514 -111.309975 -0.500370 +v 16.134449 -119.025780 -0.500362 +v -69.219704 -111.909172 -0.500370 +v -68.918098 -111.640373 -0.500370 +v -68.577103 -111.423576 -0.500370 +v -68.205704 -111.264580 -0.500370 +v -67.813499 -111.167580 -0.500370 +v -72.097504 -114.352776 -0.500362 +v -71.694901 -114.320076 -0.500362 +v -71.302704 -114.223076 -0.500362 +v -70.931305 -114.064079 -0.500362 +v -70.590302 -113.847374 -0.500362 +v -70.288704 -113.578468 -0.500362 +v -70.034401 -113.264580 -0.500362 +v -69.833900 -112.913872 -0.500362 +v 31.172939 -111.178978 -0.500370 +v 91.380463 -109.728172 -0.500370 +v 91.622078 -109.708580 -0.500370 +v 90.263885 -110.571877 -0.500370 +v 90.384171 -110.361473 -0.500370 +v 90.536789 -110.173180 -0.500370 +v 90.717743 -110.011879 -0.500370 +v 90.922318 -109.881767 -0.500370 +v 91.145157 -109.786369 -0.500370 +v -22.917198 -122.887764 -1.000354 +v 22.834288 -122.833656 -1.000354 +v 22.604509 -122.311256 -1.000354 +v 22.620649 -122.213661 -1.000354 +v 88.017029 -114.339668 -0.500362 +v 88.173889 -114.300880 -0.500362 +v 88.322464 -114.237267 -0.500362 +v 88.458839 -114.150566 -0.500362 +v 88.579483 -114.043068 -0.500362 +v 88.681213 -113.917473 -0.500362 +v 16.675489 -122.311256 -1.000354 +v 16.659348 -122.213661 -1.000354 +v 68.682281 -111.186775 -0.500370 +v 68.830849 -111.250374 -0.500370 +v 68.967224 -111.337074 -0.500370 +v 69.087868 -111.444572 -0.500370 +v 69.189606 -111.570168 -0.500370 +v -16.675491 -122.311256 -1.000354 +v -16.659351 -122.213661 -1.000354 +v 31.685438 -111.134880 -0.500370 +v 68.525406 -111.147972 -0.500370 +v -22.604515 -122.311256 -1.000354 +v -22.620651 -122.213661 -1.000354 +v 128.448608 -109.708580 -0.500370 +v 128.684860 -109.727272 -0.500370 +v 128.915222 -109.782967 -0.500370 +v 129.133926 -109.874275 -0.500370 +v 129.335526 -109.998878 -0.500370 +v 129.514999 -110.153679 -0.500370 +v 129.667847 -110.334770 -0.500370 +v 129.790253 -110.537773 -0.500370 +v 143.588806 -109.134880 -0.500370 +v -139.588806 -113.134880 -0.500362 +v -140.283417 -113.074074 -0.500362 +v -143.528107 -109.829475 -0.500370 +v 130.894012 -112.717369 -0.500370 +v 131.549332 -113.122368 -0.500362 +v 139.588806 -113.134880 -0.500362 +v 143.528000 -109.829475 -0.500370 +v -143.347595 -110.502968 -0.500370 +v 143.347595 -110.502968 -0.500370 +v -143.052887 -111.134880 -0.500370 +v 143.052917 -111.134880 -0.500370 +v -142.159912 -112.199074 -0.500370 +v -141.588806 -112.598976 -0.500370 +v -142.653015 -111.706078 -0.500370 +v -140.956909 -112.893669 -0.500370 +v 142.652985 -111.706078 -0.500370 +v -30.207771 -111.524071 -0.500370 +v -19.326851 -116.405876 -0.500362 +v -18.709751 -116.512978 -0.500362 +v -29.783478 -111.814873 -0.500370 +v -21.704895 -117.032677 -0.500362 +v -21.159950 -116.723976 -0.500362 +v -20.570240 -116.512978 -0.500362 +v -19.953152 -116.405876 -0.500362 +v 19.953159 -116.405876 -0.500362 +v 20.570248 -116.512978 -0.500362 +v 19.326838 -116.405876 -0.500362 +v 21.159939 -116.723976 -0.500362 +v 21.704889 -117.032677 -0.500362 +v 29.783478 -111.814873 -0.500370 +v 18.709759 -116.512978 -0.500362 +v 142.159958 -112.199074 -0.500370 +v 70.318779 -113.917473 -0.500362 +v -29.415092 -112.173866 -0.500370 +v -22.189049 -117.429970 -0.500362 +v 22.189039 -117.429970 -0.500362 +v 29.415098 -112.173866 -0.500370 +v -29.113464 -112.590569 -0.500370 +v 29.113468 -112.590569 -0.500370 +v 140.956909 -112.893669 -0.500370 +v 141.588821 -112.598976 -0.500370 +v 140.283401 -113.074074 -0.500362 +v -131.549316 -113.122368 -0.500362 +v 26.973879 -122.320656 -1.000354 +v 26.041208 -122.959953 -1.000354 +v 27.021788 -122.156059 -1.000354 +v -131.395813 -113.085274 -0.500362 +v -131.249908 -113.024376 -0.500362 +v -131.115601 -112.941368 -0.500362 +v -130.995911 -112.838173 -0.500370 +v -130.894012 -112.717369 -0.500370 +v 15.996859 -120.266167 -1.000354 +v 16.012249 -119.640068 -1.000354 +v -26.675201 -122.733253 -1.000354 +v -26.797989 -122.613655 -1.000354 +v -27.021805 -122.156059 -1.000354 +v -28.887451 -113.052681 -0.500362 +v 28.887447 -113.052681 -0.500362 +v 130.995911 -112.838173 -0.500370 +v 131.115555 -112.941368 -0.500362 +v 131.249969 -113.024376 -0.500362 +v 131.395752 -113.085274 -0.500362 +v -28.743698 -113.546577 -0.500362 +v -22.598145 -117.904274 -0.500362 +v 28.743698 -113.546577 -0.500362 +v -27.021805 -122.156059 -0.500354 +v -23.267754 -119.640068 -0.500354 +v -23.145554 -119.025780 -0.500362 +v -22.920128 -118.441475 -0.500362 +v 22.598139 -117.904274 -0.500362 +v 22.920128 -118.441475 -0.500362 +v 23.145548 -119.025780 -0.500362 +v 27.021788 -122.156059 -0.500354 +v -26.533775 -122.830254 -1.000354 +v -26.377861 -122.901558 -1.000354 +v 70.982971 -114.339668 -0.500362 +v 70.420517 -114.043068 -0.500362 +v 70.541161 -114.150566 -0.500362 +v 70.826096 -114.300880 -0.500362 +v 70.677536 -114.237267 -0.500362 +v -18.120052 -116.723976 -0.500362 +v -17.575111 -117.032677 -0.500362 +v -17.090961 -117.429970 -0.500362 +v -16.681862 -117.904274 -0.500362 +v -16.359871 -118.441475 -0.500362 +v -0.453171 -117.426369 -0.500362 +v -16.134453 -119.025780 -0.500362 +v -0.893032 -117.542168 -0.500362 +v -1.306690 -117.731270 -0.500362 +v -1.682003 -117.988167 -0.500362 +v 16.012249 -119.640068 -0.500354 +v -16.012253 -119.640068 -0.500354 +v -2.007942 -118.305473 -0.500362 +v -2.274963 -118.673668 -0.500362 +v -2.475201 -119.082069 -0.500362 +v 23.267748 -119.640068 -0.500354 +v -2.602810 -119.518578 -0.500354 +v -2.654030 -119.970573 -0.500354 +v -23.283142 -120.266167 -0.500354 +v -15.996861 -120.266167 -0.500354 +v -2.627350 -120.424568 -0.500354 +v 15.996859 -120.266167 -0.500354 +v 23.283138 -120.266167 -0.500354 +v -23.191254 -120.885658 -0.500354 +v -16.088741 -120.885658 -0.500354 +v -2.523571 -120.867455 -0.500354 +v 16.088739 -120.885658 -0.500354 +v 23.191259 -120.885658 -0.500354 +v 16.627369 -122.119957 -0.500354 +v -16.285191 -121.480354 -0.500354 +v -16.627373 -122.119957 -0.500354 +v 16.285189 -121.480354 -0.500354 +v -22.994812 -121.480354 -0.500354 +v 22.994808 -121.480354 -0.500354 +v -22.620651 -122.213661 -0.500354 +v 22.652628 -122.119957 -0.500354 +v -26.212044 -122.945259 -0.500354 +v -23.202530 -122.959953 -0.500354 +v 16.445709 -122.833656 -1.000354 +v -16.675343 -122.410255 -1.000354 +v -26.898544 -122.474754 -1.000354 +v -16.176132 -122.951759 -0.500354 +v 16.077459 -122.959953 -0.500354 +v -16.445702 -122.833656 -1.000354 +v 23.103868 -122.951759 -0.500354 +v -22.834305 -122.833656 -1.000354 +v -26.973885 -122.320656 -1.000354 +v -16.659351 -122.213661 -0.500354 +v -16.445702 -122.833656 -0.500354 +v -16.362801 -122.887764 -0.500354 +v -16.272110 -122.927452 -0.500354 +v 16.659348 -122.213661 -0.500354 +v 22.620649 -122.213661 -0.500354 +v -26.973885 -122.320656 -0.500354 +v -26.212044 -122.945259 -1.000354 +v 26.212048 -122.945259 -0.500354 +v 26.377859 -122.901558 -0.500354 +v 26.533768 -122.830254 -0.500354 +v 26.675198 -122.733253 -0.500354 +v 26.797998 -122.613655 -0.500354 +v 26.898539 -122.474754 -0.500354 +v 26.973879 -122.320656 -0.500354 +v -22.604515 -122.311256 -0.500354 +v -16.675491 -122.311256 -0.500354 +v -16.579472 -122.688560 -0.500354 +v -16.518593 -122.766655 -0.500354 +v 16.675489 -122.311256 -0.500354 +v 22.604509 -122.311256 -0.500354 +v -22.604652 -122.410255 -0.500354 +v -16.675343 -122.410255 -0.500354 +v 16.675348 -122.410255 -0.500354 +v 22.604649 -122.410255 -0.500354 +v -26.898544 -122.474754 -0.500354 +v -22.621078 -122.507957 -0.500354 +v -16.658932 -122.507957 -0.500354 +v 16.658928 -122.507957 -0.500354 +v 22.621069 -122.507957 -0.500354 +v -26.797989 -122.613655 -0.500354 +v -22.653328 -122.601555 -0.500354 +v -16.626671 -122.601555 -0.500354 +v 16.626669 -122.601555 -0.500354 +v 22.653328 -122.601555 -0.500354 +v 22.700529 -122.688560 -0.500354 +v 22.761408 -122.766655 -0.500354 +v 22.834288 -122.833656 -0.500354 +v 22.917208 -122.887764 -0.500354 +v 23.007889 -122.927452 -0.500354 +v -22.700539 -122.688560 -0.500354 +v 16.579468 -122.688560 -0.500354 +v -26.377861 -122.901558 -0.500354 +v -26.675201 -122.733253 -0.500354 +v -23.103874 -122.951759 -0.500354 +v -22.761398 -122.766655 -0.500354 +v 16.176128 -122.951759 -0.500354 +v 16.272108 -122.927452 -0.500354 +v 16.518589 -122.766655 -0.500354 +v -26.533775 -122.830254 -0.500354 +v -22.917198 -122.887764 -0.500354 +v -22.834305 -122.833656 -0.500354 +v -23.007889 -122.927452 -0.500354 +v 16.445709 -122.833656 -0.500354 +v 16.362789 -122.887764 -0.500354 +v -149.026001 59.435810 -1.000568 +v -143.151611 59.435810 -1.000568 +v -148.891510 58.933636 -1.000568 +v -143.286102 58.933636 -1.000568 +v -148.671814 58.462456 -1.000568 +v -143.505890 58.462456 -1.000568 +v -148.373596 58.036583 -1.000568 +v -143.804016 58.036583 -1.000568 +v -148.005890 57.668964 -1.000568 +v -144.171692 57.668964 -1.000568 +v -147.580109 57.370766 -1.000568 +v -144.597504 57.370766 -1.000568 +v -147.108887 57.151043 -1.000568 +v -145.068695 57.151043 -1.000568 +v -146.606689 57.016495 -1.000568 +v -145.570892 57.016495 -1.000568 +v -146.088806 56.971184 -1.000568 +v -145.570892 -0.109009 -1.000499 +v -145.068695 -0.243507 -1.000499 +v -144.597504 -0.463211 -1.000499 +v -144.171692 -0.761414 -1.000499 +v -143.804016 -1.129112 -1.000499 +v -143.505890 -1.554909 -1.000499 +v -143.286102 -2.026108 -1.000499 +v -143.151611 -2.528313 -1.000499 +v -143.106293 -3.046204 -1.000499 +v -143.151611 -3.564102 -1.000499 +v -143.286102 -4.066299 -1.000499 +v -143.505890 -4.537506 -1.000492 +v -143.804016 -4.963303 -1.000492 +v -144.171692 -5.331001 -1.000492 +v -144.597504 -5.629204 -1.000492 +v -145.068695 -5.848900 -1.000492 +v -145.570892 -5.983406 -1.000492 +v 143.151581 -66.564034 -1.000423 +v 149.026001 -66.564034 -1.000423 +v 143.286133 -67.066216 -1.000423 +v 148.891495 -67.066216 -1.000423 +v 143.505798 -67.537422 -1.000423 +v 148.671799 -67.537422 -1.000423 +v 143.804001 -67.963219 -1.000423 +v 148.373596 -67.963219 -1.000423 +v 144.171692 -68.330925 -1.000415 +v 148.005997 -68.330925 -1.000415 +v 144.597504 -68.629112 -1.000415 +v 147.580109 -68.629112 -1.000415 +v 145.068695 -68.848824 -1.000415 +v 147.108902 -68.848824 -1.000415 +v 145.570892 -68.983315 -1.000415 +v 146.606689 -68.983315 -1.000415 +v 146.088806 -69.028618 -1.000415 +v 143.151581 59.435810 -1.000568 +v 149.026001 59.435810 -1.000568 +v 143.286133 58.933636 -1.000568 +v 148.891495 58.933636 -1.000568 +v 143.505798 58.462456 -1.000568 +v 148.671799 58.462456 -1.000568 +v 143.804001 58.036583 -1.000568 +v 148.373596 58.036583 -1.000568 +v 144.171692 57.668964 -1.000568 +v 148.005997 57.668964 -1.000568 +v 144.597504 57.370766 -1.000568 +v 147.580109 57.370766 -1.000568 +v 145.068695 57.151043 -1.000568 +v 147.108902 57.151043 -1.000568 +v 145.570892 57.016495 -1.000568 +v 146.606689 57.016495 -1.000568 +v 146.088806 56.971184 -1.000568 +v 143.151581 -3.564102 -1.000499 +v 149.026001 -3.564102 -1.000499 +v 143.286133 -4.066299 -1.000499 +v 148.891495 -4.066299 -1.000499 +v 143.505798 -4.537506 -1.000492 +v 148.671799 -4.537506 -1.000492 +v 143.804001 -4.963303 -1.000492 +v 148.373596 -4.963303 -1.000492 +v 144.171692 -5.331001 -1.000492 +v 148.005997 -5.331001 -1.000492 +v 144.597504 -5.629204 -1.000492 +v 147.580109 -5.629204 -1.000492 +v 145.068695 -5.848900 -1.000492 +v 147.108902 -5.848900 -1.000492 +v 145.570892 -5.983406 -1.000492 +v 146.606689 -5.983406 -1.000492 +v 146.088806 -6.028702 -1.000492 +v -149.026001 -66.564034 -1.000423 +v -143.151611 -66.564034 -1.000423 +v -148.891510 -67.066216 -1.000423 +v -143.286102 -67.066216 -1.000423 +v -148.671814 -67.537422 -1.000423 +v -143.505890 -67.537422 -1.000423 +v -148.373596 -67.963219 -1.000423 +v -143.804016 -67.963219 -1.000423 +v -148.005890 -68.330925 -1.000415 +v -144.171692 -68.330925 -1.000415 +v -147.580109 -68.629112 -1.000415 +v -144.597504 -68.629112 -1.000415 +v -147.108887 -68.848824 -1.000415 +v -145.068695 -68.848824 -1.000415 +v -146.606689 -68.983315 -1.000415 +v -145.570892 -68.983315 -1.000415 +v -146.088806 -69.028618 -1.000415 +v -2.523571 -120.867455 -1.000354 +v -0.453171 -117.426369 -1.000362 +v -0.893032 -117.542168 -1.000362 +v -1.306690 -117.731270 -1.000362 +v -1.682003 -117.988167 -1.000362 +v -2.007942 -118.305473 -1.000362 +v -2.274963 -118.673668 -1.000362 +v -2.475201 -119.082069 -1.000362 +v -2.602810 -119.518578 -1.000354 +v -2.654030 -119.970573 -1.000354 +v -2.627350 -120.424568 -1.000354 +v -91.622108 -109.708580 -1.000370 +v -91.380501 -109.728172 -1.000370 +v -91.145195 -109.786369 -1.000370 +v -90.922295 -109.881767 -1.000370 +v -90.717705 -110.011879 -1.000370 +v -90.536797 -110.173180 -1.000370 +v -90.384209 -110.361473 -1.000370 +v -90.263908 -110.571877 -1.000370 +v -89.166100 -112.913872 -1.000362 +v -88.965599 -113.264580 -1.000362 +v -88.711296 -113.578468 -1.000362 +v -88.409706 -113.847374 -1.000362 +v -88.068703 -114.064079 -1.000362 +v -87.697304 -114.223076 -1.000362 +v -87.305199 -114.320076 -1.000362 +v -86.902504 -114.352776 -1.000362 +v 16.518589 -122.766655 -1.000354 +v -16.518593 -122.766655 -1.000354 +v -72.097504 -114.352776 -1.000362 +v -69.833900 -112.913872 -1.000362 +v -70.034401 -113.264580 -1.000362 +v -70.288704 -113.578468 -1.000362 +v -70.590302 -113.847374 -1.000362 +v -70.931305 -114.064079 -1.000362 +v -71.302704 -114.223076 -1.000362 +v -71.694901 -114.320076 -1.000362 +v -69.674500 -112.573769 -1.000370 +v -67.813499 -111.167580 -1.000370 +v -67.410805 -111.134880 -1.000370 +v -68.205704 -111.264580 -1.000370 +v -68.577103 -111.423576 -1.000370 +v -68.918098 -111.640373 -1.000370 +v -69.219704 -111.909172 -1.000370 +v -69.473999 -112.223076 -1.000370 +v -31.685455 -111.134880 -1.000370 +v -31.172951 -111.178978 -1.000370 +v -30.675514 -111.309975 -1.000370 +v -30.207771 -111.524071 -1.000370 +v -29.783478 -111.814873 -1.000370 +v -29.415092 -112.173866 -1.000370 +v -29.113464 -112.590569 -1.000370 +v -28.887451 -113.052681 -1.000362 +v -28.743698 -113.546577 -1.000362 +v 22.652628 -122.119957 -1.000354 +v 16.627369 -122.119957 -1.000354 +v -22.761398 -122.766655 -1.000354 +v 26.212048 -122.945259 -1.000354 +v 26.675198 -122.733253 -1.000354 +v 22.699589 -122.032753 -1.000354 +v 22.917208 -122.887764 -1.000354 +v -22.604652 -122.410255 -1.000354 +v -22.621078 -122.507957 -1.000354 +v -22.653328 -122.601555 -1.000354 +v -22.700539 -122.688560 -1.000354 +v -19.326851 -116.405876 -1.000362 +v -19.953152 -116.405876 -1.000362 +v -20.570240 -116.512978 -1.000362 +v -18.709751 -116.512978 -1.000362 +v -21.159950 -116.723976 -1.000362 +v -18.120052 -116.723976 -1.000362 +v -21.704895 -117.032677 -1.000362 +v -17.575111 -117.032677 -1.000362 +v -22.189049 -117.429970 -1.000362 +v -17.090961 -117.429970 -1.000362 +v -22.598145 -117.904274 -1.000362 +v -16.681862 -117.904274 -1.000362 +v -22.920128 -118.441475 -1.000362 +v -16.359871 -118.441475 -1.000362 +v -23.145554 -119.025780 -1.000362 +v -16.134453 -119.025780 -1.000362 +v -23.267754 -119.640068 -1.000354 +v -16.012253 -119.640068 -1.000354 +v -23.283142 -120.266167 -1.000354 +v -15.996861 -120.266167 -1.000354 +v -23.191254 -120.885658 -1.000354 +v -16.088741 -120.885658 -1.000354 +v -22.994812 -121.480354 -1.000354 +v -16.285191 -121.480354 -1.000354 +v 26.377859 -122.901558 -1.000354 +v 23.007889 -122.927452 -1.000354 +v -16.658932 -122.507957 -1.000354 +v -16.626671 -122.601555 -1.000354 +v -16.579472 -122.688560 -1.000354 +v 26.533768 -122.830254 -1.000354 +v 16.579468 -122.688560 -1.000354 +v 16.675348 -122.410255 -1.000354 +v 16.658928 -122.507957 -1.000354 +v 16.626669 -122.601555 -1.000354 +v 19.953159 -116.405876 -1.000362 +v 19.326838 -116.405876 -1.000362 +v 18.709759 -116.512978 -1.000362 +v 20.570248 -116.512978 -1.000362 +v 18.120058 -116.723976 -1.000362 +v 21.159939 -116.723976 -1.000362 +v 17.575108 -117.032677 -1.000362 +v 21.704889 -117.032677 -1.000362 +v 17.090958 -117.429970 -1.000362 +v 22.189039 -117.429970 -1.000362 +v 16.681858 -117.904274 -1.000362 +v 22.598139 -117.904274 -1.000362 +v 16.359869 -118.441475 -1.000362 +v 22.920128 -118.441475 -1.000362 +v 16.134449 -119.025780 -1.000362 +v 23.145548 -119.025780 -1.000362 +v 23.267748 -119.640068 -1.000354 +v 23.283138 -120.266167 -1.000354 +v 16.088739 -120.885658 -1.000354 +v 23.191259 -120.885658 -1.000354 +v 16.285189 -121.480354 -1.000354 +v 22.994808 -121.480354 -1.000354 +v 22.604649 -122.410255 -1.000354 +v 22.621069 -122.507957 -1.000354 +v 22.653328 -122.601555 -1.000354 +v 22.700529 -122.688560 -1.000354 +v 22.761408 -122.766655 -1.000354 +v 23.103868 -122.951759 -1.000354 +v 26.898539 -122.474754 -1.000354 +v 26.797998 -122.613655 -1.000354 +v 28.743698 -113.546577 -1.000362 +v 31.172939 -111.178978 -1.000370 +v 31.685438 -111.134880 -1.000370 +v 30.675508 -111.309975 -1.000370 +v 30.207767 -111.524071 -1.000370 +v 29.783478 -111.814873 -1.000370 +v 29.415098 -112.173866 -1.000370 +v 29.113468 -112.590569 -1.000370 +v 28.887447 -113.052681 -1.000362 +v 68.525406 -111.147972 -1.000370 +v 68.682281 -111.186775 -1.000370 +v 68.830849 -111.250374 -1.000370 +v 68.967224 -111.337074 -1.000370 +v 69.087868 -111.444572 -1.000370 +v 69.189606 -111.570168 -1.000370 +v 70.238586 -113.777168 -1.000362 +v 70.318779 -113.917473 -1.000362 +v 70.420517 -114.043068 -1.000362 +v 70.541161 -114.150566 -1.000362 +v 70.677536 -114.237267 -1.000362 +v 70.826096 -114.300880 -1.000362 +v 70.982971 -114.339668 -1.000362 +v 88.017029 -114.339668 -1.000362 +v 88.681213 -113.917473 -1.000362 +v 88.579483 -114.043068 -1.000362 +v 88.458839 -114.150566 -1.000362 +v 88.322464 -114.237267 -1.000362 +v 88.173889 -114.300880 -1.000362 +v 90.263885 -110.571877 -1.000370 +v 91.380463 -109.728172 -1.000370 +v 91.622078 -109.708580 -1.000370 +v 91.145157 -109.786369 -1.000370 +v 90.922318 -109.881767 -1.000370 +v 90.717743 -110.011879 -1.000370 +v 90.536789 -110.173180 -1.000370 +v 90.384171 -110.361473 -1.000370 +v 128.448608 -109.708580 -1.000370 +v 128.684860 -109.727272 -1.000370 +v 128.915222 -109.782967 -1.000370 +v 129.133926 -109.874275 -1.000370 +v 129.335526 -109.998878 -1.000370 +v 129.514999 -110.153679 -1.000370 +v 129.667847 -110.334770 -1.000370 +v 129.790253 -110.537773 -1.000370 +v 130.812408 -112.582069 -1.000370 +v 130.894012 -112.717369 -1.000370 +v 130.995911 -112.838173 -1.000370 +v 131.115555 -112.941368 -1.000362 +v 131.249969 -113.024376 -1.000362 +v 131.395752 -113.085274 -1.000362 +v 131.549332 -113.122368 -1.000362 +v 139.588806 -113.134880 -1.000362 +v 143.528000 -109.829475 -1.000370 +v 143.588806 -109.134880 -1.000370 +v 143.347595 -110.502968 -1.000370 +v 143.052917 -111.134880 -1.000370 +v 142.652985 -111.706078 -1.000370 +v 142.159958 -112.199074 -1.000370 +v 141.588821 -112.598976 -1.000370 +v 140.956909 -112.893669 -1.000370 +v 140.283401 -113.074074 -1.000362 +v 143.588806 -93.208107 -1.000392 +v 143.588806 -78.046120 -1.000408 +v 147.588806 -78.046120 -1.000408 +v 151.045700 -75.093620 -1.000408 +v 151.088806 -74.546120 -1.000408 +v 150.917496 -75.627724 -1.000408 +v 150.707306 -76.135124 -1.000408 +v 150.420395 -76.603416 -1.000408 +v 150.063690 -77.021019 -1.000408 +v 149.646088 -77.377724 -1.000408 +v 149.177795 -77.664619 -1.000408 +v 148.670395 -77.874825 -1.000408 +v 148.136292 -78.003014 -1.000408 +v 151.088806 28.453758 -1.000537 +v 151.088806 68.453712 -1.000583 +v 151.088806 -34.546165 -1.000461 +v 148.136292 71.910622 -1.000583 +v 147.588806 71.953712 -1.000583 +v 148.670395 71.782410 -1.000583 +v 149.177795 71.572235 -1.000583 +v 149.646088 71.285271 -1.000583 +v 150.063690 70.928581 -1.000583 +v 150.420395 70.510963 -1.000583 +v 150.707306 70.042679 -1.000583 +v 150.917496 69.535271 -1.000583 +v 151.045700 69.001236 -1.000583 +v 143.588806 71.953712 -1.000583 +v 143.588806 111.042473 -1.000629 +v 138.588806 116.042465 -1.000637 +v 139.457062 115.966507 -1.000637 +v 140.298920 115.740929 -1.000637 +v 141.088821 115.372604 -1.000637 +v 141.802750 114.872688 -1.000637 +v 142.419037 114.256409 -1.000637 +v 142.918945 113.542473 -1.000637 +v 143.287262 112.752571 -1.000637 +v 143.512802 111.910713 -1.000637 +v 111.521317 116.042465 -1.000637 +v 111.286667 116.024002 -1.000637 +v 111.057785 115.969048 -1.000637 +v 110.840332 115.878983 -1.000637 +v 110.639641 115.755997 -1.000637 +v 110.460655 115.603127 -1.000637 +v 108.459000 113.601486 -1.000637 +v 108.280022 113.448608 -1.000637 +v 108.079330 113.325630 -1.000637 +v 107.861870 113.235550 -1.000637 +v 107.632996 113.180603 -1.000637 +v 107.398346 113.162140 -1.000637 +v -107.398399 113.162140 -1.000637 +v -108.280006 113.448608 -1.000637 +v -108.459007 113.601486 -1.000637 +v -108.079308 113.325630 -1.000637 +v -107.861900 113.235550 -1.000637 +v -107.633003 113.180603 -1.000637 +v -110.460701 115.603127 -1.000637 +v -111.286705 116.024002 -1.000637 +v -111.521309 116.042465 -1.000637 +v -111.057808 115.969048 -1.000637 +v -110.840309 115.878983 -1.000637 +v -110.639702 115.755997 -1.000637 +v -138.588806 116.042465 -1.000637 +v -139.457092 115.966507 -1.000637 +v -140.298889 115.740929 -1.000637 +v -141.088806 115.372604 -1.000637 +v -141.802704 114.872688 -1.000637 +v -142.419006 114.256409 -1.000637 +v -142.918915 113.542473 -1.000637 +v -143.287292 112.752571 -1.000637 +v -143.512787 111.910713 -1.000637 +v -143.588806 111.042473 -1.000629 +v -143.588806 71.953712 -1.000583 +v -147.588806 71.953712 -1.000583 +v -148.136292 71.910622 -1.000583 +v -148.670410 71.782410 -1.000583 +v -149.177795 71.572235 -1.000583 +v -149.646088 71.285271 -1.000583 +v -150.063690 70.928581 -1.000583 +v -150.420410 70.510963 -1.000583 +v -150.707306 70.042679 -1.000583 +v -150.917511 69.535271 -1.000583 +v -151.045715 69.001236 -1.000583 +v -151.088806 68.453712 -1.000583 +v -151.088806 -74.546120 -1.000408 +v -151.045715 -75.093620 -1.000408 +v -150.917511 -75.627724 -1.000408 +v -150.707306 -76.135124 -1.000408 +v -150.420410 -76.603416 -1.000408 +v -150.063690 -77.021019 -1.000408 +v -149.646088 -77.377724 -1.000408 +v -149.177795 -77.664619 -1.000408 +v -148.670410 -77.874825 -1.000408 +v -148.136292 -78.003014 -1.000408 +v -147.588806 -78.046120 -1.000408 +v -143.588806 -78.046120 -1.000408 +v -143.588806 -93.208107 -1.000392 +v -143.588806 -109.134880 -1.000370 +v -143.528107 -109.829475 -1.000370 +v -143.347595 -110.502968 -1.000370 +v -143.052887 -111.134880 -1.000370 +v -142.653015 -111.706078 -1.000370 +v -142.159912 -112.199074 -1.000370 +v -141.588806 -112.598976 -1.000370 +v -140.956909 -112.893669 -1.000370 +v -140.283417 -113.074074 -1.000362 +v -139.588806 -113.134880 -1.000362 +v -131.549316 -113.122368 -1.000362 +v -130.894012 -112.717369 -1.000370 +v -130.995911 -112.838173 -1.000370 +v -131.115601 -112.941368 -1.000362 +v -131.249908 -113.024376 -1.000362 +v -131.395813 -113.085274 -1.000362 +v -129.790192 -110.537773 -1.000370 +v -128.684906 -109.727272 -1.000370 +v -128.448608 -109.708580 -1.000370 +v -128.915192 -109.782967 -1.000370 +v -129.133911 -109.874275 -1.000370 +v -129.335510 -109.998878 -1.000370 +v -129.515015 -110.153679 -1.000370 +v -129.667816 -110.334770 -1.000370 +v -72.880600 28.453758 -1.000537 +v 72.880630 28.453758 -1.000537 +v -150.080109 28.453758 -1.000537 +v -150.080109 -34.546165 -1.000461 +v 72.880630 -34.546165 -1.000461 +v -72.880600 -34.546165 -1.000461 +v 72.880630 -93.208107 -1.000392 +v -72.880600 -93.208107 -1.000392 + +f 4554 4555 4556 +f 4554 4556 5662 +f 4561 4554 5662 +f 4565 4561 5662 +f 4569 4565 5662 +f 4573 4569 5662 +f 4577 4573 5662 +f 4581 4577 5662 +f 5711 4581 5662 +f 5711 5662 5643 +f 5644 5711 5643 +f 4843 5644 5643 +f 4806 4843 5643 +f 4806 5643 5641 +f 4812 4806 5641 +f 4812 5641 5642 +f 4829 4812 5642 +f 4829 5642 5646 +f 4829 5646 5651 +f 4827 4829 5651 +f 4827 5651 5650 +f 4822 4827 5650 +f 4822 5650 5649 +f 4820 4822 5649 +f 4820 5649 5647 +f 4813 4820 5647 +f 4813 5647 5648 +f 4807 4813 5648 +f 4808 4807 5648 +f 4808 5648 5652 +f 5653 4808 5652 +f 5661 5653 5652 +f 5661 5654 5653 +f 5654 4811 5653 +f 4824 4811 5654 +f 5655 4824 5654 +f 5656 5655 5654 +f 5657 5656 5654 +f 5658 5657 5654 +f 5659 5658 5654 +f 5660 5659 5654 +f 5660 4831 5659 +f 4831 4835 5659 +f 4835 4831 4824 +f 4834 4835 4824 +f 4833 4834 4824 +f 4832 4833 4824 +f 4833 4832 5656 +f 4834 4833 5657 +f 4835 4834 5658 +f 4831 4810 4824 +f 4810 4831 5660 +f 5661 4810 5660 +f 4809 4810 5661 +f 4845 4809 5661 +f 5662 4845 5661 +f 5662 5661 5648 +f 4860 4845 5662 +f 4860 5662 5663 +f 5664 4860 5663 +f 4558 5664 5663 +f 4556 4558 5663 +f 4557 4558 4556 +f 4557 4559 4558 +f 4559 4560 4558 +f 4558 4560 5668 +f 4558 5668 5667 +f 4558 5667 5666 +f 4558 5666 5665 +f 5666 4864 5665 +f 4864 4861 5665 +f 5665 4861 5664 +f 4864 4559 4861 +f 4861 4559 4860 +f 4866 4559 4864 +f 4868 4559 4866 +f 4868 4866 5667 +f 4563 4559 4868 +f 4870 4563 4868 +f 4870 4868 5668 +f 5669 4870 5668 +f 4872 4870 5669 +f 5670 4872 5669 +f 5672 5670 5669 +f 5673 5672 5669 +f 5713 5673 5669 +f 4588 5713 5669 +f 4584 4588 5669 +f 4580 4584 5669 +f 4576 4580 5669 +f 4572 4576 5669 +f 4568 4572 5669 +f 4564 4568 5669 +f 4560 4564 5669 +f 4563 4564 4560 +f 4563 4567 4564 +f 4567 4568 4564 +f 4567 4571 4568 +f 4571 4567 4872 +f 4575 4571 4872 +f 4579 4575 4872 +f 4583 4579 4872 +f 4587 4583 4872 +f 4591 4587 4872 +f 4874 4591 4872 +f 4877 4874 4872 +f 4876 4877 4872 +f 4875 4876 4872 +f 4879 4876 4875 +f 4879 4875 5671 +f 5672 4879 5671 +f 5671 4875 5670 +f 4876 4879 5672 +f 4877 4876 5673 +f 4920 4877 5673 +f 5674 4920 5673 +f 5714 5674 5673 +f 5678 5674 5714 +f 4778 5678 5714 +f 4774 4778 5714 +f 4770 4774 5714 +f 4766 4770 5714 +f 4762 4766 5714 +f 4758 4762 5714 +f 4754 4758 5714 +f 4750 4754 5714 +f 4748 4750 5714 +f 4746 4748 5714 +f 4744 4746 5714 +f 4751 4744 5714 +f 4755 4751 5714 +f 5716 4755 5714 +f 5716 5714 5331 +f 5716 5331 5330 +f 5716 5330 5329 +f 5716 5329 5328 +f 5716 5328 5327 +f 5716 5327 5326 +f 5716 5326 5325 +f 5716 5325 5711 +f 5715 5716 5711 +f 5712 5715 5711 +f 5712 5711 5640 +f 5639 5712 5640 +f 4852 5639 5640 +f 4849 4852 5640 +f 4849 5640 5645 +f 4846 4849 5645 +f 4846 5645 5644 +f 4845 4849 4846 +f 4845 4846 4843 +f 4845 4851 4849 +f 4574 4851 4845 +f 4570 4574 4845 +f 4566 4570 4845 +f 4562 4566 4845 +f 4555 4562 4845 +f 4557 4555 4845 +f 4566 4562 4561 +f 4570 4566 4565 +f 4574 4570 4569 +f 4578 4851 4574 +f 4578 4574 4573 +f 4582 4851 4578 +f 4582 4578 4577 +f 4586 4851 4582 +f 4586 4582 4581 +f 4585 4586 4581 +f 4590 4586 4585 +f 4589 4590 4585 +f 5711 4589 4585 +f 5711 5300 4589 +f 5300 4886 4589 +f 4890 4886 5300 +f 5302 4890 5300 +f 4894 4890 5302 +f 5304 4894 5302 +f 5711 5304 5302 +f 5711 5306 5304 +f 5306 4898 5304 +f 4902 4898 5306 +f 5308 4902 5306 +f 4906 4902 5308 +f 5310 4906 5308 +f 5711 5310 5308 +f 5711 5312 5310 +f 5312 4910 5310 +f 4914 4910 5312 +f 5314 4914 5312 +f 5713 5314 5312 +f 5713 5315 5314 +f 5315 4917 5314 +f 4913 4917 5315 +f 4913 5315 5313 +f 4909 4913 5313 +f 4909 5313 5311 +f 4905 4909 5311 +f 4905 5311 5309 +f 4901 4905 5309 +f 4901 5309 5307 +f 4897 4901 5307 +f 4897 5307 5305 +f 4893 4897 5305 +f 4893 5305 5303 +f 4889 4893 5303 +f 4889 5303 5301 +f 4885 4889 5301 +f 4885 5301 5299 +f 4591 4885 5299 +f 4591 5299 4588 +f 5301 5713 5299 +f 4874 4889 4885 +f 5303 5713 5301 +f 4874 4893 4889 +f 5305 5713 5303 +f 4874 4897 4893 +f 5307 5713 5305 +f 4874 4901 4897 +f 5309 5713 5307 +f 4874 4905 4901 +f 5311 5713 5309 +f 4874 4909 4905 +f 5313 5713 5311 +f 4874 4913 4909 +f 4874 4917 4913 +f 4917 4874 4914 +f 5315 5713 5313 +f 4917 4914 5314 +f 4914 4874 4910 +f 4910 4874 4906 +f 4874 4851 4906 +f 4922 4851 4874 +f 4921 4922 4874 +f 4592 4921 4874 +f 4595 4592 4874 +f 4597 4595 4874 +f 4599 4597 4874 +f 4601 4599 4874 +f 4603 4601 4874 +f 4605 4603 4874 +f 4607 4605 4874 +f 4609 4607 4874 +f 4611 4609 4874 +f 4919 4611 4874 +f 4919 4613 4611 +f 4611 4613 4612 +f 4611 4612 4610 +f 4612 5714 4610 +f 4610 5714 5713 +f 4608 4610 5713 +f 4606 4608 5713 +f 4604 4606 5713 +f 4602 4604 5713 +f 4600 4602 5713 +f 4598 4600 5713 +f 4596 4598 5713 +f 4593 4596 5713 +f 4594 4593 5713 +f 5316 4594 5713 +f 5317 5316 5713 +f 5318 5317 5713 +f 5711 5318 5713 +f 5319 5318 5711 +f 5320 5319 5711 +f 5321 5320 5711 +f 5322 5321 5711 +f 5323 5322 5711 +f 5324 5323 5711 +f 5324 4932 5323 +f 4932 4924 5323 +f 4932 4925 4924 +f 4924 4925 4851 +f 4923 4924 4851 +f 4929 4923 4851 +f 4928 4929 4851 +f 4927 4928 4851 +f 4926 4927 4851 +f 4927 4926 5318 +f 4928 4927 5319 +f 4929 4928 5320 +f 4923 4929 5321 +f 4924 4923 5322 +f 4925 4930 4851 +f 4930 4847 4851 +f 4851 4847 4852 +f 4847 4853 4852 +f 4853 4847 4850 +f 4853 4850 5638 +f 5639 4853 5638 +f 5638 4850 5637 +f 5617 5638 5637 +f 5617 5637 5636 +f 5618 5617 5636 +f 5618 5636 5635 +f 5618 5635 5619 +f 5620 5618 5619 +f 4819 5620 5619 +f 4818 4819 5619 +f 4816 4818 5619 +f 4816 5619 5628 +f 5629 4816 5628 +f 5634 5629 5628 +f 5635 5634 5628 +f 5635 4842 5634 +f 4842 4837 5634 +f 5634 4837 5633 +f 5634 5633 5632 +f 5634 5632 5631 +f 5634 5631 5630 +f 5631 4821 5630 +f 4821 4817 5630 +f 5630 4817 5629 +f 4821 4814 4817 +f 4817 4814 4816 +f 4814 4815 4816 +f 4815 4814 5617 +f 4814 5608 5617 +f 5608 4670 5617 +f 4670 4672 5617 +f 4672 4674 5617 +f 4674 4678 5617 +f 4678 4682 5617 +f 4682 4686 5617 +f 4686 5712 5617 +f 4690 5712 4686 +f 4689 4690 4686 +f 4685 4689 4686 +f 4689 4685 4814 +f 4693 4689 4814 +f 4697 4693 4814 +f 4847 4697 4814 +f 4847 4814 4844 +f 4848 4847 4844 +f 4848 4844 5636 +f 4844 4814 4842 +f 4847 4701 4697 +f 4697 4701 4698 +f 4697 4698 4694 +f 4698 5712 4694 +f 4702 5712 4698 +f 5350 5712 4702 +f 4705 5350 4702 +f 4701 4705 4702 +f 4705 4887 5350 +f 4887 5352 5350 +f 4887 4891 5352 +f 4891 5354 5352 +f 5354 5712 5352 +f 5356 5712 5354 +f 4895 5356 5354 +f 4895 4899 5356 +f 4899 5358 5356 +f 4899 4903 5358 +f 4903 5360 5358 +f 5360 5712 5358 +f 5604 5712 5360 +f 5362 5604 5360 +f 4907 5362 5360 +f 4907 4911 5362 +f 4911 5364 5362 +f 4911 4915 5364 +f 4915 5366 5364 +f 5366 5604 5364 +f 5604 5366 5365 +f 5604 5365 5363 +f 5604 5363 5361 +f 5604 5361 5359 +f 5604 5359 5357 +f 5604 5357 5355 +f 5604 5355 5353 +f 5604 5353 5351 +f 5604 5351 4703 +f 5604 4703 5605 +f 4882 5604 5605 +f 4882 5605 5616 +f 4881 4882 5616 +f 4881 5616 5615 +f 4880 4881 5615 +f 4880 5615 5614 +f 4878 4880 5614 +f 4878 5614 5613 +f 4873 4878 5613 +f 4873 5613 5612 +f 4871 4873 5612 +f 4871 5612 5611 +f 4869 4871 5611 +f 4869 5611 5610 +f 4867 4869 5610 +f 4867 5610 5609 +f 4865 4867 5609 +f 4865 5609 5607 +f 4863 4865 5607 +f 4863 5607 5608 +f 4862 4863 5608 +f 4671 4863 4862 +f 4673 4671 4862 +f 4673 4862 4814 +f 4677 4673 4814 +f 4681 4677 4814 +f 4677 4681 4678 +f 4673 4677 4674 +f 4671 4673 4672 +f 4671 4669 4863 +f 4669 4671 4670 +f 4668 4669 4670 +f 4676 4669 4668 +f 4675 4676 4668 +f 4675 4668 5611 +f 4680 4676 4675 +f 4679 4680 4675 +f 4679 4675 5616 +f 4684 4680 4679 +f 4683 4684 4679 +f 4683 4679 5605 +f 4687 4683 5605 +f 4691 4687 5605 +f 4695 4691 5605 +f 4699 4695 5605 +f 4699 4700 4695 +f 4700 4696 4695 +f 4696 4700 4882 +f 4692 4696 4882 +f 4688 4692 4882 +f 4684 4688 4882 +f 4692 4688 4687 +f 4696 4692 4691 +f 4700 4704 4882 +f 4704 4884 4882 +f 4888 4884 4704 +f 4888 4704 4703 +f 4703 4704 4699 +f 4892 4884 4888 +f 4892 4888 5351 +f 4896 4884 4892 +f 4896 4892 5353 +f 4900 4884 4896 +f 4900 4896 5355 +f 4904 4884 4900 +f 4904 4900 5357 +f 4908 4884 4904 +f 4908 4904 5359 +f 4912 4884 4908 +f 4912 4908 5361 +f 4916 4884 4912 +f 4916 4912 5363 +f 4918 4884 4916 +f 4918 4916 5365 +f 4884 4918 4915 +f 4704 4700 4699 +f 4695 4696 4691 +f 4691 4692 4687 +f 4687 4688 4683 +f 4688 4684 4683 +f 4680 4684 4882 +f 4676 4680 4882 +f 4669 4676 4871 +f 5607 4668 5608 +f 4669 4865 4863 +f 5609 4668 5607 +f 4669 4867 4865 +f 5610 4668 5609 +f 4669 4869 4867 +f 5611 4668 5610 +f 4669 4871 4869 +f 5612 4675 5611 +f 4676 4873 4871 +f 5613 4675 5612 +f 4676 4878 4873 +f 5614 4675 5613 +f 4676 4880 4878 +f 5615 4675 5614 +f 4676 4881 4880 +f 5616 4675 5615 +f 4676 4882 4881 +f 5605 4679 5616 +f 4882 4884 5604 +f 4884 5606 5604 +f 5606 4741 5604 +f 4741 4737 5604 +f 4737 4733 5604 +f 4733 4729 5604 +f 4729 4725 5604 +f 4725 4721 5604 +f 4721 4717 5604 +f 4717 4713 5604 +f 4713 4706 5604 +f 4706 4708 5604 +f 4708 4710 5604 +f 4710 4712 5604 +f 4711 4712 4710 +f 4709 4711 4710 +f 4711 4709 4884 +f 4715 4711 4884 +f 4719 4715 4884 +f 4719 4884 4847 +f 4723 4719 4847 +f 4727 4723 4847 +f 4731 4727 4847 +f 4735 4731 4847 +f 4739 4735 4847 +f 4743 4739 4847 +f 4739 4743 4740 +f 4739 4740 4736 +f 4736 4740 5712 +f 4732 4736 5712 +f 4728 4732 5712 +f 4724 4728 5712 +f 4720 4724 5712 +f 4716 4720 5712 +f 4712 4716 5712 +f 4715 4716 4712 +f 4719 4720 4716 +f 4723 4724 4720 +f 4727 4728 4724 +f 4731 4732 4728 +f 4735 4736 4732 +f 4743 5367 4740 +f 5367 5715 4740 +f 5369 5715 5367 +f 4934 5369 5367 +f 4934 4937 5369 +f 4937 5371 5369 +f 4937 4940 5371 +f 4940 5373 5371 +f 5373 5715 5371 +f 5375 5715 5373 +f 4943 5375 5373 +f 4943 4946 5375 +f 4946 5377 5375 +f 4946 4949 5377 +f 4949 5379 5377 +f 5379 5606 5377 +f 5606 5715 5377 +f 5606 4636 5715 +f 4636 4640 5715 +f 4640 4644 5715 +f 4644 4648 5715 +f 4648 4652 5715 +f 4652 4656 5715 +f 4656 4660 5715 +f 4660 4664 5715 +f 4664 5333 5715 +f 5333 5335 5715 +f 5335 5592 5715 +f 5592 5717 5715 +f 5591 5717 5592 +f 4991 5591 5592 +f 5012 4991 5592 +f 5593 5012 5592 +f 5593 5592 5347 +f 5349 5593 5347 +f 4998 5349 5347 +f 4992 4998 5347 +f 4992 5347 5345 +f 4987 4992 5345 +f 4987 5345 5343 +f 4983 4987 5343 +f 4983 5343 5341 +f 4979 4983 5341 +f 4979 5341 5339 +f 4975 4979 5339 +f 4975 5339 5337 +f 4971 4975 5337 +f 4971 5337 5335 +f 4967 4971 5335 +f 4963 4971 4967 +f 4963 4967 4667 +f 4963 4667 4930 +f 4667 4663 4930 +f 4663 4659 4930 +f 4659 4655 4930 +f 4655 4651 4930 +f 4651 4647 4930 +f 4647 4643 4930 +f 4643 4931 4930 +f 4930 4931 4952 +f 4930 4952 4949 +f 4931 4955 4952 +f 4952 4955 5381 +f 4952 5381 5379 +f 4955 5383 5381 +f 5383 5606 5381 +f 5606 5383 5382 +f 5606 5382 5380 +f 5606 5380 5378 +f 5606 5378 5376 +f 5606 5376 5374 +f 5606 5374 5372 +f 5606 5372 5370 +f 5606 5370 5368 +f 5370 4938 5368 +f 4938 4935 5368 +f 5368 4935 4741 +f 4935 4742 4741 +f 4935 4931 4742 +f 4742 4931 4884 +f 4738 4742 4884 +f 4734 4738 4884 +f 4730 4734 4884 +f 4726 4730 4884 +f 4722 4726 4884 +f 4718 4722 4884 +f 4714 4718 4884 +f 4707 4714 4884 +f 4714 4707 4706 +f 4718 4714 4713 +f 4722 4718 4717 +f 4726 4722 4721 +f 4730 4726 4725 +f 4734 4730 4729 +f 4738 4734 4733 +f 4742 4738 4737 +f 4938 4931 4935 +f 4941 4931 4938 +f 4944 4931 4941 +f 4944 4941 5372 +f 4947 4931 4944 +f 4947 4944 5374 +f 4950 4931 4947 +f 4950 4947 5376 +f 4953 4931 4950 +f 4953 4950 5378 +f 4956 4931 4953 +f 4956 4953 5380 +f 4957 4931 4956 +f 4957 4956 5382 +f 4941 4938 5370 +f 5372 4941 5370 +f 5374 4944 5372 +f 5376 4947 5374 +f 5378 4950 5376 +f 5380 4953 5378 +f 5382 4956 5380 +f 5383 4957 5382 +f 4955 4957 5383 +f 4931 4957 4955 +f 4643 4639 4931 +f 4639 4635 4931 +f 4635 4633 4931 +f 4633 4631 4931 +f 4631 4638 4931 +f 4638 4642 4931 +f 4642 4646 4931 +f 4646 4650 4931 +f 4650 4654 4931 +f 4654 4658 4931 +f 4658 4662 4931 +f 4662 4666 4931 +f 4666 4964 4931 +f 4931 4964 5595 +f 4931 5595 5606 +f 5595 4665 5606 +f 4665 4661 5606 +f 4661 4657 5606 +f 4657 4653 5606 +f 4653 4649 5606 +f 4649 4645 5606 +f 4645 4641 5606 +f 4641 4637 5606 +f 4637 4630 5606 +f 4630 4632 5606 +f 4632 4634 5606 +f 4633 4634 4632 +f 4630 4631 4632 +f 4637 4638 4630 +f 4641 4642 4637 +f 4645 4646 4641 +f 4649 4650 4645 +f 4653 4654 4649 +f 4657 4658 4653 +f 4661 4662 4657 +f 4665 4666 4661 +f 4968 4666 4665 +f 5334 4968 4665 +f 4972 4968 5334 +f 5336 4972 5334 +f 5595 5336 5334 +f 5595 5338 5336 +f 5338 4976 5336 +f 4980 4976 5338 +f 5340 4980 5338 +f 4984 4980 5340 +f 5342 4984 5340 +f 5595 5342 5340 +f 5595 5344 5342 +f 5344 4988 5342 +f 4994 4988 5344 +f 5346 4994 5344 +f 5002 4994 5346 +f 5348 5002 5346 +f 5600 5348 5346 +f 5599 5600 5346 +f 5598 5599 5346 +f 5597 5598 5346 +f 5596 5597 5346 +f 5594 5596 5346 +f 5595 5594 5346 +f 4993 5594 5595 +f 4993 5001 5594 +f 5001 4993 4994 +f 5000 5001 4994 +f 4999 5000 4994 +f 5004 4999 4994 +f 5003 5004 4994 +f 5004 5003 5599 +f 4999 5004 5598 +f 5000 4999 5597 +f 5001 5000 5596 +f 5001 5596 5594 +f 5000 5597 5596 +f 4999 5598 5597 +f 5004 5599 5598 +f 5003 5600 5599 +f 5003 5015 5600 +f 5015 5601 5600 +f 5015 5014 5601 +f 5014 5602 5601 +f 5601 5602 5348 +f 5602 5603 5348 +f 5603 5349 5348 +f 5349 5011 5348 +f 5013 5603 5602 +f 5013 5012 5603 +f 5012 5013 5002 +f 5011 5012 5002 +f 5013 5014 5002 +f 5014 5013 5602 +f 5014 5015 5002 +f 5015 5003 5002 +f 5600 5601 5348 +f 5011 5002 5348 +f 5002 5003 4994 +f 4994 4993 4988 +f 4993 4964 4988 +f 4988 4964 4984 +f 5595 5346 5344 +f 4988 4984 5342 +f 4984 4964 4980 +f 4980 4964 4976 +f 4976 4964 4972 +f 5595 5340 5338 +f 4976 4972 5336 +f 4972 4964 4968 +f 5595 5334 4665 +f 4964 4993 5595 +f 4968 4964 4666 +f 4666 4662 4661 +f 4662 4658 4657 +f 4658 4654 4653 +f 4654 4650 4649 +f 4650 4646 4645 +f 4646 4642 4641 +f 4642 4638 4637 +f 4638 4631 4630 +f 4631 4633 4632 +f 4633 4635 4634 +f 4635 4636 4634 +f 4635 4639 4636 +f 4639 4643 4640 +f 4643 4647 4644 +f 4647 4651 4648 +f 4651 4655 4652 +f 4655 4659 4656 +f 4659 4663 4660 +f 4663 4667 4664 +f 4667 4967 5333 +f 4963 4975 4971 +f 5339 5592 5337 +f 4963 4979 4975 +f 5341 5592 5339 +f 4963 4983 4979 +f 5343 5592 5341 +f 4963 4987 4983 +f 4963 4991 4987 +f 4963 5021 4991 +f 5078 5021 4963 +f 5077 5078 4963 +f 5084 5077 4963 +f 5083 5084 4963 +f 5082 5083 4963 +f 5081 5082 4963 +f 5080 5081 4963 +f 5079 5080 4963 +f 5094 5079 4963 +f 5093 5094 4963 +f 5092 5093 4963 +f 5091 5092 4963 +f 5090 5091 4963 +f 5089 5090 4963 +f 5101 5089 4963 +f 5100 5101 4963 +f 5099 5100 4963 +f 5098 5099 4963 +f 5097 5098 4963 +f 5105 5097 4963 +f 5104 5105 4963 +f 5076 5104 4963 +f 5076 4963 4962 +f 5053 5076 4962 +f 5052 5053 4962 +f 5055 5052 4962 +f 5054 5055 4962 +f 5051 5054 4962 +f 5050 5051 4962 +f 5049 5050 4962 +f 5062 5049 4962 +f 4782 5062 4962 +f 5061 4782 4962 +f 5060 5061 4962 +f 5059 5060 4962 +f 5058 5059 4962 +f 5067 5058 4962 +f 5066 5067 4962 +f 5065 5066 4962 +f 5064 5065 4962 +f 5063 5064 4962 +f 5057 5063 4962 +f 5056 5057 4962 +f 5075 5056 4962 +f 5074 5075 4962 +f 5073 5074 4962 +f 5072 5073 4962 +f 5071 5072 4962 +f 5070 5071 4962 +f 5069 5070 4962 +f 5068 5069 4962 +f 5043 5068 4962 +f 5042 5043 4962 +f 5048 5042 4962 +f 5047 5048 4962 +f 5046 5047 4962 +f 5045 5046 4962 +f 5044 5045 4962 +f 5039 5044 4962 +f 5038 5039 4962 +f 5037 5038 4962 +f 5036 5037 4962 +f 5035 5036 4962 +f 5034 5035 4962 +f 5033 5034 4962 +f 5041 5033 4962 +f 5040 5041 4962 +f 5031 5040 4962 +f 5031 4962 5020 +f 5023 5031 5020 +f 5022 5023 5020 +f 5024 5022 5020 +f 5030 5024 5020 +f 5029 5030 5020 +f 5028 5029 5020 +f 5027 5028 5020 +f 5026 5027 5020 +f 5025 5026 5020 +f 5025 5020 5686 +f 5687 5025 5686 +f 5697 5687 5686 +f 5702 5697 5686 +f 5701 5702 5686 +f 5700 5701 5686 +f 5699 5700 5686 +f 5698 5699 5686 +f 5703 5698 5686 +f 5710 5703 5686 +f 5709 5710 5686 +f 5708 5709 5686 +f 5707 5708 5686 +f 5706 5707 5686 +f 5704 5706 5686 +f 5705 5704 5686 +f 5412 5705 5686 +f 5718 5412 5686 +f 5718 5686 5716 +f 5717 5718 5716 +f 5717 5447 5718 +f 5447 5446 5718 +f 5446 5440 5718 +f 5440 5439 5718 +f 5439 5441 5718 +f 5441 5442 5718 +f 5442 5443 5718 +f 5443 5444 5718 +f 5444 5445 5718 +f 5445 5438 5718 +f 5438 5431 5718 +f 5431 5432 5718 +f 5432 5433 5718 +f 5433 5434 5718 +f 5434 5435 5718 +f 5435 5436 5718 +f 5436 5437 5718 +f 5437 5430 5718 +f 5430 5427 5718 +f 5427 5426 5718 +f 5426 5425 5718 +f 5425 5424 5718 +f 5424 5423 5718 +f 5423 5422 5718 +f 5422 5421 5718 +f 5421 5420 5718 +f 5420 5419 5718 +f 5419 5418 5718 +f 5418 5417 5718 +f 5417 5416 5718 +f 5416 5415 5718 +f 5415 5414 5718 +f 5414 5413 5718 +f 5414 5033 5413 +f 5415 5034 5414 +f 5416 5035 5415 +f 5417 5036 5416 +f 5418 5037 5417 +f 5419 5038 5418 +f 5420 5039 5419 +f 5421 5039 5420 +f 5422 5044 5421 +f 5423 5045 5422 +f 5424 5046 5423 +f 5425 5047 5424 +f 5426 5048 5425 +f 5427 5042 5426 +f 5430 5068 5427 +f 5068 5430 5437 +f 5069 5437 5436 +f 5070 5436 5435 +f 5071 5435 5434 +f 5072 5434 5433 +f 5073 5433 5432 +f 5074 5432 5431 +f 5056 5431 5438 +f 5057 5438 5445 +f 5063 5445 5444 +f 5064 5444 5443 +f 5065 5443 5442 +f 5066 5442 5441 +f 5067 5441 5439 +f 5058 5439 5440 +f 5446 5059 5440 +f 5447 5060 5446 +f 5448 5447 5717 +f 5469 5448 5717 +f 5471 5469 5717 +f 5473 5471 5717 +f 5475 5473 5717 +f 5477 5475 5717 +f 5479 5477 5717 +f 5481 5479 5717 +f 5402 5481 5717 +f 4784 5402 5717 +f 5533 4784 5717 +f 5531 5533 5717 +f 5532 5531 5717 +f 5539 5532 5717 +f 5540 5539 5717 +f 5541 5540 5717 +f 5542 5541 5717 +f 5543 5542 5717 +f 5544 5543 5717 +f 5545 5544 5717 +f 5551 5545 5717 +f 5552 5551 5717 +f 5557 5552 5717 +f 5556 5557 5717 +f 5555 5556 5717 +f 5554 5555 5717 +f 5553 5554 5717 +f 5558 5553 5717 +f 5565 5558 5717 +f 5564 5565 5717 +f 5563 5564 5717 +f 5562 5563 5717 +f 5561 5562 5717 +f 5559 5561 5717 +f 5560 5559 5717 +f 5566 5560 5717 +f 5566 5108 5560 +f 5108 5078 5560 +f 5109 5108 5566 +f 5567 5109 5566 +f 5567 5566 5591 +f 5568 5567 5591 +f 5569 5568 5591 +f 5570 5569 5591 +f 5571 5570 5591 +f 5572 5571 5591 +f 5573 5572 5591 +f 5574 5573 5591 +f 5583 5574 5591 +f 5021 5583 5591 +f 5021 5116 5583 +f 5116 5123 5583 +f 5123 5582 5583 +f 5582 5586 5583 +f 5586 5587 5583 +f 5587 5588 5583 +f 5588 5589 5583 +f 5589 5590 5583 +f 5590 5581 5583 +f 5122 5581 5590 +f 5158 5122 5590 +f 5122 5158 5148 +f 5122 5148 5132 +f 5122 5132 5127 +f 5122 5127 5125 +f 5122 5125 5123 +f 5125 5127 5584 +f 5125 5584 5582 +f 5127 5585 5584 +f 5585 5586 5584 +f 5132 5586 5585 +f 5127 5132 5585 +f 5132 5148 5586 +f 5158 5156 5148 +f 5156 5157 5148 +f 5148 5157 5587 +f 5157 5156 5588 +f 5156 5158 5589 +f 5581 5122 5580 +f 5581 5580 5574 +f 5580 5579 5574 +f 5579 5578 5574 +f 5578 5577 5574 +f 5577 5576 5574 +f 5576 5575 5574 +f 5575 5120 5574 +f 5576 5120 5575 +f 5175 5120 5576 +f 5175 5121 5120 +f 5120 5121 5116 +f 5115 5120 5116 +f 5120 5115 5573 +f 5121 5122 5116 +f 5176 5121 5175 +f 5176 5175 5577 +f 5177 5121 5176 +f 5177 5176 5578 +f 5178 5121 5177 +f 5178 5177 5579 +f 5121 5178 5580 +f 5577 5175 5576 +f 5578 5176 5577 +f 5579 5177 5578 +f 5580 5178 5579 +f 5122 5121 5580 +f 5158 5590 5589 +f 5156 5589 5588 +f 5157 5588 5587 +f 5148 5587 5586 +f 5584 5586 5582 +f 5123 5125 5582 +f 5122 5123 5116 +f 5115 5116 5021 +f 5114 5115 5021 +f 5113 5114 5021 +f 5112 5113 5021 +f 5111 5112 5021 +f 5110 5111 5021 +f 5109 5110 5021 +f 5111 5110 5568 +f 5112 5111 5569 +f 5113 5112 5570 +f 5114 5113 5571 +f 5115 5114 5572 +f 5581 5574 5583 +f 5574 5120 5573 +f 5573 5115 5572 +f 5572 5114 5571 +f 5571 5113 5570 +f 5570 5112 5569 +f 5569 5111 5568 +f 5568 5110 5567 +f 5110 5109 5567 +f 5108 5109 5021 +f 5078 5559 5560 +f 5077 5561 5559 +f 5084 5562 5561 +f 5083 5563 5562 +f 5082 5564 5563 +f 5081 5565 5564 +f 5080 5558 5565 +f 5079 5553 5558 +f 5093 5554 5553 +f 5092 5555 5554 +f 5091 5556 5555 +f 5090 5557 5556 +f 5089 5552 5557 +f 5552 5089 5551 +f 5089 5192 5551 +f 5192 5195 5551 +f 5551 5195 5550 +f 5195 5196 5550 +f 5550 5196 5549 +f 5550 5549 5545 +f 5549 5548 5545 +f 5548 5547 5545 +f 5547 5546 5545 +f 5546 5149 5545 +f 5547 5149 5546 +f 5193 5149 5547 +f 5193 5192 5149 +f 5194 5192 5193 +f 5194 5193 5548 +f 5548 5193 5547 +f 5549 5194 5548 +f 5196 5194 5549 +f 5196 5195 5194 +f 5195 5192 5194 +f 5192 5089 5149 +f 5551 5550 5545 +f 5545 5149 5544 +f 5149 5101 5544 +f 5544 5101 5543 +f 5543 5100 5542 +f 5542 5099 5541 +f 5541 5098 5540 +f 5540 5097 5539 +f 5539 5105 5532 +f 5104 5531 5532 +f 5076 5533 5531 +f 5502 4784 5533 +f 5501 5502 5533 +f 5534 5501 5533 +f 5053 5534 5533 +f 5500 5501 5534 +f 5503 5500 5534 +f 5505 5503 5534 +f 5507 5505 5534 +f 5535 5507 5534 +f 5052 5535 5534 +f 5052 5146 5535 +f 5146 5536 5535 +f 5536 5509 5535 +f 5537 5509 5536 +f 5153 5537 5536 +f 5153 5155 5537 +f 5155 5538 5537 +f 5155 5174 5538 +f 5174 5530 5538 +f 5530 5511 5538 +f 5511 5509 5538 +f 5511 5186 5509 +f 5186 5152 5509 +f 5509 5152 5507 +f 5152 5145 5507 +f 5145 5152 5146 +f 5152 5153 5146 +f 5152 5186 5181 +f 5152 5181 5174 +f 5186 5187 5181 +f 5187 5188 5181 +f 5188 5189 5181 +f 5181 5189 5162 +f 5181 5162 5530 +f 5162 5516 5530 +f 5516 5515 5530 +f 5515 5513 5530 +f 5515 5188 5513 +f 5212 5188 5515 +f 5516 5212 5515 +f 5219 5212 5516 +f 5517 5219 5516 +f 5224 5219 5517 +f 5519 5224 5517 +f 5162 5519 5517 +f 5162 5521 5519 +f 5521 5230 5519 +f 5232 5230 5521 +f 5460 5232 5521 +f 5455 5232 5460 +f 5086 5455 5460 +f 5461 5086 5460 +f 5491 5461 5460 +f 5527 5491 5460 +f 5161 5527 5460 +f 5162 5161 5460 +f 5160 5161 5162 +f 5258 5160 5162 +f 5258 5257 5160 +f 5257 5528 5160 +f 5257 5256 5528 +f 5256 5529 5528 +f 5529 5161 5528 +f 5459 5161 5529 +f 5255 5459 5529 +f 5255 5254 5459 +f 5254 5495 5459 +f 5495 5490 5459 +f 5490 5458 5459 +f 5252 5458 5490 +f 5253 5252 5490 +f 5252 5253 5189 +f 5241 5252 5189 +f 5241 5189 5232 +f 5249 5241 5232 +f 5249 5232 5088 +f 5087 5249 5088 +f 5086 5087 5088 +f 5086 5522 5087 +f 5522 5264 5087 +f 5268 5264 5522 +f 5523 5268 5522 +f 5273 5268 5523 +f 5524 5273 5523 +f 5086 5524 5523 +f 5086 5526 5524 +f 5526 5525 5524 +f 5525 5278 5524 +f 5279 5278 5525 +f 5278 5279 5273 +f 5279 5280 5273 +f 5280 5281 5273 +f 5281 5282 5273 +f 5282 5283 5273 +f 5283 5241 5273 +f 5241 5283 5527 +f 5283 5282 5491 +f 5282 5281 5461 +f 5281 5280 5086 +f 5280 5279 5526 +f 5526 5279 5525 +f 5086 5280 5526 +f 5278 5273 5524 +f 5273 5241 5268 +f 5268 5241 5264 +f 5086 5523 5522 +f 5264 5249 5087 +f 5264 5241 5249 +f 5252 5241 5527 +f 5253 5254 5189 +f 5252 5161 5458 +f 5253 5490 5495 +f 5254 5253 5495 +f 5254 5255 5189 +f 5255 5256 5189 +f 5458 5161 5459 +f 5256 5255 5529 +f 5256 5257 5189 +f 5257 5258 5189 +f 5528 5161 5160 +f 5161 5252 5527 +f 5527 5283 5491 +f 5491 5282 5461 +f 5461 5281 5086 +f 5086 5088 5455 +f 5088 5232 5455 +f 5232 5189 5230 +f 5230 5189 5224 +f 5162 5460 5521 +f 5230 5224 5519 +f 5224 5189 5219 +f 5219 5189 5212 +f 5162 5517 5516 +f 5189 5258 5162 +f 5212 5189 5188 +f 5188 5187 5513 +f 5513 5187 5511 +f 5187 5186 5511 +f 5513 5511 5530 +f 5174 5181 5530 +f 5152 5174 5155 +f 5152 5155 5153 +f 5538 5509 5537 +f 5146 5153 5536 +f 5145 5146 5052 +f 5144 5145 5052 +f 5142 5144 5052 +f 5141 5142 5052 +f 5143 5141 5052 +f 5147 5143 5052 +f 5143 5147 5502 +f 5147 5504 5502 +f 5147 5055 5504 +f 5055 5506 5504 +f 5506 4784 5504 +f 5508 4784 5506 +f 5054 5508 5506 +f 5508 5510 4784 +f 5510 5512 4784 +f 5512 4785 4784 +f 4785 4782 4784 +f 4782 4783 4784 +f 4786 4782 4785 +f 4787 4786 4785 +f 5514 4787 4785 +f 5514 4789 4787 +f 4789 4788 4787 +f 4790 4788 4789 +f 4791 4790 4789 +f 4792 4790 4791 +f 4793 4792 4791 +f 5169 4793 4791 +f 5514 5169 4791 +f 5062 5169 5514 +f 5062 5207 5169 +f 5207 5168 5169 +f 5168 4803 5169 +f 4803 4801 5169 +f 5169 4801 4799 +f 5169 4799 4797 +f 5169 4797 4795 +f 4797 4796 4795 +f 4796 4794 4795 +f 4795 4794 4793 +f 4796 5207 4794 +f 4794 5207 4792 +f 4798 5207 4796 +f 4800 5207 4798 +f 4800 4798 4799 +f 4800 5218 5207 +f 4802 5218 4800 +f 4802 4800 4801 +f 4802 4804 5218 +f 4804 5223 5218 +f 5218 5223 5518 +f 5218 5518 5168 +f 5518 4805 5168 +f 5518 5520 4805 +f 5520 5456 4805 +f 5456 5103 4805 +f 4805 5103 5401 +f 4804 4805 5401 +f 5222 4804 5401 +f 5217 5222 5401 +f 5217 5401 5411 +f 5214 5217 5411 +f 5214 5411 5410 +f 5213 5214 5410 +f 5213 5410 5409 +f 5211 5213 5409 +f 5211 5409 5408 +f 5210 5211 5408 +f 5210 5408 5407 +f 5209 5210 5407 +f 5209 5407 5406 +f 5206 5209 5406 +f 5206 5406 5405 +f 5205 5206 5405 +f 5205 5405 5404 +f 5204 5205 5404 +f 5204 5404 5403 +f 5202 5204 5403 +f 5202 5403 5402 +f 4783 5202 5402 +f 5201 5202 4783 +f 5200 5201 4783 +f 5199 5200 4783 +f 5199 4783 5198 +f 5199 5198 5473 +f 5198 4783 5197 +f 5198 5197 5471 +f 5197 4783 5135 +f 5197 5135 5469 +f 5469 5135 5466 +f 5135 5134 5466 +f 5466 5134 5467 +f 5466 5467 5449 +f 5466 5449 5448 +f 5449 5133 5448 +f 5133 5061 5448 +f 5133 5134 5061 +f 5140 5134 5133 +f 5139 5140 5133 +f 5138 5139 5133 +f 5137 5138 5133 +f 5136 5137 5133 +f 5151 5137 5136 +f 5150 5151 5136 +f 5150 5136 5450 +f 5451 5150 5450 +f 5474 5451 5450 +f 5472 5474 5450 +f 5472 5450 5449 +f 5470 5472 5449 +f 5468 5470 5449 +f 5139 5470 5468 +f 5138 5472 5470 +f 5137 5474 5472 +f 5474 5452 5451 +f 5452 5154 5451 +f 5173 5154 5452 +f 5453 5173 5452 +f 5179 5173 5453 +f 5454 5179 5453 +f 5474 5454 5453 +f 5474 5476 5454 +f 5476 5478 5454 +f 5478 5480 5454 +f 5480 5172 5454 +f 5172 5182 5454 +f 5243 5182 5172 +f 5237 5243 5172 +f 5171 5237 5172 +f 5170 5171 5172 +f 5190 5170 5172 +f 5191 5190 5172 +f 5251 5191 5172 +f 4858 5251 5172 +f 4858 5172 5107 +f 5106 4858 5107 +f 5259 5106 5107 +f 5231 5259 5107 +f 5229 5231 5107 +f 5229 5107 5488 +f 5220 5229 5488 +f 5220 5488 5486 +f 5215 5220 5486 +f 5215 5486 5484 +f 5183 5215 5484 +f 5183 5484 5482 +f 5184 5183 5482 +f 5184 5482 5480 +f 5185 5184 5480 +f 5184 5185 5179 +f 5185 5180 5179 +f 5180 5185 5478 +f 5183 5184 5179 +f 5182 5183 5179 +f 5484 5172 5482 +f 5182 5215 5183 +f 5486 5172 5484 +f 5182 5220 5215 +f 5488 5172 5486 +f 5182 5229 5220 +f 5182 5231 5229 +f 5182 5233 5231 +f 5233 5234 5231 +f 5234 5233 5251 +f 5233 5286 5251 +f 5286 5233 5274 +f 5287 5286 5274 +f 5287 5274 5170 +f 5293 5286 5287 +f 5293 5287 5190 +f 5286 5293 5191 +f 5274 5233 5269 +f 5274 5269 5171 +f 5269 5233 5250 +f 5269 5250 5237 +f 5250 5233 5182 +f 5234 5259 5231 +f 5234 5265 5259 +f 5234 5270 5265 +f 5265 5270 5462 +f 5265 5462 5106 +f 5270 5463 5462 +f 5463 4858 5462 +f 5464 4858 5463 +f 5275 5464 5463 +f 5275 5284 5464 +f 5284 5465 5464 +f 5284 5289 5465 +f 5289 5457 5465 +f 5457 4858 5465 +f 5242 4858 5457 +f 5295 5242 5457 +f 5295 5294 5242 +f 5294 5085 5242 +f 5294 5296 5085 +f 5296 4859 5085 +f 4859 4858 5085 +f 4857 4858 4859 +f 5288 4857 4859 +f 5288 5234 4857 +f 5234 5288 5284 +f 5234 4858 4857 +f 5296 5288 4859 +f 5288 5296 5289 +f 5296 5294 5289 +f 5294 5295 5289 +f 5085 4858 5242 +f 5289 5295 5457 +f 5288 5289 5284 +f 5234 5284 5275 +f 5465 4858 5464 +f 5270 5275 5463 +f 5234 5275 5270 +f 5259 5265 5106 +f 5462 4858 5106 +f 5107 5172 5488 +f 4858 5234 5251 +f 5251 5286 5191 +f 5191 5293 5190 +f 5190 5287 5170 +f 5170 5274 5171 +f 5171 5269 5237 +f 5237 5250 5243 +f 5250 5182 5243 +f 5482 5172 5480 +f 5185 5480 5478 +f 5180 5478 5476 +f 5151 5180 5476 +f 5180 5151 5173 +f 5151 5476 5474 +f 5182 5179 5454 +f 5179 5180 5173 +f 5173 5151 5154 +f 5474 5453 5452 +f 5154 5150 5451 +f 5450 5136 5449 +f 5154 5151 5150 +f 5137 5151 5474 +f 5138 5137 5472 +f 5139 5138 5470 +f 5140 5139 5468 +f 5140 5468 5467 +f 5136 5133 5449 +f 5467 5468 5449 +f 5134 5140 5467 +f 5134 5135 5061 +f 5135 4783 5061 +f 5200 5199 5475 +f 5201 5200 5477 +f 5201 5203 5202 +f 5203 5201 5479 +f 5203 5204 5202 +f 5404 5481 5403 +f 5483 5481 5404 +f 5483 5208 5481 +f 5208 5203 5481 +f 5203 5208 5206 +f 5216 5208 5483 +f 5485 5216 5483 +f 5410 5485 5483 +f 5221 5216 5485 +f 5487 5221 5485 +f 5401 5487 5485 +f 5489 5487 5401 +f 5489 5226 5487 +f 5227 5226 5489 +f 5103 5227 5489 +f 5244 5227 5103 +f 5102 5244 5103 +f 5032 5102 5103 +f 4855 5032 5103 +f 4855 5239 5032 +f 5239 5238 5032 +f 5032 5238 4958 +f 5032 4958 4960 +f 5032 4960 5240 +f 5032 5240 5429 +f 5032 5429 5494 +f 5032 5494 5493 +f 5032 5493 5492 +f 5032 5492 5236 +f 5492 5266 5236 +f 5266 5260 5236 +f 5236 5260 5102 +f 5266 5261 5260 +f 5260 5261 5244 +f 5261 5262 5244 +f 5262 5245 5244 +f 5245 5262 5240 +f 5262 5261 5429 +f 5271 5261 5266 +f 5276 5261 5271 +f 5276 5271 5493 +f 5261 5276 5494 +f 5271 5266 5492 +f 5493 5271 5492 +f 5494 5276 5493 +f 5429 5261 5494 +f 5240 5262 5429 +f 4960 5245 5240 +f 5246 5245 4960 +f 4959 5246 4960 +f 5247 5246 4959 +f 4958 5247 4959 +f 5246 5247 5227 +f 5247 5238 5227 +f 5238 5225 5227 +f 5227 5225 5222 +f 5245 5246 5227 +f 4958 4959 4960 +f 5238 5247 4958 +f 5238 5239 5225 +f 5239 5248 5225 +f 5225 5248 5456 +f 5228 5225 5456 +f 5225 5228 4804 +f 5248 5096 5456 +f 5096 4855 5456 +f 5095 4855 5096 +f 5263 5095 5096 +f 5263 5267 5095 +f 5267 5497 5095 +f 5267 5272 5497 +f 5272 5498 5497 +f 5498 4855 5497 +f 5499 4855 5498 +f 5277 5499 5498 +f 5277 5285 5499 +f 5285 5496 5499 +f 5285 5292 5496 +f 5292 5428 5496 +f 5428 4855 5496 +f 5235 4855 5428 +f 5297 5235 5428 +f 5297 5298 5235 +f 5298 4883 5235 +f 5298 5291 4883 +f 5291 4856 4883 +f 4856 4855 4883 +f 4854 4855 4856 +f 5290 4854 4856 +f 5290 5239 4854 +f 5239 5290 5285 +f 5290 5291 5285 +f 5291 5290 4856 +f 5291 5298 5297 +f 5291 5297 5292 +f 4883 4855 5235 +f 5292 5297 5428 +f 5291 5292 5285 +f 5239 5285 5277 +f 5239 5277 5272 +f 5496 4855 5499 +f 5272 5277 5498 +f 5239 5272 5267 +f 5239 5267 5263 +f 5497 4855 5095 +f 5248 5263 5096 +f 5239 5263 5248 +f 5239 4855 4854 +f 5032 5236 5102 +f 5260 5244 5102 +f 5244 5245 5227 +f 5226 5227 5222 +f 5221 5226 5222 +f 5226 5221 5487 +f 5221 5222 5216 +f 5216 5217 5208 +f 5203 5205 5204 +f 5405 5483 5404 +f 5203 5206 5205 +f 5406 5483 5405 +f 5208 5209 5206 +f 5407 5483 5406 +f 5208 5210 5209 +f 5408 5483 5407 +f 5208 5211 5210 +f 5409 5483 5408 +f 5208 5213 5211 +f 5410 5483 5409 +f 5208 5214 5213 +f 5411 5485 5410 +f 5217 5214 5208 +f 5411 5401 5485 +f 5222 5217 5216 +f 5225 4804 5222 +f 4805 4804 4803 +f 5103 5489 5401 +f 5456 4855 5103 +f 5228 5456 5520 +f 5223 5228 5520 +f 5223 5520 5518 +f 5228 5223 4804 +f 4804 4802 4803 +f 4798 4796 4797 +f 4799 4798 4797 +f 4801 4800 4799 +f 4803 4802 4801 +f 4805 4803 5168 +f 5207 5218 5168 +f 5207 5062 4788 +f 4788 5062 4786 +f 5169 4795 4793 +f 4794 4792 4793 +f 4792 5207 4790 +f 4790 5207 4788 +f 5514 4791 4789 +f 4788 4786 4787 +f 5512 5514 4785 +f 5049 5514 5512 +f 5050 5512 5510 +f 5051 5510 5508 +f 5141 5143 5501 +f 5142 5141 5500 +f 5144 5142 5503 +f 5145 5144 5505 +f 5509 5507 5535 +f 5507 5145 5505 +f 5505 5144 5503 +f 5503 5142 5500 +f 5500 5141 5501 +f 5143 5502 5501 +f 5504 4784 5502 +f 4783 5402 4784 +f 5403 5481 5402 +f 5481 5203 5479 +f 5479 5201 5477 +f 5477 5200 5475 +f 5475 5199 5473 +f 5473 5198 5471 +f 5471 5197 5469 +f 5469 5466 5448 +f 5448 5061 5447 +f 5686 5685 5716 +f 5685 5391 5716 +f 5391 5389 5716 +f 5389 5387 5716 +f 5387 5385 5716 +f 5385 4779 5716 +f 4779 4775 5716 +f 4775 4771 5716 +f 4771 4767 5716 +f 4767 4763 5716 +f 4763 4759 5716 +f 4763 4764 4759 +f 4764 4760 4759 +f 4759 4760 4755 +f 4760 4756 4755 +f 4756 4760 4925 +f 4752 4756 4925 +f 4752 4925 4919 +f 4745 4752 4919 +f 4747 4745 4919 +f 4749 4747 4919 +f 4753 4749 4919 +f 4757 4753 4919 +f 4761 4757 4919 +f 4765 4761 4919 +f 4769 4765 4919 +f 4773 4769 4919 +f 4777 4773 4919 +f 4781 4777 4919 +f 4961 4781 4919 +f 4920 4961 4919 +f 5017 4961 4920 +f 5017 4920 5675 +f 5676 5017 5675 +f 5677 5676 5675 +f 5678 5677 5675 +f 5678 5018 5677 +f 5018 5019 5677 +f 5019 5018 5017 +f 4961 5018 5678 +f 5679 4961 5678 +f 5679 5678 5394 +f 5396 5679 5394 +f 4985 5396 5394 +f 4981 4985 5394 +f 4981 5394 5392 +f 4977 4981 5392 +f 4977 5392 5390 +f 4973 4977 5390 +f 4973 5390 5388 +f 4969 4973 5388 +f 4969 5388 5386 +f 4965 4969 5386 +f 4965 5386 5384 +f 4781 4965 5384 +f 4781 5384 4778 +f 5386 5678 5384 +f 4961 4969 4965 +f 5388 5678 5386 +f 4961 4973 4969 +f 5390 5678 5388 +f 4961 4977 4973 +f 5392 5678 5390 +f 4961 4981 4977 +f 4961 4985 4981 +f 4961 4989 4985 +f 4961 4995 4989 +f 4995 4996 4989 +f 4989 4996 5398 +f 4989 5398 5396 +f 5398 5680 5396 +f 5681 5680 5398 +f 5682 5681 5398 +f 5683 5682 5398 +f 5684 5683 5398 +f 5400 5684 5398 +f 5685 5684 5400 +f 5685 5400 5399 +f 5685 5399 5397 +f 5685 5397 5395 +f 5685 5395 5393 +f 5395 4986 5393 +f 4986 4982 5393 +f 5393 4982 5391 +f 4982 4978 5391 +f 4982 4962 4978 +f 4978 4962 4974 +f 4978 4974 5389 +f 4974 4962 4970 +f 4974 4970 5387 +f 4970 4962 4966 +f 4970 4966 5385 +f 4966 4962 4780 +f 4966 4780 4779 +f 4780 4962 4776 +f 4780 4776 4775 +f 4776 4962 4925 +f 4772 4776 4925 +f 4768 4772 4925 +f 4764 4768 4925 +f 4772 4768 4767 +f 4776 4772 4771 +f 4986 4962 4982 +f 4990 4962 4986 +f 4997 4962 4990 +f 4997 4990 5397 +f 5006 4962 4997 +f 5006 4997 5399 +f 5016 4962 5006 +f 5005 5016 5006 +f 5005 5006 4996 +f 5009 5005 4996 +f 5008 5009 4996 +f 5007 5008 4996 +f 5010 5007 4996 +f 5007 5010 5681 +f 5008 5007 5682 +f 5009 5008 5683 +f 5005 5009 5684 +f 4996 5006 5400 +f 5016 5005 5684 +f 4990 4986 5395 +f 5397 4990 5395 +f 5399 4997 5397 +f 5400 5006 5399 +f 5685 5016 5684 +f 5020 5016 5685 +f 5684 5009 5683 +f 5683 5008 5682 +f 5682 5007 5681 +f 5681 5010 5680 +f 5010 4995 5680 +f 5680 4995 5679 +f 4996 5400 5398 +f 4995 5010 4996 +f 4985 4989 5396 +f 5680 5679 5396 +f 5394 5678 5392 +f 4995 4961 5679 +f 5677 5019 5676 +f 5019 5017 5676 +f 5018 4961 5017 +f 4961 4965 4781 +f 4777 4781 4778 +f 4773 4777 4774 +f 4769 4773 4770 +f 4765 4769 4766 +f 4761 4765 4762 +f 4757 4761 4758 +f 4753 4757 4754 +f 4749 4753 4750 +f 4747 4749 4748 +f 4745 4747 4746 +f 4752 4745 4744 +f 4919 4925 4948 +f 4951 4919 4948 +f 4951 4948 5330 +f 4954 4919 4951 +f 4954 4951 5331 +f 5332 4954 5331 +f 4629 4954 5332 +f 4628 4629 5332 +f 5714 4628 5332 +f 4628 5714 4626 +f 4627 4628 4626 +f 4625 4627 4626 +f 4625 4626 4624 +f 4623 4625 4624 +f 4623 4624 4622 +f 4621 4623 4622 +f 4621 4622 4620 +f 4619 4621 4620 +f 4619 4620 4618 +f 4617 4619 4618 +f 4617 4618 4616 +f 4615 4617 4616 +f 4615 4616 4614 +f 4613 4615 4614 +f 4616 5714 4614 +f 4919 4617 4615 +f 4618 5714 4616 +f 4919 4619 4617 +f 4620 5714 4618 +f 4919 4621 4619 +f 4622 5714 4620 +f 4919 4623 4621 +f 4624 5714 4622 +f 4919 4625 4623 +f 4919 4627 4625 +f 4919 4629 4627 +f 4626 5714 4624 +f 4627 4629 4628 +f 4629 4919 4954 +f 4948 4925 4945 +f 4948 4945 5329 +f 4945 4925 4942 +f 4945 4942 5328 +f 4942 4925 4939 +f 4942 4939 5327 +f 4939 4925 4936 +f 4939 4936 5326 +f 4936 4925 4933 +f 4936 4933 5325 +f 5325 4933 5324 +f 4756 4752 4751 +f 4760 4764 4925 +f 4768 4764 4763 +f 4767 4768 4763 +f 4771 4772 4767 +f 4775 4776 4771 +f 4779 4780 4775 +f 5385 4966 4779 +f 5387 4970 5385 +f 5389 4974 5387 +f 5391 4978 5389 +f 5685 5393 5391 +f 5413 5412 5718 +f 5413 5041 5412 +f 5412 5040 5705 +f 5031 5704 5705 +f 5023 5706 5704 +f 5022 5707 5706 +f 5024 5708 5707 +f 5030 5709 5708 +f 5029 5710 5709 +f 5028 5703 5710 +f 5027 5698 5703 +f 5166 5699 5698 +f 5167 5166 5698 +f 5026 5167 5698 +f 5166 5167 5026 +f 5165 5166 5026 +f 5164 5165 5026 +f 5163 5164 5026 +f 5159 5163 5026 +f 5117 5159 5026 +f 5159 5117 5696 +f 5697 5159 5696 +f 5117 5118 5696 +f 5696 5118 5695 +f 5696 5695 5687 +f 5695 5694 5687 +f 5694 5693 5687 +f 5693 5692 5687 +f 5692 5688 5687 +f 5692 5689 5688 +f 5689 5119 5688 +f 5119 5025 5688 +f 5119 5118 5025 +f 5124 5118 5119 +f 5126 5118 5124 +f 5126 5124 5690 +f 5691 5126 5690 +f 5692 5691 5690 +f 5692 5130 5691 +f 5128 5130 5692 +f 5130 5128 5126 +f 5128 5129 5126 +f 5129 5131 5126 +f 5131 5129 5694 +f 5129 5128 5693 +f 5130 5126 5691 +f 5690 5124 5689 +f 5131 5118 5126 +f 5124 5119 5689 +f 5692 5690 5689 +f 5693 5128 5692 +f 5694 5129 5693 +f 5695 5131 5694 +f 5118 5131 5695 +f 5118 5117 5025 +f 5163 5159 5702 +f 5164 5163 5701 +f 5165 5164 5700 +f 5166 5165 5699 +f 5165 5700 5699 +f 5164 5701 5700 +f 5163 5702 5701 +f 5159 5697 5702 +f 5697 5696 5687 +f 5688 5025 5687 +f 5686 5020 5685 +f 5117 5026 5025 +f 5027 5026 5698 +f 5028 5027 5703 +f 5029 5028 5710 +f 5030 5029 5709 +f 5024 5030 5708 +f 5022 5024 5707 +f 5023 5022 5706 +f 5031 5023 5704 +f 5020 4962 5016 +f 5040 5031 5705 +f 5041 5040 5412 +f 5033 5041 5413 +f 5034 5033 5414 +f 5035 5034 5415 +f 5036 5035 5416 +f 5037 5036 5417 +f 5038 5037 5418 +f 5039 5038 5419 +f 5044 5039 5421 +f 5045 5044 5422 +f 5046 5045 5423 +f 5047 5046 5424 +f 5048 5047 5425 +f 5042 5048 5426 +f 5043 5042 5427 +f 5068 5043 5427 +f 5069 5068 5437 +f 5070 5069 5436 +f 5071 5070 5435 +f 5072 5071 5434 +f 5073 5072 5433 +f 5074 5073 5432 +f 5075 5074 5431 +f 5056 5075 5431 +f 5057 5056 5438 +f 5063 5057 5445 +f 5064 5063 5444 +f 5065 5064 5443 +f 5066 5065 5442 +f 5067 5066 5441 +f 5058 5067 5439 +f 5059 5058 5440 +f 5060 5059 5446 +f 5061 5060 5447 +f 4783 4782 5061 +f 4786 5062 4782 +f 5049 5062 5514 +f 5050 5049 5512 +f 5051 5050 5510 +f 5054 5051 5508 +f 5055 5054 5506 +f 5055 5147 5052 +f 5053 5052 5534 +f 5076 5053 5533 +f 4962 4963 4925 +f 5104 5076 5531 +f 5105 5104 5532 +f 5097 5105 5539 +f 5098 5097 5540 +f 5099 5098 5541 +f 5100 5099 5542 +f 5101 5100 5543 +f 5149 5089 5101 +f 5090 5089 5557 +f 5091 5090 5556 +f 5092 5091 5555 +f 5093 5092 5554 +f 5094 5093 5553 +f 5079 5094 5553 +f 5080 5079 5558 +f 5081 5080 5565 +f 5082 5081 5564 +f 5083 5082 5563 +f 5084 5083 5562 +f 5077 5084 5561 +f 5078 5077 5559 +f 5078 5108 5021 +f 5345 5592 5343 +f 4991 4992 4987 +f 4991 4998 4992 +f 4991 5011 4998 +f 4998 5011 5349 +f 5603 5593 5349 +f 5347 5592 5345 +f 5012 5593 5603 +f 4991 5012 5011 +f 4991 5021 5591 +f 5591 5566 5717 +f 5337 5592 5335 +f 4967 5335 5333 +f 4667 5333 4664 +f 4663 4664 4660 +f 4659 4660 4656 +f 4655 4656 4652 +f 4651 4652 4648 +f 4647 4648 4644 +f 4643 4644 4640 +f 4639 4640 4636 +f 4634 4636 5606 +f 5381 5606 5379 +f 4949 4952 5379 +f 4930 4949 4946 +f 4930 4946 4943 +f 4930 4943 4940 +f 5377 5715 5375 +f 4940 4943 5373 +f 4930 4940 4937 +f 4930 4937 4934 +f 4930 4934 4743 +f 5371 5715 5369 +f 4743 4934 5367 +f 4735 4739 4736 +f 4731 4735 4732 +f 4727 4731 4728 +f 4723 4727 4724 +f 4719 4723 4720 +f 4847 4884 4911 +f 4715 4719 4716 +f 4709 4707 4884 +f 4707 4709 4708 +f 4711 4715 4712 +f 4709 4710 4708 +f 4706 4707 4708 +f 4713 4714 4706 +f 4717 4718 4713 +f 4721 4722 4717 +f 4725 4726 4721 +f 4729 4730 4725 +f 4733 4734 4729 +f 4737 4738 4733 +f 4741 4742 4737 +f 5606 5368 4741 +f 4884 4931 5606 +f 4703 4699 5605 +f 5351 4888 4703 +f 5353 4892 5351 +f 5355 4896 5353 +f 5357 4900 5355 +f 5359 4904 5357 +f 5361 4908 5359 +f 5363 4912 5361 +f 5365 4916 5363 +f 5366 4918 5365 +f 4915 4918 5366 +f 4884 4915 4911 +f 4847 4911 4907 +f 4847 4907 4903 +f 5364 5604 5362 +f 5604 4712 5712 +f 4903 4907 5360 +f 4847 4903 4899 +f 4847 4899 4895 +f 4847 4895 4891 +f 5358 5712 5356 +f 4891 4895 5354 +f 4847 4891 4887 +f 4847 4887 4705 +f 5352 5712 5350 +f 4701 4702 4698 +f 4847 4705 4701 +f 4693 4697 4694 +f 4693 4694 4690 +f 4685 4681 4814 +f 4681 4685 4682 +f 4689 4693 4690 +f 4694 5712 4690 +f 4685 4686 4682 +f 4681 4682 4678 +f 4677 4678 4674 +f 4673 4674 4672 +f 4671 4672 4670 +f 4668 4670 5608 +f 4814 4862 5608 +f 4823 4814 4821 +f 4828 4814 4823 +f 4828 4823 5632 +f 4830 4814 4828 +f 4830 4828 5633 +f 4837 4814 4830 +f 4823 4821 5631 +f 5632 4823 5631 +f 5633 4828 5632 +f 4837 4830 5633 +f 4842 4814 4837 +f 4844 4842 5635 +f 5634 5630 5629 +f 4817 4816 5629 +f 4815 4818 4816 +f 4815 4819 4818 +f 4815 4825 4819 +f 4825 4826 4819 +f 4825 4836 4826 +f 4826 4836 5621 +f 4826 5621 5620 +f 4836 5622 5621 +f 5622 5618 5621 +f 5623 5618 5622 +f 4838 5623 5622 +f 4838 4839 5623 +f 4839 5624 5623 +f 4839 4841 5624 +f 4841 5625 5624 +f 5625 5618 5624 +f 5626 5618 5625 +f 4840 5626 5625 +f 4840 4825 5626 +f 4825 5627 5626 +f 4825 4840 4839 +f 5627 5618 5626 +f 4815 5618 5627 +f 4841 4840 5625 +f 4840 4841 4839 +f 4825 4839 4838 +f 5624 5618 5623 +f 4836 4838 5622 +f 4825 4838 4836 +f 4825 4815 5627 +f 4819 4826 5620 +f 5621 5618 5620 +f 5619 5635 5628 +f 5636 4844 5635 +f 4815 5617 5618 +f 5637 4848 5636 +f 5617 5712 5638 +f 4850 4848 5637 +f 4850 4847 4848 +f 4930 4743 4847 +f 4963 4930 4925 +f 4933 4925 4932 +f 4933 4932 5324 +f 5323 4924 5322 +f 5322 4923 5321 +f 5321 4929 5320 +f 5320 4928 5319 +f 5319 4927 5318 +f 5318 4926 5317 +f 4926 4922 5317 +f 5317 4922 5316 +f 5316 4921 4594 +f 4592 4593 4594 +f 4595 4596 4593 +f 4597 4598 4596 +f 4599 4600 4598 +f 4601 4602 4600 +f 4603 4604 4602 +f 4605 4606 4604 +f 4607 4608 4606 +f 4609 4610 4608 +f 4614 5714 4612 +f 4613 4614 4612 +f 4919 4615 4613 +f 4609 4611 4610 +f 4607 4609 4608 +f 4605 4607 4606 +f 4603 4605 4604 +f 4601 4603 4602 +f 4599 4601 4600 +f 4597 4599 4598 +f 4595 4597 4596 +f 4592 4595 4593 +f 4921 4592 4594 +f 4922 4921 5316 +f 4922 4926 4851 +f 5711 5713 5312 +f 4910 4906 5310 +f 4906 4851 4902 +f 4902 4851 4898 +f 4898 4851 4894 +f 5711 5308 5306 +f 4898 4894 5304 +f 4894 4851 4890 +f 4890 4851 4886 +f 4886 4851 4590 +f 5711 5302 5300 +f 4886 4590 4589 +f 4590 4851 4586 +f 4851 4852 4849 +f 4852 4853 5639 +f 5712 5639 5638 +f 5640 5711 5645 +f 4740 5715 5712 +f 5715 5717 5716 +f 5325 5324 5711 +f 5326 4936 5325 +f 5327 4939 5326 +f 5328 4942 5327 +f 5329 4945 5328 +f 5330 4948 5329 +f 5331 4951 5330 +f 5714 5332 5331 +f 4759 4755 5716 +f 4755 4756 4751 +f 4751 4752 4744 +f 4744 4745 4746 +f 4747 4748 4746 +f 4749 4750 4748 +f 4753 4754 4750 +f 4757 4758 4754 +f 4761 4762 4758 +f 4765 4766 4762 +f 4769 4770 4766 +f 4773 4774 4770 +f 4777 4778 4774 +f 5384 5678 4778 +f 5678 5675 5674 +f 5675 4920 5674 +f 4920 4919 4877 +f 4919 4874 4877 +f 4874 4885 4591 +f 4587 4591 4588 +f 4583 4587 4584 +f 4579 4583 4580 +f 4575 4579 4576 +f 4571 4575 4572 +f 4571 4572 4568 +f 4575 4576 4572 +f 4579 4580 4576 +f 4583 4584 4580 +f 4587 4588 4584 +f 5299 5713 4588 +f 5713 5714 5673 +f 5673 4876 5672 +f 5672 5671 5670 +f 4875 4872 5670 +f 4872 4567 4870 +f 4567 4563 4870 +f 4866 4864 5666 +f 5667 4866 5666 +f 5668 4868 5667 +f 4560 5669 5668 +f 4559 4563 4560 +f 4559 4557 4860 +f 4558 5665 5664 +f 4861 4860 5664 +f 4557 4845 4860 +f 4809 4845 4843 +f 4810 4809 4808 +f 4811 4810 4808 +f 4809 4806 4808 +f 5659 4835 5658 +f 5658 4834 5657 +f 5657 4833 5656 +f 5656 4832 5655 +f 4832 4824 5655 +f 4824 4810 4811 +f 5661 5660 5654 +f 4811 4808 5653 +f 5648 5661 5652 +f 4806 4807 4808 +f 4812 4813 4807 +f 5647 5662 5648 +f 4812 4820 4813 +f 5649 5662 5647 +f 4812 4822 4820 +f 5650 5662 5649 +f 4812 4827 4822 +f 5651 5662 5650 +f 5646 5662 5651 +f 5642 5662 5646 +f 4812 4829 4827 +f 5641 5662 5642 +f 4806 4812 4807 +f 4809 4843 4806 +f 4843 4846 5644 +f 5645 5711 5644 +f 5643 5662 5641 +f 5711 4585 4581 +f 4581 4582 4577 +f 4577 4578 4573 +f 4573 4574 4569 +f 4569 4570 4565 +f 4565 4566 4561 +f 4561 4562 4554 +f 5662 4556 5663 +f 4555 4557 4556 +f 4562 4555 4554 + diff --git a/resources/meshes/ultimaker_sketch_platform.obj b/resources/meshes/ultimaker_sketch_platform.obj new file mode 100644 index 0000000000..a443a8e1fd --- /dev/null +++ b/resources/meshes/ultimaker_sketch_platform.obj @@ -0,0 +1,26728 @@ +# Exported from 3D Builder +o Object.1 +v 13.971136 -86.230232 0.538066 +v 13.969720 -86.222855 0.367704 +v 13.969720 -86.222855 0.708427 +v 13.749157 -86.262581 0.538066 +v 14.189322 -86.178116 0.538066 +v 13.748408 -86.255104 0.367704 +v 14.187251 -86.170898 0.367704 +v 13.748408 -86.255104 0.708427 +v 14.187251 -86.170898 0.708427 +v 13.965483 -86.200775 0.198666 +v 13.965483 -86.200775 0.877466 +v 13.964671 -86.196541 0.894557 +v 13.746167 -86.232735 0.877466 +v 14.181051 -86.149284 0.877466 +v 13.525171 -86.274902 0.538066 +v 14.401958 -86.106651 0.538066 +v 13.742970 -86.233047 0.198666 +v 14.184138 -86.148392 0.198666 +v 13.963414 -86.189995 0.910872 +v 13.742546 -86.228767 0.894557 +v 14.182945 -86.144257 0.894557 +v 13.525096 -86.267387 0.367704 +v 14.399247 -86.099648 0.367704 +v 13.525096 -86.267387 0.708427 +v 14.399247 -86.099648 0.708427 +v 13.961738 -86.181259 0.926087 +v 13.741890 -86.222130 0.910872 +v 14.181099 -86.137848 0.910872 +v 13.960548 -86.175056 0.101599 +v 13.741014 -86.213272 0.926087 +v 14.178635 -86.129295 0.926087 +v 13.959674 -86.170502 0.939900 +v 13.740394 -86.206993 0.101599 +v 14.176887 -86.123230 0.101599 +v 13.524869 -86.244904 0.877466 +v 14.391135 -86.078674 0.877466 +v 13.518443 -86.244965 0.198666 +v 14.397126 -86.076347 0.198666 +v 13.739938 -86.202377 0.939900 +v 14.175602 -86.118782 0.939900 +v 13.957266 -86.157951 0.952035 +v 13.518411 -86.240654 0.894557 +v 14.395561 -86.072334 0.894557 +v 13.848334 -86.176292 0.952035 +v 14.065249 -86.134666 0.952035 +v 13.518361 -86.233986 0.910872 +v 14.393139 -86.066124 0.910872 +v 13.738681 -86.189659 0.952035 +v 14.172061 -86.106499 0.952035 +v 13.300983 -86.267097 0.538066 +v 14.607333 -86.016418 0.538066 +v 13.518294 -86.225090 0.926087 +v 14.389908 -86.057831 0.926087 +v 13.628532 -86.198021 0.952035 +v 14.277481 -86.073494 0.952035 +v 13.518248 -86.218781 0.101599 +v 14.387616 -86.051949 0.101599 +v 13.301581 -86.259605 0.367704 +v 14.604005 -86.009682 0.367704 +v 13.301581 -86.259605 0.708427 +v 14.604005 -86.009682 0.708427 +v 13.952517 -86.133202 0.010544 +v 13.518213 -86.214142 0.939900 +v 14.385931 -86.047630 0.939900 +v 13.736201 -86.164581 0.010544 +v 14.165081 -86.082283 0.010544 +v 13.518118 -86.201363 0.952035 +v 14.381289 -86.035721 0.952035 +v 13.303371 -86.237190 0.877466 +v 14.594045 -85.989517 0.877466 +v 13.293764 -86.236404 0.198666 +v 14.602679 -85.985229 0.198666 +v 13.294124 -86.232117 0.894557 +v 14.600756 -85.981377 0.894558 +v 13.294681 -86.225471 0.910872 +v 14.597779 -85.975410 0.910873 +v 13.407665 -86.199669 0.952035 +v 14.483270 -85.993271 0.952035 +v 13.517929 -86.176155 0.010544 +v 14.372135 -86.012245 0.010544 +v 13.295424 -86.216606 0.926087 +v 14.593807 -85.967453 0.926088 +v 13.295950 -86.210312 0.101599 +v 14.590990 -85.961800 0.101599 +v 13.296337 -86.205688 0.939900 +v 14.588920 -85.957657 0.939901 +v 13.941630 -86.076469 -0.071739 +v 13.078397 -86.239227 0.538066 +v 14.803792 -85.908134 0.538067 +v 13.297404 -86.192955 0.952035 +v 14.583213 -85.946220 0.952036 +v 13.730519 -86.107094 -0.071739 +v 14.149081 -86.026772 -0.071739 +v 13.079664 -86.231819 0.367704 +v 14.799872 -85.901718 0.367705 +v 13.079664 -86.231819 0.708427 +v 14.799872 -85.901718 0.708428 +v 13.083456 -86.209656 0.877466 +v 14.788146 -85.882538 0.877467 +v 13.299509 -86.167839 0.010544 +v 14.571962 -85.923668 0.010545 +v 13.070793 -86.207451 0.198666 +v 14.799095 -85.875801 0.198667 +v 13.517498 -86.118393 -0.071739 +v 14.351153 -85.958420 -0.071738 +v 13.187564 -86.181229 0.952035 +v 14.680911 -85.894661 0.952036 +v 13.071542 -86.203209 0.894557 +v 14.796829 -85.872139 0.894558 +v 13.072701 -86.196648 0.910872 +v 14.793323 -85.866470 0.910873 +v 13.074246 -86.187881 0.926087 +v 14.788643 -85.858902 0.926088 +v 13.075343 -86.181671 0.101599 +v 14.785324 -85.853531 0.101600 +v 13.076149 -86.177101 0.939900 +v 14.782885 -85.849594 0.939901 +v 13.928219 -86.006584 -0.142757 +v 13.078370 -86.164513 0.952035 +v 14.776161 -85.838722 0.952036 +v 13.723519 -86.036278 -0.142757 +v 14.129371 -85.958397 -0.142756 +v 13.304332 -86.110275 -0.071739 +v 14.546174 -85.871971 -0.071738 +v 12.859206 -86.191513 0.538066 +v 14.989753 -85.782677 0.538067 +v 12.861132 -86.184250 0.367704 +v 14.985275 -85.776642 0.367705 +v 12.861132 -86.184250 0.708427 +v 14.985275 -85.776642 0.708428 +v 13.082749 -86.139694 0.010544 +v 14.762907 -85.817284 0.010545 +v 13.516967 -86.047234 -0.142757 +v 14.325308 -85.892120 -0.142756 +v 12.970051 -86.142845 0.952035 +v 14.868767 -85.778496 0.952036 +v 12.866895 -86.162514 0.877466 +v 14.971876 -85.758583 0.877467 +v 13.819054 -85.974449 1.108758 +v 14.017735 -85.936317 1.108758 +v 12.851379 -86.158348 0.198666 +v 14.984747 -85.748962 0.198667 +v 12.852510 -86.154190 0.894557 +v 14.982158 -85.745529 0.894558 +v 12.854262 -86.147758 0.910872 +v 14.978148 -85.740196 0.910873 +v 13.617728 -85.994347 1.108757 +v 14.212127 -85.880287 1.108758 +v 12.856598 -86.139168 0.926087 +v 14.972800 -85.733086 0.926088 +v 12.858255 -86.133080 0.101599 +v 14.969007 -85.728043 0.101600 +v 12.859473 -86.128609 0.939900 +v 14.966220 -85.724335 0.939901 +v 13.912690 -85.925659 -0.200356 +v 13.092788 -86.082809 -0.071739 +v 14.732525 -85.768150 -0.071738 +v 13.310274 -86.039360 -0.142757 +v 14.514405 -85.808296 -0.142756 +v 13.715413 -85.954277 -0.200356 +v 14.106548 -85.879219 -0.200356 +v 12.862830 -86.116272 0.952035 +v 14.958536 -85.714119 0.952036 +v 13.415427 -85.995857 1.108757 +v 14.400617 -85.806808 1.108758 +v 12.869448 -86.091957 0.010544 +v 14.943387 -85.693977 0.010545 +v 13.516352 -85.964836 -0.200356 +v 14.295380 -85.815346 -0.200356 +v 12.645174 -86.124344 0.538066 +v 15.163719 -85.641052 0.538067 +v 12.647743 -86.117279 0.367704 +v 15.158718 -85.635445 0.367705 +v 12.647743 -86.117279 0.708427 +v 15.158718 -85.635445 0.708428 +v 12.756929 -86.084846 0.952035 +v 15.045280 -85.645729 0.952036 +v 13.105153 -86.012726 -0.142757 +v 14.695098 -85.707626 -0.142756 +v 12.655432 -86.096153 0.877466 +v 15.143754 -85.618660 0.877467 +v 13.213827 -85.978966 1.108758 +v 14.581645 -85.716492 1.108758 +v 12.637341 -86.089485 0.198666 +v 15.158094 -85.605774 0.198667 +v 13.317154 -85.957253 -0.200356 +v 14.477620 -85.734566 -0.200356 +v 12.638845 -86.085457 0.894557 +v 15.155203 -85.602585 0.894558 +v 12.884617 -86.036217 -0.071739 +v 14.908663 -85.647812 -0.071738 +v 12.641174 -86.079208 0.910872 +v 15.150726 -85.597641 0.910873 +v 13.895514 -85.836151 -0.242794 +v 12.644281 -86.070869 0.926087 +v 15.144754 -85.591042 0.926088 +v 13.706449 -85.863579 -0.242795 +v 14.081304 -85.791649 -0.242794 +v 12.646485 -86.064957 0.101599 +v 15.140518 -85.586365 0.101600 +v 12.648105 -86.060608 0.939900 +v 15.137403 -85.582932 0.939902 +v 12.652570 -86.048630 0.952035 +v 15.128823 -85.573456 0.952037 +v 13.515671 -85.873695 -0.242795 +v 14.262277 -85.730431 -0.242794 +v 12.661371 -86.025017 0.010544 +v 15.111906 -85.554779 0.010545 +v 13.119472 -85.931580 -0.200356 +v 14.651759 -85.637543 -0.200356 +v 12.903304 -85.967552 -0.142756 +v 14.865887 -85.590942 -0.142756 +v 13.014598 -85.943810 1.108758 +v 14.753710 -85.610085 1.108758 +v 12.438025 -86.038261 0.538066 +v 15.324290 -85.484406 0.538068 +v 13.324763 -85.866425 -0.242795 +v 14.436932 -85.653008 -0.242794 +v 12.441216 -86.031456 0.367704 +v 15.318807 -85.479263 0.367706 +v 12.441216 -86.031456 0.708427 +v 15.318807 -85.479263 0.708429 +v 12.549966 -86.007706 0.952035 +v 15.208990 -85.497459 0.952037 +v 13.788324 -85.762611 1.251387 +v 13.967870 -85.728157 1.251387 +v 12.681546 -85.970886 -0.071738 +v 15.073128 -85.511955 -0.071738 +v 13.877212 -85.740768 -0.268782 +v 12.450768 -86.011101 0.877466 +v 15.302400 -85.463890 0.877468 +v 13.696895 -85.766930 -0.268782 +v 14.054404 -85.698326 -0.268782 +v 13.606389 -85.780594 1.251387 +v 14.143538 -85.677521 1.251387 +v 12.430449 -86.001457 0.198666 +v 15.317703 -85.447411 0.198668 +v 12.432315 -85.997574 0.894557 +v 15.314533 -85.444496 0.894559 +v 12.435202 -85.991562 0.910872 +v 15.309627 -85.439980 0.910874 +v 12.439054 -85.983543 0.926088 +v 15.303079 -85.433952 0.926089 +v 13.514946 -85.776581 -0.268782 +v 14.227001 -85.639946 -0.268782 +v 12.924942 -85.888046 -0.200356 +v 14.816356 -85.525093 -0.200356 +v 12.441788 -85.977852 0.101599 +v 15.298434 -85.429680 0.101601 +v 13.135308 -85.841827 -0.242794 +v 14.603825 -85.560028 -0.242794 +v 12.443796 -85.973671 0.939901 +v 15.295021 -85.426544 0.939902 +v 13.423573 -85.781960 1.251387 +v 14.313875 -85.611115 1.251387 +v 12.449330 -85.962151 0.952036 +v 15.285615 -85.417885 0.952037 +v 12.819391 -85.890686 1.108758 +v 14.915386 -85.488480 1.108759 +v 12.706399 -85.904205 -0.142756 +v 15.025358 -85.459213 -0.142755 +v 12.460243 -85.939430 0.010545 +v 15.267069 -85.400826 0.010546 +v 13.332872 -85.769646 -0.268782 +v 14.393576 -85.566109 -0.268782 +v 13.241389 -85.766693 1.251387 +v 14.477467 -85.529503 1.251388 +v 13.858337 -85.642410 -0.277533 +v 13.687042 -85.667259 -0.277533 +v 14.026663 -85.602089 -0.277533 +v 12.948875 -85.800102 -0.242794 +v 14.761570 -85.452255 -0.242793 +v 12.485257 -85.887360 -0.071738 +v 15.224557 -85.361710 -0.071737 +v 12.239425 -85.933952 0.538067 +v 15.470174 -85.313995 0.538068 +v 12.350874 -85.912064 0.952036 +v 15.358538 -85.334915 0.952037 +v 12.243214 -85.927467 0.367705 +v 15.464252 -85.309372 0.367706 +v 12.243214 -85.927467 0.708428 +v 15.464252 -85.309372 0.708429 +v 12.735178 -85.826996 -0.200356 +v 14.970043 -85.398140 -0.200355 +v 13.152184 -85.746185 -0.268782 +v 14.552745 -85.477432 -0.268782 +v 13.514197 -85.676430 -0.277533 +v 14.190624 -85.546631 -0.277533 +v 12.254551 -85.908051 0.877467 +v 15.446532 -85.295532 0.877468 +v 12.629824 -85.820030 1.108758 +v 15.065334 -85.352669 1.108759 +v 12.232422 -85.894974 0.198666 +v 15.462250 -85.275185 0.198668 +v 13.061349 -85.734924 1.251387 +v 14.632959 -85.433350 1.251388 +v 12.234632 -85.891273 0.894558 +v 15.458827 -85.272575 0.894559 +v 12.238054 -85.885551 0.910873 +v 15.453530 -85.268524 0.910874 +v 13.341235 -85.669846 -0.277533 +v 14.348864 -85.476486 -0.277532 +v 12.242620 -85.877914 0.926088 +v 15.446462 -85.263123 0.926089 +v 12.516071 -85.823219 -0.142756 +v 15.172189 -85.313530 -0.142755 +v 12.245858 -85.872498 0.101600 +v 15.441449 -85.259285 0.101601 +v 12.248239 -85.868515 0.939901 +v 15.437764 -85.256470 0.939902 +v 12.254799 -85.857544 0.952036 +v 15.427609 -85.248703 0.952037 +v 12.974379 -85.706390 -0.268782 +v 14.703190 -85.374641 -0.268781 +v 12.767010 -85.741592 -0.242794 +v 14.908861 -85.330589 -0.242793 +v 12.267732 -85.835915 0.010545 +v 15.407589 -85.233398 0.010546 +v 13.756285 -85.541748 1.379279 +v 13.915880 -85.511124 1.379279 +v 13.169588 -85.647552 -0.277533 +v 14.500069 -85.392242 -0.277532 +v 13.594567 -85.557739 1.379279 +v 14.072028 -85.466118 1.379279 +v 12.884943 -85.686920 1.251387 +v 14.779064 -85.323448 1.251388 +v 12.551751 -85.748947 -0.200356 +v 15.111550 -85.257736 -0.200355 +v 12.297376 -85.786339 -0.071738 +v 15.361697 -85.198311 -0.071737 +v 13.432065 -85.558952 1.379279 +v 14.223437 -85.407089 1.379279 +v 12.161304 -85.798714 0.952036 +v 15.492685 -85.159447 0.952038 +v 12.050975 -85.812263 0.538067 +v 15.600194 -85.131195 0.538069 +v 12.447468 -85.732430 1.108758 +v 15.202312 -85.203789 1.108759 +v 12.055330 -85.806145 0.367705 +v 15.593882 -85.127113 0.367707 +v 12.055330 -85.806145 0.708428 +v 15.593882 -85.127121 0.708430 +v 12.800928 -85.650589 -0.268782 +v 14.843666 -85.258606 -0.268781 +v 13.000679 -85.609749 -0.277533 +v 14.642986 -85.294601 -0.277532 +v 12.068363 -85.787819 0.877467 +v 15.574991 -85.114922 0.877469 +v 12.333895 -85.725258 -0.142756 +v 15.305164 -85.155090 -0.142755 +v 13.270126 -85.545380 1.379279 +v 14.368851 -85.334541 1.379279 +v 12.591216 -85.666794 -0.242794 +v 15.044479 -85.196030 -0.242793 +v 12.044896 -85.770920 0.198667 +v 15.590536 -85.090538 0.198668 +v 12.047434 -85.767441 0.894558 +v 15.586891 -85.088242 0.894560 +v 12.051363 -85.762054 0.910873 +v 15.581246 -85.084694 0.910875 +v 12.056604 -85.754860 0.926088 +v 15.573716 -85.079948 0.926090 +v 12.060322 -85.749763 0.101600 +v 15.568376 -85.076591 0.101602 +v 12.713634 -85.623070 1.251387 +v 14.914570 -85.200722 1.251388 +v 12.063054 -85.746017 0.939901 +v 15.564449 -85.074120 0.939903 +v 12.070583 -85.735687 0.952036 +v 15.553632 -85.067314 0.952038 +v 12.085430 -85.715324 0.010545 +v 15.532302 -85.053886 0.010547 +v 13.110091 -85.517143 1.379279 +v 14.507065 -85.249077 1.379280 +v 12.376183 -85.654541 -0.200356 +v 15.239703 -85.105049 -0.200355 +v 12.835908 -85.556747 -0.277533 +v 14.776433 -85.184372 -0.277532 +v 12.633270 -85.579254 -0.268782 +v 14.973008 -85.130272 -0.268781 +v 12.119461 -85.668640 -0.071738 +v 15.483410 -85.023125 -0.071736 +v 12.273833 -85.628609 1.108758 +v 15.325182 -85.043076 1.108760 +v 11.982826 -85.668594 0.952036 +v 15.610321 -84.972504 0.952038 +v 12.422955 -85.576317 -0.242794 +v 15.167298 -85.049690 -0.242792 +v 12.953288 -85.474472 1.379279 +v 14.636934 -85.151390 1.379280 +v 11.874191 -85.674179 0.538067 +v 15.713305 -84.937477 0.538069 +v 12.548841 -85.543900 1.251388 +v 15.038355 -85.066185 1.251389 +v 11.879078 -85.668465 0.367705 +v 15.706653 -84.933983 0.367707 +v 11.879078 -85.668465 0.708428 +v 15.706653 -84.933983 0.708430 +v 13.723083 -85.312866 1.491848 +v 13.862001 -85.286209 1.491848 +v 12.161383 -85.611137 -0.142756 +v 15.423182 -84.985222 -0.142754 +v 11.893702 -85.651382 0.877467 +v 15.686746 -84.923523 0.877469 +v 13.582315 -85.326782 1.491848 +v 13.997921 -85.247032 1.491848 +v 12.676640 -85.488976 -0.277532 +v 14.899303 -85.062462 -0.277531 +v 11.869430 -85.630333 0.198667 +v 15.701500 -84.894981 0.198669 +v 13.440866 -85.327843 1.491848 +v 14.129714 -85.195656 1.491849 +v 11.872272 -85.627098 0.894558 +v 15.697660 -84.893028 0.894560 +v 11.876675 -85.622086 0.910873 +v 15.691718 -84.890007 0.910875 +v 11.882548 -85.615402 0.926088 +v 15.683787 -84.885971 0.926090 +v 11.886714 -85.610664 0.101600 +v 15.678164 -84.883110 0.101602 +v 11.889776 -85.607178 0.939901 +v 15.674028 -84.881004 0.939903 +v 12.209926 -85.544556 -0.200356 +v 15.353440 -84.941338 -0.200354 +v 12.472795 -85.492958 -0.268782 +v 15.090143 -84.990707 -0.268780 +v 11.898214 -85.597580 0.952036 +v 15.662637 -84.875214 0.952038 +v 12.801015 -85.417717 1.379279 +v 14.757383 -85.042297 1.379280 +v 13.299907 -85.316032 1.491848 +v 14.256289 -85.132507 1.491849 +v 11.914851 -85.578651 0.010545 +v 15.640175 -84.863785 0.010547 +v 12.110359 -85.509422 1.108759 +v 15.432929 -84.871849 1.108760 +v 11.952985 -85.535255 -0.071738 +v 15.588688 -84.837593 -0.071736 +v 12.391931 -85.450081 1.251388 +v 15.149391 -84.920944 1.251389 +v 12.263617 -85.470909 -0.242794 +v 15.276302 -84.892799 -0.242792 +v 13.160604 -85.291451 1.491848 +v 14.376597 -85.058105 1.491849 +v 12.524193 -85.406998 -0.277532 +v 15.010577 -84.929878 -0.277531 +v 11.816921 -85.522789 0.952037 +v 15.710470 -84.775642 0.952039 +v 11.999963 -85.481804 -0.142755 +v 15.525262 -84.805328 -0.142754 +v 12.654534 -85.347343 1.379279 +v 14.867413 -84.922707 1.379280 +v 11.710499 -85.520790 0.538068 +v 15.808596 -84.734398 0.538069 +v 11.715878 -85.515549 0.367706 +v 15.801657 -84.731514 0.367707 +v 11.715878 -85.515549 0.708429 +v 15.801657 -84.731514 0.708431 +v 12.320831 -85.392433 -0.268781 +v 15.194103 -84.841072 -0.268780 +v 13.024116 -85.254303 1.491848 +v 14.489642 -84.973076 1.491849 +v 11.731973 -85.499847 0.198667 +v 15.780892 -84.722885 0.198669 +v 11.731973 -85.499847 0.877468 +v 15.780892 -84.722885 0.877470 +v 12.054358 -85.419914 -0.200355 +v 15.451820 -84.767960 -0.200354 +v 11.707474 -85.474365 0.198668 +v 15.794222 -84.690147 0.198669 +v 11.710599 -85.471405 0.894559 +v 15.790221 -84.688553 0.894561 +v 11.715439 -85.466820 0.910874 +v 15.784027 -84.686081 0.910876 +v 13.749712 -85.076340 1.585103 +v 13.690224 -85.086357 1.585103 +v 13.808681 -85.063629 1.585103 +v 11.721895 -85.460693 0.926089 +v 15.775764 -84.682785 0.926091 +v 11.726476 -85.456352 0.101601 +v 15.769901 -84.680450 0.101603 +v 11.729840 -85.453163 0.939902 +v 15.765594 -84.678734 0.939904 +v 13.577639 -85.097809 1.585103 +v 13.917508 -85.032585 1.585103 +v 13.919952 -85.031685 1.585135 +v 13.571818 -85.097702 1.585263 +v 13.922879 -85.030334 1.585263 +v 13.925002 -85.029160 1.585423 +v 13.927851 -85.027290 1.585739 +v 13.565469 -85.096558 1.585808 +v 13.929734 -85.025833 1.586021 +v 11.739118 -85.444374 0.952037 +v 15.753721 -84.673996 0.952039 +v 13.559923 -85.094597 1.586628 +v 13.934673 -85.020958 1.587125 +v 13.936116 -85.019135 1.587583 +v 13.554451 -85.091614 1.587813 +v 12.244201 -85.342377 1.251388 +v 15.246761 -84.766205 1.251390 +v 13.938090 -85.016205 1.588361 +v 13.550694 -85.088791 1.588904 +v 12.379833 -85.311501 -0.277532 +v 15.109335 -84.787727 -0.277531 +v 13.941048 -85.010147 1.590090 +v 13.546621 -85.084724 1.590448 +v 11.757406 -85.427032 0.010546 +v 15.730313 -84.664658 0.010548 +v 13.888811 -85.016136 1.352269 +v 13.598207 -85.071899 1.352268 +v 13.894198 -85.013893 1.351779 +v 13.592373 -85.071815 1.351778 +v 13.942688 -85.004486 1.591832 +v 13.543259 -85.080093 1.592177 +v 12.891570 -85.204903 1.491848 +v 14.594486 -84.878120 1.491849 +v 13.899168 -85.010826 1.351400 +v 13.586620 -85.070801 1.351399 +v 13.542303 -85.078438 1.592792 +v 12.114525 -85.351456 -0.242793 +v 15.370586 -84.726639 -0.242792 +v 13.581095 -85.068878 1.351141 +v 13.903590 -85.006996 1.351142 +v 13.943399 -84.997963 1.593976 +v 13.540689 -85.075035 1.594045 +v 13.907352 -85.002510 1.351011 +v 13.575941 -85.066109 1.351011 +v 13.539783 -85.072563 1.594950 +v 13.449935 -85.089676 1.588587 +v 14.033132 -84.977768 1.588587 +v 11.958400 -85.375870 1.108759 +v 15.524659 -84.691528 1.108761 +v 13.538978 -85.069656 1.596008 +v 13.943002 -84.992126 1.596008 +v 13.910356 -84.997490 1.351011 +v 13.571290 -85.062553 1.351011 +v 12.515059 -85.263947 1.379280 +v 14.966111 -84.793610 1.379281 +v 13.740375 -85.027679 1.113719 +v 13.912524 -84.992050 1.351142 +v 13.567264 -85.058304 1.351141 +v 13.619227 -85.044952 1.113719 +v 13.859309 -84.998886 1.113719 +v 13.864721 -84.996819 1.113719 +v 13.613279 -85.045029 1.113719 +v 13.913801 -84.986343 1.351400 +v 13.563965 -85.053474 1.351399 +v 13.869656 -84.993973 1.113719 +v 13.607407 -85.044128 1.113719 +v 13.602043 -85.042404 1.113719 +v 13.874544 -84.989944 1.113719 +v 11.799328 -85.387291 -0.071737 +v 15.676659 -84.643257 -0.071735 +v 13.914155 -84.980515 1.351779 +v 13.561478 -85.048187 1.351778 +v 13.878365 -84.985535 1.113719 +v 13.596507 -85.039558 1.113719 +v 13.913574 -84.974709 1.352269 +v 13.559868 -85.042580 1.352268 +v 13.881504 -84.980400 1.113719 +v 13.591702 -85.035942 1.113719 +v 13.587786 -85.031853 1.113719 +v 13.883808 -84.974617 1.113719 +v 13.735568 -85.002617 -5.996283 +v 13.735568 -85.002632 -0.277531 +v 13.330596 -85.079681 1.588587 +v 14.140293 -84.924301 1.588587 +v 13.584509 -85.027122 1.113719 +v 13.885011 -84.969109 1.113719 +v 13.885340 -84.963181 1.113719 +v 13.581779 -85.021278 1.113719 +v 13.580238 -85.015694 1.113719 +v 13.884699 -84.957268 1.113719 +v 13.524714 -85.024773 -5.996283 +v 13.939645 -84.945152 -5.996283 +v 13.524714 -85.024788 -0.277531 +v 13.939645 -84.945160 -0.277531 +v 12.178638 -85.278503 -0.268781 +v 15.284024 -84.682602 -0.268780 +v 11.850972 -85.338333 -0.142755 +v 15.610560 -84.616890 -0.142753 +v 11.664963 -85.362495 0.952037 +v 15.792301 -84.570488 0.952039 +v 13.212660 -85.058868 1.588587 +v 14.242149 -84.861320 1.588588 +v 12.764066 -85.143646 1.491849 +v 14.690261 -84.774025 1.491850 +v 11.561213 -85.353355 0.538068 +v 15.885299 -84.523590 0.538070 +v 11.567042 -85.348610 0.367706 +v 15.878128 -84.521339 0.367708 +v 11.567042 -85.348610 0.708429 +v 15.878128 -84.521347 0.708431 +v 11.910770 -85.281639 -0.200355 +v 15.534026 -84.586357 -0.200353 +v 13.313148 -85.010971 -5.996283 +v 14.131075 -84.854019 -5.996283 +v 13.313148 -85.010986 -0.277531 +v 14.131075 -84.854027 -0.277531 +v 11.584479 -85.334419 0.198668 +v 15.856675 -84.514610 0.198670 +v 11.584479 -85.334419 0.877468 +v 15.856675 -84.514610 0.877470 +v 12.244755 -85.203278 -0.277532 +v 15.194757 -84.637192 -0.277530 +v 12.106877 -85.221687 1.251388 +v 15.329657 -84.603256 1.251390 +v 12.383745 -85.168213 1.379280 +v 15.052661 -84.656067 1.379281 +v 13.097104 -85.027420 1.588587 +v 14.337856 -84.789330 1.588588 +v 11.560370 -85.304329 0.198668 +v 15.867933 -84.477730 0.198670 +v 11.563753 -85.301659 0.894559 +v 15.863804 -84.476509 0.894561 +v 11.568990 -85.297531 0.910874 +v 15.857410 -84.474609 0.910876 +v 11.976913 -85.218933 -0.242793 +v 15.449370 -84.552589 -0.242791 +v 11.575976 -85.292023 0.926089 +v 15.848882 -84.472076 0.926091 +v 11.580933 -85.288116 0.101601 +v 15.842831 -84.470284 0.101603 +v 11.584575 -85.285240 0.939902 +v 15.838385 -84.468964 0.939904 +v 11.594612 -85.277328 0.952037 +v 15.826130 -84.465332 0.952039 +v 12.642660 -85.071060 1.491849 +v 14.776173 -84.661652 1.491850 +v 11.819214 -85.229057 1.108759 +v 15.599613 -84.503624 1.108761 +v 11.614401 -85.261726 0.010546 +v 15.801971 -84.458160 0.010548 +v 12.984888 -84.985596 1.588587 +v 14.426620 -84.708939 1.588588 +v 13.106958 -84.961617 -5.996283 +v 14.304350 -84.731850 -5.996282 +v 13.106958 -84.961632 -0.277531 +v 14.304350 -84.731857 -0.277531 +v 12.047394 -85.152115 -0.268781 +v 15.359163 -84.516609 -0.268779 +v 11.659764 -85.225960 -0.071737 +v 15.746592 -84.441727 -0.071735 +v 13.493299 -84.868668 1.662441 +v 13.911038 -84.788506 1.662442 +v 11.715645 -85.181900 -0.142755 +v 15.678371 -84.421478 -0.142753 +v 13.459232 -84.845551 1.669055 +v 13.934129 -84.754417 1.669055 +v 12.261681 -85.060936 1.379280 +v 15.126345 -84.511223 1.379281 +v 12.120078 -85.083214 -0.277532 +v 15.266136 -84.479507 -0.277530 +v 12.876940 -84.933739 1.588587 +v 14.507705 -84.620804 1.588588 +v 13.362054 -84.837402 1.669055 +v 14.021390 -84.710884 1.669055 +v 11.528210 -85.189049 0.952038 +v 15.855139 -84.358742 0.952039 +v 12.528358 -84.987724 1.491849 +v 14.851510 -84.541931 1.491850 +v 11.780352 -85.130882 -0.200355 +v 15.599377 -84.398033 -0.200353 +v 11.981097 -85.089012 1.251389 +v 15.397391 -84.433449 1.251390 +v 13.266019 -84.820457 1.669055 +v 14.104332 -84.659592 1.669055 +v 11.427539 -85.173210 0.538069 +v 15.942797 -84.306763 0.538071 +v 11.433767 -85.169006 0.367707 +v 15.935455 -84.305161 0.367709 +v 11.433767 -85.169006 0.708430 +v 15.935455 -84.305168 0.708432 +v 12.912076 -84.878128 -5.996283 +v 14.454484 -84.582146 -5.996282 +v 12.912075 -84.878136 -0.277531 +v 14.454484 -84.582161 -0.277530 +v 11.452408 -85.156433 0.198668 +v 15.913484 -84.300385 0.198670 +v 11.452408 -85.156433 0.877469 +v 15.913484 -84.300385 0.877471 +v 13.682565 -84.726410 -6.277533 +v 11.851922 -85.074448 -0.242792 +v 15.512002 -84.372108 -0.242791 +v 13.519153 -84.743576 -6.277533 +v 13.840725 -84.681870 -6.277533 +v 12.774154 -84.872276 1.588588 +v 14.580441 -84.525665 1.588588 +v 13.171922 -84.794853 1.669055 +v 14.182265 -84.600975 1.669055 +v 11.429340 -85.121613 0.198668 +v 15.922022 -84.259491 0.198670 +v 11.429340 -85.121613 0.877469 +v 15.922022 -84.259491 0.877471 +v 11.693956 -85.070190 1.108760 +v 15.657168 -84.309677 1.108762 +v 11.432952 -85.119263 0.894560 +v 15.917798 -84.258652 0.894562 +v 11.438542 -85.115623 0.910875 +v 15.911260 -84.257339 0.910877 +v 11.446000 -85.110779 0.926090 +v 15.902535 -84.255600 0.926092 +v 11.451291 -85.107330 0.101601 +v 15.896347 -84.254356 0.101604 +v 11.928186 -85.014320 -0.268780 +v 15.418897 -84.344475 -0.268779 +v 11.455179 -85.104805 0.939903 +v 15.891800 -84.253448 0.939905 +v 11.465895 -85.097839 0.952038 +v 15.879266 -84.250938 0.952040 +v 13.355189 -84.732887 -6.277533 +v 13.989082 -84.611244 -6.277532 +v 11.487021 -85.084099 0.010547 +v 15.854554 -84.245995 0.010549 +v 12.422107 -84.894348 1.491849 +v 14.915648 -84.415848 1.491850 +v 12.149878 -84.943001 1.379280 +v 15.186552 -84.360283 1.379282 +v 13.080544 -84.760796 1.669055 +v 14.254545 -84.535507 1.669055 +v 11.535448 -85.052605 -0.071736 +v 15.797910 -84.234665 -0.071734 +v 12.006836 -84.952309 -0.277531 +v 15.322881 -84.315979 -0.277530 +v 13.448181 -84.664047 1.717138 +v 13.877212 -84.581718 1.717138 +v 11.595104 -85.013809 -0.142754 +v 15.728130 -84.220711 -0.142752 +v 12.677383 -84.801727 1.588588 +v 14.644222 -84.424309 1.588588 +v 13.508089 -84.639709 1.113720 +v 13.812549 -84.581284 1.113720 +v 13.195393 -84.694633 -6.277533 +v 14.123371 -84.516556 -6.277532 +v 11.867905 -84.945450 1.251389 +v 15.449402 -84.258179 1.251391 +v 13.439511 -84.633743 1.724135 +v 13.874047 -84.550354 1.724135 +v 12.992642 -84.718567 1.669055 +v 14.320573 -84.463745 1.669055 +v 11.664182 -84.968887 -0.200354 +v 15.647331 -84.204544 -0.200352 +v 12.734106 -84.762901 -5.996282 +v 14.577161 -84.409225 -5.996281 +v 12.734106 -84.762909 -0.277531 +v 14.577161 -84.409241 -0.277530 +v 13.500113 -84.609116 1.113720 +v 13.808634 -84.549911 1.113720 +v 11.407796 -85.003883 0.952038 +v 15.898460 -84.142159 0.952040 +v 13.426981 -84.604713 1.730495 +v 13.874942 -84.518753 1.730495 +v 11.740587 -84.919197 -0.242792 +v 15.557961 -84.186668 -0.242790 +v 13.488215 -84.579834 1.113720 +v 13.808848 -84.518303 1.113720 +v 13.394138 -84.590309 1.732886 +v 13.900120 -84.493210 1.732887 +v 12.324788 -84.791687 1.491850 +v 14.968057 -84.284462 1.491851 +v 11.310551 -84.981812 0.538069 +v 15.980627 -84.085648 0.538071 +v 13.410803 -84.577454 1.736109 +v 13.879882 -84.487442 1.736109 +v 11.317131 -84.978180 0.367707 +v 15.973170 -84.084717 0.367709 +v 11.317131 -84.978180 0.708430 +v 15.973170 -84.084717 0.708432 +v 12.908944 -84.668518 1.669055 +v 14.379801 -84.386269 1.669056 +v 11.336823 -84.967323 0.198669 +v 15.950860 -84.081924 0.198671 +v 11.336823 -84.967331 0.877469 +v 15.950860 -84.081924 0.877471 +v 12.587429 -84.722672 1.588588 +v 14.698524 -84.317566 1.588589 +v 13.472594 -84.552345 1.113720 +v 13.813187 -84.486992 1.113720 +v 11.822004 -84.866257 -0.268780 +v 15.462729 -84.167625 -0.268778 +v 13.320440 -84.577301 1.732886 +v 13.963769 -84.453850 1.732887 +v 13.044358 -84.629929 -6.277532 +v 14.239725 -84.400543 -6.277532 +v 12.049262 -84.815392 1.379281 +v 15.232785 -84.204491 1.379282 +v 11.583664 -84.900589 1.108760 +v 15.696849 -84.111298 1.108762 +v 13.248230 -84.557648 1.732886 +v 14.023576 -84.408867 1.732887 +v 11.315469 -84.927734 0.198669 +v 15.956042 -84.037239 0.198671 +v 11.315469 -84.927734 0.877469 +v 15.956042 -84.037239 0.877471 +v 11.319279 -84.925728 0.894560 +v 15.951759 -84.036781 0.894562 +v 11.905967 -84.811653 -0.277531 +v 15.364519 -84.147980 -0.277529 +v 11.325176 -84.922615 0.910875 +v 15.945128 -84.036072 0.910877 +v 11.333045 -84.918465 0.926090 +v 15.936281 -84.035133 0.926092 +v 11.338626 -84.915512 0.101602 +v 15.930007 -84.034462 0.101604 +v 11.342728 -84.913353 0.939903 +v 15.925395 -84.033966 0.939905 +v 11.354033 -84.907387 0.952038 +v 15.912684 -84.032608 0.952040 +v 11.376321 -84.895622 0.010547 +v 15.887627 -84.029938 0.010549 +v 12.830144 -84.611069 1.669055 +v 14.431739 -84.303734 1.669056 +v 11.427412 -84.868668 -0.071736 +v 15.830186 -84.023804 -0.071734 +v 13.178105 -84.531517 1.732886 +v 14.079044 -84.358627 1.732887 +v 11.768234 -84.792183 1.251390 +v 15.485261 -84.078911 1.251391 +v 11.490348 -84.835457 -0.142754 +v 15.759427 -84.016251 -0.142752 +v 12.505036 -84.635757 1.588588 +v 14.742893 -84.206329 1.588589 +v 12.578171 -84.619255 -5.996282 +v 14.668848 -84.218063 -5.996281 +v 12.578171 -84.619263 -0.277530 +v 14.668848 -84.218079 -0.277529 +v 12.237208 -84.680611 1.491850 +v 15.008298 -84.148857 1.491851 +v 12.906432 -84.540627 -6.277532 +v 14.334799 -84.266533 -6.277532 +v 11.563225 -84.797005 -0.200354 +v 15.677493 -84.007500 -0.200352 +v 13.110649 -84.499107 1.732887 +v 14.129715 -84.303558 1.732887 +v 13.325019 -84.451355 1.757998 +v 13.912896 -84.338547 1.757999 +v 12.756894 -84.546692 1.669055 +v 14.475956 -84.216820 1.669056 +v 11.643831 -84.754471 -0.242792 +v 15.586867 -83.997826 -0.242790 +v 11.304718 -84.808540 0.952038 +v 15.921908 -83.922531 0.952040 +v 11.960668 -84.679161 1.379281 +v 15.264659 -84.045143 1.379282 +v 13.046418 -84.460701 1.732887 +v 14.175167 -84.244102 1.732887 +v 11.729727 -84.709145 -0.268780 +v 15.490297 -83.987518 -0.268778 +v 11.211189 -84.780685 0.538069 +v 15.998486 -83.862038 0.538072 +v 11.218069 -84.777664 0.367707 +v 15.990975 -83.861778 0.367710 +v 11.218069 -84.777664 0.708431 +v 15.990975 -83.861778 0.708433 +v 11.818305 -84.662407 -0.277530 +v 15.390709 -83.976883 -0.277529 +v 12.430888 -84.541718 1.588588 +v 14.776964 -84.091522 1.588589 +v 11.489252 -84.721664 1.108761 +v 15.718325 -83.910133 1.108763 +v 11.238655 -84.768623 0.198669 +v 15.968503 -83.860992 0.198671 +v 11.238655 -84.768623 0.877470 +v 15.968503 -83.860992 0.877472 +v 12.689802 -84.475922 1.669055 +v 14.512087 -84.126236 1.669056 +v 12.985946 -84.416618 1.732887 +v 14.215025 -84.180763 1.732887 +v 12.160091 -84.562027 1.491850 +v 15.036043 -84.010147 1.491852 +v 12.785582 -84.429298 -6.277532 +v 14.405858 -84.118378 -6.277531 +v 11.219698 -84.724312 0.198669 +v 15.969711 -83.812813 0.198672 +v 11.219698 -84.724312 0.877470 +v 15.969711 -83.812813 0.877472 +v 11.223676 -84.722656 0.894561 +v 15.965403 -83.812752 0.894563 +v 11.229832 -84.720093 0.910876 +v 15.958735 -83.812645 0.910878 +v 11.238045 -84.716675 0.926090 +v 15.949841 -83.812508 0.926093 +v 11.682915 -84.630493 1.251390 +v 15.504669 -83.897125 1.251392 +v 11.243871 -84.714249 0.101602 +v 15.943530 -83.812408 0.101605 +v 11.248153 -84.712463 0.939903 +v 15.938892 -83.812340 0.939906 +v 11.259953 -84.707550 0.952039 +v 15.926112 -83.812149 0.952041 +v 13.239353 -84.324265 1.773747 +v 13.945433 -84.188774 1.773747 +v 11.283219 -84.697868 0.010548 +v 15.900913 -83.811760 0.010550 +v 11.336549 -84.675667 -0.071735 +v 15.843155 -83.810875 -0.071733 +v 12.929733 -84.367210 1.732887 +v 14.248958 -84.114059 1.732888 +v 12.448753 -84.451317 -5.996282 +v 14.726911 -84.014153 -5.996280 +v 12.448753 -84.451332 -0.277530 +v 14.726911 -84.014168 -0.277529 +v 11.402245 -84.648315 -0.142753 +v 15.772001 -83.809784 -0.142751 +v 13.215912 -84.294548 1.776266 +v 13.956210 -84.152489 1.776266 +v 12.629423 -84.399345 1.669056 +v 14.539830 -84.032745 1.669056 +v 11.478316 -84.616646 -0.200353 +v 15.689611 -83.808525 -0.200351 +v 11.884830 -84.535431 1.379281 +v 15.281910 -83.883553 1.379283 +v 12.365599 -84.441322 1.588588 +v 14.800453 -83.974091 1.588590 +v 13.281491 -84.262115 1.113721 +v 13.883283 -84.146637 1.113721 +v 11.562456 -84.581619 -0.242791 +v 15.598482 -83.807129 -0.242790 +v 13.188164 -84.268745 1.777539 +v 13.972434 -84.118248 1.777540 +v 12.878246 -84.312904 1.732887 +v 14.276684 -84.044548 1.732888 +v 11.652117 -84.544296 -0.268779 +v 15.501373 -83.805649 -0.268777 +v 13.258210 -84.232162 1.113721 +v 13.893824 -84.110191 1.113721 +v 13.156785 -84.247467 1.777540 +v 13.993710 -84.086868 1.777540 +v 11.744579 -84.505798 -0.277530 +v 15.401231 -83.804115 -0.277528 +v 12.094078 -84.436920 1.491850 +v 15.051060 -83.869499 1.491852 +v 11.219831 -84.604630 0.952039 +v 15.925287 -83.701683 0.952041 +v 13.122539 -84.231239 1.776266 +v 14.019518 -84.059120 1.776267 +v 13.230543 -84.206238 1.113721 +v 13.909928 -84.075867 1.113721 +v 12.685284 -84.299149 -6.277532 +v 14.450856 -83.960350 -6.277531 +v 13.086259 -84.220467 1.773747 +v 14.049231 -84.035675 1.773748 +v 12.576258 -84.317589 1.669056 +v 14.558958 -83.937126 1.669057 +v 11.411500 -84.534897 1.108761 +v 15.721420 -83.707848 1.108763 +v 13.199164 -84.184959 1.113721 +v 13.931203 -84.044487 1.113721 +v 12.831911 -84.254135 1.732887 +v 14.297975 -83.972809 1.732888 +v 11.130257 -84.571472 0.538070 +v 15.996226 -83.637726 0.538072 +v 11.137380 -84.569077 0.367708 +v 15.988723 -83.638138 0.367710 +v 11.137380 -84.569077 0.708431 +v 15.988723 -83.638138 0.708433 +v 11.158693 -84.561913 0.198670 +v 15.966271 -83.639374 0.198672 +v 11.158693 -84.561920 0.877470 +v 15.966271 -83.639374 0.877472 +v 12.309710 -84.335403 1.588589 +v 14.813167 -83.855003 1.588590 +v 13.164837 -84.168854 1.113721 +v 13.957131 -84.016823 1.113721 +v 11.612652 -84.461708 1.251390 +v 15.507465 -83.714325 1.251392 +v 13.128396 -84.158318 1.113721 +v 13.987082 -83.993538 1.113721 +v 12.936484 -84.187927 1.757999 +v 14.176324 -83.950012 1.758000 +v 11.822374 -84.385406 1.379282 +v 15.284396 -83.721069 1.379283 +v 11.142824 -84.513016 0.198670 +v 15.962914 -83.588074 0.198672 +v 11.142824 -84.513016 0.877470 +v 15.962914 -83.588074 0.877472 +v 11.146934 -84.511734 0.894561 +v 15.958619 -83.588402 0.894563 +v 11.153298 -84.509735 0.910876 +v 15.951969 -83.588905 0.910878 +v 11.161789 -84.507080 0.926091 +v 15.943098 -83.589577 0.926093 +v 11.167811 -84.505196 0.101603 +v 15.936806 -83.590057 0.101605 +v 11.172237 -84.503807 0.939904 +v 15.932180 -83.590408 0.939906 +v 11.184435 -84.499992 0.952039 +v 15.919436 -83.591377 0.952041 +v 12.791112 -84.191399 1.732887 +v 14.312654 -83.899422 1.732888 +v 11.208485 -84.492462 0.010548 +v 15.894307 -83.593285 0.010550 +v 11.263613 -84.475197 -0.071735 +v 15.836706 -83.597656 -0.071733 +v 12.530747 -84.231346 1.669056 +v 14.569310 -83.840157 1.669057 +v 12.349579 -84.263931 -5.996281 +v 14.749678 -83.803368 -5.996280 +v 12.349579 -84.263939 -0.277529 +v 14.749678 -83.803375 -0.277528 +v 11.331524 -84.453941 -0.142753 +v 15.765749 -83.603043 -0.142751 +v 11.410160 -84.429321 -0.200353 +v 15.683586 -83.609276 -0.200351 +v 12.039715 -84.306328 1.491851 +v 15.053223 -83.728058 1.491852 +v 12.787588 -84.154915 1.736110 +v 14.302423 -83.864227 1.736111 +v 11.497137 -84.402084 -0.242791 +v 15.592707 -83.616173 -0.242789 +v 12.756279 -84.149971 1.730496 +v 14.329679 -83.848053 1.730497 +v 11.589820 -84.373070 -0.268779 +v 15.495867 -83.623528 -0.268777 +v 12.724674 -84.149078 1.724136 +v 14.358708 -83.835518 1.724137 +v 12.693310 -84.152245 1.717139 +v 14.389016 -83.826851 1.717140 +v 11.685400 -84.343147 -0.277530 +v 15.395998 -83.631104 -0.277528 +v 12.486526 -84.186073 1.662443 +v 14.593634 -83.781731 1.662444 +v 12.263684 -84.224846 1.588589 +v 14.814999 -83.735260 1.588590 +v 12.282907 -84.218033 1.596010 +v 14.794621 -83.736053 1.596011 +v 14.797528 -83.735245 1.594953 +v 14.799999 -83.734344 1.594048 +v 12.277070 -84.218430 1.593978 +v 12.608424 -84.153923 -6.277531 +v 14.468500 -83.796989 -6.277530 +v 14.803405 -83.732727 1.592795 +v 14.805064 -83.731773 1.592180 +v 12.270544 -84.217720 1.591834 +v 14.808353 -83.729500 1.590953 +v 12.264886 -84.216080 1.590092 +v 14.812931 -83.725273 1.589223 +v 12.258829 -84.213120 1.588363 +v 14.816580 -83.720581 1.587816 +v 12.255894 -84.211151 1.587585 +v 12.254072 -84.209709 1.587127 +v 14.819562 -83.715103 1.586631 +v 12.249957 -84.205666 1.586181 +v 14.821524 -83.709564 1.585811 +v 12.247743 -84.202881 1.585741 +v 12.245869 -84.200035 1.585425 +v 12.300322 -84.188606 1.352271 +v 14.767550 -83.715164 1.352271 +v 12.294517 -84.189186 1.351781 +v 14.773158 -83.713554 1.351781 +v 12.244695 -84.197914 1.585265 +v 14.822670 -83.703209 1.585266 +v 12.288686 -84.188835 1.351402 +v 14.778444 -83.711067 1.351402 +v 12.282977 -84.187553 1.351144 +v 14.783273 -83.707764 1.351144 +v 12.243348 -84.194984 1.585137 +v 12.788039 -84.088219 1.113721 +v 14.277316 -83.802437 1.113722 +v 12.242442 -84.192543 1.585105 +v 14.822775 -83.697395 1.585106 +v 12.277541 -84.185387 1.351013 +v 14.787521 -83.703743 1.351014 +v 12.272517 -84.182381 1.351013 +v 14.791077 -83.699089 1.351014 +v 11.153839 -84.393845 0.952039 +v 15.908569 -83.481445 0.952042 +v 12.268033 -84.178619 1.351144 +v 14.793850 -83.693932 1.351144 +v 12.756726 -84.083878 1.113721 +v 14.304799 -83.786812 1.113722 +v 12.264206 -84.174202 1.351402 +v 14.795768 -83.688408 1.351402 +v 12.725117 -84.083664 1.113721 +v 14.334085 -83.774918 1.113722 +v 12.317760 -84.159729 1.113721 +v 12.693747 -84.087578 1.113721 +v 14.364675 -83.766937 1.113722 +v 14.740662 -83.694794 1.113722 +v 14.746247 -83.693253 1.113722 +v 12.311847 -84.160370 1.113721 +v 12.261135 -84.169228 1.351781 +v 14.796782 -83.682655 1.351781 +v 14.751431 -83.690895 1.113722 +v 12.305918 -84.160042 1.113721 +v 11.351054 -84.341827 1.108762 +v 15.706107 -83.506126 1.108764 +v 12.300410 -84.158836 1.113721 +v 14.756819 -83.687241 1.113722 +v 12.258897 -84.163841 1.352271 +v 14.796866 -83.676826 1.352271 +v 14.760908 -83.683327 1.113722 +v 12.294630 -84.156532 1.113721 +v 14.764524 -83.678520 1.113722 +v 12.289497 -84.153397 1.113721 +v 12.285208 -84.149704 1.113721 +v 14.767372 -83.672989 1.113722 +v 11.558028 -84.287239 1.251391 +v 15.493628 -83.532021 1.251392 +v 12.281491 -84.145302 1.113721 +v 14.769097 -83.667625 1.113722 +v 12.278281 -84.139893 1.113721 +v 14.769994 -83.661751 1.113722 +v 12.276146 -84.134338 1.113721 +v 14.769922 -83.655800 1.113722 +v 11.773820 -84.230324 1.379282 +v 15.272097 -83.559029 1.379284 +v 11.068403 -84.355843 0.538070 +v 15.973869 -83.414520 0.538073 +v 11.075712 -84.354095 0.367708 +v 15.966434 -83.415604 0.367711 +v 11.075712 -84.354103 0.708431 +v 15.966434 -83.415604 0.708434 +v 11.097583 -84.348877 0.198670 +v 15.944183 -83.418846 0.198673 +v 11.097583 -84.348877 0.877470 +v 15.944183 -83.418846 0.877473 +v 11.997450 -84.171341 1.491851 +v 15.042517 -83.587013 1.491853 +v 12.218764 -84.112968 1.585105 +v 14.815316 -83.614708 1.585107 +v 11.085481 -84.295609 0.198670 +v 15.935709 -83.364883 0.198673 +v 11.085481 -84.295609 0.877471 +v 15.935709 -83.364883 0.877473 +v 11.089691 -84.294701 0.894562 +v 15.931461 -83.365601 0.894564 +v 11.096210 -84.293297 0.910877 +v 15.924886 -83.366707 0.910879 +v 11.104908 -84.291420 0.926092 +v 15.916112 -83.368187 0.926094 +v 11.111076 -84.290092 0.101604 +v 15.909888 -83.369232 0.101606 +v 11.115610 -84.289116 0.939905 +v 15.905315 -83.370003 0.939907 +v 11.128106 -84.286423 0.952040 +v 15.892710 -83.372124 0.952042 +v 11.152740 -84.281105 0.010549 +v 15.867859 -83.376305 0.010551 +v 11.209208 -84.268936 -0.071734 +v 15.810896 -83.385902 -0.071732 +v 12.283501 -84.062477 -5.996281 +v 14.736494 -83.591759 -5.996279 +v 12.283501 -84.062485 -0.277529 +v 14.736494 -83.591774 -0.277528 +v 11.278772 -84.253937 -0.142752 +v 15.740722 -83.397713 -0.142750 +v 11.359320 -84.236565 -0.200352 +v 15.659466 -83.411400 -0.200350 +v 11.448414 -84.217361 -0.242790 +v 15.569592 -83.426529 -0.242789 +v 11.543351 -84.196892 -0.268778 +v 15.473820 -83.442657 -0.268777 +v 11.641256 -84.175781 -0.277529 +v 15.375055 -83.459290 -0.277528 +v 12.557213 -83.997795 -6.277531 +v 14.458282 -83.632996 -6.277530 +v 14.752651 -83.534653 1.113722 +v 13.499999 -83.775017 -6.277530 +v 12.247347 -84.015404 1.113721 +v 12.193343 -83.995056 1.585106 +v 14.795286 -83.495758 1.585107 +v 11.967637 -84.033066 1.491851 +v 15.019029 -83.447525 1.491853 +v 11.739570 -84.071465 1.379282 +v 15.245111 -83.398773 1.379284 +v 11.519496 -84.108528 1.251391 +v 15.463270 -83.351738 1.251393 +v 11.308416 -84.144066 1.108762 +v 15.672514 -83.306625 1.108764 +v 11.107288 -84.177933 0.952040 +v 15.871892 -83.263641 0.952042 +v 11.055815 -84.131210 0.198671 +v 15.902415 -83.201180 0.198673 +v 11.055815 -84.131218 0.877471 +v 15.902415 -83.201187 0.877473 +v 11.033565 -84.134453 0.367709 +v 15.924286 -83.195961 0.367711 +v 11.033565 -84.134460 0.708432 +v 15.924286 -83.195961 0.708434 +v 11.026129 -84.135544 0.538071 +v 15.931595 -83.194214 0.538073 +v 12.230076 -83.894257 1.113722 +v 14.723852 -83.415718 1.113723 +v 12.533124 -83.835258 -6.277530 +v 14.420496 -83.473083 -6.277529 +v 12.229936 -83.889679 1.113722 +v 14.721784 -83.410309 1.113723 +v 11.612514 -84.005096 -0.277529 +v 15.338575 -83.290092 -0.277527 +v 12.230700 -83.883331 1.113722 +v 14.718940 -83.405373 1.113723 +v 11.513096 -84.017212 -0.268778 +v 15.435418 -83.264549 -0.268776 +v 12.232339 -83.877792 1.113722 +v 14.714914 -83.400482 1.113723 +v 12.235177 -83.872017 1.113722 +v 11.416691 -84.028969 -0.242790 +v 15.529325 -83.239777 -0.242788 +v 14.709826 -83.396179 1.113723 +v 12.238544 -83.867363 1.113722 +v 14.704865 -83.393280 1.113723 +v 12.203132 -83.873238 1.352271 +v 14.741101 -83.386215 1.352272 +v 11.326220 -84.039993 -0.200352 +v 15.617453 -83.216537 -0.200350 +v 12.178748 -83.875328 1.585106 +v 14.764524 -83.379135 1.585107 +v 12.243179 -83.862816 1.113722 +v 14.698844 -83.391006 1.113723 +v 12.247910 -83.859543 1.113722 +v 14.693175 -83.389908 1.113723 +v 12.203217 -83.867409 1.351781 +v 14.738863 -83.380829 1.351782 +v 12.253751 -83.856812 1.113722 +v 14.686786 -83.389748 1.113723 +v 12.259336 -83.855270 1.113722 +v 12.635324 -83.783119 1.113722 +v 14.306251 -83.462479 1.113723 +v 14.682239 -83.390327 1.113723 +v 11.244426 -84.049965 -0.142752 +v 15.697126 -83.195518 -0.142750 +v 12.665914 -83.775146 1.113722 +v 14.274881 -83.466393 1.113723 +v 12.252418 -83.852753 -5.996280 +v 14.687737 -83.385429 -5.996279 +v 12.252418 -83.852760 -0.277529 +v 14.687737 -83.385437 -0.277527 +v 12.204230 -83.861649 1.351402 +v 14.735792 -83.375862 1.351403 +v 11.173786 -84.058571 -0.071734 +v 15.765936 -83.177368 -0.071732 +v 12.695198 -83.763245 1.113722 +v 14.243272 -83.466179 1.113723 +v 11.116446 -84.065567 0.010549 +v 15.821791 -83.162636 0.010551 +v 12.206148 -83.856125 1.351144 +v 14.731965 -83.371437 1.351145 +v 11.091429 -84.068611 0.952040 +v 15.846159 -83.156212 0.952042 +v 11.078741 -84.070160 0.939905 +v 15.858519 -83.152954 0.939907 +v 11.074137 -84.070717 0.101604 +v 15.863003 -83.151772 0.101606 +v 11.067873 -84.071487 0.926092 +v 15.869105 -83.150162 0.926094 +v 11.059040 -84.072563 0.910877 +v 15.877708 -83.147888 0.910879 +v 11.052422 -84.073372 0.894562 +v 15.884155 -83.146194 0.894564 +v 11.048145 -84.073891 0.198671 +v 15.888321 -83.145088 0.198673 +v 11.048145 -84.073891 0.877471 +v 15.888321 -83.145096 0.877473 +v 12.208921 -83.850975 1.351014 +v 14.727481 -83.367676 1.351015 +v 12.212477 -83.846321 1.351014 +v 14.722457 -83.364677 1.351015 +v 12.177223 -83.852669 1.585106 +v 14.757556 -83.357521 1.585107 +v 12.722682 -83.747627 1.113722 +v 14.211959 -83.461845 1.113723 +v 14.756650 -83.355080 1.585139 +v 12.216725 -83.842293 1.351144 +v 14.717020 -83.362503 1.351145 +v 11.950521 -83.892647 1.491852 +v 14.982953 -83.310745 1.491853 +v 12.221554 -83.838997 1.351402 +v 14.711312 -83.361229 1.351403 +v 12.177322 -83.846909 1.585262 +v 14.755303 -83.352150 1.585267 +v 12.226840 -83.836510 1.351781 +v 14.705482 -83.360878 1.351782 +v 12.232448 -83.834900 1.352271 +v 14.699677 -83.361458 1.352272 +v 14.754129 -83.350029 1.585427 +v 12.178269 -83.841293 1.585720 +v 14.752255 -83.347176 1.585743 +v 14.750804 -83.345299 1.586025 +v 12.180168 -83.835579 1.586522 +v 14.745926 -83.340355 1.587129 +v 12.182831 -83.830406 1.587586 +v 14.744104 -83.338913 1.587587 +v 14.740381 -83.336479 1.588580 +v 12.186240 -83.825729 1.588907 +v 14.733919 -83.333549 1.590452 +v 12.190309 -83.821655 1.590451 +v 11.719908 -83.910156 1.379283 +v 15.203667 -83.241646 1.379284 +v 14.728701 -83.332199 1.592077 +v 12.194934 -83.818291 1.592180 +v 12.196593 -83.817337 1.592795 +v 14.722928 -83.331627 1.593980 +v 12.199999 -83.815720 1.594048 +v 12.202470 -83.814812 1.594953 +v 12.205378 -83.814011 1.596011 +v 14.717092 -83.332031 1.596012 +v 12.406364 -83.768333 1.662444 +v 14.513473 -83.363991 1.662445 +v 12.428832 -83.758644 1.669057 +v 14.489015 -83.363312 1.669058 +v 12.610982 -83.723213 1.717140 +v 14.306688 -83.397820 1.717141 +v 12.641290 -83.714546 1.724137 +v 14.275324 -83.400986 1.724138 +v 12.670318 -83.702011 1.730497 +v 14.243719 -83.400085 1.730498 +v 11.497376 -83.927048 1.251391 +v 15.416643 -83.174965 1.251393 +v 12.697576 -83.685837 1.736111 +v 14.212410 -83.395149 1.736112 +v 12.682526 -83.687759 1.732888 +v 14.227102 -83.391365 1.732889 +v 11.283938 -83.943245 1.108763 +v 15.620918 -83.111008 1.108765 +v 12.184553 -83.754906 1.588590 +v 14.714559 -83.269417 1.588591 +v 11.080563 -83.958687 0.952040 +v 15.815563 -83.050072 0.952043 +v 12.536850 -83.670990 -6.277530 +v 14.356229 -83.321861 -6.277529 +v 12.823674 -83.600052 1.758001 +v 14.063514 -83.362137 1.758001 +v 11.599414 -83.832504 -0.277528 +v 15.286860 -83.124908 -0.277527 +v 13.012917 -83.556519 1.113722 +v 13.871602 -83.391747 1.113723 +v 12.693849 -83.613785 1.732889 +v 14.189200 -83.326836 1.732889 +v 12.434760 -83.661308 1.669057 +v 14.447476 -83.275078 1.669058 +v 11.946247 -83.751259 1.491852 +v 14.934588 -83.177818 1.491853 +v 11.499306 -83.835533 -0.268777 +v 15.380979 -83.090668 -0.268776 +v 13.042867 -83.533241 1.113722 +v 13.835161 -83.381203 1.113723 +v 11.033727 -83.910683 0.198671 +v 15.841305 -82.988144 0.198673 +v 11.033727 -83.910683 0.877472 +v 15.841305 -82.988144 0.877474 +v 11.402230 -83.838470 -0.242790 +v 15.472245 -83.057457 -0.242788 +v 11.011275 -83.911919 0.367710 +v 15.862618 -82.980980 0.367712 +v 11.011275 -83.911919 0.708433 +v 15.862618 -82.980980 0.708435 +v 11.003772 -83.912331 0.538072 +v 15.869741 -82.978584 0.538074 +v 13.068795 -83.505577 1.113723 +v 13.800834 -83.365105 1.113723 +v 11.311131 -83.841225 -0.200351 +v 15.557894 -83.026299 -0.200349 +v 12.950768 -83.514389 1.773749 +v 13.913739 -83.329597 1.773749 +v 11.228769 -83.843712 -0.142751 +v 15.635326 -82.998123 -0.142749 +v 11.714995 -83.747719 1.379283 +v 15.148105 -83.088928 1.379285 +v 12.257227 -83.640793 -5.996280 +v 14.604812 -83.190308 -5.996278 +v 12.257227 -83.640800 -0.277528 +v 14.604812 -83.190315 -0.277527 +v 11.157640 -83.845863 -0.071733 +v 15.702200 -82.973793 -0.071731 +v 13.090070 -83.474197 1.113723 +v 13.769455 -83.343826 1.113723 +v 12.980480 -83.490944 1.776268 +v 13.877460 -83.318817 1.776268 +v 12.711852 -83.541145 1.732889 +v 14.145588 -83.266014 1.732889 +v 11.099901 -83.847610 0.010550 +v 15.756484 -82.954041 0.010552 +v 12.191833 -83.635368 1.588590 +v 14.663548 -83.161064 1.588592 +v 11.074711 -83.848373 0.952041 +v 15.780167 -82.945427 0.952043 +v 11.061935 -83.848763 0.939906 +v 15.792178 -82.941055 0.939908 +v 11.057299 -83.848900 0.101604 +v 15.796536 -82.939468 0.101607 +v 11.050991 -83.849091 0.926093 +v 15.802467 -82.937317 0.926095 +v 11.042099 -83.849358 0.910878 +v 15.810827 -82.934273 0.910880 +v 11.035433 -83.849564 0.894563 +v 15.817095 -82.931992 0.894565 +v 11.031128 -83.849693 0.198671 +v 15.821142 -82.930519 0.198674 +v 11.031128 -83.849693 0.877472 +v 15.821142 -82.930519 0.877474 +v 13.006289 -83.463196 1.777542 +v 13.843213 -83.302597 1.777542 +v 13.106174 -83.439865 1.113723 +v 13.741788 -83.317902 1.113723 +v 12.449515 -83.564911 1.669058 +v 14.398088 -83.190994 1.669059 +v 11.491850 -83.744308 1.251392 +v 15.354136 -83.003159 1.251394 +v 13.027563 -83.431816 1.777542 +v 13.811834 -83.281319 1.777542 +v 12.568285 -83.509712 -6.277530 +v 14.267330 -83.183678 -6.277529 +v 13.116715 -83.403427 1.113723 +v 13.718507 -83.287949 1.113723 +v 12.736385 -83.470444 1.732889 +v 14.096626 -83.209419 1.732890 +v 11.277822 -83.741035 1.108763 +v 15.551749 -82.920898 1.108765 +v 11.954845 -83.610069 1.491853 +v 14.874338 -83.049835 1.491854 +v 13.043788 -83.397568 1.776268 +v 13.784086 -83.255516 1.776269 +v 11.602061 -83.659439 -0.277528 +v 15.220339 -82.965111 -0.277526 +v 13.054565 -83.361290 1.773749 +v 13.760644 -83.225800 1.773750 +v 12.472976 -83.470253 1.669058 +v 14.341257 -83.111740 1.669059 +v 11.073886 -83.737915 0.952041 +v 15.740045 -82.842506 0.952043 +v 11.502092 -83.653351 -0.268777 +v 15.310953 -82.922455 -0.268775 +v 12.209952 -83.516991 1.588591 +v 14.602898 -83.057800 1.588592 +v 12.767247 -83.402267 1.732889 +v 14.042721 -83.157509 1.732890 +v 11.405152 -83.647446 -0.242789 +v 15.398822 -82.881088 -0.242787 +v 11.724874 -83.585518 1.379284 +v 15.078886 -82.941902 1.379285 +v 11.314181 -83.641907 -0.200351 +v 15.481280 -82.842262 -0.200349 +v 11.031495 -83.689064 0.198672 +v 15.761343 -82.781433 0.198674 +v 11.031495 -83.689064 0.877472 +v 15.761343 -82.781441 0.877474 +v 11.009023 -83.688278 0.367710 +v 15.781929 -82.772392 0.367712 +v 11.009023 -83.688278 0.708433 +v 15.781929 -82.772392 0.708435 +v 11.001513 -83.688019 0.538072 +v 15.788809 -82.769371 0.538074 +v 12.804181 -83.337173 1.732889 +v 13.984318 -83.110718 1.732890 +v 12.297788 -83.432693 -5.996279 +v 14.490103 -83.012001 -5.996278 +v 12.297788 -83.432701 -0.277527 +v 14.490103 -83.012009 -0.277526 +v 11.231934 -83.636894 -0.142751 +v 15.555832 -82.807167 -0.142749 +v 12.626523 -83.356071 -6.277529 +v 14.156356 -83.062508 -6.277528 +v 12.504946 -83.378128 1.669058 +v 14.277455 -83.037994 1.669059 +v 11.160904 -83.632568 -0.071733 +v 15.620215 -82.776855 -0.071731 +v 11.502964 -83.561821 1.251392 +v 15.276264 -82.837753 1.251394 +v 11.976248 -83.470245 1.491853 +v 14.802698 -82.927864 1.491854 +v 11.103245 -83.629059 0.010550 +v 15.672479 -82.752251 0.010552 +v 11.078090 -83.627525 0.952041 +v 15.695280 -82.741516 0.952044 +v 11.065331 -83.626747 0.939906 +v 15.706845 -82.736076 0.939909 +v 12.238763 -83.400749 1.588591 +v 14.533107 -82.960480 1.588592 +v 11.060701 -83.626465 0.101605 +v 15.711040 -82.734100 0.101607 +v 11.054402 -83.626083 0.926093 +v 15.716751 -82.731415 0.926095 +v 11.045523 -83.625542 0.910878 +v 15.724800 -82.727623 0.910881 +v 11.038866 -83.625137 0.894563 +v 15.730833 -82.724785 0.894566 +v 11.034567 -83.624878 0.198672 +v 15.734731 -82.722946 0.198674 +v 11.034567 -83.624878 0.877472 +v 15.734731 -82.722946 0.877475 +v 12.846880 -83.275719 1.732889 +v 13.921902 -83.069427 1.732890 +v 13.087102 -83.211517 1.758002 +v 13.674979 -83.098709 1.758002 +v 11.620436 -83.487328 -0.277528 +v 15.139562 -82.812027 -0.277526 +v 11.290121 -83.539101 1.108763 +v 15.465577 -82.737862 1.108766 +v 12.545160 -83.289284 1.669058 +v 14.207212 -82.970345 1.669059 +v 12.894991 -83.218391 1.732890 +v 13.855989 -83.033981 1.732890 +v 11.521435 -83.472176 -0.268777 +v 15.225921 -82.761307 -0.268775 +v 11.749462 -83.424881 1.379284 +v 14.996584 -82.801781 1.379286 +v 12.709889 -83.214478 -6.277529 +v 14.026500 -82.961830 -6.277528 +v 12.948115 -83.165680 1.732890 +v 13.787127 -83.004684 1.732890 +v 11.425434 -83.457481 -0.242789 +v 15.309664 -82.712120 -0.242787 +v 11.087314 -83.517448 0.952042 +v 15.645965 -82.642670 0.952044 +v 12.278024 -83.287613 1.588591 +v 14.454755 -82.869911 1.588592 +v 12.010277 -83.332947 1.491853 +v 14.720263 -82.812912 1.491854 +v 12.593288 -83.204468 1.669059 +v 14.131108 -82.909370 1.669059 +v 11.335342 -83.443687 -0.200351 +v 15.388251 -82.665962 -0.200349 +v 13.005813 -83.118019 1.732890 +v 13.715887 -82.981766 1.732890 +v 12.372933 -83.234444 -5.996278 +v 14.346910 -82.855644 -5.996278 +v 12.372933 -83.234451 -0.277527 +v 14.346910 -82.855659 -0.277526 +v 11.530625 -83.381111 1.251393 +v 15.183674 -82.680115 1.251395 +v 13.186811 -83.063072 1.113724 +v 13.527404 -82.997711 1.113724 +v 11.253892 -83.431221 -0.142750 +v 15.459302 -82.624229 -0.142748 +v 11.049138 -83.468132 0.198672 +v 15.663176 -82.582733 0.198674 +v 11.049138 -83.468132 0.877473 +v 15.663176 -82.582733 0.877475 +v 13.067606 -83.075806 1.732890 +v 13.642857 -82.965416 1.732890 +v 11.026828 -83.465340 0.367711 +v 15.682867 -82.571877 0.367713 +v 11.026828 -83.465340 0.708434 +v 15.682867 -82.571877 0.708436 +v 13.120116 -83.062622 1.736113 +v 13.589195 -82.972610 1.736113 +v 11.019371 -83.464409 0.538073 +v 15.689447 -82.568253 0.538075 +v 11.183550 -83.420456 -0.071732 +v 15.520662 -82.588188 -0.071730 +v 13.191150 -83.031754 1.113724 +v 13.511783 -82.970230 1.113724 +v 11.654386 -83.317604 -0.277527 +v 15.045198 -82.666924 -0.277526 +v 12.648929 -83.124382 1.669059 +v 14.049775 -82.855568 1.669059 +v 13.125056 -83.031311 1.730499 +v 13.573017 -82.945351 1.730499 +v 12.815987 -83.089012 -6.277529 +v 13.881497 -82.884544 -6.277528 +v 11.126449 -83.411713 0.010551 +v 15.570472 -82.558937 0.010553 +v 12.327410 -83.178505 1.588592 +v 14.368492 -82.786835 1.588593 +v 11.101538 -83.407906 0.952042 +v 15.592202 -82.546173 0.952044 +v 11.088902 -83.405968 0.939907 +v 15.603224 -82.539703 0.939909 +v 11.084318 -83.405266 0.101606 +v 15.607223 -82.537354 0.101608 +v 13.191363 -83.000145 1.113724 +v 13.499884 -82.940948 1.113724 +v 11.078079 -83.404312 0.926094 +v 15.612665 -82.534157 0.926096 +v 11.788555 -83.267143 1.379284 +v 14.901881 -82.669716 1.379286 +v 11.069285 -83.402969 0.910879 +v 15.620337 -82.529648 0.910881 +v 11.062693 -83.401955 0.894564 +v 15.626087 -82.526276 0.894566 +v 11.058436 -83.401306 0.198673 +v 15.629800 -82.524086 0.198675 +v 11.058436 -83.401306 0.877473 +v 15.629800 -82.524094 0.877475 +v 13.125951 -82.999710 1.724139 +v 13.560487 -82.916321 1.724139 +v 12.056650 -83.199310 1.491853 +v 14.627719 -82.705940 1.491855 +v 11.320731 -83.339127 1.108764 +v 15.363118 -82.563416 1.108766 +v 11.557172 -83.293510 -0.268776 +v 15.126589 -82.608559 -0.268775 +v 13.187449 -82.968781 1.113724 +v 13.491909 -82.910355 1.113724 +v 12.711622 -83.049683 1.669059 +v 13.963885 -82.809380 1.669060 +v 13.122787 -82.968346 1.717142 +v 13.551817 -82.886017 1.717142 +v 11.462905 -83.270142 -0.242788 +v 15.205511 -82.551964 -0.242786 +v 12.941760 -82.983284 -6.277528 +v 13.725519 -82.832886 -6.277528 +v 12.386513 -83.074348 1.588592 +v 14.275033 -82.711960 1.588593 +v 12.480503 -83.051743 -5.996278 +v 14.179355 -82.725746 -5.996277 +v 12.480503 -83.051750 -0.277526 +v 14.179355 -82.725754 -0.277526 +v 12.780848 -82.980995 1.669059 +v 13.874152 -82.771202 1.669060 +v 11.120732 -83.299118 0.952042 +v 15.534103 -82.452225 0.952044 +v 11.374441 -83.248222 -0.200350 +v 15.279576 -82.498848 -0.200348 +v 11.574606 -83.203651 1.251393 +v 15.077132 -82.531540 1.251395 +v 13.083594 -82.900330 -6.277528 +v 13.563054 -82.808319 -6.277528 +v 11.703628 -83.151665 -0.277527 +v 14.938032 -82.531006 -0.277525 +v 11.294462 -83.228394 -0.142750 +v 15.346537 -82.450829 -0.142748 +v 12.114984 -83.070442 1.491854 +v 14.525828 -82.607819 1.491855 +v 11.841830 -83.113617 1.379285 +v 14.795562 -82.546822 1.379286 +v 12.856032 -82.918892 1.669059 +v 13.781319 -82.741333 1.669060 +v 13.237408 -82.842537 -6.277528 +v 13.398775 -82.811569 -6.277528 +v 11.086514 -83.249680 0.198673 +v 15.547590 -82.393623 0.198675 +v 11.086514 -83.249680 0.877473 +v 15.547590 -82.393623 0.877475 +v 11.064543 -83.244896 0.367711 +v 15.566231 -82.381050 0.367713 +v 11.064543 -83.244896 0.708434 +v 15.566231 -82.381050 0.708436 +v 12.454843 -82.975998 1.588592 +v 14.175151 -82.645882 1.588593 +v 11.225390 -83.211281 -0.071732 +v 15.404366 -82.409363 -0.071730 +v 11.057201 -83.243294 0.538073 +v 15.572459 -82.376846 0.538075 +v 11.609009 -83.118835 -0.268776 +v 15.013777 -82.465477 -0.268774 +v 12.936553 -82.863876 1.669059 +v 13.686154 -82.720039 1.669060 +v 11.169319 -83.197380 0.010551 +v 15.451309 -82.375694 0.010553 +v 11.144859 -83.191322 0.952042 +v 15.471788 -82.361008 0.952044 +v 11.132452 -83.188248 0.939907 +v 15.482176 -82.353561 0.939909 +v 11.369399 -83.142761 1.108764 +v 15.245221 -82.399010 1.108766 +v 11.127952 -83.187126 0.101606 +v 15.485944 -82.350861 0.101608 +v 11.121825 -83.185608 0.926094 +v 15.491073 -82.347183 0.926096 +v 11.113190 -83.183472 0.910879 +v 15.498303 -82.341995 0.910882 +v 13.021743 -82.816422 1.669060 +v 13.589447 -82.707481 1.669060 +v 11.106717 -83.181870 0.894564 +v 15.503722 -82.338112 0.894567 +v 11.102535 -83.180832 0.198673 +v 15.507223 -82.335602 0.198675 +v 11.102535 -83.180832 0.877473 +v 15.507223 -82.335602 0.877476 +v 12.617402 -82.889847 -5.996278 +v 13.992254 -82.626022 -5.996277 +v 12.617401 -82.889862 -0.277526 +v 13.992254 -82.626038 -0.277526 +v 11.517257 -83.086990 -0.242788 +v 15.087225 -82.401939 -0.242786 +v 12.531833 -82.884270 1.588592 +v 14.069674 -82.589165 1.588593 +v 12.184793 -82.947418 1.491854 +v 14.415438 -82.519371 1.491855 +v 13.088960 -82.761559 1.662446 +v 13.506699 -82.681396 1.662447 +v 11.634541 -83.030937 1.251394 +v 14.957521 -82.393280 1.251395 +v 11.908847 -82.965576 1.379285 +v 14.678507 -82.434097 1.379287 +v 11.431153 -83.057114 -0.200350 +v 15.156153 -82.342308 -0.200348 +v 11.767756 -82.990898 -0.277526 +v 14.818949 -82.405396 -0.277525 +v 11.173868 -83.084732 0.952043 +v 15.405386 -82.272728 0.952044 +v 12.616845 -82.799919 1.588593 +v 13.959478 -82.542274 1.588593 +v 11.353307 -83.030098 -0.142749 +v 15.218472 -82.288399 -0.142748 +v 12.779691 -82.753418 -5.996277 +v 13.790993 -82.559357 -5.996277 +v 12.779691 -82.753433 -0.277526 +v 13.790993 -82.559372 -0.277525 +v 11.676514 -82.949593 -0.268775 +v 14.888421 -82.333252 -0.268774 +v 12.265502 -82.831245 1.491854 +v 14.297461 -82.441330 1.491855 +v 11.143323 -83.035446 0.198673 +v 15.415519 -82.215645 0.198675 +v 11.143323 -83.035446 0.877474 +v 15.415519 -82.215645 0.877476 +v 11.286078 -83.006775 -0.071731 +v 15.272289 -82.241844 -0.071729 +v 11.121870 -83.028717 0.367712 +v 15.432956 -82.201447 0.367714 +v 11.121870 -83.028717 0.708435 +v 15.432956 -82.201447 0.708437 +v 12.709176 -82.723648 1.588593 +v 13.845474 -82.505600 1.588593 +v 11.114699 -83.026466 0.538074 +v 15.438785 -82.196701 0.538076 +v 11.435722 -82.951630 1.108765 +v 15.112864 -82.246010 1.108767 +v 11.231504 -82.987831 0.010552 +v 15.315976 -82.204048 0.010554 +v 12.962703 -82.646385 -5.996277 +v 13.581361 -82.527664 -5.996277 +v 12.962703 -82.646393 -0.277526 +v 13.581361 -82.527679 -0.277525 +v 11.588038 -82.909546 -0.242787 +v 14.955788 -82.263290 -0.242786 +v 11.207697 -82.979576 0.952043 +v 15.335035 -82.187569 0.952045 +v 11.989046 -82.824242 1.379286 +v 14.551687 -82.332481 1.379287 +v 11.195621 -82.975388 0.939908 +v 15.344703 -82.179199 0.939910 +v 11.191239 -82.973862 0.101607 +v 15.348209 -82.176170 0.101609 +v 11.185277 -82.971794 0.926095 +v 15.352982 -82.172035 0.926097 +v 12.808060 -82.656090 1.588593 +v 13.728607 -82.479446 1.588593 +v 11.176872 -82.968880 0.910880 +v 15.359711 -82.166222 0.910882 +v 11.709934 -82.864388 1.251394 +v 14.825833 -82.266464 1.251395 +v 11.170572 -82.966690 0.894565 +v 15.364754 -82.161858 0.894567 +v 11.846237 -82.836624 -0.277526 +v 14.688936 -82.291130 -0.277525 +v 13.115299 -82.592789 1.113725 +v 13.419760 -82.534370 1.113725 +v 11.166502 -82.965279 0.198673 +v 15.368011 -82.159035 0.198675 +v 11.166502 -82.965279 0.877474 +v 15.368011 -82.159035 0.877476 +v 13.114720 -82.588242 1.113725 +v 13.418220 -82.528778 1.113725 +v 13.114873 -82.581856 1.113725 +v 13.415861 -82.523598 1.113725 +v 13.161171 -82.571815 -5.996277 +v 13.369387 -82.531860 -5.996277 +v 13.161171 -82.571823 -0.277525 +v 13.369387 -82.531868 -0.277525 +v 12.356440 -82.722900 1.491855 +v 14.172877 -82.374336 1.491855 +v 13.115974 -82.576187 1.113725 +v 13.412212 -82.518211 1.113725 +v 13.118246 -82.570160 1.113725 +v 13.086424 -82.575356 1.352274 +v 13.440129 -82.507477 1.352274 +v 13.407670 -82.513573 1.113725 +v 13.121151 -82.565201 1.113725 +v 13.403011 -82.510208 1.113725 +v 13.085843 -82.569550 1.351784 +v 13.438520 -82.501869 1.351784 +v 11.505009 -82.871956 -0.200349 +v 15.019008 -82.197647 -0.200347 +v 13.125329 -82.560242 1.113725 +v 13.397235 -82.507370 1.113725 +v 13.129725 -82.556519 1.113725 +v 12.912677 -82.597809 1.588593 +v 13.609846 -82.464027 1.588593 +v 13.391698 -82.505730 1.113725 +v 13.086197 -82.563721 1.351405 +v 13.436033 -82.496582 1.351405 +v 13.135136 -82.553314 1.113725 +v 13.385353 -82.504967 1.113725 +v 13.140689 -82.551178 1.113725 +v 13.380771 -82.505104 1.113725 +v 13.087474 -82.558006 1.351147 +v 13.432734 -82.491760 1.351147 +v 13.259624 -82.522377 1.113725 +v 13.089643 -82.552574 1.351017 +v 13.428707 -82.487511 1.351017 +v 13.056996 -82.557938 1.596014 +v 13.461020 -82.480408 1.596014 +v 13.460215 -82.477501 1.594956 +v 13.092646 -82.547546 1.351017 +v 13.424057 -82.483955 1.351017 +v 13.459309 -82.475029 1.594051 +v 13.056599 -82.552101 1.593982 +v 13.096408 -82.543068 1.351147 +v 13.418902 -82.481178 1.351147 +v 13.457695 -82.471626 1.592798 +v 13.100830 -82.539238 1.351405 +v 13.413378 -82.479263 1.351405 +v 13.456739 -82.469963 1.592183 +v 13.057165 -82.546326 1.592079 +v 13.105800 -82.536163 1.351784 +v 13.407625 -82.478249 1.351784 +v 13.111187 -82.533928 1.352274 +v 13.401792 -82.478165 1.352274 +v 13.454465 -82.466675 1.590956 +v 13.022161 -82.549278 1.588593 +v 13.490175 -82.459465 1.588593 +v 13.058520 -82.541107 1.590454 +v 11.759130 -82.787193 -0.268775 +v 14.751561 -82.212967 -0.268774 +v 13.449304 -82.461273 1.588910 +v 13.061443 -82.534645 1.588582 +v 13.063882 -82.530930 1.587589 +v 13.444624 -82.457863 1.587589 +v 13.065324 -82.529106 1.587131 +v 11.246277 -82.876068 0.952043 +v 15.260880 -82.105690 0.952045 +v 13.439455 -82.455200 1.586525 +v 13.069366 -82.524986 1.586185 +v 11.429941 -82.837975 -0.142749 +v 15.076164 -82.138290 -0.142747 +v 13.072147 -82.522774 1.585745 +v 13.433733 -82.453300 1.585723 +v 13.074996 -82.520905 1.585429 +v 13.077119 -82.519730 1.585269 +v 13.428119 -82.452354 1.585265 +v 13.080046 -82.518379 1.585141 +v 13.082490 -82.517471 1.585109 +v 13.422359 -82.452255 1.585109 +v 13.132986 -82.501823 1.585109 +v 13.369656 -82.456406 1.585109 +v 13.250286 -82.473724 1.585109 +v 12.456853 -82.623268 1.491855 +v 14.042717 -82.318947 1.491856 +v 12.081766 -82.690781 1.379286 +v 14.416152 -82.242828 1.379287 +v 11.365112 -82.808632 -0.071731 +v 15.125526 -82.087036 -0.071729 +v 11.938423 -82.690125 -0.277526 +v 14.549072 -82.189163 -0.277524 +v 11.219106 -82.827171 0.198674 +v 15.268025 -82.050217 0.198676 +v 11.219106 -82.827179 0.877474 +v 15.268025 -82.050217 0.877476 +v 11.674663 -82.739265 -0.242787 +v 14.812286 -82.137177 -0.242785 +v 11.519150 -82.767326 1.108765 +v 14.967140 -82.105682 1.108767 +v 11.800160 -82.705376 1.251395 +v 14.683159 -82.152153 1.251396 +v 11.198341 -82.818542 0.367712 +v 15.284121 -82.034515 0.367714 +v 11.198341 -82.818550 0.708435 +v 15.284121 -82.034515 0.708437 +v 11.191402 -82.815666 0.538074 +v 15.289499 -82.029266 0.538076 +v 11.312487 -82.784813 0.010552 +v 15.165596 -82.045425 0.010554 +v 12.565910 -82.533180 1.491855 +v 13.908061 -82.275635 1.491856 +v 11.289528 -82.774422 0.952043 +v 15.183077 -82.027275 0.952045 +v 11.277884 -82.769150 0.939908 +v 15.191943 -82.018066 0.939910 +v 11.273659 -82.767235 0.101607 +v 15.195160 -82.014725 0.101609 +v 11.267910 -82.764633 0.926095 +v 15.199537 -82.010178 0.926097 +v 11.259804 -82.760963 0.910880 +v 15.205709 -82.003769 0.910882 +v 11.595393 -82.694283 -0.200349 +v 14.869276 -82.066048 -0.200347 +v 11.253729 -82.758217 0.894565 +v 15.210335 -81.998970 0.894567 +v 11.249804 -82.756439 0.198674 +v 15.213323 -81.995865 0.198676 +v 11.249804 -82.756439 0.877474 +v 15.213323 -81.995865 0.877476 +v 11.856172 -82.632980 -0.268775 +v 14.604329 -82.105629 -0.268773 +v 12.186239 -82.566307 1.379286 +v 14.273024 -82.165863 1.379287 +v 12.682708 -82.453384 1.491855 +v 13.770022 -82.244736 1.491856 +v 11.523728 -82.653618 -0.142749 +v 14.920797 -82.001747 -0.142747 +v 12.043549 -82.552620 -0.277525 +v 14.400516 -82.100334 -0.277524 +v 11.337361 -82.674850 0.952044 +v 15.101784 -81.952477 0.952045 +v 12.806277 -82.384537 1.491855 +v 13.629746 -82.226524 1.491856 +v 11.904471 -82.555237 1.251395 +v 14.530681 -82.051285 1.251396 +v 11.776411 -82.577568 -0.242787 +v 14.657912 -82.024628 -0.242785 +v 11.618993 -82.591377 1.108766 +v 14.809258 -81.979187 1.108767 +v 11.461838 -82.618500 -0.071730 +v 14.965293 -81.946213 -0.071729 +v 12.301598 -82.451843 1.379286 +v 14.123492 -82.102234 1.379287 +v 12.935596 -82.327217 1.491856 +v 13.488396 -82.221138 1.491856 +v 11.313252 -82.626534 0.198674 +v 15.106297 -81.898674 0.198676 +v 11.313252 -82.626534 0.877475 +v 15.106297 -81.898674 0.877476 +v 13.069591 -82.281891 1.491856 +v 13.347140 -82.228630 1.491856 +v 11.966833 -82.488235 -0.268774 +v 14.447948 -82.012123 -0.268773 +v 13.207152 -82.248940 1.491856 +v 11.293345 -82.616081 0.367713 +v 15.120920 -81.881592 0.367714 +v 11.293345 -82.616081 0.708436 +v 15.120920 -81.881592 0.708437 +v 11.411595 -82.589989 0.010553 +v 15.001413 -81.901131 0.010554 +v 11.286693 -82.612587 0.538075 +v 15.125807 -81.875885 0.538076 +v 11.701563 -82.525566 -0.200348 +v 14.708197 -81.948616 -0.200347 +v 11.389677 -82.577553 0.952044 +v 15.017172 -81.881462 0.952045 +v 12.160742 -82.425240 -0.277525 +v 14.244496 -82.025383 -0.277524 +v 11.378559 -82.571251 0.939909 +v 15.025164 -81.871490 0.939910 +v 11.374526 -82.568954 0.101608 +v 15.028064 -81.867867 0.101609 +v 11.369038 -82.565842 0.926096 +v 15.032009 -81.862946 0.926097 +v 11.361300 -82.561455 0.910881 +v 15.037573 -81.856003 0.910883 +v 11.355499 -82.558167 0.894566 +v 15.041742 -81.850800 0.894568 +v 11.351753 -82.556038 0.198674 +v 15.044436 -81.847435 0.198676 +v 11.351753 -82.556038 0.877475 +v 15.044436 -81.847435 0.877477 +v 12.426886 -82.348351 1.379287 +v 13.968794 -82.052467 1.379287 +v 12.022004 -82.415199 1.251395 +v 14.369661 -81.964699 1.251396 +v 11.633892 -82.478554 -0.142748 +v 14.753658 -81.879890 -0.142747 +v 11.892443 -82.425797 -0.242786 +v 14.493943 -81.926582 -0.242785 +v 11.446366 -82.482750 0.952044 +v 14.929415 -81.814377 0.952046 +v 11.734422 -82.425232 1.108766 +v 14.640530 -81.867569 1.108768 +v 12.090200 -82.354149 -0.268774 +v 14.283710 -81.933228 -0.268773 +v 12.289034 -82.309052 -0.277525 +v 14.082308 -81.964935 -0.277524 +v 12.561067 -82.256676 1.379287 +v 13.810210 -82.016975 1.379287 +v 11.575450 -82.437950 -0.071730 +v 14.792919 -81.820541 -0.071728 +v 11.822634 -82.367203 -0.200348 +v 14.537106 -81.846313 -0.200346 +v 11.425007 -82.435135 0.198675 +v 14.931635 -81.762238 0.198676 +v 11.425007 -82.435135 0.877475 +v 14.931635 -81.762238 0.877477 +v 12.151784 -82.286430 1.251395 +v 14.201436 -81.893120 1.251396 +v 11.528009 -82.404991 0.010553 +v 14.824790 -81.772362 0.010555 +v 12.703028 -82.177589 1.379287 +v 13.649057 -81.996048 1.379287 +v 11.406116 -82.422943 0.367713 +v 14.944668 -81.743919 0.367715 +v 11.406116 -82.422943 0.708436 +v 14.944668 -81.743919 0.708438 +v 11.399804 -82.418861 0.538075 +v 14.949023 -81.737793 0.538077 +v 11.507313 -82.390617 0.952044 +v 14.838694 -81.751343 0.952046 +v 12.021795 -82.285202 -0.242786 +v 14.321737 -81.843857 -0.242785 +v 12.427360 -82.205002 -0.277524 +v 13.915295 -81.919479 -0.277524 +v 11.496815 -82.383324 0.939909 +v 14.845746 -81.740685 0.939911 +v 11.493007 -82.380676 0.101608 +v 14.848306 -81.736816 0.101610 +v 11.487823 -82.377075 0.926096 +v 14.851787 -81.731552 0.926098 +v 12.851593 -82.111732 1.379287 +v 13.486669 -81.989868 1.379287 +v 12.225248 -82.231834 -0.268774 +v 14.112980 -81.869591 -0.268773 +v 11.480516 -82.372002 0.910881 +v 14.856696 -81.724129 0.910883 +v 11.759518 -82.314232 -0.142748 +v 14.576130 -81.773743 -0.142746 +v 11.475040 -82.368195 0.894566 +v 14.860375 -81.718575 0.894568 +v 11.471502 -82.365738 0.198675 +v 14.862752 -81.714981 0.198677 +v 11.471502 -82.365738 0.877475 +v 14.862752 -81.714981 0.877477 +v 13.005531 -82.059662 1.379287 +v 13.324389 -81.998474 1.379287 +v 13.163567 -82.021805 1.379287 +v 11.864481 -82.270271 1.108767 +v 14.462349 -81.771759 1.108768 +v 12.292735 -82.169998 1.251396 +v 14.027398 -81.837128 1.251397 +v 12.574574 -82.113968 -0.277524 +v 13.744840 -81.889404 -0.277524 +v 11.572389 -82.301353 0.952044 +v 14.745199 -81.692513 0.952046 +v 11.957603 -82.220505 -0.200347 +v 14.357422 -81.759995 -0.200346 +v 11.705010 -82.268486 -0.071730 +v 14.609832 -81.711067 -0.071728 +v 12.370861 -82.122307 -0.268773 +v 13.937169 -81.821739 -0.268773 +v 12.163397 -82.156960 -0.242785 +v 14.142722 -81.777138 -0.242785 +v 12.729455 -82.036697 -0.277524 +v 13.572356 -81.874947 -0.277524 +v 11.553466 -82.254532 0.198675 +v 14.745447 -81.642014 0.198677 +v 11.553466 -82.254532 0.877476 +v 14.745447 -81.642014 0.877477 +v 11.660764 -82.231346 0.010554 +v 14.637189 -81.660187 0.010555 +v 12.443689 -82.066864 1.251396 +v 13.848990 -81.797203 1.251397 +v 11.535746 -82.240692 0.367714 +v 14.756784 -81.622589 0.367715 +v 11.535746 -82.240692 0.708437 +v 14.756784 -81.622597 0.708438 +v 11.641460 -82.215149 0.952045 +v 14.649124 -81.637993 0.952046 +v 11.529824 -82.236061 0.538076 +v 14.760573 -81.616104 0.538077 +v 12.890722 -81.973831 -0.277524 +v 13.399274 -81.876244 -0.277524 +v 11.899567 -82.162010 -0.142747 +v 14.389685 -81.684174 -0.142746 +v 11.631670 -82.206932 0.939910 +v 14.655178 -81.626740 0.939911 +v 11.628117 -82.203949 0.101609 +v 14.657374 -81.622650 0.101610 +v 12.008092 -82.127777 1.108767 +v 14.276195 -81.692543 1.108768 +v 13.057038 -81.925888 -0.277524 +v 13.227025 -81.893272 -0.277524 +v 11.623282 -82.199890 0.926097 +v 14.660363 -81.617096 0.926098 +v 12.525828 -82.026474 -0.268773 +v 13.757736 -81.790085 -0.268773 +v 11.616468 -82.194168 0.910882 +v 14.664577 -81.609261 0.910883 +v 11.611361 -82.189880 0.894567 +v 14.667735 -81.603386 0.894568 +v 11.608061 -82.187111 0.198675 +v 14.669775 -81.599594 0.198677 +v 11.608061 -82.187111 0.877476 +v 14.669775 -81.599594 0.877477 +v 12.105353 -82.086685 -0.200347 +v 14.170632 -81.690376 -0.200346 +v 12.316074 -82.042114 -0.242785 +v 13.958381 -81.726967 -0.242784 +v 12.603397 -81.977890 1.251396 +v 13.667691 -81.773659 1.251397 +v 11.849444 -82.111496 -0.071729 +v 14.417548 -81.618698 -0.071728 +v 11.714383 -82.132172 0.952045 +v 14.550668 -81.587906 0.952046 +v 12.688869 -81.945137 -0.268773 +v 13.576168 -81.774872 -0.268772 +v 12.770535 -81.903801 1.251396 +v 13.485002 -81.766701 1.251397 +v 12.858631 -81.878960 -0.268773 +v 13.393969 -81.776230 -0.268772 +v 11.808758 -82.070488 0.010554 +v 14.440166 -81.565544 0.010555 +v 12.478561 -81.941635 -0.242785 +v 13.770242 -81.693771 -0.242784 +v 12.052876 -82.023163 -0.142747 +v 14.195868 -81.611931 -0.142746 +v 12.164065 -81.998940 1.108767 +v 14.083609 -81.630592 1.108768 +v 11.697598 -82.086166 0.198676 +v 14.549231 -81.538956 0.198677 +v 11.697598 -82.086166 0.877476 +v 14.549231 -81.538956 0.877477 +v 13.033707 -81.828491 -0.268773 +v 13.212646 -81.794151 -0.268773 +v 12.943717 -81.845222 1.251397 +v 13.302437 -81.776382 1.251397 +v 13.121509 -81.802635 1.251397 +v 12.264660 -81.966858 -0.200347 +v 13.978287 -81.638031 -0.200346 +v 11.791008 -82.052605 0.952045 +v 14.450032 -81.542358 0.952046 +v 11.681191 -82.070793 0.367714 +v 14.558782 -81.518600 0.367715 +v 11.681191 -82.070793 0.708437 +v 14.558782 -81.518600 0.708438 +v 11.675708 -82.065651 0.538076 +v 14.561974 -81.511795 0.538077 +v 11.782005 -82.043533 0.939910 +v 14.455038 -81.530594 0.939911 +v 11.778739 -82.040237 0.101609 +v 14.456853 -81.526321 0.101610 +v 11.774294 -82.035759 0.926097 +v 14.459324 -81.520515 0.926098 +v 11.768027 -82.029442 0.910882 +v 14.462808 -81.512329 0.910883 +v 12.649512 -81.856346 -0.242785 +v 13.579864 -81.677818 -0.242784 +v 11.763330 -82.024712 0.894567 +v 14.465419 -81.506195 0.894568 +v 11.760297 -82.021652 0.198676 +v 14.467105 -81.502228 0.198677 +v 11.760297 -82.021652 0.877476 +v 14.467105 -81.502228 0.877477 +v 12.007556 -81.968300 -0.071729 +v 14.217661 -81.544189 -0.071728 +v 11.871175 -81.976608 0.952045 +v 14.347428 -81.501427 0.952046 +v 12.331109 -81.884811 1.108768 +v 13.886186 -81.586403 1.108768 +v 12.827511 -81.786957 -0.242785 +v 13.388824 -81.679245 -0.242784 +v 12.434204 -81.862015 -0.200346 +v 13.781978 -81.603386 -0.200346 +v 12.218178 -81.898827 -0.142747 +v 13.996284 -81.557617 -0.142746 +v 13.011082 -81.734039 -0.242784 +v 13.198705 -81.698036 -0.242784 +v 11.970766 -81.923759 0.010554 +v 14.235352 -81.489204 0.010555 +v 11.856244 -81.931396 0.198676 +v 14.344566 -81.453903 0.198677 +v 11.856244 -81.931396 0.877476 +v 14.344566 -81.453911 0.877478 +v 11.954718 -81.904335 0.952045 +v 14.243069 -81.465218 0.952047 +v 12.612578 -81.773026 -0.200346 +v 13.583332 -81.586746 -0.200346 +v 11.946576 -81.894478 0.939910 +v 14.246984 -81.453049 0.939912 +v 11.841280 -81.914612 0.367714 +v 14.352255 -81.432777 0.367716 +v 11.841280 -81.914619 0.708437 +v 14.352255 -81.432777 0.708439 +v 12.507839 -81.786354 1.108768 +v 13.685563 -81.560356 1.108768 +v 11.943624 -81.890900 0.101609 +v 14.248403 -81.448631 0.101610 +v 11.836279 -81.909004 0.538076 +v 14.354824 -81.425713 0.538078 +v 11.939605 -81.886040 0.926097 +v 14.250336 -81.442619 0.926099 +v 12.178035 -81.840065 -0.071728 +v 14.011827 -81.488174 -0.071728 +v 11.933938 -81.879181 0.910882 +v 14.253060 -81.434151 0.910884 +v 12.394100 -81.790039 -0.142746 +v 13.792588 -81.521675 -0.142746 +v 11.929691 -81.874039 0.894567 +v 14.255102 -81.427803 0.894569 +v 11.926948 -81.870712 0.198676 +v 14.256422 -81.423706 0.198677 +v 11.926948 -81.870712 0.877476 +v 14.256422 -81.423706 0.877478 +v 12.798307 -81.700623 -0.200346 +v 13.383995 -81.588234 -0.200346 +v 12.041462 -81.835938 0.952046 +v 14.137168 -81.433784 0.952047 +v 12.692790 -81.704369 1.108768 +v 13.483403 -81.552658 1.108768 +v 12.989850 -81.645409 -0.200346 +v 13.185620 -81.607841 -0.200346 +v 12.145447 -81.792374 0.010555 +v 14.024443 -81.431801 0.010556 +v 12.884429 -81.639542 1.108768 +v 13.281381 -81.563370 1.108768 +v 12.579187 -81.697693 -0.142746 +v 13.586468 -81.504402 -0.142746 +v 13.081170 -81.592415 1.108768 +v 12.028122 -81.791473 0.198676 +v 14.133103 -81.387543 0.198677 +v 12.028122 -81.791473 0.877477 +v 14.133103 -81.387543 0.877478 +v 12.359467 -81.727875 -0.071728 +v 13.801751 -81.451111 -0.071728 +v 12.131231 -81.771561 0.952046 +v 14.029947 -81.407211 0.952047 +v 12.124021 -81.761009 0.939911 +v 14.032739 -81.394737 0.939912 +v 12.121405 -81.757179 0.101610 +v 14.033751 -81.390213 0.101610 +v 12.014723 -81.773422 0.367715 +v 14.138866 -81.365807 0.367716 +v 12.014723 -81.773422 0.708438 +v 14.138866 -81.365807 0.708439 +v 12.117845 -81.751968 0.926098 +v 14.035131 -81.384056 0.926099 +v 12.771904 -81.622566 -0.142746 +v 13.379631 -81.505951 -0.142746 +v 12.010245 -81.767387 0.538077 +v 14.140792 -81.358543 0.538078 +v 12.112825 -81.744621 0.910883 +v 14.037073 -81.375374 0.910884 +v 12.109063 -81.739120 0.894568 +v 14.038529 -81.368866 0.894569 +v 12.106633 -81.735558 0.198677 +v 14.039471 -81.364662 0.198678 +v 12.106633 -81.735558 0.877477 +v 14.039471 -81.364662 0.877478 +v 12.223837 -81.711342 0.952046 +v 13.921627 -81.385544 0.952047 +v 12.970654 -81.565277 -0.142746 +v 13.173791 -81.526299 -0.142746 +v 12.331352 -81.677406 0.010555 +v 13.809190 -81.393822 0.010556 +v 12.550350 -81.632637 -0.071728 +v 13.589175 -81.433296 -0.071728 +v 12.319087 -81.655396 0.952046 +v 13.812434 -81.368835 0.952047 +v 12.211852 -81.667526 0.198677 +v 13.916542 -81.340401 0.198678 +v 12.211852 -81.667526 0.877477 +v 13.916542 -81.340408 0.877478 +v 12.312866 -81.644226 0.939911 +v 13.814080 -81.356155 0.939912 +v 12.310609 -81.640175 0.101610 +v 13.814677 -81.351555 0.101611 +v 12.749103 -81.555161 -0.071728 +v 13.375861 -81.434891 -0.071728 +v 12.307537 -81.634666 0.926098 +v 13.815490 -81.345299 0.926099 +v 12.200126 -81.648338 0.367715 +v 13.920334 -81.318237 0.367716 +v 12.200126 -81.648338 0.708438 +v 13.920334 -81.318245 0.708439 +v 12.303207 -81.626892 0.910883 +v 13.816635 -81.336479 0.910884 +v 12.416785 -81.603844 0.952046 +v 13.702594 -81.357101 0.952047 +v 12.526940 -81.579826 0.010555 +v 13.591373 -81.375572 0.010556 +v 12.196206 -81.641930 0.538077 +v 13.921601 -81.310837 0.538078 +v 12.954077 -81.496071 -0.071728 +v 13.163575 -81.455872 -0.071728 +v 12.299961 -81.621063 0.894568 +v 13.817494 -81.329865 0.894569 +v 12.297865 -81.617302 0.198677 +v 13.818048 -81.325592 0.198678 +v 12.297865 -81.617302 0.877477 +v 13.818048 -81.325592 0.877478 +v 12.516728 -81.556793 0.952046 +v 13.592333 -81.350388 0.952047 +v 12.511549 -81.545105 0.939911 +v 13.592819 -81.337616 0.939912 +v 12.730593 -81.500443 0.010555 +v 13.372801 -81.377205 0.010556 +v 12.509669 -81.540863 0.101610 +v 13.592996 -81.332977 0.101611 +v 12.405953 -81.560539 0.198677 +v 13.696627 -81.312866 0.198678 +v 12.405953 -81.560539 0.877477 +v 13.696627 -81.312866 0.877478 +v 12.618710 -81.514336 0.952046 +v 13.481880 -81.348701 0.952047 +v 12.507112 -81.535095 0.926098 +v 13.593236 -81.326675 0.926099 +v 12.503506 -81.526962 0.910883 +v 13.593575 -81.317787 0.910884 +v 12.940619 -81.439896 0.010556 +v 13.155282 -81.398705 0.010556 +v 12.500804 -81.520866 0.894568 +v 13.593828 -81.311119 0.894569 +v 12.395993 -81.540382 0.367715 +v 13.698417 -81.290451 0.367716 +v 12.395993 -81.540382 0.708438 +v 13.698417 -81.290451 0.708439 +v 12.722517 -81.476570 0.952046 +v 13.371466 -81.352036 0.952047 +v 12.499059 -81.516930 0.198677 +v 13.593991 -81.306816 0.198678 +v 12.499059 -81.516930 0.877477 +v 13.593991 -81.306816 0.877478 +v 12.392665 -81.533646 0.538077 +v 13.699015 -81.282959 0.538078 +v 12.827936 -81.443565 0.952047 +v 13.261317 -81.360397 0.952047 +v 12.718421 -81.464462 0.939912 +v 13.370789 -81.339272 0.939912 +v 12.716935 -81.460068 0.101610 +v 13.370543 -81.334641 0.101611 +v 12.934749 -81.415390 0.952047 +v 13.151664 -81.373764 0.952047 +v 13.042732 -81.392113 0.952047 +v 12.714913 -81.454086 0.926099 +v 13.370209 -81.328339 0.926099 +v 12.608863 -81.471382 0.198677 +v 13.475129 -81.305153 0.198678 +v 12.608863 -81.471382 0.877477 +v 13.475129 -81.305153 0.877478 +v 12.712062 -81.445663 0.910884 +v 13.369738 -81.319458 0.910884 +v 12.931771 -81.402962 0.939912 +v 13.149829 -81.361115 0.939912 +v 12.930691 -81.398445 0.101610 +v 13.149163 -81.356522 0.101611 +v 12.709926 -81.439346 0.894569 +v 13.369384 -81.312798 0.894569 +v 12.708546 -81.435265 0.198677 +v 13.369156 -81.308495 0.198678 +v 12.708546 -81.435265 0.877478 +v 13.369156 -81.308495 0.877478 +v 12.929220 -81.392311 0.926099 +v 13.148257 -81.350281 0.926099 +v 12.600750 -81.450417 0.367716 +v 13.474902 -81.282669 0.367716 +v 12.600750 -81.450417 0.708439 +v 13.474902 -81.282669 0.708439 +v 12.927148 -81.383659 0.910884 +v 13.146980 -81.341476 0.910884 +v 12.598039 -81.443405 0.538078 +v 13.474827 -81.275154 0.538078 +v 12.818947 -81.400772 0.198677 +v 13.253831 -81.317322 0.198678 +v 12.818947 -81.400780 0.877478 +v 13.253831 -81.317329 0.877478 +v 12.925594 -81.377174 0.894569 +v 13.146023 -81.334877 0.894569 +v 12.924591 -81.372986 0.198677 +v 13.145405 -81.330612 0.198678 +v 12.924591 -81.372986 0.877478 +v 13.145405 -81.330612 0.877478 +v 13.034515 -81.349289 0.198678 +v 13.034515 -81.349289 0.877478 +v 12.812747 -81.379166 0.367716 +v 13.251590 -81.294952 0.367716 +v 12.812747 -81.379166 0.708439 +v 13.251590 -81.294952 0.708439 +v 12.810676 -81.371941 0.538078 +v 13.250841 -81.287476 0.538078 +v 13.030278 -81.327202 0.367716 +v 13.030278 -81.327202 0.708439 +v 13.028862 -81.319824 0.538078 + +f 5 3 1 +f 3 8 1 +f 8 4 1 +f 7 5 1 +f 2 7 1 +f 4 2 1 +f 4 6 2 +f 6 17 2 +f 17 10 2 +f 10 7 2 +f 13 8 3 +f 11 13 3 +f 9 11 3 +f 5 9 3 +f 8 24 4 +f 24 15 4 +f 15 6 4 +f 16 9 5 +f 23 16 5 +f 7 23 5 +f 15 22 6 +f 22 37 6 +f 37 17 6 +f 10 18 7 +f 18 23 7 +f 35 24 8 +f 13 35 8 +f 14 11 9 +f 25 14 9 +f 16 25 9 +f 25 36 14 +f 24 60 15 +f 60 50 15 +f 50 22 15 +f 51 25 16 +f 59 51 16 +f 23 59 16 +f 38 23 18 +f 50 58 22 +f 58 71 22 +f 71 37 22 +f 38 59 23 +f 69 60 24 +f 35 69 24 +f 61 36 25 +f 51 61 25 +f 61 70 36 +f 72 59 38 +f 60 96 50 +f 96 88 50 +f 88 58 50 +f 89 61 51 +f 95 89 51 +f 59 95 51 +f 88 94 58 +f 94 102 58 +f 102 71 58 +f 72 95 59 +f 98 96 60 +f 69 98 60 +f 97 70 61 +f 89 97 61 +f 97 99 70 +f 103 95 72 +f 96 129 88 +f 129 125 88 +f 125 94 88 +f 126 97 89 +f 128 126 89 +f 95 128 89 +f 125 127 94 +f 127 141 94 +f 141 102 94 +f 103 128 95 +f 137 129 96 +f 98 137 96 +f 130 99 97 +f 126 130 97 +f 130 138 99 +f 142 128 103 +f 129 174 125 +f 174 170 125 +f 170 127 125 +f 171 130 126 +f 173 171 126 +f 128 173 126 +f 170 172 127 +f 172 184 127 +f 184 141 127 +f 142 173 128 +f 180 174 129 +f 137 180 129 +f 175 138 130 +f 171 175 130 +f 175 181 138 +f 185 173 142 +f 174 221 170 +f 221 215 170 +f 215 172 170 +f 216 175 171 +f 220 216 171 +f 173 220 171 +f 215 219 172 +f 219 236 172 +f 236 184 172 +f 185 220 173 +f 230 221 174 +f 180 230 174 +f 222 181 175 +f 216 222 175 +f 222 231 181 +f 237 220 185 +f 221 281 215 +f 281 275 215 +f 275 219 215 +f 276 222 216 +f 280 276 216 +f 220 280 216 +f 275 279 219 +f 279 293 219 +f 293 236 219 +f 237 280 220 +f 289 281 221 +f 230 289 221 +f 282 231 222 +f 276 282 222 +f 282 290 231 +f 294 280 237 +f 281 341 275 +f 341 335 275 +f 335 279 275 +f 336 282 276 +f 340 336 276 +f 280 340 276 +f 335 339 279 +f 339 355 279 +f 355 293 279 +f 294 340 280 +f 347 341 281 +f 289 347 281 +f 342 290 282 +f 336 342 282 +f 342 348 290 +f 356 340 294 +f 341 397 335 +f 397 391 335 +f 391 339 335 +f 392 342 336 +f 396 392 336 +f 340 396 336 +f 391 395 339 +f 395 409 339 +f 409 355 339 +f 356 396 340 +f 403 397 341 +f 347 403 341 +f 398 348 342 +f 392 398 342 +f 398 404 348 +f 410 396 356 +f 397 457 391 +f 457 453 391 +f 453 395 391 +f 396 456 392 +f 454 398 392 +f 456 454 392 +f 453 455 395 +f 455 463 395 +f 463 409 395 +f 410 456 396 +f 465 457 397 +f 403 465 397 +f 458 404 398 +f 454 458 398 +f 458 466 404 +f 464 456 410 +f 588 455 453 +f 592 588 453 +f 457 592 453 +f 589 458 454 +f 591 589 454 +f 456 591 454 +f 590 600 455 +f 588 590 455 +f 600 469 455 +f 469 463 455 +f 470 591 456 +f 464 470 456 +f 602 592 457 +f 465 602 457 +f 593 466 458 +f 589 593 458 +f 593 603 466 +f 601 591 470 +f 592 672 588 +f 672 668 588 +f 668 590 588 +f 669 593 589 +f 671 669 589 +f 591 671 589 +f 612 600 590 +f 668 670 590 +f 670 678 590 +f 678 612 590 +f 601 613 591 +f 613 671 591 +f 602 680 592 +f 680 672 592 +f 673 603 593 +f 669 673 593 +f 673 681 603 +f 679 671 613 +f 672 767 668 +f 767 761 668 +f 761 670 668 +f 762 673 669 +f 766 762 669 +f 671 766 669 +f 691 678 670 +f 761 765 670 +f 765 771 670 +f 771 691 670 +f 679 692 671 +f 692 766 671 +f 680 693 672 +f 693 767 672 +f 774 694 673 +f 694 681 673 +f 768 774 673 +f 762 768 673 +f 772 766 692 +f 773 767 693 +f 767 853 761 +f 853 849 761 +f 849 765 761 +f 850 768 762 +f 852 850 762 +f 766 852 762 +f 791 771 765 +f 849 851 765 +f 851 861 765 +f 861 791 765 +f 772 792 766 +f 792 852 766 +f 773 793 767 +f 793 853 767 +f 794 774 768 +f 864 794 768 +f 854 864 768 +f 850 854 768 +f 862 852 792 +f 863 853 793 +f 853 955 849 +f 955 951 849 +f 951 851 849 +f 952 854 850 +f 954 952 850 +f 852 954 850 +f 873 861 851 +f 951 953 851 +f 953 957 851 +f 957 873 851 +f 862 874 852 +f 874 954 852 +f 863 875 853 +f 875 955 853 +f 876 864 854 +f 960 876 854 +f 956 960 854 +f 952 956 854 +f 958 954 874 +f 959 955 875 +f 955 1112 951 +f 1112 1108 951 +f 1108 953 951 +f 1109 956 952 +f 1111 1109 952 +f 954 1111 952 +f 973 957 953 +f 1108 1110 953 +f 1110 1114 953 +f 1114 973 953 +f 958 974 954 +f 974 1111 954 +f 959 975 955 +f 975 1112 955 +f 976 960 956 +f 1117 976 956 +f 1113 1117 956 +f 1109 1113 956 +f 1115 1111 974 +f 1116 1112 975 +f 1112 1179 1108 +f 1179 1181 1108 +f 1181 1110 1108 +f 1182 1113 1109 +f 1178 1182 1109 +f 1111 1178 1109 +f 1122 1114 1110 +f 1181 1177 1110 +f 1177 1173 1110 +f 1173 1122 1110 +f 1115 1123 1111 +f 1123 1178 1111 +f 1116 1124 1112 +f 1124 1179 1112 +f 1125 1117 1113 +f 1176 1125 1113 +f 1180 1176 1113 +f 1182 1180 1113 +f 1174 1178 1123 +f 1175 1179 1124 +f 1177 1251 1173 +f 1252 1178 1174 +f 1253 1179 1175 +f 1180 1254 1176 +f 1181 1348 1177 +f 1348 1344 1177 +f 1344 1338 1177 +f 1338 1251 1177 +f 1345 1182 1178 +f 1252 1345 1178 +f 1253 1346 1179 +f 1346 1181 1179 +f 1341 1254 1180 +f 1347 1341 1180 +f 1349 1347 1180 +f 1182 1349 1180 +f 1346 1348 1181 +f 1345 1349 1182 +f 1339 1345 1252 +f 1340 1346 1253 +f 1344 1388 1338 +f 1389 1345 1339 +f 1390 1346 1340 +f 1347 1391 1341 +f 1348 1442 1344 +f 1442 1438 1344 +f 1438 1434 1344 +f 1434 1388 1344 +f 1439 1349 1345 +f 1389 1439 1345 +f 1390 1440 1346 +f 1440 1348 1346 +f 1437 1391 1347 +f 1441 1437 1347 +f 1443 1441 1347 +f 1349 1443 1347 +f 1440 1442 1348 +f 1439 1443 1349 +f 1435 1439 1389 +f 1436 1440 1390 +f 1438 1478 1434 +f 1479 1439 1435 +f 1480 1440 1436 +f 1441 1481 1437 +f 1442 1538 1438 +f 1538 1532 1438 +f 1532 1526 1438 +f 1526 1478 1438 +f 1533 1443 1439 +f 1479 1533 1439 +f 1480 1534 1440 +f 1534 1442 1440 +f 1529 1481 1441 +f 1535 1529 1441 +f 1539 1535 1441 +f 1443 1539 1441 +f 1534 1538 1442 +f 1533 1539 1443 +f 1527 1533 1479 +f 1528 1534 1480 +f 1532 1572 1526 +f 1573 1533 1527 +f 1574 1534 1528 +f 1535 1575 1529 +f 1538 1634 1532 +f 1634 1626 1532 +f 1626 1622 1532 +f 1622 1572 1532 +f 1627 1539 1533 +f 1573 1627 1533 +f 1574 1628 1534 +f 1628 1538 1534 +f 1625 1575 1535 +f 1629 1625 1535 +f 1635 1629 1535 +f 1539 1635 1535 +f 1628 1634 1538 +f 1627 1635 1539 +f 1623 1627 1573 +f 1624 1628 1574 +f 1626 1658 1622 +f 1659 1627 1623 +f 1660 1628 1624 +f 1629 1661 1625 +f 1634 1708 1626 +f 1708 1702 1626 +f 1702 1696 1626 +f 1696 1658 1626 +f 1703 1635 1627 +f 1659 1703 1627 +f 1660 1704 1628 +f 1704 1634 1628 +f 1699 1661 1629 +f 1705 1699 1629 +f 1709 1705 1629 +f 1635 1709 1629 +f 1704 1708 1634 +f 1703 1709 1635 +f 1697 1703 1659 +f 1698 1704 1660 +f 1702 1742 1696 +f 1743 1703 1697 +f 1744 1704 1698 +f 1705 1745 1699 +f 1708 1853 1702 +f 1853 1849 1702 +f 1849 1839 1702 +f 1839 1742 1702 +f 1850 1709 1703 +f 1743 1850 1703 +f 1744 1851 1704 +f 1851 1708 1704 +f 1842 1745 1705 +f 1852 1842 1705 +f 1854 1852 1705 +f 1709 1854 1705 +f 1851 1853 1708 +f 1850 1854 1709 +f 1840 1850 1743 +f 1841 1851 1744 +f 1849 1873 1839 +f 1874 1850 1840 +f 1875 1851 1841 +f 1852 1876 1842 +f 1853 1918 1849 +f 1918 1912 1849 +f 1912 1903 1849 +f 1903 1873 1849 +f 1913 1854 1850 +f 1874 1913 1850 +f 1875 1914 1851 +f 1914 1853 1851 +f 1906 1876 1852 +f 1915 1906 1852 +f 1919 1915 1852 +f 1854 1919 1852 +f 1914 1918 1853 +f 1913 1919 1854 +f 1904 1913 1874 +f 1905 1914 1875 +f 1912 1936 1903 +f 1937 1913 1904 +f 1938 1914 1905 +f 1915 1939 1906 +f 1918 1976 1912 +f 1976 1972 1912 +f 1972 1962 1912 +f 1962 1936 1912 +f 1973 1919 1913 +f 1937 1973 1913 +f 1938 1974 1914 +f 1974 1918 1914 +f 1965 1939 1915 +f 1975 1965 1915 +f 1977 1975 1915 +f 1919 1977 1915 +f 1974 1976 1918 +f 1973 1977 1919 +f 1963 1973 1937 +f 1964 1974 1938 +f 1972 2000 1962 +f 2001 1973 1963 +f 2002 1974 1964 +f 1975 2003 1965 +f 1976 2039 1972 +f 2039 2033 1972 +f 2033 2025 1972 +f 2025 2000 1972 +f 2034 1977 1973 +f 2001 2034 1973 +f 2002 2035 1974 +f 2035 1976 1974 +f 2028 2003 1975 +f 2036 2028 1975 +f 2040 2036 1975 +f 1977 2040 1975 +f 2035 2039 1976 +f 2034 2040 1977 +f 2026 2034 2001 +f 2027 2035 2002 +f 2033 2061 2025 +f 2062 2034 2026 +f 2063 2035 2027 +f 2036 2064 2028 +f 2039 2106 2033 +f 2106 2102 2033 +f 2102 2089 2033 +f 2089 2061 2033 +f 2103 2040 2034 +f 2062 2103 2034 +f 2063 2104 2035 +f 2104 2039 2035 +f 2092 2064 2036 +f 2105 2092 2036 +f 2107 2105 2036 +f 2040 2107 2036 +f 2104 2106 2039 +f 2103 2107 2040 +f 2090 2103 2062 +f 2091 2104 2063 +f 2102 2120 2089 +f 2121 2103 2090 +f 2122 2104 2091 +f 2105 2123 2092 +f 2106 2158 2102 +f 2158 2150 2102 +f 2150 2140 2102 +f 2140 2120 2102 +f 2151 2107 2103 +f 2121 2151 2103 +f 2122 2152 2104 +f 2152 2106 2104 +f 2143 2123 2105 +f 2153 2143 2105 +f 2159 2153 2105 +f 2107 2159 2105 +f 2152 2158 2106 +f 2151 2159 2107 +f 2141 2151 2121 +f 2142 2152 2122 +f 2150 2170 2140 +f 2171 2151 2141 +f 2172 2152 2142 +f 2153 2173 2143 +f 2158 2209 2150 +f 2209 2201 2150 +f 2201 2189 2150 +f 2189 2170 2150 +f 2202 2159 2151 +f 2171 2202 2151 +f 2172 2203 2152 +f 2203 2158 2152 +f 2192 2173 2153 +f 2204 2192 2153 +f 2210 2204 2153 +f 2159 2210 2153 +f 2203 2209 2158 +f 2202 2210 2159 +f 2190 2202 2171 +f 2191 2203 2172 +f 2201 2215 2189 +f 2216 2202 2190 +f 2217 2203 2191 +f 2204 2218 2192 +f 2209 2251 2201 +f 2251 2241 2201 +f 2241 2229 2201 +f 2229 2215 2201 +f 2242 2210 2202 +f 2216 2242 2202 +f 2217 2243 2203 +f 2243 2209 2203 +f 2232 2218 2204 +f 2244 2232 2204 +f 2252 2244 2204 +f 2210 2252 2204 +f 2243 2251 2209 +f 2242 2252 2210 +f 2230 2242 2216 +f 2231 2243 2217 +f 2241 2257 2229 +f 2258 2242 2230 +f 2259 2243 2231 +f 2244 2260 2232 +f 2251 2293 2241 +f 2293 2283 2241 +f 2283 2269 2241 +f 2269 2257 2241 +f 2284 2252 2242 +f 2258 2284 2242 +f 2259 2285 2243 +f 2285 2251 2243 +f 2272 2260 2244 +f 2286 2272 2244 +f 2294 2286 2244 +f 2252 2294 2244 +f 2285 2293 2251 +f 2284 2294 2252 +f 2270 2284 2258 +f 2271 2285 2259 +f 2283 2289 2269 +f 2290 2284 2270 +f 2291 2285 2271 +f 2286 2292 2272 +f 2293 2330 2283 +f 2330 2324 2283 +f 2324 2306 2283 +f 2306 2289 2283 +f 2325 2294 2284 +f 2290 2325 2284 +f 2291 2326 2285 +f 2326 2293 2285 +f 2309 2292 2286 +f 2327 2309 2286 +f 2331 2327 2286 +f 2294 2331 2286 +f 2307 2325 2290 +f 2308 2326 2291 +f 2326 2330 2293 +f 2325 2331 2294 +f 2324 2318 2306 +f 2319 2325 2307 +f 2320 2326 2308 +f 2327 2321 2309 +f 2324 2332 2318 +f 2345 2325 2319 +f 2333 2345 2319 +f 2334 2346 2320 +f 2346 2326 2320 +f 2327 2335 2321 +f 2330 2348 2324 +f 2348 2344 2324 +f 2344 2332 2324 +f 2345 2331 2325 +f 2346 2330 2326 +f 2347 2335 2327 +f 2349 2347 2327 +f 2331 2349 2327 +f 2346 2348 2330 +f 2345 2349 2331 +f 2344 2338 2332 +f 2339 2345 2333 +f 2340 2346 2334 +f 2347 2341 2335 +f 2344 2342 2338 +f 2350 2345 2339 +f 2342 2350 2339 +f 2343 2351 2340 +f 2351 2346 2340 +f 2347 2343 2341 +f 2344 2350 2342 +f 2347 2351 2343 +f 2348 2352 2344 +f 2352 2350 2344 +f 2350 2349 2345 +f 2351 2348 2346 +f 2352 2351 2347 +f 2349 2352 2347 +f 2351 2352 2348 +f 2350 2352 2349 +f 34 18 10 +f 29 34 10 +f 17 29 10 +f 33 29 17 +f 37 33 17 +f 57 38 18 +f 34 57 18 +f 66 34 29 +f 33 62 29 +f 62 66 29 +f 37 56 33 +f 56 65 33 +f 65 62 33 +f 66 80 34 +f 80 57 34 +f 71 56 37 +f 84 72 38 +f 57 84 38 +f 71 83 56 +f 83 79 56 +f 79 65 56 +f 80 101 57 +f 101 84 57 +f 93 66 62 +f 65 87 62 +f 87 93 62 +f 79 92 65 +f 92 87 65 +f 93 105 66 +f 105 80 66 +f 102 83 71 +f 115 103 72 +f 84 115 72 +f 83 100 79 +f 100 104 79 +f 104 92 79 +f 105 124 80 +f 124 101 80 +f 102 114 83 +f 114 100 83 +f 101 132 84 +f 132 115 84 +f 122 93 87 +f 92 118 87 +f 118 122 87 +f 104 121 92 +f 121 118 92 +f 122 134 93 +f 134 105 93 +f 114 131 100 +f 131 123 100 +f 123 104 100 +f 124 157 101 +f 157 132 101 +f 141 114 102 +f 152 142 103 +f 115 152 103 +f 123 133 104 +f 133 121 104 +f 134 159 105 +f 159 124 105 +f 141 151 114 +f 151 131 114 +f 132 167 115 +f 167 152 115 +f 161 122 118 +f 121 155 118 +f 155 161 118 +f 133 160 121 +f 160 155 121 +f 161 169 122 +f 169 134 122 +f 131 156 123 +f 156 158 123 +f 158 133 123 +f 159 179 124 +f 179 157 124 +f 151 166 131 +f 166 156 131 +f 157 191 132 +f 191 167 132 +f 158 168 133 +f 168 160 133 +f 169 187 134 +f 187 159 134 +f 184 151 141 +f 200 185 142 +f 152 200 142 +f 184 199 151 +f 199 166 151 +f 167 208 152 +f 208 200 152 +f 198 161 155 +f 160 194 155 +f 194 198 155 +f 166 190 156 +f 190 178 156 +f 178 158 156 +f 179 212 157 +f 212 191 157 +f 178 186 158 +f 186 168 158 +f 187 210 159 +f 210 179 159 +f 168 197 160 +f 197 194 160 +f 198 206 161 +f 206 169 161 +f 199 207 166 +f 207 190 166 +f 191 228 167 +f 228 208 167 +f 186 205 168 +f 205 197 168 +f 206 218 169 +f 218 187 169 +f 190 211 178 +f 211 209 178 +f 209 186 178 +f 210 247 179 +f 247 212 179 +f 236 199 184 +f 249 237 185 +f 200 249 185 +f 209 217 186 +f 217 205 186 +f 218 251 187 +f 251 210 187 +f 207 227 190 +f 227 211 190 +f 212 261 191 +f 261 228 191 +f 233 198 194 +f 197 229 194 +f 229 233 194 +f 205 232 197 +f 232 229 197 +f 233 245 198 +f 245 206 198 +f 236 248 199 +f 248 207 199 +f 208 263 200 +f 263 249 200 +f 217 244 205 +f 244 232 205 +f 245 265 206 +f 265 218 206 +f 248 262 207 +f 262 227 207 +f 228 274 208 +f 274 263 208 +f 211 246 209 +f 246 250 209 +f 250 217 209 +f 251 272 210 +f 272 247 210 +f 227 260 211 +f 260 246 211 +f 247 284 212 +f 284 261 212 +f 250 264 217 +f 264 244 217 +f 265 286 218 +f 286 251 218 +f 262 273 227 +f 273 260 227 +f 261 306 228 +f 306 274 228 +f 270 233 229 +f 232 268 229 +f 268 270 229 +f 244 269 232 +f 269 268 232 +f 270 288 233 +f 288 245 233 +f 293 248 236 +f 308 294 237 +f 249 308 237 +f 264 287 244 +f 287 269 244 +f 288 302 245 +f 302 265 245 +f 260 283 246 +f 283 271 246 +f 271 250 246 +f 272 316 247 +f 316 284 247 +f 293 307 248 +f 307 262 248 +f 263 318 249 +f 318 308 249 +f 271 285 250 +f 285 264 250 +f 286 314 251 +f 314 272 251 +f 273 305 260 +f 305 283 260 +f 284 328 261 +f 328 306 261 +f 307 317 262 +f 317 273 262 +f 274 330 263 +f 330 318 263 +f 285 301 264 +f 301 287 264 +f 302 322 265 +f 322 286 265 +f 283 315 271 +f 315 313 271 +f 313 285 271 +f 314 344 272 +f 344 316 272 +f 317 329 273 +f 329 305 273 +f 306 350 274 +f 350 330 274 +f 305 327 283 +f 327 315 283 +f 316 354 284 +f 354 328 284 +f 313 321 285 +f 321 301 285 +f 322 346 286 +f 346 314 286 +f 355 307 293 +f 364 356 294 +f 308 364 294 +f 329 349 305 +f 349 327 305 +f 328 376 306 +f 376 350 306 +f 355 363 307 +f 363 317 307 +f 318 372 308 +f 372 364 308 +f 315 343 313 +f 343 345 313 +f 345 321 313 +f 346 378 314 +f 378 344 314 +f 327 353 315 +f 353 343 315 +f 344 380 316 +f 380 354 316 +f 363 371 317 +f 371 329 317 +f 330 382 318 +f 382 372 318 +f 349 375 327 +f 375 353 327 +f 354 388 328 +f 388 376 328 +f 371 381 329 +f 381 349 329 +f 350 402 330 +f 402 382 330 +f 353 379 343 +f 379 377 343 +f 377 345 343 +f 378 408 344 +f 408 380 344 +f 381 401 349 +f 401 375 349 +f 376 424 350 +f 424 402 350 +f 375 387 353 +f 387 379 353 +f 380 426 354 +f 426 388 354 +f 409 363 355 +f 420 410 356 +f 364 420 356 +f 409 419 363 +f 419 371 363 +f 372 434 364 +f 434 420 364 +f 419 433 371 +f 433 381 371 +f 382 438 372 +f 438 434 372 +f 401 423 375 +f 423 387 375 +f 388 442 376 +f 442 424 376 +f 379 407 377 +f 387 425 379 +f 425 407 379 +f 408 446 380 +f 446 426 380 +f 433 437 381 +f 437 401 381 +f 402 450 382 +f 450 438 382 +f 423 441 387 +f 441 425 387 +f 426 460 388 +f 460 442 388 +f 437 449 401 +f 449 423 401 +f 424 468 402 +f 468 450 402 +f 425 445 407 +f 463 419 409 +f 420 464 410 +f 463 480 419 +f 480 433 419 +f 481 464 420 +f 434 508 420 +f 508 481 420 +f 449 467 423 +f 467 441 423 +f 442 521 424 +f 521 468 424 +f 441 459 425 +f 459 445 425 +f 446 504 426 +f 504 460 426 +f 480 507 433 +f 507 437 433 +f 438 553 434 +f 553 508 434 +f 507 552 437 +f 552 449 437 +f 450 581 438 +f 581 553 438 +f 467 520 441 +f 520 459 441 +f 460 579 442 +f 579 521 442 +f 459 503 445 +f 552 580 449 +f 580 467 449 +f 468 595 450 +f 595 581 450 +f 520 578 459 +f 578 503 459 +f 504 605 460 +f 605 579 460 +f 469 480 463 +f 481 470 464 +f 580 594 467 +f 594 520 467 +f 521 619 468 +f 619 595 468 +f 600 480 469 +f 481 601 470 +f 600 622 480 +f 622 507 480 +f 623 601 481 +f 508 633 481 +f 633 623 481 +f 578 604 503 +f 622 632 507 +f 632 552 507 +f 553 643 508 +f 643 633 508 +f 594 618 520 +f 618 578 520 +f 579 641 521 +f 641 619 521 +f 632 642 552 +f 642 580 552 +f 581 647 553 +f 647 643 553 +f 618 640 578 +f 640 604 578 +f 605 653 579 +f 653 641 579 +f 642 646 580 +f 646 594 580 +f 595 663 581 +f 663 647 581 +f 646 662 594 +f 662 618 594 +f 619 684 595 +f 684 663 595 +f 612 622 600 +f 623 613 601 +f 640 652 604 +f 678 622 612 +f 623 679 613 +f 662 683 618 +f 683 640 618 +f 641 706 619 +f 706 684 619 +f 678 703 622 +f 703 632 622 +f 704 679 623 +f 633 714 623 +f 714 704 623 +f 703 713 632 +f 713 642 632 +f 643 722 633 +f 722 714 633 +f 683 705 640 +f 705 652 640 +f 653 724 641 +f 724 706 641 +f 713 721 642 +f 721 646 642 +f 647 728 643 +f 728 722 643 +f 721 727 646 +f 727 662 646 +f 663 742 647 +f 742 728 647 +f 705 723 652 +f 727 741 662 +f 741 683 662 +f 684 754 663 +f 754 742 663 +f 691 703 678 +f 704 692 679 +f 741 753 683 +f 753 705 683 +f 706 780 684 +f 780 754 684 +f 771 703 691 +f 704 772 692 +f 771 803 703 +f 803 713 703 +f 804 772 704 +f 714 810 704 +f 810 804 704 +f 753 779 705 +f 779 723 705 +f 724 798 706 +f 798 780 706 +f 803 809 713 +f 809 721 713 +f 722 814 714 +f 814 810 714 +f 809 813 721 +f 813 727 721 +f 728 820 722 +f 820 814 722 +f 779 797 723 +f 813 819 727 +f 819 741 727 +f 742 832 728 +f 832 820 728 +f 819 831 741 +f 831 753 741 +f 754 840 742 +f 840 832 742 +f 831 839 753 +f 839 779 753 +f 780 848 754 +f 848 840 754 +f 791 803 771 +f 804 792 772 +f 839 847 779 +f 847 797 779 +f 798 856 780 +f 856 848 780 +f 861 803 791 +f 804 862 792 +f 847 855 797 +f 861 885 803 +f 885 809 803 +f 886 862 804 +f 810 894 804 +f 894 886 804 +f 885 893 809 +f 893 813 809 +f 814 896 810 +f 896 894 810 +f 893 895 813 +f 895 819 813 +f 820 904 814 +f 904 896 814 +f 895 903 819 +f 903 831 819 +f 832 910 820 +f 910 904 820 +f 903 909 831 +f 909 839 831 +f 840 918 832 +f 918 910 832 +f 909 917 839 +f 917 847 839 +f 848 924 840 +f 924 918 840 +f 917 923 847 +f 923 855 847 +f 856 930 848 +f 930 924 848 +f 923 929 855 +f 873 885 861 +f 886 874 862 +f 957 885 873 +f 886 958 874 +f 957 983 885 +f 983 893 885 +f 984 958 886 +f 894 992 886 +f 992 984 886 +f 983 991 893 +f 991 895 893 +f 896 994 894 +f 994 992 894 +f 991 993 895 +f 993 903 895 +f 904 1002 896 +f 1002 994 896 +f 993 1001 903 +f 1001 909 903 +f 910 1004 904 +f 1004 1002 904 +f 1001 1003 909 +f 1003 917 909 +f 918 1010 910 +f 1010 1004 910 +f 1003 1009 917 +f 1009 923 917 +f 924 1014 918 +f 1014 1010 918 +f 1009 1013 923 +f 1013 929 923 +f 930 1020 924 +f 1020 1014 924 +f 1013 1019 929 +f 973 983 957 +f 984 974 958 +f 1114 983 973 +f 984 1115 974 +f 1114 1132 983 +f 1132 991 983 +f 1133 1115 984 +f 992 1139 984 +f 1139 1133 984 +f 1132 1138 991 +f 1138 993 991 +f 994 1141 992 +f 1141 1139 992 +f 1138 1140 993 +f 1140 1001 993 +f 1002 1147 994 +f 1147 1141 994 +f 1140 1146 1001 +f 1146 1003 1001 +f 1004 1149 1002 +f 1149 1147 1002 +f 1146 1148 1003 +f 1148 1009 1003 +f 1010 1151 1004 +f 1151 1149 1004 +f 1148 1150 1009 +f 1150 1013 1009 +f 1014 1153 1010 +f 1153 1151 1010 +f 1150 1152 1013 +f 1152 1019 1013 +f 1020 1155 1014 +f 1155 1153 1014 +f 1152 1154 1019 +f 1122 1132 1114 +f 1133 1123 1115 +f 1173 1132 1122 +f 1133 1174 1123 +f 1173 1243 1132 +f 1243 1138 1132 +f 1244 1174 1133 +f 1139 1236 1133 +f 1236 1244 1133 +f 1243 1235 1138 +f 1235 1140 1138 +f 1141 1232 1139 +f 1232 1236 1139 +f 1235 1231 1140 +f 1231 1146 1140 +f 1147 1222 1141 +f 1222 1232 1141 +f 1231 1221 1146 +f 1221 1148 1146 +f 1149 1206 1147 +f 1206 1222 1147 +f 1221 1205 1148 +f 1205 1150 1148 +f 1151 1199 1149 +f 1199 1206 1149 +f 1205 1198 1150 +f 1198 1152 1150 +f 1153 1194 1151 +f 1194 1199 1151 +f 1198 1193 1152 +f 1193 1154 1152 +f 1155 1190 1153 +f 1190 1194 1153 +f 1193 1189 1154 +f 1251 1243 1173 +f 1244 1252 1174 +f 1334 1324 1189 +f 1193 1334 1189 +f 1325 1194 1190 +f 1342 1334 1193 +f 1198 1342 1193 +f 1335 1199 1194 +f 1325 1335 1194 +f 1352 1342 1198 +f 1205 1352 1198 +f 1343 1206 1199 +f 1335 1343 1199 +f 1356 1352 1205 +f 1221 1356 1205 +f 1353 1222 1206 +f 1343 1353 1206 +f 1364 1356 1221 +f 1231 1364 1221 +f 1357 1232 1222 +f 1353 1357 1222 +f 1372 1364 1231 +f 1235 1372 1231 +f 1365 1236 1232 +f 1357 1365 1232 +f 1380 1372 1235 +f 1243 1380 1235 +f 1373 1244 1236 +f 1365 1373 1236 +f 1251 1380 1243 +f 1381 1339 1244 +f 1339 1252 1244 +f 1373 1381 1244 +f 1338 1380 1251 +f 1422 1414 1324 +f 1334 1422 1324 +f 1415 1335 1325 +f 1428 1422 1334 +f 1342 1428 1334 +f 1423 1343 1335 +f 1415 1423 1335 +f 1388 1380 1338 +f 1381 1389 1339 +f 1432 1428 1342 +f 1352 1432 1342 +f 1429 1353 1343 +f 1423 1429 1343 +f 1450 1432 1352 +f 1356 1450 1352 +f 1433 1357 1353 +f 1429 1433 1353 +f 1456 1450 1356 +f 1364 1456 1356 +f 1451 1365 1357 +f 1433 1451 1357 +f 1462 1456 1364 +f 1372 1462 1364 +f 1457 1373 1365 +f 1451 1457 1365 +f 1470 1462 1372 +f 1380 1470 1372 +f 1463 1381 1373 +f 1457 1463 1373 +f 1388 1470 1380 +f 1471 1435 1381 +f 1435 1389 1381 +f 1463 1471 1381 +f 1434 1470 1388 +f 1494 1486 1414 +f 1422 1494 1414 +f 1487 1423 1415 +f 1502 1494 1422 +f 1428 1502 1422 +f 1495 1429 1423 +f 1487 1495 1423 +f 1512 1502 1428 +f 1432 1512 1428 +f 1503 1433 1429 +f 1495 1503 1429 +f 1524 1512 1432 +f 1450 1524 1432 +f 1513 1451 1433 +f 1503 1513 1433 +f 1478 1470 1434 +f 1471 1479 1435 +f 1540 1524 1450 +f 1456 1540 1450 +f 1525 1457 1451 +f 1513 1525 1451 +f 1552 1540 1456 +f 1462 1552 1456 +f 1541 1463 1457 +f 1525 1541 1457 +f 1560 1552 1462 +f 1470 1560 1462 +f 1553 1471 1463 +f 1541 1553 1463 +f 1478 1560 1470 +f 1561 1527 1471 +f 1527 1479 1471 +f 1553 1561 1471 +f 1526 1560 1478 +f 1582 1544 1486 +f 1494 1582 1486 +f 1545 1495 1487 +f 1590 1582 1494 +f 1502 1590 1494 +f 1583 1503 1495 +f 1545 1583 1495 +f 1604 1590 1502 +f 1512 1604 1502 +f 1591 1513 1503 +f 1583 1591 1503 +f 1612 1604 1512 +f 1524 1612 1512 +f 1605 1525 1513 +f 1591 1605 1513 +f 1632 1612 1524 +f 1540 1632 1524 +f 1613 1541 1525 +f 1605 1613 1525 +f 1572 1560 1526 +f 1561 1573 1527 +f 1640 1632 1540 +f 1552 1640 1540 +f 1633 1553 1541 +f 1613 1633 1541 +f 1636 1610 1544 +f 1582 1636 1544 +f 1611 1583 1545 +f 1648 1640 1552 +f 1560 1648 1552 +f 1641 1561 1553 +f 1633 1641 1553 +f 1572 1648 1560 +f 1649 1623 1561 +f 1623 1573 1561 +f 1641 1649 1561 +f 1622 1648 1572 +f 1666 1636 1582 +f 1590 1666 1582 +f 1637 1591 1583 +f 1611 1637 1583 +f 1678 1666 1590 +f 1604 1678 1590 +f 1667 1605 1591 +f 1637 1667 1591 +f 1686 1678 1604 +f 1612 1686 1604 +f 1679 1613 1605 +f 1667 1679 1605 +f 1692 1680 1610 +f 1636 1692 1610 +f 1681 1637 1611 +f 1700 1686 1612 +f 1632 1700 1612 +f 1687 1633 1613 +f 1679 1687 1613 +f 1658 1648 1622 +f 1649 1659 1623 +f 1712 1700 1632 +f 1640 1712 1632 +f 1701 1641 1633 +f 1687 1701 1633 +f 1718 1692 1636 +f 1666 1718 1636 +f 1693 1667 1637 +f 1681 1693 1637 +f 1726 1712 1640 +f 1648 1726 1640 +f 1713 1649 1641 +f 1701 1713 1641 +f 1658 1726 1648 +f 1727 1697 1649 +f 1697 1659 1649 +f 1713 1727 1649 +f 1696 1726 1658 +f 1766 1718 1666 +f 1678 1766 1666 +f 1719 1679 1667 +f 1693 1719 1667 +f 1818 1766 1678 +f 1686 1818 1678 +f 1767 1687 1679 +f 1719 1767 1679 +f 1807 1738 1680 +f 1692 1807 1680 +f 1739 1693 1681 +f 1835 1818 1686 +f 1700 1835 1686 +f 1819 1701 1687 +f 1767 1819 1687 +f 1843 1807 1692 +f 1718 1843 1692 +f 1808 1719 1693 +f 1739 1808 1693 +f 1742 1726 1696 +f 1727 1743 1697 +f 1855 1835 1700 +f 1712 1855 1700 +f 1836 1713 1701 +f 1819 1836 1701 +f 1863 1855 1712 +f 1726 1863 1712 +f 1856 1727 1713 +f 1836 1856 1713 +f 1869 1843 1718 +f 1766 1869 1718 +f 1844 1767 1719 +f 1808 1844 1719 +f 1742 1863 1726 +f 1864 1840 1727 +f 1840 1743 1727 +f 1856 1864 1727 +f 1877 1837 1738 +f 1807 1877 1738 +f 1838 1808 1739 +f 1839 1863 1742 +f 1883 1869 1766 +f 1818 1883 1766 +f 1870 1819 1767 +f 1844 1870 1767 +f 1893 1877 1807 +f 1843 1893 1807 +f 1878 1844 1808 +f 1838 1878 1808 +f 1897 1883 1818 +f 1835 1897 1818 +f 1884 1836 1819 +f 1870 1884 1819 +f 1916 1897 1835 +f 1855 1916 1835 +f 1898 1856 1836 +f 1884 1898 1836 +f 1909 1885 1837 +f 1877 1909 1837 +f 1886 1878 1838 +f 1873 1863 1839 +f 1864 1874 1840 +f 1920 1893 1843 +f 1869 1920 1843 +f 1894 1870 1844 +f 1878 1894 1844 +f 1928 1916 1855 +f 1863 1928 1855 +f 1917 1864 1856 +f 1898 1917 1856 +f 1873 1928 1863 +f 1929 1904 1864 +f 1904 1874 1864 +f 1917 1929 1864 +f 1944 1920 1869 +f 1883 1944 1869 +f 1921 1884 1870 +f 1894 1921 1870 +f 1903 1928 1873 +f 1946 1909 1877 +f 1893 1946 1877 +f 1910 1894 1878 +f 1886 1910 1878 +f 1958 1944 1883 +f 1897 1958 1883 +f 1945 1898 1884 +f 1921 1945 1884 +f 1952 1924 1885 +f 1909 1952 1885 +f 1925 1910 1886 +f 1960 1946 1893 +f 1920 1960 1893 +f 1947 1921 1894 +f 1910 1947 1894 +f 1968 1958 1897 +f 1916 1968 1897 +f 1959 1917 1898 +f 1945 1959 1898 +f 1936 1928 1903 +f 1929 1937 1904 +f 1980 1952 1909 +f 1946 1980 1909 +f 1953 1947 1910 +f 1925 1953 1910 +f 1986 1968 1916 +f 1928 1986 1916 +f 1969 1929 1917 +f 1959 1969 1917 +f 1996 1960 1920 +f 1944 1996 1920 +f 1961 1945 1921 +f 1947 1961 1921 +f 1992 1954 1924 +f 1952 1992 1924 +f 1955 1953 1925 +f 1936 1986 1928 +f 1987 1963 1929 +f 1963 1937 1929 +f 1969 1987 1929 +f 1962 1986 1936 +f 2017 1996 1944 +f 1958 2017 1944 +f 1997 1959 1945 +f 1961 1997 1945 +f 2015 1980 1946 +f 1960 2015 1946 +f 1981 1961 1947 +f 1953 1981 1947 +f 2021 1992 1952 +f 1980 2021 1952 +f 1993 1981 1953 +f 1955 1993 1953 +f 2019 1982 1954 +f 1992 2019 1954 +f 1983 1993 1955 +f 2029 2017 1958 +f 1968 2029 1958 +f 2018 1969 1959 +f 1997 2018 1959 +f 2043 2015 1960 +f 1996 2043 1960 +f 2016 1997 1961 +f 1981 2016 1961 +f 2000 1986 1962 +f 1987 2001 1963 +f 2047 2029 1968 +f 1986 2047 1968 +f 2030 1987 1969 +f 2018 2030 1969 +f 2065 2021 1980 +f 2015 2065 1980 +f 2022 2016 1981 +f 1993 2022 1981 +f 2055 2011 1982 +f 2019 2055 1982 +f 2020 1993 1983 +f 2012 2020 1983 +f 2000 2047 1986 +f 2048 2026 1987 +f 2026 2001 1987 +f 2030 2048 1987 +f 2067 2019 1992 +f 2021 2067 1992 +f 2020 2022 1993 +f 2071 2043 1996 +f 2017 2071 1996 +f 2044 2018 1997 +f 2016 2044 1997 +f 2025 2047 2000 +f 2075 2023 2011 +f 2055 2075 2011 +f 2056 2020 2012 +f 2024 2056 2012 +f 2085 2065 2015 +f 2043 2085 2015 +f 2066 2044 2016 +f 2022 2066 2016 +f 2081 2071 2017 +f 2029 2081 2017 +f 2072 2030 2018 +f 2044 2072 2018 +f 2083 2055 2019 +f 2067 2083 2019 +f 2068 2022 2020 +f 2056 2068 2020 +f 2098 2067 2021 +f 2065 2098 2021 +f 2068 2066 2022 +f 2079 2041 2023 +f 2075 2079 2023 +f 2076 2056 2024 +f 2042 2076 2024 +f 2061 2047 2025 +f 2048 2062 2026 +f 2110 2081 2029 +f 2047 2110 2029 +f 2082 2048 2030 +f 2072 2082 2030 +f 2093 2051 2041 +f 2079 2093 2041 +f 2080 2076 2042 +f 2052 2080 2042 +f 2124 2085 2043 +f 2071 2124 2043 +f 2086 2072 2044 +f 2066 2086 2044 +f 2061 2110 2047 +f 2111 2090 2048 +f 2090 2062 2048 +f 2082 2111 2048 +f 2094 2052 2051 +f 2093 2094 2051 +f 2094 2080 2052 +f 2116 2075 2055 +f 2083 2116 2055 +f 2084 2068 2056 +f 2076 2084 2056 +f 2089 2110 2061 +f 2134 2098 2065 +f 2085 2134 2065 +f 2099 2086 2066 +f 2068 2099 2066 +f 2132 2083 2067 +f 2098 2132 2067 +f 2084 2099 2068 +f 2138 2124 2071 +f 2081 2138 2071 +f 2125 2082 2072 +f 2086 2125 2072 +f 2130 2079 2075 +f 2116 2130 2075 +f 2117 2084 2076 +f 2080 2117 2076 +f 2136 2093 2079 +f 2130 2136 2079 +f 2131 2117 2080 +f 2094 2131 2080 +f 2156 2138 2081 +f 2110 2156 2081 +f 2139 2111 2082 +f 2125 2139 2082 +f 2146 2116 2083 +f 2132 2146 2083 +f 2133 2099 2084 +f 2117 2133 2084 +f 2162 2134 2085 +f 2124 2162 2085 +f 2135 2125 2086 +f 2099 2135 2086 +f 2120 2110 2089 +f 2111 2121 2090 +f 2137 2094 2093 +f 2136 2137 2093 +f 2137 2131 2094 +f 2166 2132 2098 +f 2134 2166 2098 +f 2133 2135 2099 +f 2120 2156 2110 +f 2157 2141 2111 +f 2141 2121 2111 +f 2139 2157 2111 +f 2174 2130 2116 +f 2146 2174 2116 +f 2147 2133 2117 +f 2131 2147 2117 +f 2140 2156 2120 +f 2182 2162 2124 +f 2138 2182 2124 +f 2163 2139 2125 +f 2135 2163 2125 +f 2180 2136 2130 +f 2174 2180 2130 +f 2175 2147 2131 +f 2137 2175 2131 +f 2186 2146 2132 +f 2166 2186 2132 +f 2167 2135 2133 +f 2147 2167 2133 +f 2193 2166 2134 +f 2162 2193 2134 +f 2167 2163 2135 +f 2181 2137 2136 +f 2180 2181 2136 +f 2181 2175 2137 +f 2199 2182 2138 +f 2156 2199 2138 +f 2183 2157 2139 +f 2163 2183 2139 +f 2170 2156 2140 +f 2157 2171 2141 +f 2207 2174 2146 +f 2186 2207 2146 +f 2187 2167 2147 +f 2175 2187 2147 +f 2170 2199 2156 +f 2200 2190 2157 +f 2190 2171 2157 +f 2183 2200 2157 +f 2223 2193 2162 +f 2182 2223 2162 +f 2194 2183 2163 +f 2167 2194 2163 +f 2225 2186 2166 +f 2193 2225 2166 +f 2187 2194 2167 +f 2189 2199 2170 +f 2221 2180 2174 +f 2207 2221 2174 +f 2208 2187 2175 +f 2181 2208 2175 +f 2222 2181 2180 +f 2221 2222 2180 +f 2222 2208 2181 +f 2235 2223 2182 +f 2199 2235 2182 +f 2224 2200 2183 +f 2194 2224 2183 +f 2237 2207 2186 +f 2225 2237 2186 +f 2226 2194 2187 +f 2208 2226 2187 +f 2215 2199 2189 +f 2200 2216 2190 +f 2249 2225 2193 +f 2223 2249 2193 +f 2226 2224 2194 +f 2215 2235 2199 +f 2236 2230 2200 +f 2230 2216 2200 +f 2224 2236 2200 +f 2253 2221 2207 +f 2237 2253 2207 +f 2238 2226 2208 +f 2222 2238 2208 +f 2229 2235 2215 +f 2254 2222 2221 +f 2253 2254 2221 +f 2254 2238 2222 +f 2267 2249 2223 +f 2235 2267 2223 +f 2250 2236 2224 +f 2226 2250 2224 +f 2265 2237 2225 +f 2249 2265 2225 +f 2238 2250 2226 +f 2257 2235 2229 +f 2236 2258 2230 +f 2257 2267 2235 +f 2268 2270 2236 +f 2270 2258 2236 +f 2250 2268 2236 +f 2279 2253 2237 +f 2265 2279 2237 +f 2266 2250 2238 +f 2254 2266 2238 +f 2299 2265 2249 +f 2267 2299 2249 +f 2266 2268 2250 +f 2280 2254 2253 +f 2279 2280 2253 +f 2280 2266 2254 +f 2269 2267 2257 +f 2314 2279 2265 +f 2299 2314 2265 +f 2300 2268 2266 +f 2280 2300 2266 +f 2269 2289 2267 +f 2289 2299 2267 +f 2300 2307 2268 +f 2307 2290 2268 +f 2290 2270 2268 +f 2315 2280 2279 +f 2314 2315 2279 +f 2315 2300 2280 +f 2306 2299 2289 +f 2306 2318 2299 +f 2318 2314 2299 +f 2315 2333 2300 +f 2333 2319 2300 +f 2319 2307 2300 +f 2318 2332 2314 +f 2332 2338 2314 +f 2338 2342 2314 +f 2342 2315 2314 +f 2342 2339 2315 +f 2339 2333 2315 +f 565 270 268 +f 269 565 268 +f 576 565 269 +f 287 576 269 +f 577 288 270 +f 565 577 270 +f 301 576 287 +f 577 302 288 +f 598 576 301 +f 321 598 301 +f 577 599 302 +f 599 322 302 +f 345 598 321 +f 599 346 322 +f 638 598 345 +f 377 638 345 +f 599 639 346 +f 639 378 346 +f 676 638 377 +f 407 676 377 +f 639 408 378 +f 445 676 407 +f 677 446 408 +f 639 677 408 +f 745 676 445 +f 503 745 445 +f 746 504 446 +f 677 746 446 +f 604 745 503 +f 746 605 504 +f 825 745 604 +f 652 825 604 +f 746 826 605 +f 826 653 605 +f 723 825 652 +f 826 724 653 +f 901 825 723 +f 797 901 723 +f 826 902 724 +f 902 798 724 +f 855 901 797 +f 902 856 798 +f 999 901 855 +f 929 999 855 +f 902 1000 856 +f 1000 930 856 +f 1019 999 929 +f 1000 1020 930 +f 1019 1144 999 +f 1145 1020 1000 +f 1154 1144 1019 +f 1145 1155 1020 +f 1189 1227 1144 +f 1154 1189 1144 +f 1228 1190 1145 +f 1190 1155 1145 +f 1324 1227 1189 +f 1228 1325 1190 +f 1414 1362 1227 +f 1324 1414 1227 +f 1363 1415 1228 +f 1415 1325 1228 +f 1414 1486 1362 +f 1486 1448 1362 +f 1449 1545 1363 +f 1545 1487 1363 +f 1487 1415 1363 +f 1610 1518 1448 +f 1486 1544 1448 +f 1544 1610 1448 +f 1519 1611 1449 +f 1611 1545 1449 +f 1738 1598 1518 +f 1610 1680 1518 +f 1680 1738 1518 +f 1599 1739 1519 +f 1739 1681 1519 +f 1681 1611 1519 +f 1885 1664 1598 +f 1738 1837 1598 +f 1837 1885 1598 +f 1665 1886 1599 +f 1886 1838 1599 +f 1838 1739 1599 +f 1954 1690 1664 +f 1885 1924 1664 +f 1924 1954 1664 +f 1691 1955 1665 +f 1955 1925 1665 +f 1925 1886 1665 +f 2011 1716 1690 +f 1954 1982 1690 +f 1982 2011 1690 +f 1717 2012 1691 +f 2012 1983 1691 +f 1983 1955 1691 +f 2041 1752 1716 +f 2011 2023 1716 +f 2023 2041 1716 +f 1753 2042 1717 +f 2042 2024 1717 +f 2024 2012 1717 +f 2041 2051 1752 +f 2051 1753 1752 +f 2051 2052 1753 +f 2052 2042 1753 +f 576 574 564 +f 565 576 564 +f 575 565 564 +f 575 577 565 +f 598 596 574 +f 576 598 574 +f 597 577 575 +f 597 599 577 +f 638 636 596 +f 598 638 596 +f 637 599 597 +f 637 639 599 +f 676 674 636 +f 638 676 636 +f 675 639 637 +f 675 677 639 +f 745 743 674 +f 676 745 674 +f 744 677 675 +f 744 746 677 +f 825 823 743 +f 745 825 743 +f 824 746 744 +f 824 826 746 +f 901 899 823 +f 825 901 823 +f 900 826 824 +f 900 902 826 +f 999 997 899 +f 901 999 899 +f 998 902 900 +f 998 1000 902 +f 1144 1142 997 +f 999 1144 997 +f 1143 1000 998 +f 1143 1145 1000 +f 1227 1225 1142 +f 1144 1227 1142 +f 1226 1145 1143 +f 1226 1228 1145 +f 1362 1360 1225 +f 1227 1362 1225 +f 1361 1228 1226 +f 1361 1363 1228 +f 1448 1446 1360 +f 1362 1448 1360 +f 1447 1363 1361 +f 1447 1449 1363 +f 1518 1516 1446 +f 1448 1518 1446 +f 1517 1449 1447 +f 1517 1519 1449 +f 1598 1596 1516 +f 1518 1598 1516 +f 1597 1519 1517 +f 1597 1599 1519 +f 1664 1662 1596 +f 1598 1664 1596 +f 1663 1599 1597 +f 1663 1665 1599 +f 1690 1688 1662 +f 1664 1690 1662 +f 1689 1665 1663 +f 1689 1691 1665 +f 1716 1714 1688 +f 1690 1716 1688 +f 1715 1691 1689 +f 1715 1717 1691 +f 1752 1750 1714 +f 1716 1752 1714 +f 1751 1717 1715 +f 1751 1753 1717 +f 1753 1751 1750 +f 1752 1753 1750 +f 686 575 564 +f 574 682 564 +f 682 686 564 +f 596 685 574 +f 685 682 574 +f 686 712 575 +f 712 597 575 +f 636 711 596 +f 711 685 596 +f 712 734 597 +f 734 637 597 +f 674 733 636 +f 733 711 636 +f 734 784 637 +f 784 675 637 +f 743 783 674 +f 783 733 674 +f 784 830 675 +f 830 744 675 +f 823 829 743 +f 829 783 743 +f 830 872 744 +f 872 824 744 +f 899 871 823 +f 871 829 823 +f 872 940 824 +f 940 900 824 +f 899 939 871 +f 997 939 899 +f 940 1031 900 +f 1031 998 900 +f 997 1030 939 +f 1142 1030 997 +f 1031 1157 998 +f 1157 1143 998 +f 1142 1156 1030 +f 1225 1156 1142 +f 1157 1186 1143 +f 1186 1226 1143 +f 1225 1185 1156 +f 1360 1320 1185 +f 1225 1360 1185 +f 1321 1226 1186 +f 1321 1361 1226 +f 1446 1402 1320 +f 1360 1446 1320 +f 1403 1361 1321 +f 1403 1447 1361 +f 1516 1452 1402 +f 1446 1516 1402 +f 1453 1447 1403 +f 1453 1517 1447 +f 1596 1498 1452 +f 1516 1596 1452 +f 1499 1517 1453 +f 1662 1550 1498 +f 1596 1662 1498 +f 1597 1517 1499 +f 1551 1597 1499 +f 1688 1592 1550 +f 1662 1688 1550 +f 1663 1597 1551 +f 1593 1663 1551 +f 1714 1608 1592 +f 1688 1714 1592 +f 1689 1663 1593 +f 1609 1689 1593 +f 1750 1620 1608 +f 1714 1750 1608 +f 1715 1689 1609 +f 1621 1715 1609 +f 1751 1621 1620 +f 1750 1751 1620 +f 1751 1715 1621 +f 685 1159 682 +f 1159 686 682 +f 711 1159 685 +f 1159 712 686 +f 733 1159 711 +f 1159 734 712 +f 783 1159 733 +f 1159 784 734 +f 829 1159 783 +f 1159 830 784 +f 871 1159 829 +f 1159 872 830 +f 939 1159 871 +f 1159 940 872 +f 1030 1159 939 +f 1159 1031 940 +f 1156 1159 1030 +f 1159 1157 1031 +f 1185 1159 1156 +f 1159 1186 1157 +f 1403 1321 1159 +f 1321 1186 1159 +f 1551 1499 1159 +f 1499 1453 1159 +f 1453 1403 1159 +f 1621 1609 1159 +f 1609 1593 1159 +f 1593 1551 1159 +f 1592 1608 1159 +f 1608 1620 1159 +f 1620 1621 1159 +f 1452 1498 1159 +f 1498 1550 1159 +f 1550 1592 1159 +f 1185 1320 1159 +f 1320 1402 1159 +f 1402 1452 1159 +f 45 140 41 +f 139 44 41 +f 140 139 41 +f 139 48 44 +f 49 140 45 +f 147 54 48 +f 139 147 48 +f 55 148 49 +f 148 140 49 +f 147 67 54 +f 68 148 55 +f 164 77 67 +f 147 164 67 +f 78 165 68 +f 165 148 68 +f 164 90 77 +f 91 165 78 +f 182 106 90 +f 164 182 90 +f 107 183 91 +f 183 165 91 +f 182 119 106 +f 120 183 107 +f 213 135 119 +f 182 213 119 +f 136 214 120 +f 214 183 120 +f 213 162 135 +f 163 214 136 +f 140 225 139 +f 234 147 139 +f 225 234 139 +f 148 226 140 +f 226 225 140 +f 254 164 147 +f 234 254 147 +f 165 235 148 +f 235 226 148 +f 258 176 162 +f 213 258 162 +f 177 259 163 +f 259 214 163 +f 266 182 164 +f 254 266 164 +f 183 255 165 +f 255 235 165 +f 258 203 176 +f 204 259 177 +f 295 213 182 +f 266 295 182 +f 214 267 183 +f 267 255 183 +f 291 223 203 +f 258 291 203 +f 224 292 204 +f 292 259 204 +f 325 258 213 +f 295 325 213 +f 259 296 214 +f 296 267 214 +f 291 256 223 +f 257 292 224 +f 226 319 225 +f 323 234 225 +f 319 323 225 +f 235 320 226 +f 320 319 226 +f 331 254 234 +f 323 331 234 +f 255 324 235 +f 324 320 235 +f 351 266 254 +f 331 351 254 +f 267 332 255 +f 332 324 255 +f 337 277 256 +f 291 337 256 +f 278 338 257 +f 338 292 257 +f 365 291 258 +f 325 365 258 +f 292 326 259 +f 326 296 259 +f 373 295 266 +f 351 373 266 +f 296 352 267 +f 352 332 267 +f 337 311 277 +f 312 338 278 +f 393 337 291 +f 365 393 291 +f 338 366 292 +f 366 326 292 +f 389 325 295 +f 373 389 295 +f 326 374 296 +f 374 352 296 +f 383 333 311 +f 337 383 311 +f 334 384 312 +f 384 338 312 +f 320 399 319 +f 405 323 319 +f 399 405 319 +f 324 400 320 +f 400 399 320 +f 411 331 323 +f 405 411 323 +f 332 406 324 +f 406 400 324 +f 429 365 325 +f 389 429 325 +f 366 390 326 +f 390 374 326 +f 431 351 331 +f 411 431 331 +f 352 412 332 +f 412 406 332 +f 383 369 333 +f 370 384 334 +f 439 383 337 +f 393 439 337 +f 384 394 338 +f 394 366 338 +f 443 373 351 +f 431 443 351 +f 374 432 352 +f 432 412 352 +f 451 393 365 +f 429 451 365 +f 394 430 366 +f 430 390 366 +f 435 385 369 +f 383 435 369 +f 386 436 370 +f 436 384 370 +f 461 389 373 +f 443 461 373 +f 390 444 374 +f 444 432 374 +f 499 435 383 +f 439 499 383 +f 436 440 384 +f 440 394 384 +f 435 427 385 +f 428 436 386 +f 515 429 389 +f 461 515 389 +f 430 462 390 +f 462 444 390 +f 537 439 393 +f 451 537 393 +f 440 452 394 +f 452 430 394 +f 477 475 399 +f 400 477 399 +f 476 405 399 +f 475 476 399 +f 406 485 400 +f 485 477 400 +f 476 484 405 +f 487 411 405 +f 484 487 405 +f 490 489 406 +f 489 488 406 +f 488 486 406 +f 412 490 406 +f 486 485 406 +f 487 491 411 +f 491 495 411 +f 495 498 411 +f 498 502 411 +f 502 529 411 +f 566 431 411 +f 529 566 411 +f 530 501 412 +f 501 497 412 +f 497 496 412 +f 496 492 412 +f 432 530 412 +f 492 490 412 +f 531 447 427 +f 435 531 427 +f 448 532 428 +f 532 436 428 +f 586 451 429 +f 515 586 429 +f 452 516 430 +f 516 462 430 +f 584 443 431 +f 566 584 431 +f 444 567 432 +f 567 530 432 +f 606 531 435 +f 499 606 435 +f 532 500 436 +f 500 440 436 +f 608 499 439 +f 537 608 439 +f 500 538 440 +f 538 452 440 +f 610 461 443 +f 584 610 443 +f 462 585 444 +f 585 567 444 +f 531 493 447 +f 494 532 448 +f 628 537 451 +f 586 628 451 +f 538 587 452 +f 587 516 452 +f 634 515 461 +f 610 634 461 +f 516 611 462 +f 611 585 462 +f 630 582 493 +f 531 630 493 +f 583 631 494 +f 631 532 494 +f 650 606 499 +f 608 650 499 +f 532 607 500 +f 607 609 500 +f 609 538 500 +f 530 505 501 +f 506 529 502 +f 530 513 505 +f 514 529 506 +f 530 524 513 +f 519 529 514 +f 654 586 515 +f 634 654 515 +f 587 635 516 +f 635 611 516 +f 525 529 519 +f 530 534 524 +f 528 529 525 +f 533 529 528 +f 533 648 529 +f 656 566 529 +f 648 656 529 +f 649 645 530 +f 645 534 530 +f 567 649 530 +f 664 630 531 +f 606 664 531 +f 631 607 532 +f 644 648 533 +f 660 608 537 +f 628 660 537 +f 609 629 538 +f 629 587 538 +f 666 584 566 +f 656 666 566 +f 585 657 567 +f 657 649 567 +f 630 626 582 +f 627 631 583 +f 689 610 584 +f 666 689 584 +f 611 667 585 +f 667 657 585 +f 687 628 586 +f 654 687 586 +f 629 655 587 +f 655 635 587 +f 717 664 606 +f 650 717 606 +f 631 665 607 +f 665 651 607 +f 651 609 607 +f 715 650 608 +f 660 715 608 +f 651 661 609 +f 661 629 609 +f 719 634 610 +f 689 719 610 +f 635 690 611 +f 690 667 611 +f 695 658 626 +f 630 695 626 +f 659 696 627 +f 696 631 627 +f 729 660 628 +f 687 729 628 +f 661 688 629 +f 688 655 629 +f 735 695 630 +f 664 735 630 +f 696 665 631 +f 739 654 634 +f 719 739 634 +f 655 720 635 +f 720 690 635 +f 725 648 644 +f 649 726 645 +f 725 656 648 +f 657 726 649 +f 759 717 650 +f 715 759 650 +f 665 718 651 +f 718 716 651 +f 716 661 651 +f 769 687 654 +f 739 769 654 +f 688 740 655 +f 740 720 655 +f 737 757 656 +f 725 737 656 +f 781 666 656 +f 757 781 656 +f 752 738 657 +f 758 752 657 +f 667 758 657 +f 738 726 657 +f 695 709 658 +f 710 696 659 +f 775 715 660 +f 729 775 660 +f 716 730 661 +f 730 688 661 +f 785 735 664 +f 717 785 664 +f 696 736 665 +f 736 718 665 +f 789 689 666 +f 781 789 666 +f 690 782 667 +f 782 758 667 +f 811 729 687 +f 769 811 687 +f 730 770 688 +f 770 740 688 +f 815 719 689 +f 789 815 689 +f 720 790 690 +f 790 782 690 +f 787 709 695 +f 817 787 695 +f 735 817 695 +f 710 788 696 +f 788 736 696 +f 787 749 709 +f 750 788 710 +f 821 759 715 +f 775 821 715 +f 718 760 716 +f 760 776 716 +f 776 730 716 +f 827 785 717 +f 759 827 717 +f 736 786 718 +f 786 760 718 +f 833 739 719 +f 815 833 719 +f 740 816 720 +f 816 790 720 +f 837 775 729 +f 811 837 729 +f 776 812 730 +f 812 770 730 +f 843 817 735 +f 785 843 735 +f 788 818 736 +f 818 786 736 +f 751 757 737 +f 845 769 739 +f 833 845 739 +f 770 834 740 +f 834 816 740 +f 787 807 749 +f 808 788 750 +f 763 757 751 +f 758 764 752 +f 835 781 757 +f 763 835 757 +f 782 764 758 +f 857 827 759 +f 821 857 759 +f 786 828 760 +f 828 822 760 +f 822 776 760 +f 782 836 764 +f 867 811 769 +f 845 867 769 +f 812 846 770 +f 846 834 770 +f 865 821 775 +f 837 865 775 +f 822 838 776 +f 838 812 776 +f 835 789 781 +f 790 836 782 +f 869 843 785 +f 827 869 785 +f 818 844 786 +f 844 828 786 +f 859 807 787 +f 883 859 787 +f 817 883 787 +f 808 860 788 +f 860 818 788 +f 891 815 789 +f 835 891 789 +f 816 836 790 +f 859 841 807 +f 842 860 808 +f 897 837 811 +f 867 897 811 +f 838 868 812 +f 868 846 812 +f 905 833 815 +f 891 905 815 +f 892 836 816 +f 834 892 816 +f 911 883 817 +f 843 911 817 +f 860 884 818 +f 884 844 818 +f 907 857 821 +f 865 907 821 +f 828 858 822 +f 858 866 822 +f 866 838 822 +f 913 869 827 +f 857 913 827 +f 844 870 828 +f 870 858 828 +f 919 845 833 +f 905 919 833 +f 906 892 834 +f 846 906 834 +f 921 865 837 +f 897 921 837 +f 866 898 838 +f 898 868 838 +f 859 889 841 +f 890 860 842 +f 931 911 843 +f 869 931 843 +f 884 912 844 +f 912 870 844 +f 927 867 845 +f 919 927 845 +f 868 928 846 +f 920 906 846 +f 928 920 846 +f 943 913 857 +f 907 943 857 +f 870 914 858 +f 914 908 858 +f 908 866 858 +f 945 889 859 +f 965 945 859 +f 883 965 859 +f 890 946 860 +f 946 884 860 +f 949 907 865 +f 921 949 865 +f 908 922 866 +f 922 898 866 +f 941 897 867 +f 935 941 867 +f 927 935 867 +f 898 936 868 +f 936 928 868 +f 961 931 869 +f 913 961 869 +f 912 932 870 +f 932 914 870 +f 971 965 883 +f 911 971 883 +f 946 966 884 +f 966 912 884 +f 945 933 889 +f 934 946 890 +f 969 921 897 +f 941 969 897 +f 922 942 898 +f 942 936 898 +f 989 943 907 +f 949 989 907 +f 914 944 908 +f 944 950 908 +f 950 922 908 +f 1005 971 911 +f 931 1005 911 +f 966 972 912 +f 972 932 912 +f 995 961 913 +f 943 995 913 +f 932 962 914 +f 962 944 914 +f 969 949 921 +f 950 970 922 +f 970 942 922 +f 1023 1005 931 +f 961 1023 931 +f 972 1006 932 +f 1006 962 932 +f 945 987 933 +f 988 946 934 +f 989 1011 943 +f 1015 995 943 +f 1011 1015 943 +f 1016 990 944 +f 1018 1016 944 +f 962 996 944 +f 996 1018 944 +f 990 950 944 +f 1086 987 945 +f 1098 1086 945 +f 965 1098 945 +f 988 1087 946 +f 1087 966 946 +f 1007 989 949 +f 969 1007 949 +f 990 970 950 +f 995 1021 961 +f 1025 1023 961 +f 1021 1025 961 +f 1026 996 962 +f 1006 1024 962 +f 1024 1026 962 +f 1106 1098 965 +f 971 1106 965 +f 1087 1099 966 +f 1099 972 966 +f 990 1008 970 +f 1118 1106 971 +f 1005 1118 971 +f 1099 1107 972 +f 1107 1006 972 +f 1086 1066 987 +f 1067 1087 988 +f 1007 1011 989 +f 1016 1012 990 +f 1012 1008 990 +f 1015 1017 995 +f 1017 1021 995 +f 1026 1022 996 +f 1022 1018 996 +f 1040 1041 1005 +f 1023 1038 1005 +f 1038 1040 1005 +f 1041 1043 1005 +f 1043 1045 1005 +f 1045 1046 1005 +f 1046 1051 1005 +f 1051 1057 1005 +f 1060 1118 1005 +f 1057 1060 1005 +f 1121 1061 1006 +f 1061 1052 1006 +f 1052 1044 1006 +f 1044 1042 1006 +f 1042 1039 1006 +f 1039 1037 1006 +f 1037 1024 1006 +f 1107 1119 1006 +f 1119 1121 1006 +f 1036 1038 1023 +f 1025 1029 1023 +f 1029 1034 1023 +f 1034 1036 1023 +f 1035 1033 1024 +f 1033 1032 1024 +f 1032 1028 1024 +f 1028 1027 1024 +f 1037 1035 1024 +f 1027 1026 1024 +f 1120 1118 1060 +f 1086 1136 1066 +f 1137 1087 1067 +f 1169 1136 1086 +f 1167 1169 1086 +f 1098 1167 1086 +f 1137 1170 1087 +f 1170 1099 1087 +f 1165 1167 1098 +f 1106 1165 1098 +f 1170 1168 1099 +f 1168 1107 1099 +f 1163 1165 1106 +f 1118 1163 1106 +f 1168 1166 1107 +f 1166 1119 1107 +f 1161 1163 1118 +f 1120 1161 1118 +f 1166 1164 1119 +f 1164 1121 1119 +f 1164 1162 1121 +f 1169 1171 1136 +f 1172 1170 1137 +f 1207 1163 1161 +f 1164 1267 1162 +f 1267 1208 1162 +f 1266 1165 1163 +f 1207 1266 1163 +f 1166 1289 1164 +f 1289 1267 1164 +f 1288 1167 1165 +f 1266 1288 1165 +f 1168 1309 1166 +f 1309 1289 1166 +f 1308 1169 1167 +f 1288 1308 1167 +f 1170 1315 1168 +f 1315 1309 1168 +f 1239 1171 1169 +f 1314 1239 1169 +f 1308 1314 1169 +f 1172 1240 1170 +f 1240 1315 1170 +f 1259 1266 1207 +f 1267 1260 1208 +f 1314 1318 1239 +f 1319 1315 1240 +f 1270 1266 1259 +f 1267 1263 1260 +f 1267 1271 1263 +f 1332 1288 1266 +f 1270 1332 1266 +f 1289 1359 1267 +f 1359 1333 1267 +f 1333 1271 1267 +f 1277 1332 1270 +f 1333 1276 1271 +f 1333 1278 1276 +f 1333 1279 1278 +f 1280 1332 1277 +f 1333 1281 1279 +f 1282 1332 1280 +f 1333 1283 1281 +f 1333 1284 1283 +f 1285 1332 1282 +f 1333 1317 1284 +f 1317 1286 1284 +f 1316 1332 1285 +f 1287 1316 1285 +f 1317 1290 1286 +f 1291 1316 1287 +f 1358 1308 1288 +f 1332 1358 1288 +f 1309 1399 1289 +f 1399 1359 1289 +f 1317 1293 1290 +f 1292 1316 1291 +f 1294 1316 1292 +f 1317 1297 1293 +f 1295 1316 1294 +f 1296 1316 1295 +f 1298 1316 1296 +f 1317 1299 1297 +f 1300 1316 1298 +f 1302 1300 1298 +f 1301 1303 1299 +f 1317 1301 1299 +f 1330 1316 1300 +f 1302 1330 1300 +f 1317 1375 1301 +f 1375 1331 1301 +f 1331 1303 1301 +f 1304 1330 1302 +f 1331 1305 1303 +f 1306 1312 1304 +f 1312 1330 1304 +f 1331 1307 1305 +f 1310 1312 1306 +f 1331 1313 1307 +f 1313 1311 1307 +f 1398 1314 1308 +f 1358 1398 1308 +f 1315 1409 1309 +f 1409 1399 1309 +f 1322 1312 1310 +f 1313 1329 1311 +f 1329 1323 1311 +f 1322 1328 1312 +f 1328 1330 1312 +f 1331 1397 1313 +f 1397 1329 1313 +f 1376 1318 1314 +f 1408 1376 1314 +f 1398 1408 1314 +f 1319 1377 1315 +f 1377 1409 1315 +f 1374 1332 1316 +f 1330 1374 1316 +f 1333 1411 1317 +f 1411 1375 1317 +f 1354 1370 1322 +f 1370 1328 1322 +f 1329 1371 1323 +f 1371 1407 1323 +f 1407 1355 1323 +f 1396 1330 1328 +f 1370 1396 1328 +f 1397 1419 1329 +f 1419 1371 1329 +f 1396 1374 1330 +f 1375 1425 1331 +f 1425 1397 1331 +f 1410 1358 1332 +f 1374 1410 1332 +f 1359 1431 1333 +f 1431 1411 1333 +f 1426 1406 1354 +f 1406 1370 1354 +f 1368 1426 1354 +f 1407 1427 1355 +f 1427 1369 1355 +f 1430 1398 1358 +f 1410 1430 1358 +f 1399 1459 1359 +f 1459 1431 1359 +f 1444 1426 1368 +f 1392 1444 1368 +f 1427 1445 1369 +f 1445 1393 1369 +f 1418 1396 1370 +f 1406 1418 1370 +f 1419 1455 1371 +f 1455 1407 1371 +f 1424 1410 1374 +f 1396 1424 1374 +f 1411 1461 1375 +f 1461 1425 1375 +f 1408 1420 1376 +f 1421 1409 1377 +f 1400 1444 1392 +f 1445 1483 1393 +f 1483 1401 1393 +f 1418 1424 1396 +f 1425 1469 1397 +f 1469 1419 1397 +f 1458 1408 1398 +f 1430 1458 1398 +f 1409 1489 1399 +f 1489 1459 1399 +f 1412 1482 1400 +f 1482 1444 1400 +f 1483 1413 1401 +f 1454 1418 1406 +f 1426 1454 1406 +f 1455 1491 1407 +f 1491 1427 1407 +f 1464 1420 1408 +f 1488 1464 1408 +f 1458 1488 1408 +f 1421 1465 1409 +f 1465 1489 1409 +f 1460 1430 1410 +f 1424 1460 1410 +f 1431 1497 1411 +f 1497 1461 1411 +f 1416 1492 1412 +f 1492 1482 1412 +f 1483 1493 1413 +f 1493 1417 1413 +f 1484 1500 1416 +f 1500 1492 1416 +f 1515 1485 1417 +f 1493 1501 1417 +f 1501 1515 1417 +f 1468 1424 1418 +f 1454 1468 1418 +f 1469 1507 1419 +f 1507 1455 1419 +f 1468 1460 1424 +f 1461 1509 1425 +f 1509 1469 1425 +f 1490 1454 1426 +f 1444 1490 1426 +f 1491 1511 1427 +f 1511 1445 1427 +f 1496 1458 1430 +f 1460 1496 1430 +f 1459 1521 1431 +f 1521 1497 1431 +f 1510 1490 1444 +f 1482 1510 1444 +f 1511 1547 1445 +f 1547 1483 1445 +f 1506 1468 1454 +f 1490 1506 1454 +f 1507 1555 1455 +f 1555 1491 1455 +f 1520 1488 1458 +f 1496 1520 1458 +f 1489 1581 1459 +f 1581 1521 1459 +f 1508 1496 1460 +f 1468 1508 1460 +f 1497 1567 1461 +f 1567 1509 1461 +f 1488 1504 1464 +f 1505 1489 1465 +f 1506 1508 1468 +f 1509 1579 1469 +f 1579 1507 1469 +f 1546 1510 1482 +f 1492 1546 1482 +f 1547 1587 1483 +f 1587 1493 1483 +f 1536 1514 1484 +f 1514 1500 1484 +f 1531 1537 1485 +f 1515 1531 1485 +f 1556 1504 1488 +f 1580 1556 1488 +f 1520 1580 1488 +f 1505 1557 1489 +f 1557 1581 1489 +f 1554 1506 1490 +f 1510 1554 1490 +f 1555 1595 1491 +f 1595 1511 1491 +f 1586 1546 1492 +f 1500 1586 1492 +f 1587 1601 1493 +f 1601 1501 1493 +f 1566 1520 1496 +f 1508 1566 1496 +f 1521 1607 1497 +f 1607 1567 1497 +f 1600 1586 1500 +f 1514 1600 1500 +f 1601 1619 1501 +f 1619 1515 1501 +f 1578 1508 1506 +f 1554 1578 1506 +f 1579 1615 1507 +f 1615 1555 1507 +f 1578 1566 1508 +f 1567 1617 1509 +f 1617 1579 1509 +f 1594 1554 1510 +f 1546 1594 1510 +f 1595 1631 1511 +f 1631 1547 1511 +f 1618 1600 1514 +f 1530 1618 1514 +f 1536 1530 1514 +f 1639 1531 1515 +f 1619 1639 1515 +f 1606 1580 1520 +f 1566 1606 1520 +f 1581 1647 1521 +f 1647 1607 1521 +f 1638 1618 1530 +f 1548 1638 1530 +f 1536 1548 1530 +f 1549 1537 1531 +f 1639 1549 1531 +f 1630 1594 1546 +f 1586 1630 1546 +f 1631 1669 1547 +f 1669 1587 1547 +f 1576 1654 1548 +f 1654 1638 1548 +f 1639 1655 1549 +f 1655 1577 1549 +f 1614 1578 1554 +f 1594 1614 1554 +f 1615 1671 1555 +f 1671 1595 1555 +f 1580 1602 1556 +f 1603 1581 1557 +f 1616 1606 1566 +f 1578 1616 1566 +f 1607 1675 1567 +f 1675 1617 1567 +f 1588 1654 1576 +f 1655 1589 1577 +f 1614 1616 1578 +f 1617 1677 1579 +f 1677 1615 1579 +f 1642 1602 1580 +f 1646 1642 1580 +f 1606 1646 1580 +f 1603 1643 1581 +f 1643 1647 1581 +f 1668 1630 1586 +f 1600 1668 1586 +f 1669 1685 1587 +f 1685 1601 1587 +f 1672 1654 1588 +f 1655 1673 1589 +f 1670 1614 1594 +f 1630 1670 1594 +f 1671 1695 1595 +f 1695 1631 1595 +f 1684 1668 1600 +f 1618 1684 1600 +f 1685 1707 1601 +f 1707 1619 1601 +f 1674 1646 1606 +f 1616 1674 1606 +f 1647 1711 1607 +f 1711 1675 1607 +f 1676 1616 1614 +f 1670 1676 1614 +f 1677 1723 1615 +f 1723 1671 1615 +f 1676 1674 1616 +f 1675 1735 1617 +f 1735 1677 1617 +f 1706 1684 1618 +f 1638 1706 1618 +f 1707 1731 1619 +f 1731 1639 1619 +f 1694 1670 1630 +f 1668 1694 1630 +f 1695 1755 1631 +f 1755 1669 1631 +f 1730 1706 1638 +f 1654 1730 1638 +f 1772 1655 1639 +f 1731 1772 1639 +f 1646 1682 1642 +f 1683 1647 1643 +f 1720 1682 1646 +f 1710 1720 1646 +f 1674 1710 1646 +f 1683 1721 1647 +f 1721 1711 1647 +f 1771 1730 1654 +f 1672 1771 1654 +f 1772 1673 1655 +f 1754 1694 1668 +f 1684 1754 1668 +f 1755 1832 1669 +f 1832 1685 1669 +f 1722 1676 1670 +f 1694 1722 1670 +f 1723 1834 1671 +f 1834 1695 1671 +f 1785 1804 1672 +f 1804 1771 1672 +f 1805 1786 1673 +f 1772 1805 1673 +f 1734 1710 1674 +f 1676 1734 1674 +f 1711 1846 1675 +f 1846 1735 1675 +f 1722 1734 1676 +f 1735 1848 1677 +f 1848 1723 1677 +f 1831 1754 1684 +f 1706 1831 1684 +f 1832 1858 1685 +f 1858 1707 1685 +f 1833 1722 1694 +f 1754 1833 1694 +f 1834 1880 1695 +f 1880 1755 1695 +f 1857 1831 1706 +f 1730 1857 1706 +f 1858 1882 1707 +f 1882 1731 1707 +f 1859 1814 1710 +f 1814 1720 1710 +f 1845 1859 1710 +f 1734 1845 1710 +f 1721 1815 1711 +f 1815 1860 1711 +f 1860 1846 1711 +f 1847 1734 1722 +f 1833 1847 1722 +f 1848 1892 1723 +f 1892 1834 1723 +f 1881 1857 1730 +f 1771 1881 1730 +f 1882 1890 1731 +f 1890 1772 1731 +f 1847 1845 1734 +f 1846 1896 1735 +f 1896 1848 1735 +f 1879 1833 1754 +f 1831 1879 1754 +f 1880 1900 1755 +f 1900 1832 1755 +f 1889 1881 1771 +f 1804 1889 1771 +f 1902 1805 1772 +f 1890 1902 1772 +f 1791 1804 1785 +f 1805 1787 1786 +f 1805 1790 1787 +f 1805 1794 1790 +f 1798 1804 1791 +f 1805 1797 1794 +f 1805 1803 1797 +f 1806 1804 1798 +f 1806 1810 1804 +f 1810 1901 1804 +f 1901 1889 1804 +f 1809 1803 1805 +f 1902 1809 1805 +f 1902 1812 1809 +f 1811 1901 1810 +f 1813 1901 1811 +f 1902 1816 1812 +f 1817 1901 1813 +f 1902 1821 1816 +f 1820 1901 1817 +f 1822 1901 1820 +f 1902 1824 1821 +f 1823 1901 1822 +f 1825 1901 1823 +f 1902 1827 1824 +f 1826 1907 1825 +f 1907 1901 1825 +f 1828 1907 1826 +f 1908 1829 1827 +f 1902 1908 1827 +f 1830 1907 1828 +f 1911 1830 1829 +f 1908 1911 1829 +f 1911 1907 1830 +f 1899 1879 1831 +f 1857 1899 1831 +f 1900 1941 1832 +f 1941 1858 1832 +f 1891 1847 1833 +f 1879 1891 1833 +f 1892 1943 1834 +f 1943 1880 1834 +f 1922 1887 1845 +f 1887 1859 1845 +f 1895 1922 1845 +f 1847 1895 1845 +f 1860 1888 1846 +f 1888 1923 1846 +f 1923 1896 1846 +f 1891 1895 1847 +f 1896 1951 1848 +f 1951 1892 1848 +f 1940 1899 1857 +f 1881 1940 1857 +f 1941 1957 1858 +f 1957 1882 1858 +f 1942 1891 1879 +f 1899 1942 1879 +f 1943 1967 1880 +f 1967 1900 1880 +f 1956 1940 1881 +f 1889 1956 1881 +f 1957 1971 1882 +f 1971 1890 1882 +f 1970 1956 1889 +f 1901 1970 1889 +f 1971 1991 1890 +f 1991 1902 1890 +f 1950 1895 1891 +f 1942 1950 1891 +f 1951 2008 1892 +f 2008 1943 1892 +f 1978 1948 1895 +f 1948 1922 1895 +f 1950 1978 1895 +f 1923 1949 1896 +f 1949 1979 1896 +f 1979 1951 1896 +f 1966 1942 1899 +f 1940 1966 1899 +f 1967 2010 1900 +f 2010 1941 1900 +f 1990 1970 1901 +f 1907 1990 1901 +f 2005 1908 1902 +f 1991 2005 1902 +f 1911 2004 1907 +f 2004 1990 1907 +f 2006 1911 1908 +f 2005 2006 1908 +f 2006 2004 1911 +f 2009 1966 1940 +f 1956 2009 1940 +f 2010 2032 1941 +f 2032 1957 1941 +f 2007 1950 1942 +f 1966 2007 1942 +f 2008 2050 1943 +f 2050 1967 1943 +f 2037 2013 1950 +f 2013 1978 1950 +f 2007 2037 1950 +f 1979 2014 1951 +f 2014 2038 1951 +f 2038 2008 1951 +f 2031 2009 1956 +f 1970 2031 1956 +f 2032 2070 1957 +f 2070 1971 1957 +f 2049 2007 1966 +f 2009 2049 1966 +f 2050 2088 1967 +f 2088 2010 1967 +f 2069 2031 1970 +f 1990 2069 1970 +f 2070 2078 1971 +f 2078 1991 1971 +f 2077 2069 1990 +f 2004 2077 1990 +f 2078 2096 1991 +f 2096 2005 1991 +f 2006 2095 2004 +f 2095 2077 2004 +f 2097 2006 2005 +f 2096 2097 2005 +f 2097 2095 2006 +f 2100 2073 2007 +f 2073 2037 2007 +f 2049 2100 2007 +f 2038 2074 2008 +f 2074 2101 2008 +f 2101 2050 2008 +f 2087 2049 2009 +f 2031 2087 2009 +f 2088 2129 2010 +f 2129 2032 2010 +f 2128 2087 2031 +f 2069 2128 2031 +f 2129 2155 2032 +f 2155 2070 2032 +f 2144 2126 2049 +f 2126 2100 2049 +f 2087 2144 2049 +f 2101 2127 2050 +f 2127 2145 2050 +f 2145 2088 2050 +f 2154 2128 2069 +f 2077 2154 2069 +f 2155 2179 2070 +f 2179 2078 2070 +f 2178 2154 2077 +f 2095 2178 2077 +f 2179 2185 2078 +f 2185 2096 2078 +f 2195 2176 2087 +f 2176 2144 2087 +f 2128 2195 2087 +f 2145 2177 2088 +f 2177 2196 2088 +f 2196 2129 2088 +f 2097 2184 2095 +f 2184 2178 2095 +f 2185 2188 2096 +f 2188 2097 2096 +f 2188 2184 2097 +f 2227 2219 2128 +f 2219 2195 2128 +f 2154 2227 2128 +f 2196 2220 2129 +f 2220 2228 2129 +f 2228 2155 2129 +f 2261 2247 2154 +f 2247 2227 2154 +f 2178 2261 2154 +f 2228 2248 2155 +f 2248 2262 2155 +f 2262 2179 2155 +f 2287 2273 2178 +f 2273 2261 2178 +f 2184 2287 2178 +f 2262 2274 2179 +f 2274 2288 2179 +f 2288 2185 2179 +f 2295 2287 2184 +f 2188 2301 2184 +f 2301 2295 2184 +f 2288 2296 2185 +f 2296 2302 2185 +f 2302 2188 2185 +f 2302 2303 2188 +f 2303 2301 2188 +f 12 13 11 +f 21 12 11 +f 14 21 11 +f 21 19 12 +f 19 27 12 +f 27 20 12 +f 20 13 12 +f 20 35 13 +f 43 21 14 +f 36 43 14 +f 28 26 19 +f 26 30 19 +f 30 27 19 +f 21 28 19 +f 27 46 20 +f 46 42 20 +f 42 35 20 +f 43 28 21 +f 31 32 26 +f 32 39 26 +f 39 30 26 +f 28 31 26 +f 30 52 27 +f 52 46 27 +f 47 31 28 +f 43 47 28 +f 39 63 30 +f 63 52 30 +f 53 40 31 +f 40 32 31 +f 47 53 31 +f 44 39 32 +f 40 45 32 +f 45 41 32 +f 41 44 32 +f 42 69 35 +f 74 43 36 +f 70 74 36 +f 44 48 39 +f 48 54 39 +f 54 63 39 +f 64 55 40 +f 55 49 40 +f 49 45 40 +f 53 64 40 +f 46 75 42 +f 75 73 42 +f 73 69 42 +f 74 47 43 +f 52 81 46 +f 81 75 46 +f 76 53 47 +f 74 76 47 +f 63 85 52 +f 85 81 52 +f 82 64 53 +f 76 82 53 +f 67 63 54 +f 64 68 55 +f 67 77 63 +f 77 85 63 +f 86 78 64 +f 78 68 64 +f 82 86 64 +f 73 98 69 +f 109 74 70 +f 99 109 70 +f 75 110 73 +f 110 108 73 +f 108 98 73 +f 109 76 74 +f 81 112 75 +f 112 110 75 +f 111 82 76 +f 109 111 76 +f 90 85 77 +f 86 91 78 +f 85 116 81 +f 116 112 81 +f 113 86 82 +f 111 113 82 +f 90 106 85 +f 106 116 85 +f 117 107 86 +f 107 91 86 +f 113 117 86 +f 108 137 98 +f 144 109 99 +f 138 144 99 +f 119 116 106 +f 117 120 107 +f 110 145 108 +f 145 143 108 +f 143 137 108 +f 144 111 109 +f 112 149 110 +f 149 145 110 +f 146 113 111 +f 144 146 111 +f 116 153 112 +f 153 149 112 +f 150 117 113 +f 146 150 113 +f 119 135 116 +f 135 153 116 +f 154 136 117 +f 136 120 117 +f 150 154 117 +f 162 153 135 +f 154 163 136 +f 143 180 137 +f 189 144 138 +f 181 189 138 +f 145 192 143 +f 192 188 143 +f 188 180 143 +f 189 146 144 +f 149 195 145 +f 195 192 145 +f 193 150 146 +f 189 193 146 +f 153 201 149 +f 201 195 149 +f 196 154 150 +f 193 196 150 +f 162 176 153 +f 176 201 153 +f 202 177 154 +f 177 163 154 +f 196 202 154 +f 203 201 176 +f 202 204 177 +f 188 230 180 +f 239 189 181 +f 231 239 181 +f 192 240 188 +f 240 238 188 +f 238 230 188 +f 239 193 189 +f 195 242 192 +f 242 240 192 +f 241 196 193 +f 239 241 193 +f 201 252 195 +f 252 242 195 +f 243 202 196 +f 241 243 196 +f 203 223 201 +f 223 252 201 +f 253 224 202 +f 224 204 202 +f 243 253 202 +f 256 252 223 +f 253 257 224 +f 238 289 230 +f 298 239 231 +f 290 298 231 +f 240 299 238 +f 299 297 238 +f 297 289 238 +f 298 241 239 +f 242 303 240 +f 303 299 240 +f 300 243 241 +f 298 300 241 +f 252 309 242 +f 309 303 242 +f 304 253 243 +f 300 304 243 +f 256 277 252 +f 277 309 252 +f 310 278 253 +f 278 257 253 +f 304 310 253 +f 311 309 277 +f 310 312 278 +f 297 347 289 +f 358 298 290 +f 348 358 290 +f 299 359 297 +f 359 357 297 +f 357 347 297 +f 358 300 298 +f 303 361 299 +f 361 359 299 +f 360 304 300 +f 358 360 300 +f 309 367 303 +f 367 361 303 +f 362 310 304 +f 360 362 304 +f 311 333 309 +f 333 367 309 +f 368 334 310 +f 334 312 310 +f 362 368 310 +f 369 367 333 +f 368 370 334 +f 357 403 347 +f 414 358 348 +f 404 414 348 +f 359 415 357 +f 415 413 357 +f 413 403 357 +f 414 360 358 +f 361 417 359 +f 417 415 359 +f 416 362 360 +f 414 416 360 +f 367 421 361 +f 421 417 361 +f 418 368 362 +f 416 418 362 +f 369 385 367 +f 385 421 367 +f 422 386 368 +f 386 370 368 +f 418 422 368 +f 427 421 385 +f 422 428 386 +f 413 465 403 +f 472 414 404 +f 466 472 404 +f 415 473 413 +f 473 471 413 +f 471 465 413 +f 472 416 414 +f 417 478 415 +f 478 473 415 +f 474 418 416 +f 472 474 416 +f 421 482 417 +f 482 478 417 +f 479 422 418 +f 474 479 418 +f 427 447 421 +f 447 482 421 +f 448 428 422 +f 483 448 422 +f 479 483 422 +f 493 482 447 +f 483 494 448 +f 471 602 465 +f 615 472 466 +f 603 615 466 +f 473 616 471 +f 616 614 471 +f 614 602 471 +f 615 474 472 +f 478 620 473 +f 620 616 473 +f 617 479 474 +f 615 617 474 +f 482 624 478 +f 624 620 478 +f 621 483 479 +f 617 621 479 +f 493 582 482 +f 582 624 482 +f 583 494 483 +f 625 583 483 +f 621 625 483 +f 626 624 582 +f 625 627 583 +f 614 680 602 +f 698 615 603 +f 681 698 603 +f 616 699 614 +f 699 697 614 +f 697 680 614 +f 698 617 615 +f 620 701 616 +f 701 699 616 +f 700 621 617 +f 698 700 617 +f 624 707 620 +f 707 701 620 +f 702 625 621 +f 700 702 621 +f 658 707 624 +f 626 658 624 +f 659 627 625 +f 708 659 625 +f 702 708 625 +f 709 707 658 +f 708 710 659 +f 697 693 680 +f 694 698 681 +f 697 773 693 +f 796 698 694 +f 774 796 694 +f 795 773 697 +f 799 795 697 +f 699 799 697 +f 796 700 698 +f 801 799 699 +f 701 801 699 +f 800 702 700 +f 796 800 700 +f 805 801 701 +f 707 805 701 +f 802 708 702 +f 800 802 702 +f 749 805 707 +f 709 749 707 +f 750 710 708 +f 806 750 708 +f 802 806 708 +f 807 805 749 +f 806 808 750 +f 795 793 773 +f 794 796 774 +f 795 863 793 +f 878 796 794 +f 864 878 794 +f 877 863 795 +f 879 877 795 +f 799 879 795 +f 878 800 796 +f 881 879 799 +f 801 881 799 +f 880 802 800 +f 878 880 800 +f 887 881 801 +f 805 887 801 +f 882 806 802 +f 880 882 802 +f 841 887 805 +f 807 841 805 +f 882 888 806 +f 888 842 806 +f 842 808 806 +f 889 887 841 +f 888 890 842 +f 877 875 863 +f 876 878 864 +f 877 959 875 +f 978 878 876 +f 960 978 876 +f 977 959 877 +f 979 977 877 +f 879 979 877 +f 978 880 878 +f 981 979 879 +f 881 981 879 +f 980 882 880 +f 978 980 880 +f 985 981 881 +f 887 985 881 +f 982 888 882 +f 980 982 882 +f 933 985 887 +f 889 933 887 +f 934 890 888 +f 986 934 888 +f 982 986 888 +f 987 985 933 +f 986 988 934 +f 977 975 959 +f 976 978 960 +f 977 1116 975 +f 1127 978 976 +f 1117 1127 976 +f 1126 1116 977 +f 1128 1126 977 +f 979 1128 977 +f 1127 980 978 +f 1130 1128 979 +f 981 1130 979 +f 1129 982 980 +f 1127 1129 980 +f 1134 1130 981 +f 985 1134 981 +f 1131 986 982 +f 1129 1131 982 +f 1066 1134 985 +f 987 1066 985 +f 1067 988 986 +f 1135 1067 986 +f 1131 1135 986 +f 1136 1134 1066 +f 1135 1137 1067 +f 1126 1124 1116 +f 1125 1127 1117 +f 1126 1175 1124 +f 1176 1127 1125 +f 1249 1175 1126 +f 1247 1249 1126 +f 1128 1247 1126 +f 1250 1129 1127 +f 1176 1250 1127 +f 1245 1247 1128 +f 1130 1245 1128 +f 1248 1131 1129 +f 1250 1248 1129 +f 1241 1245 1130 +f 1134 1241 1130 +f 1246 1135 1131 +f 1248 1246 1131 +f 1171 1241 1134 +f 1136 1171 1134 +f 1172 1137 1135 +f 1242 1172 1135 +f 1246 1242 1135 +f 1239 1241 1171 +f 1242 1240 1172 +f 1249 1253 1175 +f 1254 1250 1176 +f 1318 1241 1239 +f 1242 1319 1240 +f 1378 1245 1241 +f 1318 1378 1241 +f 1379 1319 1242 +f 1383 1379 1242 +f 1246 1383 1242 +f 1382 1247 1245 +f 1378 1382 1245 +f 1385 1383 1246 +f 1248 1385 1246 +f 1384 1249 1247 +f 1382 1384 1247 +f 1387 1385 1248 +f 1250 1387 1248 +f 1340 1253 1249 +f 1386 1340 1249 +f 1384 1386 1249 +f 1341 1387 1250 +f 1254 1341 1250 +f 1376 1378 1318 +f 1379 1377 1319 +f 1386 1390 1340 +f 1391 1387 1341 +f 1420 1378 1376 +f 1379 1421 1377 +f 1466 1382 1378 +f 1420 1466 1378 +f 1467 1421 1379 +f 1473 1467 1379 +f 1383 1473 1379 +f 1472 1384 1382 +f 1466 1472 1382 +f 1475 1473 1383 +f 1385 1475 1383 +f 1474 1386 1384 +f 1472 1474 1384 +f 1477 1475 1385 +f 1387 1477 1385 +f 1436 1390 1386 +f 1476 1436 1386 +f 1474 1476 1386 +f 1437 1477 1387 +f 1391 1437 1387 +f 1464 1466 1420 +f 1467 1465 1421 +f 1476 1480 1436 +f 1481 1477 1437 +f 1504 1466 1464 +f 1467 1505 1465 +f 1558 1472 1466 +f 1504 1558 1466 +f 1559 1505 1467 +f 1565 1559 1467 +f 1473 1565 1467 +f 1564 1474 1472 +f 1558 1564 1472 +f 1569 1565 1473 +f 1475 1569 1473 +f 1568 1476 1474 +f 1564 1568 1474 +f 1571 1569 1475 +f 1477 1571 1475 +f 1528 1480 1476 +f 1570 1528 1476 +f 1568 1570 1476 +f 1529 1571 1477 +f 1481 1529 1477 +f 1556 1558 1504 +f 1559 1557 1505 +f 1570 1574 1528 +f 1575 1571 1529 +f 1602 1558 1556 +f 1559 1603 1557 +f 1644 1564 1558 +f 1602 1644 1558 +f 1645 1603 1559 +f 1651 1645 1559 +f 1565 1651 1559 +f 1650 1568 1564 +f 1644 1650 1564 +f 1653 1651 1565 +f 1569 1653 1565 +f 1652 1570 1568 +f 1650 1652 1568 +f 1657 1653 1569 +f 1571 1657 1569 +f 1624 1574 1570 +f 1656 1624 1570 +f 1652 1656 1570 +f 1625 1657 1571 +f 1575 1625 1571 +f 1642 1644 1602 +f 1645 1643 1603 +f 1656 1660 1624 +f 1661 1657 1625 +f 1682 1644 1642 +f 1645 1683 1643 +f 1724 1650 1644 +f 1682 1724 1644 +f 1725 1683 1645 +f 1729 1725 1645 +f 1651 1729 1645 +f 1728 1652 1650 +f 1724 1728 1650 +f 1733 1729 1651 +f 1653 1733 1651 +f 1732 1656 1652 +f 1728 1732 1652 +f 1737 1733 1653 +f 1657 1737 1653 +f 1698 1660 1656 +f 1736 1698 1656 +f 1732 1736 1656 +f 1699 1737 1657 +f 1661 1699 1657 +f 1720 1724 1682 +f 1725 1721 1683 +f 1736 1744 1698 +f 1745 1737 1699 +f 1814 1724 1720 +f 1725 1815 1721 +f 1861 1728 1724 +f 1814 1861 1724 +f 1862 1815 1725 +f 1866 1862 1725 +f 1729 1866 1725 +f 1865 1732 1728 +f 1861 1865 1728 +f 1868 1866 1729 +f 1733 1868 1729 +f 1867 1736 1732 +f 1865 1867 1732 +f 1872 1868 1733 +f 1737 1872 1733 +f 1841 1744 1736 +f 1871 1841 1736 +f 1867 1871 1736 +f 1842 1872 1737 +f 1745 1842 1737 +f 1859 1861 1814 +f 1862 1860 1815 +f 1871 1875 1841 +f 1876 1872 1842 +f 1887 1861 1859 +f 1862 1888 1860 +f 1926 1865 1861 +f 1887 1926 1861 +f 1927 1888 1862 +f 1931 1927 1862 +f 1866 1931 1862 +f 1930 1867 1865 +f 1926 1930 1865 +f 1933 1931 1866 +f 1868 1933 1866 +f 1932 1871 1867 +f 1930 1932 1867 +f 1935 1933 1868 +f 1872 1935 1868 +f 1905 1875 1871 +f 1934 1905 1871 +f 1932 1934 1871 +f 1906 1935 1872 +f 1876 1906 1872 +f 1922 1926 1887 +f 1927 1923 1888 +f 1934 1938 1905 +f 1939 1935 1906 +f 1948 1926 1922 +f 1927 1949 1923 +f 1984 1930 1926 +f 1948 1984 1926 +f 1985 1949 1927 +f 1989 1985 1927 +f 1931 1989 1927 +f 1988 1932 1930 +f 1984 1988 1930 +f 1995 1989 1931 +f 1933 1995 1931 +f 1994 1934 1932 +f 1988 1994 1932 +f 1999 1995 1933 +f 1935 1999 1933 +f 1964 1938 1934 +f 1998 1964 1934 +f 1994 1998 1934 +f 1965 1999 1935 +f 1939 1965 1935 +f 1978 1984 1948 +f 1985 1979 1949 +f 1998 2002 1964 +f 2003 1999 1965 +f 2013 1984 1978 +f 1985 2014 1979 +f 2045 1988 1984 +f 2013 2045 1984 +f 2046 2014 1985 +f 2054 2046 1985 +f 1989 2054 1985 +f 2053 1994 1988 +f 2045 2053 1988 +f 2058 2054 1989 +f 1995 2058 1989 +f 2057 1998 1994 +f 2053 2057 1994 +f 2060 2058 1995 +f 1999 2060 1995 +f 2027 2002 1998 +f 2059 2027 1998 +f 2057 2059 1998 +f 2028 2060 1999 +f 2003 2028 1999 +f 2037 2045 2013 +f 2046 2038 2014 +f 2059 2063 2027 +f 2064 2060 2028 +f 2073 2045 2037 +f 2046 2074 2038 +f 2108 2053 2045 +f 2073 2108 2045 +f 2109 2074 2046 +f 2113 2109 2046 +f 2054 2113 2046 +f 2112 2057 2053 +f 2108 2112 2053 +f 2115 2113 2054 +f 2058 2115 2054 +f 2114 2059 2057 +f 2112 2114 2057 +f 2119 2115 2058 +f 2060 2119 2058 +f 2091 2063 2059 +f 2118 2091 2059 +f 2114 2118 2059 +f 2092 2119 2060 +f 2064 2092 2060 +f 2100 2108 2073 +f 2109 2101 2074 +f 2118 2122 2091 +f 2123 2119 2092 +f 2126 2108 2100 +f 2109 2127 2101 +f 2148 2112 2108 +f 2126 2148 2108 +f 2149 2127 2109 +f 2161 2149 2109 +f 2113 2161 2109 +f 2160 2114 2112 +f 2148 2160 2112 +f 2165 2161 2113 +f 2115 2165 2113 +f 2164 2118 2114 +f 2160 2164 2114 +f 2169 2165 2115 +f 2119 2169 2115 +f 2142 2122 2118 +f 2168 2142 2118 +f 2164 2168 2118 +f 2143 2169 2119 +f 2123 2143 2119 +f 2144 2148 2126 +f 2149 2145 2127 +f 2168 2172 2142 +f 2173 2169 2143 +f 2176 2148 2144 +f 2149 2177 2145 +f 2197 2160 2148 +f 2176 2197 2148 +f 2198 2177 2149 +f 2206 2198 2149 +f 2161 2206 2149 +f 2205 2164 2160 +f 2197 2205 2160 +f 2212 2206 2161 +f 2165 2212 2161 +f 2211 2168 2164 +f 2205 2211 2164 +f 2214 2212 2165 +f 2169 2214 2165 +f 2191 2172 2168 +f 2213 2191 2168 +f 2211 2213 2168 +f 2192 2214 2169 +f 2173 2192 2169 +f 2195 2197 2176 +f 2198 2196 2177 +f 2213 2217 2191 +f 2218 2214 2192 +f 2219 2197 2195 +f 2198 2220 2196 +f 2233 2205 2197 +f 2219 2233 2197 +f 2234 2220 2198 +f 2240 2234 2198 +f 2206 2240 2198 +f 2239 2211 2205 +f 2233 2239 2205 +f 2246 2240 2206 +f 2212 2246 2206 +f 2245 2213 2211 +f 2239 2245 2211 +f 2256 2246 2212 +f 2214 2256 2212 +f 2231 2217 2213 +f 2255 2231 2213 +f 2245 2255 2213 +f 2232 2256 2214 +f 2218 2232 2214 +f 2227 2233 2219 +f 2234 2228 2220 +f 2247 2233 2227 +f 2234 2248 2228 +f 2255 2259 2231 +f 2260 2256 2232 +f 2263 2239 2233 +f 2247 2263 2233 +f 2264 2248 2234 +f 2276 2264 2234 +f 2240 2276 2234 +f 2275 2245 2239 +f 2263 2275 2239 +f 2278 2276 2240 +f 2246 2278 2240 +f 2277 2255 2245 +f 2275 2277 2245 +f 2282 2278 2246 +f 2256 2282 2246 +f 2261 2263 2247 +f 2264 2262 2248 +f 2271 2259 2255 +f 2281 2271 2255 +f 2277 2281 2255 +f 2272 2282 2256 +f 2260 2272 2256 +f 2273 2263 2261 +f 2264 2274 2262 +f 2297 2275 2263 +f 2273 2297 2263 +f 2298 2274 2264 +f 2305 2298 2264 +f 2276 2305 2264 +f 2281 2291 2271 +f 2292 2282 2272 +f 2287 2297 2273 +f 2298 2288 2274 +f 2304 2277 2275 +f 2297 2304 2275 +f 2311 2305 2276 +f 2278 2311 2276 +f 2310 2281 2277 +f 2304 2310 2277 +f 2317 2311 2278 +f 2282 2317 2278 +f 2308 2291 2281 +f 2316 2308 2281 +f 2310 2316 2281 +f 2309 2317 2282 +f 2292 2309 2282 +f 2295 2297 2287 +f 2298 2296 2288 +f 2301 2312 2295 +f 2312 2297 2295 +f 2313 2302 2296 +f 2298 2313 2296 +f 2312 2304 2297 +f 2323 2313 2298 +f 2305 2323 2298 +f 2303 2312 2301 +f 2313 2303 2302 +f 2313 2312 2303 +f 2322 2310 2304 +f 2312 2322 2304 +f 2329 2323 2305 +f 2311 2329 2305 +f 2316 2320 2308 +f 2321 2317 2309 +f 2328 2316 2310 +f 2322 2328 2310 +f 2337 2329 2311 +f 2317 2337 2311 +f 2313 2322 2312 +f 2323 2322 2313 +f 2334 2320 2316 +f 2336 2334 2316 +f 2328 2336 2316 +f 2335 2337 2317 +f 2321 2335 2317 +f 2323 2328 2322 +f 2329 2328 2323 +f 2329 2336 2328 +f 2337 2336 2329 +f 2336 2340 2334 +f 2341 2337 2335 +f 2343 2340 2336 +f 2337 2343 2336 +f 2341 2343 2337 +f 1782 1801 1778 +f 1802 1830 1779 +f 1830 1782 1779 +f 1830 1801 1782 +f 1828 1826 1801 +f 1830 1828 1801 +f 1827 1829 1802 +f 1829 1830 1802 +f 1760 1741 1585 +f 1673 1760 1585 +f 1589 1673 1585 +f 1786 1760 1673 +f 1485 1523 1405 +f 1417 1485 1405 +f 1537 1523 1485 +f 1323 1327 1262 +f 1311 1323 1262 +f 1355 1327 1323 +f 1220 1275 1219 +f 1275 1297 1219 +f 1297 1299 1219 +f 1299 1303 1219 +f 1121 1091 1061 +f 1162 1105 1091 +f 1121 1162 1091 +f 1162 1158 1105 +f 1204 1184 1158 +f 1162 1204 1158 +f 1208 1204 1162 +f 1208 1260 1204 +f 568 542 539 +f 563 568 539 +f 543 563 539 +f 568 545 542 +f 544 563 543 +f 568 549 545 +f 548 563 544 +f 568 550 549 +f 551 563 548 +f 568 557 550 +f 560 563 551 +f 556 560 551 +f 568 561 557 +f 568 562 561 +f 569 568 563 +f 570 573 568 +f 569 570 568 +f 573 571 568 +f 573 572 571 +f 573 731 572 +f 732 731 573 +f 732 747 731 +f 748 747 732 +f 748 755 747 +f 756 777 748 +f 777 755 748 +f 915 777 756 +f 778 915 756 +f 916 915 778 +f 916 926 915 +f 926 938 915 +f 938 1351 915 +f 1351 925 915 +f 1351 937 925 +f 1351 947 937 +f 948 1351 938 +f 1395 1405 947 +f 1405 1366 947 +f 1351 1367 947 +f 1367 1395 947 +f 1366 1350 947 +f 1350 1336 947 +f 1336 963 947 +f 964 1351 948 +f 1336 1326 963 +f 1326 967 963 +f 1337 1351 964 +f 1327 1337 964 +f 968 1327 964 +f 1326 1261 967 +f 1261 1058 967 +f 1059 1327 968 +f 1261 1233 1058 +f 1233 1070 1058 +f 1262 1327 1059 +f 1071 1262 1059 +f 1233 1223 1070 +f 1223 1074 1070 +f 1234 1262 1071 +f 1224 1234 1071 +f 1075 1224 1071 +f 1223 1077 1074 +f 1219 1224 1075 +f 1078 1219 1075 +f 1215 1211 1076 +f 1211 1081 1076 +f 1077 1218 1076 +f 1218 1217 1076 +f 1217 1215 1076 +f 1223 1218 1077 +f 1220 1219 1078 +f 1079 1220 1078 +f 1080 1220 1079 +f 1084 1220 1080 +f 1211 1085 1081 +f 1211 1088 1085 +f 1216 1220 1084 +f 1094 1097 1084 +f 1097 1101 1084 +f 1101 1103 1084 +f 1210 1212 1084 +f 1092 1094 1084 +f 1212 1216 1084 +f 1103 1105 1084 +f 1105 1158 1084 +f 1158 1210 1084 +f 1089 1092 1084 +f 1102 1100 1088 +f 1100 1096 1088 +f 1211 1160 1088 +f 1160 1104 1088 +f 1104 1102 1088 +f 1096 1093 1088 +f 1096 1095 1093 +f 1184 1210 1158 +f 1211 1183 1160 +f 1211 1187 1183 +f 1188 1210 1184 +f 1211 1191 1187 +f 1192 1210 1188 +f 1211 1195 1191 +f 1196 1210 1192 +f 1211 1197 1195 +f 1202 1210 1196 +f 1200 1202 1196 +f 1211 1201 1197 +f 1211 1209 1201 +f 1405 1394 1366 +f 1405 1404 1394 +f 1523 1522 1404 +f 1405 1523 1404 +f 1543 1542 1522 +f 1523 1543 1522 +f 1543 1562 1542 +f 1563 1562 1543 +f 1563 1584 1562 +f 1585 1584 1563 +f 1585 1740 1584 +f 1741 1740 1585 +f 1747 1749 1740 +f 1749 1746 1740 +f 1741 1747 1740 +f 1749 1748 1746 +f 1749 1756 1748 +f 1763 1769 1749 +f 1769 1773 1749 +f 1773 1777 1749 +f 1761 1763 1749 +f 1777 1779 1749 +f 1779 1782 1749 +f 1782 1756 1749 +f 1757 1761 1749 +f 1776 1770 1756 +f 1770 1768 1756 +f 1782 1778 1756 +f 1778 1776 1756 +f 1768 1758 1756 +f 1768 1762 1758 +f 1549 1543 1523 +f 1537 1549 1523 +f 1577 1563 1543 +f 1549 1577 1543 +f 1589 1585 1563 +f 1577 1589 1563 +f 1369 1337 1327 +f 1355 1369 1327 +f 1393 1351 1337 +f 1369 1393 1337 +f 1401 1367 1351 +f 1393 1401 1351 +f 1413 1395 1367 +f 1401 1413 1367 +f 1417 1405 1395 +f 1413 1417 1395 +f 1305 1224 1219 +f 1303 1305 1219 +f 1307 1234 1224 +f 1305 1307 1224 +f 1311 1262 1234 +f 1307 1311 1234 +f 1204 1188 1184 +f 1214 1192 1188 +f 1204 1214 1188 +f 1214 1230 1192 +f 1230 1238 1192 +f 1238 1196 1192 +f 1238 1200 1196 +f 1238 1256 1200 +f 1256 1202 1200 +f 1256 1258 1202 +f 1258 1265 1202 +f 1265 1210 1202 +f 1260 1214 1204 +f 1265 1269 1210 +f 1269 1212 1210 +f 1269 1273 1212 +f 1273 1216 1212 +f 1260 1263 1214 +f 1263 1271 1214 +f 1271 1230 1214 +f 1275 1220 1216 +f 1273 1275 1216 +f 1271 1276 1230 +f 1276 1278 1230 +f 1278 1238 1230 +f 1279 1256 1238 +f 1278 1279 1238 +f 1279 1281 1256 +f 1281 1283 1256 +f 1283 1258 1256 +f 1284 1265 1258 +f 1283 1284 1258 +f 1284 1286 1265 +f 1286 1269 1265 +f 1293 1273 1269 +f 1290 1293 1269 +f 1286 1290 1269 +f 1297 1275 1273 +f 1293 1297 1273 +f 1760 1765 1741 +f 1765 1747 1741 +f 1765 1749 1747 +f 1765 1775 1749 +f 1775 1757 1749 +f 1784 1761 1757 +f 1781 1784 1757 +f 1775 1781 1757 +f 1786 1787 1760 +f 1787 1765 1760 +f 1784 1763 1761 +f 1784 1789 1763 +f 1789 1793 1763 +f 1793 1769 1763 +f 1794 1775 1765 +f 1790 1794 1765 +f 1787 1790 1765 +f 1793 1796 1769 +f 1796 1773 1769 +f 1800 1777 1773 +f 1796 1800 1773 +f 1794 1797 1775 +f 1803 1781 1775 +f 1797 1803 1775 +f 1802 1779 1777 +f 1800 1802 1777 +f 1803 1809 1781 +f 1809 1784 1781 +f 1812 1789 1784 +f 1809 1812 1784 +f 1816 1793 1789 +f 1812 1816 1789 +f 1821 1796 1793 +f 1816 1821 1793 +f 1821 1824 1796 +f 1824 1800 1796 +f 1824 1802 1800 +f 1824 1827 1802 +f 1022 1078 1018 +f 1026 1048 1022 +f 1048 1078 1022 +f 1079 1078 1048 +f 970 968 942 +f 970 1059 968 +f 1008 1059 970 +f 836 778 764 +f 836 916 778 +f 892 916 836 +f 732 558 534 +f 645 732 534 +f 732 573 558 +f 726 732 645 +f 509 539 475 +f 477 509 475 +f 539 542 475 +f 542 510 475 +f 510 476 475 +f 510 484 476 +f 485 509 477 +f 543 539 509 +f 559 644 533 +f 572 731 559 +f 731 644 559 +f 731 725 644 +f 777 835 763 +f 915 835 777 +f 915 891 835 +f 967 969 941 +f 1058 969 967 +f 1058 1007 969 +f 1077 1021 1017 +f 1077 1025 1021 +f 1077 1047 1025 +f 1077 1076 1047 +f 1090 1120 1060 +f 1104 1160 1090 +f 1160 1161 1090 +f 1161 1120 1090 +f 1183 1161 1160 +f 1183 1203 1161 +f 1203 1207 1161 +f 1259 1207 1203 +f 1218 1274 1217 +f 1298 1274 1218 +f 1302 1298 1218 +f 1298 1296 1274 +f 1322 1310 1261 +f 1326 1322 1261 +f 1326 1354 1322 +f 1484 1416 1404 +f 1522 1484 1404 +f 1522 1536 1484 +f 1740 1759 1584 +f 1759 1785 1584 +f 1785 1672 1584 +f 1672 1588 1584 +f 1012 1059 1008 +f 1016 1071 1012 +f 1071 1059 1012 +f 1018 1075 1016 +f 1075 1071 1016 +f 1078 1075 1018 +f 906 916 892 +f 920 926 906 +f 926 916 906 +f 928 938 920 +f 938 926 920 +f 936 948 928 +f 948 938 928 +f 942 964 936 +f 964 948 936 +f 968 964 942 +f 738 732 726 +f 738 748 732 +f 752 748 738 +f 752 756 748 +f 764 756 752 +f 764 778 756 +f 731 747 725 +f 747 737 725 +f 747 755 737 +f 755 751 737 +f 755 777 751 +f 777 763 751 +f 915 925 891 +f 925 905 891 +f 925 937 905 +f 937 919 905 +f 937 947 919 +f 947 927 919 +f 947 963 927 +f 963 935 927 +f 963 967 935 +f 967 941 935 +f 1058 1070 1007 +f 1070 1011 1007 +f 1070 1074 1011 +f 1074 1015 1011 +f 1074 1077 1015 +f 1077 1017 1015 +f 1223 1302 1218 +f 1304 1302 1223 +f 1233 1304 1223 +f 1306 1304 1233 +f 1261 1306 1233 +f 1310 1306 1261 +f 1336 1354 1326 +f 1368 1354 1336 +f 1350 1368 1336 +f 1392 1368 1350 +f 1366 1392 1350 +f 1400 1392 1366 +f 1394 1400 1366 +f 1412 1400 1394 +f 1404 1412 1394 +f 1416 1412 1404 +f 1542 1536 1522 +f 1542 1548 1536 +f 1562 1548 1542 +f 1562 1576 1548 +f 1584 1576 1562 +f 1584 1588 1576 +f 511 509 485 +f 486 511 485 +f 488 511 486 +f 489 517 488 +f 517 511 488 +f 490 517 489 +f 523 517 490 +f 492 523 490 +f 526 523 492 +f 496 526 492 +f 497 526 496 +f 535 526 497 +f 501 535 497 +f 540 535 501 +f 505 540 501 +f 546 540 505 +f 513 546 505 +f 511 544 509 +f 544 543 509 +f 548 544 511 +f 517 548 511 +f 524 546 513 +f 523 548 517 +f 551 548 523 +f 526 556 523 +f 556 551 523 +f 534 554 524 +f 554 546 524 +f 560 556 526 +f 535 560 526 +f 558 554 534 +f 540 560 535 +f 563 560 540 +f 546 563 540 +f 569 563 546 +f 554 569 546 +f 570 569 554 +f 558 570 554 +f 573 570 558 +f 1027 1048 1026 +f 1028 1050 1027 +f 1050 1048 1027 +f 1032 1050 1028 +f 1033 1054 1032 +f 1054 1050 1032 +f 1035 1054 1033 +f 1056 1054 1035 +f 1037 1056 1035 +f 1063 1056 1037 +f 1039 1063 1037 +f 1065 1063 1039 +f 1042 1065 1039 +f 1069 1065 1042 +f 1044 1069 1042 +f 1073 1069 1044 +f 1052 1073 1044 +f 1050 1079 1048 +f 1080 1079 1050 +f 1054 1084 1050 +f 1084 1080 1050 +f 1091 1083 1052 +f 1083 1073 1052 +f 1061 1091 1052 +f 1089 1084 1054 +f 1056 1089 1054 +f 1063 1089 1056 +f 1092 1089 1063 +f 1094 1092 1063 +f 1065 1094 1063 +f 1069 1094 1065 +f 1097 1094 1069 +f 1073 1097 1069 +f 1101 1097 1073 +f 1083 1101 1073 +f 1103 1101 1083 +f 1091 1103 1083 +f 1105 1103 1091 +f 1047 1049 1025 +f 1049 1029 1025 +f 1049 1053 1029 +f 1053 1034 1029 +f 1053 1036 1034 +f 1053 1055 1036 +f 1055 1038 1036 +f 1055 1062 1038 +f 1062 1040 1038 +f 1064 1041 1040 +f 1062 1064 1040 +f 1064 1043 1041 +f 1064 1068 1043 +f 1068 1045 1043 +f 1072 1046 1045 +f 1068 1072 1045 +f 1072 1051 1046 +f 1076 1081 1047 +f 1081 1049 1047 +f 1085 1053 1049 +f 1081 1085 1049 +f 1082 1057 1051 +f 1072 1082 1051 +f 1088 1055 1053 +f 1085 1088 1053 +f 1093 1062 1055 +f 1088 1093 1055 +f 1082 1060 1057 +f 1082 1090 1060 +f 1093 1064 1062 +f 1095 1068 1064 +f 1093 1095 1064 +f 1100 1072 1068 +f 1096 1100 1068 +f 1095 1096 1068 +f 1100 1082 1072 +f 1100 1102 1082 +f 1102 1090 1082 +f 1102 1104 1090 +f 510 487 484 +f 518 491 487 +f 510 512 487 +f 512 518 487 +f 518 522 491 +f 522 495 491 +f 522 527 495 +f 527 498 495 +f 527 536 498 +f 536 502 498 +f 541 506 502 +f 536 541 502 +f 541 547 506 +f 547 514 506 +f 542 545 510 +f 545 512 510 +f 545 549 512 +f 549 518 512 +f 547 519 514 +f 550 522 518 +f 549 550 518 +f 547 555 519 +f 555 525 519 +f 557 527 522 +f 550 557 522 +f 555 528 525 +f 557 536 527 +f 559 533 528 +f 555 559 528 +f 561 562 536 +f 562 541 536 +f 557 561 536 +f 562 547 541 +f 562 568 547 +f 568 555 547 +f 572 559 555 +f 571 572 555 +f 568 571 555 +f 1746 1759 1740 +f 1764 1759 1746 +f 1748 1764 1746 +f 1774 1764 1748 +f 1756 1774 1748 +f 1780 1774 1756 +f 1758 1780 1756 +f 1783 1780 1758 +f 1762 1788 1758 +f 1788 1783 1758 +f 1764 1785 1759 +f 1792 1788 1762 +f 1768 1792 1762 +f 1791 1785 1764 +f 1774 1791 1764 +f 1770 1792 1768 +f 1799 1795 1770 +f 1795 1792 1770 +f 1776 1799 1770 +f 1798 1791 1774 +f 1780 1806 1774 +f 1806 1798 1774 +f 1801 1799 1776 +f 1778 1801 1776 +f 1783 1810 1780 +f 1810 1806 1780 +f 1788 1811 1783 +f 1811 1810 1783 +f 1792 1817 1788 +f 1817 1813 1788 +f 1813 1811 1788 +f 1795 1820 1792 +f 1820 1817 1792 +f 1823 1822 1795 +f 1822 1820 1795 +f 1799 1823 1795 +f 1801 1826 1799 +f 1826 1825 1799 +f 1825 1823 1799 +f 1187 1203 1183 +f 1213 1203 1187 +f 1191 1213 1187 +f 1229 1213 1191 +f 1195 1229 1191 +f 1237 1229 1195 +f 1197 1237 1195 +f 1255 1237 1197 +f 1201 1257 1197 +f 1257 1255 1197 +f 1209 1257 1201 +f 1270 1259 1203 +f 1213 1270 1203 +f 1211 1268 1209 +f 1264 1257 1209 +f 1268 1264 1209 +f 1272 1268 1211 +f 1215 1272 1211 +f 1229 1270 1213 +f 1217 1272 1215 +f 1274 1272 1217 +f 1237 1277 1229 +f 1277 1270 1229 +f 1255 1280 1237 +f 1280 1277 1237 +f 1257 1282 1255 +f 1282 1280 1255 +f 1264 1285 1257 +f 1285 1282 1257 +f 1287 1285 1264 +f 1268 1287 1264 +f 1292 1291 1268 +f 1272 1292 1268 +f 1291 1287 1268 +f 1294 1292 1272 +f 1295 1294 1272 +f 1274 1295 1272 +f 1296 1295 1274 + + +o Object.2 +v -81.000000 82.725029 -1.277139 +v 81.000000 82.725029 -1.277139 +v -81.625740 82.675781 -1.277139 +v 81.625740 82.675781 -1.277139 +v -82.236069 82.529259 -1.277140 +v 82.236069 82.529259 -1.277140 +v -82.815964 82.289063 -1.277140 +v 82.815964 82.289063 -1.277140 +v -83.351143 81.961098 -1.277141 +v 83.351143 81.961098 -1.277141 +v -83.828430 81.553459 -1.277142 +v 83.828430 81.553459 -1.277142 +v -84.236069 81.076172 -1.277143 +v 84.236069 81.076172 -1.277143 +v -84.564034 80.540993 -1.277144 +v 84.564034 80.540993 -1.277144 +v -84.804230 79.961098 -1.277146 +v 84.804230 79.961098 -1.277146 +v -84.950752 79.350769 -1.277147 +v 84.950752 79.350769 -1.277147 +v -85.000000 78.725029 -1.277149 +v 85.000000 78.725029 -1.277149 +v -13.500000 -82.375031 -1.277525 +v 13.500000 -82.375031 -1.277525 +v -13.730430 -82.394119 -1.277525 +v -13.269570 -82.394119 -1.277525 +v 13.269570 -82.394119 -1.277525 +v 13.730430 -82.394119 -1.277525 +v -13.954580 -82.450890 -1.277525 +v -13.045420 -82.450890 -1.277525 +v 13.045420 -82.450890 -1.277525 +v 13.954580 -82.450890 -1.277525 +v -14.166330 -82.543762 -1.277526 +v -12.833670 -82.543762 -1.277526 +v 12.833670 -82.543762 -1.277526 +v 14.166330 -82.543762 -1.277526 +v -14.359900 -82.670242 -1.277526 +v -12.640100 -82.670242 -1.277526 +v 12.640100 -82.670242 -1.277526 +v 14.359900 -82.670242 -1.277526 +v -14.530010 -82.826836 -1.277526 +v -12.469990 -82.826836 -1.277526 +v 12.469990 -82.826836 -1.277526 +v 14.530010 -82.826836 -1.277526 +v -14.672030 -83.009315 -1.277527 +v -12.327970 -83.009315 -1.277527 +v 12.327970 -83.009315 -1.277527 +v 14.672030 -83.009315 -1.277527 +v -14.782080 -83.212654 -1.277527 +v -12.217920 -83.212654 -1.277527 +v 12.217920 -83.212654 -1.277527 +v 14.782080 -83.212654 -1.277527 +v -85.000000 -83.275032 -1.277527 +v 85.000000 -83.275032 -1.277527 +v -14.857160 -83.431351 -1.277528 +v -12.142840 -83.431351 -1.277528 +v 12.142840 -83.431351 -1.277528 +v 14.857160 -83.431351 -1.277528 +v -14.895220 -83.659424 -1.277528 +v -12.104780 -83.659424 -1.277528 +v 12.104780 -83.659424 -1.277528 +v 14.895220 -83.659424 -1.277528 +v -14.895220 -83.890640 -1.277529 +v -12.104780 -83.890640 -1.277529 +v 12.104780 -83.890640 -1.277529 +v 14.895220 -83.890640 -1.277529 +v -84.950752 -83.900772 -1.277529 +v 84.950752 -83.900772 -1.277529 +v -14.857160 -84.118713 -1.277529 +v -12.142840 -84.118713 -1.277529 +v 12.142840 -84.118713 -1.277529 +v 14.857160 -84.118713 -1.277529 +v -14.782080 -84.337402 -1.277530 +v -12.217920 -84.337402 -1.277530 +v 12.217920 -84.337402 -1.277530 +v 14.782080 -84.337402 -1.277530 +v -84.804230 -84.511101 -1.277530 +v 84.804230 -84.511101 -1.277530 +v -14.672030 -84.540749 -1.277530 +v -12.327970 -84.540749 -1.277530 +v 12.327970 -84.540749 -1.277530 +v 14.672030 -84.540749 -1.277530 +v -14.530010 -84.723221 -1.277531 +v -12.469990 -84.723221 -1.277531 +v 12.469990 -84.723221 -1.277531 +v 14.530010 -84.723221 -1.277531 +v -14.359900 -84.879829 -1.277531 +v -12.640100 -84.879829 -1.277531 +v 12.640100 -84.879829 -1.277531 +v 14.359900 -84.879829 -1.277531 +v -14.166330 -85.006294 -1.277531 +v -12.833670 -85.006294 -1.277531 +v 12.833670 -85.006294 -1.277531 +v 14.166330 -85.006294 -1.277531 +v -84.564034 -85.090996 -1.277532 +v 84.564034 -85.090996 -1.277532 +v -13.954580 -85.099174 -1.277532 +v -13.045420 -85.099174 -1.277532 +v 13.045420 -85.099174 -1.277532 +v 13.954580 -85.099174 -1.277532 +v -13.730430 -85.155945 -1.277532 +v -13.269570 -85.155945 -1.277532 +v 13.269570 -85.155945 -1.277532 +v 13.730430 -85.155945 -1.277532 +v -13.500000 -85.175034 -1.277532 +v 13.500000 -85.175034 -1.277532 +v -84.236069 -85.626175 -1.277533 +v 84.236069 -85.626175 -1.277533 +v -83.828430 -86.103462 -1.277534 +v 83.828430 -86.103462 -1.277534 +v -83.351143 -86.511101 -1.277535 +v 83.351143 -86.511101 -1.277535 +v -82.815964 -86.839066 -1.277536 +v 82.815964 -86.839066 -1.277536 +v -82.236069 -87.079262 -1.277536 +v 82.236069 -87.079262 -1.277536 +v -81.625740 -87.225784 -1.277537 +v 81.625740 -87.225784 -1.277537 +v -81.000000 -87.275032 -1.277537 +v 81.000000 -87.275032 -1.277537 +v -81.000000 82.725029 -0.277139 +v 81.000000 82.725029 -0.277139 +v -81.625740 82.675781 -0.277139 +v 81.625740 82.675781 -0.277139 +v -82.236069 82.529259 -0.277139 +v 82.236069 82.529259 -0.277139 +v -82.815964 82.289063 -0.277140 +v 82.815964 82.289063 -0.277140 +v -83.351143 81.961098 -0.277141 +v 83.351143 81.961098 -0.277141 +v -83.828430 81.553459 -0.277142 +v 83.828430 81.553459 -0.277142 +v -84.236069 81.076172 -0.277143 +v 84.236069 81.076172 -0.277143 +v -84.564034 80.540993 -0.277144 +v 84.564034 80.540993 -0.277144 +v -84.804230 79.961098 -0.277145 +v 84.804230 79.961098 -0.277145 +v -84.950752 79.350769 -0.277147 +v 84.950752 79.350769 -0.277147 +v -85.000000 78.725029 -0.277148 +v 85.000000 78.725029 -0.277148 +v -13.500000 -82.375031 -0.277525 +v 13.500000 -82.375031 -0.277525 +v -13.730430 -82.394119 -0.277525 +v -13.269570 -82.394119 -0.277525 +v 13.269570 -82.394119 -0.277525 +v 13.730430 -82.394119 -0.277525 +v -13.954580 -82.450890 -0.277525 +v -13.045420 -82.450890 -0.277525 +v 13.045420 -82.450890 -0.277525 +v 13.954580 -82.450890 -0.277525 +v -14.166330 -82.543762 -0.277525 +v -12.833670 -82.543762 -0.277525 +v 12.833670 -82.543762 -0.277525 +v 14.166330 -82.543762 -0.277525 +v -14.359900 -82.670242 -0.277525 +v -12.640100 -82.670242 -0.277525 +v 12.640100 -82.670242 -0.277525 +v 14.359900 -82.670242 -0.277525 +v -14.530010 -82.826836 -0.277526 +v -12.469990 -82.826836 -0.277526 +v 12.469990 -82.826836 -0.277526 +v 14.530010 -82.826836 -0.277526 +v -14.672030 -83.009315 -0.277526 +v -12.327970 -83.009315 -0.277526 +v 12.327970 -83.009315 -0.277526 +v 14.672030 -83.009315 -0.277526 +v -14.782080 -83.212654 -0.277527 +v -12.217920 -83.212654 -0.277527 +v 12.217920 -83.212654 -0.277527 +v 14.782080 -83.212654 -0.277527 +v -85.000000 -83.275032 -0.277527 +v 85.000000 -83.275032 -0.277527 +v -14.857160 -83.431351 -0.277527 +v -12.142840 -83.431351 -0.277527 +v 12.142840 -83.431351 -0.277527 +v 14.857160 -83.431351 -0.277527 +v -14.895220 -83.659424 -0.277528 +v -12.104780 -83.659424 -0.277528 +v 12.104780 -83.659424 -0.277528 +v 14.895220 -83.659424 -0.277528 +v -14.895220 -83.890640 -0.277528 +v -12.104780 -83.890640 -0.277528 +v 12.104780 -83.890640 -0.277528 +v 14.895220 -83.890640 -0.277528 +v -84.950752 -83.900772 -0.277528 +v 84.950752 -83.900772 -0.277528 +v -14.857160 -84.118713 -0.277529 +v -12.142840 -84.118713 -0.277529 +v 12.142840 -84.118713 -0.277529 +v 14.857160 -84.118713 -0.277529 +v -14.782080 -84.337402 -0.277529 +v -12.217920 -84.337402 -0.277529 +v 12.217920 -84.337402 -0.277529 +v 14.782080 -84.337402 -0.277529 +v -84.804230 -84.511101 -0.277530 +v 84.804230 -84.511101 -0.277530 +v -14.672030 -84.540749 -0.277530 +v -12.327970 -84.540749 -0.277530 +v 12.327970 -84.540749 -0.277530 +v 14.672030 -84.540749 -0.277530 +v -14.530010 -84.723221 -0.277530 +v -12.469990 -84.723221 -0.277530 +v 12.469990 -84.723221 -0.277530 +v 14.530010 -84.723221 -0.277530 +v -14.359900 -84.879829 -0.277531 +v -12.640100 -84.879829 -0.277531 +v 12.640100 -84.879829 -0.277531 +v 14.359900 -84.879829 -0.277531 +v -14.166330 -85.006294 -0.277531 +v -12.833670 -85.006294 -0.277531 +v 12.833670 -85.006294 -0.277531 +v 14.166330 -85.006294 -0.277531 +v -84.564034 -85.090996 -0.277531 +v 84.564034 -85.090996 -0.277531 +v -13.954580 -85.099174 -0.277531 +v -13.045420 -85.099174 -0.277531 +v 13.045420 -85.099174 -0.277531 +v 13.954580 -85.099174 -0.277531 +v -13.730430 -85.155945 -0.277531 +v -13.269570 -85.155945 -0.277531 +v 13.269570 -85.155945 -0.277531 +v 13.730430 -85.155945 -0.277531 +v -13.500000 -85.175034 -0.277531 +v 13.500000 -85.175034 -0.277531 +v -84.236069 -85.626175 -0.277532 +v 84.236069 -85.626175 -0.277532 +v -83.828430 -86.103462 -0.277533 +v 83.828430 -86.103462 -0.277533 +v -83.351143 -86.511101 -0.277534 +v 83.351143 -86.511101 -0.277534 +v -82.815964 -86.839066 -0.277535 +v 82.815964 -86.839066 -0.277535 +v -82.236069 -87.079262 -0.277536 +v 82.236069 -87.079262 -0.277536 +v -81.625740 -87.225784 -0.277536 +v 81.625740 -87.225784 -0.277536 +v -81.000000 -87.275032 -0.277536 +v 81.000000 -87.275032 -0.277536 + +f 2500 2496 2376 +f 2380 2500 2376 +f 2504 2500 2380 +f 2384 2504 2380 +f 2508 2504 2384 +f 2388 2508 2384 +f 2512 2508 2388 +f 2392 2512 2388 +f 2516 2512 2392 +f 2396 2516 2392 +f 2520 2516 2396 +f 2400 2520 2396 +f 2524 2520 2400 +f 2404 2524 2400 +f 2530 2524 2404 +f 2410 2530 2404 +f 2534 2530 2410 +f 2414 2534 2410 +f 2538 2534 2414 +f 2418 2538 2414 +f 2544 2538 2418 +f 2424 2544 2418 +f 2548 2544 2424 +f 2428 2548 2424 +f 2554 2548 2428 +f 2434 2554 2428 +f 2558 2554 2434 +f 2438 2558 2434 +f 2562 2558 2438 +f 2442 2562 2438 +f 2566 2562 2442 +f 2446 2566 2442 +f 2572 2566 2446 +f 2452 2572 2446 +f 2576 2572 2452 +f 2456 2576 2452 +f 2578 2576 2456 +f 2458 2578 2456 +f 2498 2495 2375 +f 2378 2498 2375 +f 2502 2498 2378 +f 2382 2502 2378 +f 2506 2502 2382 +f 2386 2506 2382 +f 2510 2506 2386 +f 2390 2510 2386 +f 2514 2510 2390 +f 2394 2514 2390 +f 2518 2514 2394 +f 2398 2518 2394 +f 2522 2518 2398 +f 2402 2522 2398 +f 2528 2522 2402 +f 2408 2528 2402 +f 2532 2528 2408 +f 2412 2532 2408 +f 2536 2532 2412 +f 2416 2536 2412 +f 2542 2536 2416 +f 2422 2542 2416 +f 2546 2542 2422 +f 2426 2546 2422 +f 2552 2546 2426 +f 2432 2552 2426 +f 2556 2552 2432 +f 2436 2556 2432 +f 2560 2556 2436 +f 2440 2560 2436 +f 2564 2560 2440 +f 2444 2564 2440 +f 2570 2564 2444 +f 2450 2570 2444 +f 2574 2570 2450 +f 2454 2574 2450 +f 2577 2574 2454 +f 2457 2577 2454 +f 2476 2356 2354 +f 2474 2476 2354 +f 2478 2358 2356 +f 2476 2478 2356 +f 2480 2360 2358 +f 2478 2480 2358 +f 2482 2362 2360 +f 2480 2482 2360 +f 2484 2364 2362 +f 2482 2484 2362 +f 2486 2366 2364 +f 2484 2486 2364 +f 2488 2368 2366 +f 2486 2488 2366 +f 2490 2370 2368 +f 2488 2490 2368 +f 2492 2372 2370 +f 2490 2492 2370 +f 2494 2374 2372 +f 2492 2494 2372 +f 2540 2420 2406 +f 2526 2540 2406 +f 2550 2430 2420 +f 2540 2550 2420 +f 2568 2448 2430 +f 2550 2568 2430 +f 2580 2460 2448 +f 2568 2580 2448 +f 2582 2462 2460 +f 2580 2582 2460 +f 2584 2464 2462 +f 2582 2584 2462 +f 2586 2466 2464 +f 2584 2586 2464 +f 2588 2468 2466 +f 2586 2588 2466 +f 2590 2470 2468 +f 2588 2590 2468 +f 2592 2472 2470 +f 2590 2592 2470 +f 2419 2525 2405 +f 2429 2539 2419 +f 2539 2525 2419 +f 2447 2549 2429 +f 2549 2539 2429 +f 2459 2567 2447 +f 2567 2549 2447 +f 2461 2579 2459 +f 2579 2567 2459 +f 2463 2581 2461 +f 2581 2579 2461 +f 2465 2583 2463 +f 2583 2581 2463 +f 2467 2585 2465 +f 2585 2583 2465 +f 2469 2587 2467 +f 2587 2585 2467 +f 2471 2589 2469 +f 2589 2587 2469 +f 2591 2589 2471 +f 2355 2473 2353 +f 2475 2473 2355 +f 2357 2475 2355 +f 2477 2475 2357 +f 2359 2477 2357 +f 2479 2477 2359 +f 2361 2479 2359 +f 2481 2479 2361 +f 2363 2481 2361 +f 2483 2481 2363 +f 2365 2483 2363 +f 2485 2483 2365 +f 2367 2485 2365 +f 2487 2485 2367 +f 2369 2487 2367 +f 2489 2487 2369 +f 2371 2489 2369 +f 2491 2489 2371 +f 2373 2491 2371 +f 2493 2491 2373 +f 2499 2474 2473 +f 2475 2507 2473 +f 2507 2503 2473 +f 2503 2499 2473 +f 2499 2496 2474 +f 2496 2500 2474 +f 2500 2476 2474 +f 2477 2507 2475 +f 2500 2478 2476 +f 2479 2507 2477 +f 2500 2480 2478 +f 2481 2507 2479 +f 2500 2482 2480 +f 2483 2507 2481 +f 2500 2484 2482 +f 2485 2507 2483 +f 2500 2486 2484 +f 2487 2507 2485 +f 2500 2488 2486 +f 2489 2507 2487 +f 2500 2490 2488 +f 2491 2507 2489 +f 2500 2492 2490 +f 2493 2511 2491 +f 2511 2507 2491 +f 2500 2494 2492 +f 2513 2509 2493 +f 2497 2495 2493 +f 2531 2527 2493 +f 2527 2521 2493 +f 2521 2517 2493 +f 2517 2513 2493 +f 2525 2541 2493 +f 2541 2535 2493 +f 2535 2531 2493 +f 2509 2505 2493 +f 2505 2501 2493 +f 2501 2497 2493 +f 2495 2498 2493 +f 2498 2511 2493 +f 2504 2508 2494 +f 2508 2512 2494 +f 2512 2526 2494 +f 2500 2504 2494 +f 2502 2511 2498 +f 2506 2511 2502 +f 2510 2511 2506 +f 2515 2511 2510 +f 2519 2515 2510 +f 2514 2519 2510 +f 2516 2526 2512 +f 2518 2519 2514 +f 2592 2526 2516 +f 2520 2592 2516 +f 2523 2519 2518 +f 2529 2523 2518 +f 2522 2529 2518 +f 2524 2592 2520 +f 2528 2529 2522 +f 2530 2592 2524 +f 2569 2563 2525 +f 2563 2559 2525 +f 2559 2555 2525 +f 2555 2551 2525 +f 2539 2591 2525 +f 2591 2573 2525 +f 2573 2569 2525 +f 2551 2545 2525 +f 2545 2541 2525 +f 2592 2590 2526 +f 2590 2588 2526 +f 2588 2586 2526 +f 2586 2584 2526 +f 2584 2582 2526 +f 2582 2580 2526 +f 2580 2540 2526 +f 2533 2529 2528 +f 2532 2533 2528 +f 2534 2592 2530 +f 2537 2533 2532 +f 2536 2537 2532 +f 2538 2592 2534 +f 2542 2537 2536 +f 2542 2543 2537 +f 2544 2592 2538 +f 2549 2591 2539 +f 2580 2550 2540 +f 2546 2543 2542 +f 2560 2547 2543 +f 2556 2560 2543 +f 2546 2552 2543 +f 2552 2556 2543 +f 2548 2592 2544 +f 2560 2553 2547 +f 2554 2592 2548 +f 2567 2591 2549 +f 2580 2568 2550 +f 2560 2557 2553 +f 2558 2592 2554 +f 2560 2561 2557 +f 2562 2592 2558 +f 2564 2561 2560 +f 2570 2574 2561 +f 2591 2565 2561 +f 2577 2591 2561 +f 2574 2577 2561 +f 2564 2570 2561 +f 2566 2592 2562 +f 2591 2571 2565 +f 2572 2592 2566 +f 2579 2591 2567 +f 2591 2575 2571 +f 2576 2592 2572 +f 2591 2577 2573 +f 2591 2578 2575 +f 2578 2592 2576 +f 2591 2592 2578 +f 2581 2591 2579 +f 2583 2591 2581 +f 2585 2587 2583 +f 2589 2591 2583 +f 2587 2589 2583 +f 2472 2591 2471 +f 2592 2591 2472 +f 2526 2406 2374 +f 2494 2526 2374 +f 2473 2474 2353 +f 2474 2354 2353 +f 2405 2493 2373 +f 2525 2493 2405 +f 2375 2355 2353 +f 2378 2375 2353 +f 2382 2378 2353 +f 2354 2390 2353 +f 2390 2386 2353 +f 2386 2382 2353 +f 2380 2376 2354 +f 2394 2390 2354 +f 2376 2402 2354 +f 2402 2398 2354 +f 2398 2394 2354 +f 2356 2388 2354 +f 2388 2384 2354 +f 2384 2380 2354 +f 2375 2357 2355 +f 2358 2388 2356 +f 2375 2359 2357 +f 2360 2388 2358 +f 2375 2361 2359 +f 2362 2388 2360 +f 2375 2363 2361 +f 2364 2388 2362 +f 2375 2365 2363 +f 2366 2388 2364 +f 2375 2367 2365 +f 2368 2388 2366 +f 2375 2369 2367 +f 2370 2388 2368 +f 2375 2371 2369 +f 2372 2388 2370 +f 2375 2373 2371 +f 2374 2392 2372 +f 2392 2388 2372 +f 2377 2381 2373 +f 2375 2377 2373 +f 2381 2385 2373 +f 2385 2389 2373 +f 2389 2405 2373 +f 2406 2410 2374 +f 2410 2404 2374 +f 2404 2400 2374 +f 2400 2396 2374 +f 2396 2392 2374 +f 2379 2412 2376 +f 2412 2408 2376 +f 2408 2402 2376 +f 2383 2440 2379 +f 2440 2436 2379 +f 2436 2432 2379 +f 2432 2426 2379 +f 2426 2422 2379 +f 2422 2416 2379 +f 2416 2412 2379 +f 2387 2440 2383 +f 2391 2440 2387 +f 2393 2405 2389 +f 2444 2440 2391 +f 2395 2454 2391 +f 2454 2450 2391 +f 2450 2444 2391 +f 2471 2405 2393 +f 2397 2471 2393 +f 2399 2454 2395 +f 2401 2471 2397 +f 2403 2454 2399 +f 2407 2471 2401 +f 2457 2454 2403 +f 2409 2457 2403 +f 2471 2469 2405 +f 2469 2467 2405 +f 2467 2465 2405 +f 2465 2463 2405 +f 2463 2461 2405 +f 2461 2459 2405 +f 2459 2419 2405 +f 2414 2410 2406 +f 2420 2472 2406 +f 2472 2418 2406 +f 2418 2414 2406 +f 2411 2471 2407 +f 2413 2457 2409 +f 2415 2471 2411 +f 2417 2457 2413 +f 2421 2471 2415 +f 2423 2457 2417 +f 2472 2424 2418 +f 2459 2429 2419 +f 2430 2472 2420 +f 2425 2471 2421 +f 2427 2457 2423 +f 2472 2428 2424 +f 2431 2471 2425 +f 2433 2457 2427 +f 2472 2434 2428 +f 2459 2447 2429 +f 2448 2472 2430 +f 2435 2471 2431 +f 2437 2457 2433 +f 2472 2438 2434 +f 2439 2471 2435 +f 2441 2457 2437 +f 2472 2442 2438 +f 2443 2471 2439 +f 2471 2457 2441 +f 2445 2471 2441 +f 2472 2446 2442 +f 2449 2471 2443 +f 2451 2471 2445 +f 2472 2452 2446 +f 2460 2472 2448 +f 2453 2471 2449 +f 2455 2471 2451 +f 2472 2456 2452 +f 2457 2471 2453 +f 2458 2471 2455 +f 2472 2458 2456 +f 2472 2471 2458 +f 2462 2472 2460 +f 2464 2472 2462 +f 2466 2468 2464 +f 2470 2472 2464 +f 2468 2470 2464 +f 2495 2377 2375 +f 2497 2381 2377 +f 2495 2497 2377 +f 2501 2385 2381 +f 2497 2501 2381 +f 2505 2389 2385 +f 2501 2505 2385 +f 2509 2393 2389 +f 2505 2509 2389 +f 2513 2397 2393 +f 2509 2513 2393 +f 2517 2401 2397 +f 2513 2517 2397 +f 2521 2407 2401 +f 2517 2521 2401 +f 2527 2411 2407 +f 2521 2527 2407 +f 2531 2415 2411 +f 2527 2531 2411 +f 2535 2421 2415 +f 2531 2535 2415 +f 2541 2425 2421 +f 2535 2541 2421 +f 2545 2431 2425 +f 2541 2545 2425 +f 2551 2435 2431 +f 2545 2551 2431 +f 2555 2439 2435 +f 2551 2555 2435 +f 2559 2443 2439 +f 2555 2559 2439 +f 2563 2449 2443 +f 2559 2563 2443 +f 2569 2453 2449 +f 2563 2569 2449 +f 2573 2457 2453 +f 2569 2573 2453 +f 2573 2577 2457 +f 2496 2379 2376 +f 2499 2383 2379 +f 2496 2499 2379 +f 2503 2387 2383 +f 2499 2503 2383 +f 2507 2391 2387 +f 2503 2507 2387 +f 2511 2395 2391 +f 2507 2511 2391 +f 2515 2399 2395 +f 2511 2515 2395 +f 2519 2403 2399 +f 2515 2519 2399 +f 2523 2409 2403 +f 2519 2523 2403 +f 2529 2413 2409 +f 2523 2529 2409 +f 2533 2417 2413 +f 2529 2533 2413 +f 2537 2423 2417 +f 2533 2537 2417 +f 2543 2427 2423 +f 2537 2543 2423 +f 2547 2433 2427 +f 2543 2547 2427 +f 2553 2437 2433 +f 2547 2553 2433 +f 2557 2441 2437 +f 2553 2557 2437 +f 2561 2445 2441 +f 2557 2561 2441 +f 2565 2451 2445 +f 2561 2565 2445 +f 2571 2455 2451 +f 2565 2571 2451 +f 2575 2458 2455 +f 2571 2575 2455 +f 2575 2578 2458 + + +o Object.3 +v -8.250000 -87.525024 -9.377541 +v 8.250000 -87.525024 -9.377541 +v -8.268822 -87.525909 -9.377541 +v 8.268822 -87.525909 -9.377541 +v -8.302774 -87.532112 -9.377541 +v 8.302774 -87.532112 -9.377541 +v -8.335155 -87.544060 -9.377541 +v 8.335155 -87.544060 -9.377541 +v -8.365001 -87.561394 -9.377541 +v 8.365001 -87.561394 -9.377541 +v -8.391421 -87.583603 -9.377541 +v 8.391421 -87.583603 -9.377541 +v -8.413630 -87.610023 -9.377541 +v 8.413630 -87.610023 -9.377541 +v -8.430965 -87.639870 -9.377541 +v 8.430965 -87.639870 -9.377541 +v -8.442911 -87.672249 -9.377541 +v 8.442911 -87.672249 -9.377541 +v -8.449112 -87.706200 -9.377541 +v 8.449112 -87.706200 -9.377541 +v -8.450000 -87.725021 -9.377541 +v 8.450000 -87.725021 -9.377541 +v -8.446894 -87.790901 -9.377541 +v 8.446894 -87.790901 -9.377541 +v -8.425190 -87.909737 -9.377541 +v 8.425190 -87.909737 -9.377541 +v -8.383379 -88.023071 -9.377542 +v 8.383379 -88.023071 -9.377542 +v -8.322704 -88.127525 -9.377542 +v 8.322704 -88.127525 -9.377542 +v -8.244974 -88.220001 -9.377542 +v 8.244974 -88.220001 -9.377542 +v -8.152504 -88.297729 -9.377542 +v 8.152504 -88.297729 -9.377542 +v -8.048045 -88.358398 -9.377542 +v 8.048045 -88.358398 -9.377542 +v -7.934711 -88.400215 -9.377542 +v 7.934711 -88.400215 -9.377542 +v -7.815876 -88.421921 -9.377542 +v 7.815876 -88.421921 -9.377542 +v -7.750000 -88.425026 -9.377542 +v 7.750000 -88.425026 -9.377542 +v -8.466649 -87.725021 -9.377078 +v 8.466649 -87.725021 -9.377078 +v -8.463468 -87.792465 -9.377079 +v 8.463468 -87.792465 -9.377079 +v -8.441249 -87.914124 -9.377079 +v 8.441249 -87.914124 -9.377079 +v -8.398442 -88.030159 -9.377079 +v 8.398442 -88.030159 -9.377079 +v -8.336326 -88.137100 -9.377079 +v 8.336326 -88.137100 -9.377079 +v -8.256747 -88.231773 -9.377080 +v 8.256747 -88.231773 -9.377080 +v -8.162077 -88.311348 -9.377080 +v 8.162077 -88.311348 -9.377080 +v -8.055134 -88.373466 -9.377080 +v 8.055134 -88.373466 -9.377080 +v -7.939104 -88.416275 -9.377080 +v 7.939105 -88.416275 -9.377080 +v -7.817441 -88.438492 -9.377080 +v 7.817442 -88.438492 -9.377080 +v -7.750000 -88.441673 -9.377080 +v 7.750000 -88.441673 -9.377080 +v -8.250000 -87.478096 -9.373846 +v 8.250000 -87.478096 -9.373846 +v -7.750000 -88.471954 -9.373848 +v 7.750000 -88.471954 -9.373848 +v -8.250000 -87.474281 -9.373217 +v 8.250000 -87.474281 -9.373217 +v -8.273597 -87.475388 -9.373217 +v 8.273597 -87.475388 -9.373217 +v -8.316165 -87.483162 -9.373217 +v 8.316165 -87.483162 -9.373217 +v -8.356762 -87.498138 -9.373217 +v 8.356762 -87.498138 -9.373217 +v -8.394180 -87.519875 -9.373217 +v 8.394180 -87.519875 -9.373217 +v -8.427304 -87.547722 -9.373217 +v 8.427304 -87.547722 -9.373217 +v -8.455147 -87.580841 -9.373218 +v 8.455147 -87.580841 -9.373218 +v -8.476881 -87.618263 -9.373218 +v 8.476881 -87.618263 -9.373218 +v -8.491858 -87.658859 -9.373218 +v 8.491858 -87.658859 -9.373218 +v -8.499633 -87.701424 -9.373218 +v 8.499633 -87.701424 -9.373218 +v -8.500746 -87.725021 -9.373218 +v 8.500746 -87.725021 -9.373218 +v -8.518400 -87.725021 -9.369638 +v 8.518400 -87.725021 -9.369638 +v -8.514990 -87.797333 -9.369638 +v 8.514990 -87.797333 -9.369638 +v -8.491166 -87.927780 -9.369638 +v 8.491166 -87.927780 -9.369638 +v -8.445270 -88.052193 -9.369639 +v 8.445270 -88.052193 -9.369639 +v -8.378667 -88.166855 -9.369639 +v 8.378667 -88.166855 -9.369639 +v -8.293341 -88.268364 -9.369639 +v 8.293341 -88.268364 -9.369639 +v -8.191834 -88.353691 -9.369640 +v 8.191834 -88.353691 -9.369640 +v -8.077168 -88.420288 -9.369640 +v 8.077168 -88.420288 -9.369640 +v -7.952760 -88.466187 -9.369640 +v 7.952761 -88.466187 -9.369640 +v -7.822311 -88.490013 -9.369640 +v 7.822312 -88.490013 -9.369640 +v -7.750000 -88.493423 -9.369640 +v 7.750000 -88.493423 -9.369640 +v -8.250000 -87.432320 -9.362857 +v 8.250000 -87.432320 -9.362857 +v -7.750000 -88.517731 -9.362860 +v 7.750000 -88.517731 -9.362860 +v -8.250000 -87.424995 -9.360373 +v 8.250000 -87.424995 -9.360373 +v -8.278234 -87.426323 -9.360373 +v 8.278234 -87.426323 -9.360373 +v -8.329170 -87.435631 -9.360373 +v 8.329170 -87.435631 -9.360373 +v -8.377746 -87.453552 -9.360373 +v 8.377746 -87.453552 -9.360373 +v -8.422518 -87.479553 -9.360373 +v 8.422518 -87.479553 -9.360373 +v -8.462152 -87.512871 -9.360373 +v 8.462152 -87.512871 -9.360373 +v -8.495469 -87.552505 -9.360373 +v 8.495469 -87.552505 -9.360373 +v -8.521474 -87.597275 -9.360373 +v 8.521474 -87.597275 -9.360373 +v -8.539394 -87.645851 -9.360373 +v 8.539394 -87.645851 -9.360373 +v -8.548697 -87.696785 -9.360373 +v 8.548697 -87.696785 -9.360373 +v -8.550028 -87.725021 -9.360373 +v 8.550028 -87.725021 -9.360373 +v -8.568074 -87.725021 -9.353328 +v 8.568074 -87.725021 -9.353328 +v -8.564445 -87.802010 -9.353328 +v 8.564445 -87.802010 -9.353328 +v -8.539081 -87.940887 -9.353328 +v 8.539081 -87.940887 -9.353328 +v -8.490216 -88.073341 -9.353329 +v 8.490216 -88.073341 -9.353329 +v -8.419308 -88.195419 -9.353329 +v 8.419308 -88.195419 -9.353329 +v -8.328466 -88.303490 -9.353329 +v 8.328466 -88.303490 -9.353329 +v -8.220398 -88.394333 -9.353329 +v 8.220398 -88.394333 -9.353329 +v -8.098319 -88.465240 -9.353329 +v 8.098319 -88.465240 -9.353329 +v -7.965868 -88.514107 -9.353330 +v 7.965868 -88.514107 -9.353330 +v -7.826988 -88.539467 -9.353330 +v 7.826989 -88.539467 -9.353330 +v -7.750000 -88.543098 -9.353330 +v 7.750000 -88.543098 -9.353330 +v -8.250000 -87.388824 -9.344842 +v 8.250000 -87.388824 -9.344842 +v -7.750000 -88.561218 -9.344845 +v 7.750000 -88.561218 -9.344845 +v -8.250000 -87.378593 -9.339376 +v 8.250000 -87.378593 -9.339376 +v -8.282602 -87.380135 -9.339376 +v 8.282602 -87.380135 -9.339376 +v -8.341413 -87.390869 -9.339376 +v 8.341413 -87.390869 -9.339376 +v -8.397502 -87.411568 -9.339376 +v 8.397502 -87.411568 -9.339376 +v -8.449199 -87.441589 -9.339376 +v 8.449199 -87.441589 -9.339376 +v -8.494962 -87.480064 -9.339376 +v 8.494962 -87.480064 -9.339376 +v -8.533430 -87.525826 -9.339377 +v 8.533430 -87.525826 -9.339377 +v -8.563458 -87.577522 -9.339377 +v 8.563458 -87.577522 -9.339377 +v -8.584150 -87.633614 -9.339377 +v 8.584150 -87.633614 -9.339377 +v -8.594891 -87.692421 -9.339377 +v 8.594891 -87.692421 -9.339377 +v -8.596429 -87.725021 -9.339377 +v 8.596429 -87.725021 -9.339377 +v -8.614162 -87.725021 -9.328639 +v 8.614162 -87.725021 -9.328639 +v -8.610328 -87.806351 -9.328640 +v 8.610328 -87.806351 -9.328640 +v -8.583534 -87.953056 -9.328640 +v 8.583534 -87.953056 -9.328640 +v -8.531918 -88.092964 -9.328640 +v 8.531918 -88.092964 -9.328640 +v -8.457015 -88.221924 -9.328641 +v 8.457015 -88.221924 -9.328641 +v -8.361055 -88.336082 -9.328641 +v 8.361055 -88.336082 -9.328641 +v -8.246899 -88.432037 -9.328641 +v 8.246899 -88.432037 -9.328641 +v -8.117943 -88.506943 -9.328641 +v 8.117943 -88.506943 -9.328641 +v -7.978030 -88.558556 -9.328642 +v 7.978031 -88.558556 -9.328642 +v -7.831325 -88.585350 -9.328642 +v 7.831326 -88.585350 -9.328642 +v -7.750000 -88.589188 -9.328642 +v 7.750000 -88.589188 -9.328642 +v -8.250000 -87.348686 -9.320245 +v 8.250000 -87.348686 -9.320245 +v -7.750000 -88.601357 -9.320248 +v 7.750000 -88.601357 -9.320248 +v -8.250000 -87.336411 -9.310835 +v 8.250000 -87.336411 -9.310835 +v -8.286572 -87.338142 -9.310835 +v 8.286572 -87.338142 -9.310835 +v -8.352543 -87.350189 -9.310835 +v 8.352543 -87.350189 -9.310835 +v -8.415462 -87.373398 -9.310835 +v 8.415462 -87.373398 -9.310835 +v -8.473453 -87.407082 -9.310835 +v 8.473453 -87.407082 -9.310835 +v -8.524788 -87.450233 -9.310835 +v 8.524788 -87.450233 -9.310835 +v -8.567941 -87.501572 -9.310835 +v 8.567941 -87.501572 -9.310835 +v -8.601624 -87.559563 -9.310835 +v 8.601624 -87.559563 -9.310835 +v -8.624836 -87.622482 -9.310835 +v 8.624836 -87.622482 -9.310835 +v -8.636885 -87.688454 -9.310836 +v 8.636885 -87.688454 -9.310836 +v -8.638609 -87.725021 -9.310836 +v 8.638609 -87.725021 -9.310836 +v -8.655265 -87.725021 -9.296325 +v 8.655265 -87.725021 -9.296325 +v -8.651247 -87.810219 -9.296325 +v 8.651247 -87.810219 -9.296325 +v -8.623180 -87.963898 -9.296325 +v 8.623180 -87.963898 -9.296325 +v -8.569108 -88.110466 -9.296326 +v 8.569108 -88.110466 -9.296326 +v -8.490643 -88.245552 -9.296326 +v 8.490643 -88.245552 -9.296326 +v -8.390120 -88.365143 -9.296326 +v 8.390120 -88.365143 -9.296326 +v -8.270532 -88.465668 -9.296327 +v 8.270532 -88.465668 -9.296327 +v -8.135444 -88.544128 -9.296327 +v 8.135444 -88.544128 -9.296327 +v -7.988874 -88.598206 -9.296327 +v 7.988875 -88.598206 -9.296327 +v -7.835193 -88.626274 -9.296327 +v 7.835194 -88.626274 -9.296327 +v -7.750000 -88.630287 -9.296327 +v 7.750000 -88.630287 -9.296327 +v -8.250000 -87.312889 -9.289672 +v 8.250000 -87.312889 -9.289672 +v -7.750000 -88.637154 -9.289675 +v 7.750000 -88.637154 -9.289675 +v -8.250000 -87.299667 -9.275569 +v 8.250000 -87.299667 -9.275569 +v -8.290030 -87.301559 -9.275569 +v 8.290030 -87.301559 -9.275569 +v -8.362239 -87.314743 -9.275569 +v 8.362239 -87.314743 -9.275569 +v -8.431107 -87.340149 -9.275570 +v 8.431107 -87.340149 -9.275570 +v -8.494580 -87.377022 -9.275570 +v 8.494580 -87.377022 -9.275570 +v -8.550771 -87.424255 -9.275570 +v 8.550771 -87.424255 -9.275570 +v -8.598002 -87.480446 -9.275570 +v 8.598002 -87.480446 -9.275570 +v -8.634871 -87.543915 -9.275570 +v 8.634871 -87.543915 -9.275570 +v -8.660278 -87.612785 -9.275570 +v 8.660278 -87.612785 -9.275570 +v -8.673466 -87.684998 -9.275570 +v 8.673466 -87.684998 -9.275570 +v -8.675354 -87.725021 -9.275570 +v 8.675354 -87.725021 -9.275570 +v -8.690133 -87.725021 -9.257363 +v 8.690133 -87.725021 -9.257363 +v -8.685961 -87.813499 -9.257363 +v 8.685961 -87.813499 -9.257363 +v -8.656812 -87.973099 -9.257364 +v 8.656812 -87.973099 -9.257364 +v -8.600657 -88.125313 -9.257364 +v 8.600657 -88.125313 -9.257364 +v -8.519169 -88.265602 -9.257364 +v 8.519169 -88.265602 -9.257364 +v -8.414774 -88.389801 -9.257365 +v 8.414774 -88.389801 -9.257365 +v -8.290582 -88.494194 -9.257365 +v 8.290582 -88.494194 -9.257365 +v -8.150289 -88.575684 -9.257365 +v 8.150289 -88.575684 -9.257365 +v -7.998075 -88.631836 -9.257365 +v 7.998075 -88.631836 -9.257365 +v -7.838475 -88.660980 -9.257365 +v 7.838476 -88.660980 -9.257365 +v -7.750000 -88.665154 -9.257365 +v 7.750000 -88.665154 -9.257365 +v -8.250000 -87.282318 -9.253876 +v 8.250000 -87.282318 -9.253876 +v -7.750000 -88.667732 -9.253879 +v 7.750000 -88.667732 -9.253879 +v -8.250000 -87.269417 -9.234596 +v 8.250000 -87.269417 -9.234596 +v -8.292876 -87.271439 -9.234596 +v 8.292876 -87.271439 -9.234596 +v -8.370221 -87.285568 -9.234596 +v 8.370221 -87.285568 -9.234596 +v -8.443986 -87.312782 -9.234596 +v 8.443986 -87.312782 -9.234596 +v -8.511974 -87.352272 -9.234596 +v 8.511974 -87.352272 -9.234596 +v -8.572161 -87.402863 -9.234596 +v 8.572161 -87.402863 -9.234596 +v -8.622751 -87.463051 -9.234596 +v 8.622751 -87.463051 -9.234596 +v -8.662243 -87.531036 -9.234597 +v 8.662243 -87.531036 -9.234597 +v -8.689456 -87.604805 -9.234597 +v 8.689456 -87.604805 -9.234597 +v -8.703581 -87.682144 -9.234597 +v 8.703581 -87.682144 -9.234597 +v -8.705603 -87.725021 -9.234597 +v 8.705603 -87.725021 -9.234597 +v -8.250000 -87.257721 -9.213737 +v 8.250000 -87.257721 -9.213737 +v -7.750000 -88.692329 -9.213739 +v 7.750000 -88.692329 -9.213739 +v -8.717706 -87.725021 -9.212941 +v 8.717706 -87.725021 -9.212941 +v -8.713411 -87.816093 -9.212941 +v 8.713411 -87.816093 -9.212941 +v -8.683408 -87.980377 -9.212942 +v 8.683408 -87.980377 -9.212942 +v -8.625607 -88.137054 -9.212942 +v 8.625607 -88.137054 -9.212942 +v -8.541728 -88.281456 -9.212942 +v 8.541728 -88.281456 -9.212942 +v -8.434272 -88.409294 -9.212943 +v 8.434272 -88.409294 -9.212943 +v -8.306437 -88.516754 -9.212943 +v 8.306437 -88.516754 -9.212943 +v -8.162029 -88.600632 -9.212943 +v 8.162029 -88.600632 -9.212943 +v -8.005352 -88.658432 -9.212944 +v 8.005352 -88.658432 -9.212944 +v -7.841069 -88.688438 -9.212944 +v 7.841070 -88.688438 -9.212944 +v -8.250000 -87.246536 -9.189097 +v 8.250000 -87.246536 -9.189097 +v -8.295030 -87.248657 -9.189097 +v 8.295030 -87.248657 -9.189097 +v -8.376260 -87.263496 -9.189097 +v 8.376260 -87.263496 -9.189097 +v -8.453730 -87.292076 -9.189097 +v 8.453730 -87.292076 -9.189097 +v -8.525132 -87.333549 -9.189097 +v 8.525132 -87.333549 -9.189097 +v -8.588341 -87.386681 -9.189097 +v 8.588341 -87.386681 -9.189097 +v -8.641474 -87.449890 -9.189097 +v 8.641474 -87.449890 -9.189097 +v -8.682947 -87.521294 -9.189098 +v 8.682947 -87.521294 -9.189098 +v -8.711528 -87.598763 -9.189098 +v 8.711528 -87.598763 -9.189098 +v -8.726363 -87.679993 -9.189098 +v 8.726363 -87.679993 -9.189098 +v -8.728486 -87.725021 -9.189098 +v 8.728486 -87.725021 -9.189098 +v -8.250000 -87.239708 -9.170244 +v 8.250000 -87.239708 -9.170244 +v -7.750000 -88.710342 -9.170248 +v 7.750000 -88.710342 -9.170248 +v -8.737148 -87.725021 -9.164408 +v 8.737148 -87.725021 -9.164408 +v -8.732768 -87.817924 -9.164408 +v 8.732768 -87.817924 -9.164408 +v -8.702162 -87.985504 -9.164408 +v 8.702162 -87.985504 -9.164408 +v -8.643199 -88.145332 -9.164409 +v 8.643199 -88.145332 -9.164409 +v -8.557635 -88.292641 -9.164409 +v 8.557635 -88.292641 -9.164409 +v -8.448020 -88.423042 -9.164409 +v 8.448020 -88.423042 -9.164409 +v -8.317616 -88.532661 -9.164410 +v 8.317616 -88.532661 -9.164410 +v -8.170307 -88.618225 -9.164410 +v 8.170307 -88.618225 -9.164410 +v -8.010482 -88.677185 -9.164410 +v 8.010482 -88.677185 -9.164410 +v -7.842898 -88.707794 -9.164410 +v 7.842899 -88.707794 -9.164410 +v -7.750000 -88.712173 -9.164410 +v 7.750000 -88.712173 -9.164410 +v -8.250000 -87.231682 -9.140383 +v 8.250000 -87.231682 -9.140383 +v -8.296428 -87.233871 -9.140383 +v 8.296428 -87.233871 -9.140383 +v -8.380180 -87.249161 -9.140383 +v 8.380180 -87.249161 -9.140383 +v -8.460056 -87.278633 -9.140384 +v 8.460056 -87.278633 -9.140384 +v -8.533675 -87.321396 -9.140384 +v 8.533675 -87.321396 -9.140384 +v -8.598846 -87.376175 -9.140384 +v 8.598846 -87.376175 -9.140384 +v -8.653628 -87.441345 -9.140384 +v 8.653628 -87.441345 -9.140384 +v -8.696391 -87.514969 -9.140384 +v 8.696391 -87.514969 -9.140384 +v -8.725859 -87.594841 -9.140384 +v 8.725859 -87.594841 -9.140384 +v -8.741155 -87.678596 -9.140385 +v 8.741155 -87.678596 -9.140385 +v -8.743344 -87.725021 -9.140385 +v 8.743344 -87.725021 -9.140385 +v -8.250000 -87.228714 -9.124470 +v 8.250000 -87.228714 -9.124470 +v -7.750000 -88.721329 -9.124473 +v 7.750000 -88.721329 -9.124473 +v -8.747869 -87.725021 -9.113234 +v 8.747869 -87.725021 -9.113234 +v -8.743441 -87.818932 -9.113234 +v 8.743441 -87.818932 -9.113234 +v -8.712502 -87.988335 -9.113234 +v 8.712502 -87.988335 -9.113234 +v -8.652899 -88.149895 -9.113235 +v 8.652899 -88.149895 -9.113235 +v -8.566406 -88.298805 -9.113235 +v 8.566406 -88.298805 -9.113235 +v -8.455600 -88.430626 -9.113235 +v 8.455600 -88.430626 -9.113235 +v -8.323780 -88.541428 -9.113235 +v 8.323780 -88.541428 -9.113235 +v -8.174872 -88.627922 -9.113235 +v 8.174872 -88.627922 -9.113235 +v -8.013310 -88.687523 -9.113235 +v 8.013310 -88.687523 -9.113235 +v -7.843907 -88.718460 -9.113235 +v 7.843908 -88.718460 -9.113235 +v -7.750000 -88.722893 -9.113235 +v 7.750000 -88.722893 -9.113235 +v -8.250000 -87.225273 -9.089858 +v 8.250000 -87.225273 -9.089858 +v -8.297029 -87.227493 -9.089858 +v 8.297029 -87.227493 -9.089858 +v -8.381869 -87.242989 -9.089858 +v 8.381869 -87.242989 -9.089858 +v -8.462782 -87.272835 -9.089858 +v 8.462782 -87.272835 -9.089858 +v -8.537356 -87.316154 -9.089858 +v 8.537356 -87.316154 -9.089858 +v -8.603374 -87.371651 -9.089859 +v 8.603374 -87.371651 -9.089859 +v -8.658868 -87.437668 -9.089859 +v 8.658868 -87.437668 -9.089859 +v -8.702185 -87.512245 -9.089859 +v 8.702185 -87.512245 -9.089859 +v -8.732035 -87.593155 -9.089859 +v 8.732035 -87.593155 -9.089859 +v -8.747529 -87.677994 -9.089859 +v 8.747529 -87.677994 -9.089859 +v -8.749746 -87.725021 -9.089859 +v 8.749746 -87.725021 -9.089859 +v -7.883975 -68.275017 -9.077495 +v 7.883976 -68.275017 -9.077495 +v -8.250000 -68.908997 -9.077497 +v 8.250000 -68.908997 -9.077497 +v -6.250000 -82.425018 -9.077528 +v 6.250000 -82.425018 -9.077528 +v -6.422823 -82.439346 -9.077528 +v 6.422824 -82.439346 -9.077528 +v -6.590933 -82.481911 -9.077528 +v 6.590934 -82.481911 -9.077528 +v -6.749744 -82.551575 -9.077528 +v 6.749745 -82.551575 -9.077528 +v -6.894923 -82.646423 -9.077528 +v 6.894924 -82.646423 -9.077528 +v -7.022510 -82.763878 -9.077529 +v 7.022511 -82.763878 -9.077529 +v -7.129025 -82.900726 -9.077529 +v 7.129025 -82.900726 -9.077529 +v -7.211562 -83.053246 -9.077530 +v 7.211563 -83.053246 -9.077530 +v -7.267869 -83.217262 -9.077530 +v 7.267870 -83.217262 -9.077530 +v -7.296412 -83.388313 -9.077530 +v 7.296413 -83.388313 -9.077530 +v -7.296412 -83.561729 -9.077531 +v 7.296413 -83.561729 -9.077531 +v -7.267869 -83.732780 -9.077531 +v 7.267870 -83.732780 -9.077531 +v -7.211562 -83.896805 -9.077532 +v 7.211563 -83.896805 -9.077532 +v -7.129025 -84.049316 -9.077532 +v 7.129025 -84.049316 -9.077532 +v -7.022510 -84.186165 -9.077532 +v 7.022511 -84.186165 -9.077532 +v -6.894923 -84.303619 -9.077532 +v 6.894924 -84.303619 -9.077532 +v -6.749744 -84.398468 -9.077533 +v 6.749745 -84.398468 -9.077533 +v -6.590933 -84.468132 -9.077533 +v 6.590934 -84.468132 -9.077533 +v -6.422823 -84.510704 -9.077533 +v 6.422824 -84.510704 -9.077533 +v -6.250000 -84.525024 -9.077533 +v 6.250000 -84.525024 -9.077533 +v -6.250000 -85.425026 -9.077535 +v 6.250000 -85.425026 -9.077535 +v 6.266493 -85.425156 -9.077535 +v -6.266592 -85.425156 -9.077535 +v 6.446751 -85.443619 -9.077535 +v -6.447917 -85.443848 -9.077535 +v 6.621150 -85.492805 -9.077536 +v -6.623277 -85.493614 -9.077536 +v 6.784493 -85.571243 -9.077536 +v -6.787386 -85.572960 -9.077536 +v 6.931921 -85.676598 -9.077536 +v -6.935300 -85.679497 -9.077536 +v 7.059040 -85.805725 -9.077536 +v -7.062560 -85.810005 -9.077536 +v 7.162064 -85.954788 -9.077537 +v -7.165329 -85.960564 -9.077537 +v 7.237926 -86.119347 -9.077537 +v -7.240512 -86.126617 -9.077537 +v 7.284366 -86.294495 -9.077537 +v -7.285842 -86.303177 -9.077538 +v 7.300001 -86.475021 -9.077538 +v -7.299953 -86.484917 -9.077538 +v 7.284366 -86.655548 -9.077538 +v -7.282420 -86.666359 -9.077538 +v 7.237926 -86.830696 -9.077538 +v -7.233769 -86.842033 -9.077538 +v 7.162064 -86.995255 -9.077538 +v -7.155469 -87.006645 -9.077538 +v 7.059040 -87.144318 -9.077539 +v -7.049881 -87.155235 -9.077539 +v -8.250000 -87.225021 -9.077539 +v -6.984847 -87.225021 -9.077539 +v 6.984848 -87.225021 -9.077539 +v 8.250000 -87.225021 -9.077539 +v -8.250000 -88.591049 -9.077542 +v 8.250000 -88.591049 -9.077542 +v -8.175779 -88.629852 -9.077542 +v 8.175779 -88.629852 -9.077542 +v -8.013873 -88.689583 -9.077542 +v 8.013873 -88.689583 -9.077542 +v -7.844108 -88.720589 -9.077542 +v 7.844109 -88.720589 -9.077542 +v -7.750000 -88.725021 -9.077542 +v 7.750000 -88.725021 -9.077542 +v -8.270906 -87.225464 -9.077090 +v -6.250000 -85.453255 -9.076204 +v 6.250000 -85.453255 -9.076204 +v 6.266049 -85.453384 -9.076204 +v -6.266146 -85.453384 -9.076204 +v 6.441461 -85.471352 -9.076204 +v -6.442595 -85.471573 -9.076204 +v 6.611169 -85.519218 -9.076204 +v -6.613239 -85.520004 -9.076204 +v 6.770123 -85.595543 -9.076204 +v -6.772937 -85.597214 -9.076204 +v 6.913586 -85.698067 -9.076204 +v -6.916873 -85.700890 -9.076204 +v 7.037285 -85.823723 -9.076205 +v -7.040711 -85.827888 -9.076205 +v 7.137539 -85.968781 -9.076205 +v -7.140718 -85.974396 -9.076205 +v 7.211361 -86.128914 -9.076205 +v -7.213880 -86.135986 -9.076205 +v 7.256554 -86.299355 -9.076206 +v -7.257990 -86.307800 -9.076206 +v 7.271769 -86.475021 -9.076206 +v -7.271721 -86.484650 -9.076206 +v 7.256554 -86.650696 -9.076207 +v -7.254660 -86.661217 -9.076207 +v 7.211361 -86.821136 -9.076207 +v -7.207317 -86.832169 -9.076207 +v 7.137539 -86.981270 -9.076208 +v -7.131124 -86.992355 -9.076208 +v 7.037285 -87.126320 -9.076208 +v -7.028374 -87.136948 -9.076208 +v 6.942300 -87.225021 -9.076108 +v -6.942486 -87.225021 -9.076098 +v -6.250000 -82.471954 -9.073834 +v 6.250000 -82.471954 -9.073834 +v -6.415100 -82.485634 -9.073834 +v 6.415101 -82.485634 -9.073834 +v -6.575696 -82.526299 -9.073834 +v 6.575696 -82.526299 -9.073834 +v -6.727407 -82.592850 -9.073834 +v 6.727408 -82.592850 -9.073834 +v -6.866097 -82.683456 -9.073834 +v 6.866098 -82.683456 -9.073834 +v -6.987981 -82.795662 -9.073835 +v 6.987982 -82.795662 -9.073835 +v -7.089736 -82.926392 -9.073835 +v 7.089736 -82.926392 -9.073835 +v -7.168583 -83.072090 -9.073835 +v 7.168584 -83.072090 -9.073835 +v -7.222375 -83.228783 -9.073835 +v 7.222376 -83.228783 -9.073835 +v -7.249642 -83.392189 -9.073836 +v 7.249643 -83.392189 -9.073836 +v -7.249642 -83.557854 -9.073836 +v 7.249643 -83.557854 -9.073836 +v -7.222375 -83.721260 -9.073837 +v 7.222376 -83.721260 -9.073837 +v -7.168583 -83.877953 -9.073837 +v 7.168584 -83.877953 -9.073837 +v -7.089736 -84.023651 -9.073837 +v 7.089736 -84.023651 -9.073837 +v -6.987981 -84.154381 -9.073838 +v 6.987982 -84.154381 -9.073838 +v -6.866097 -84.266586 -9.073838 +v 6.866098 -84.266586 -9.073838 +v -6.727407 -84.357193 -9.073838 +v 6.727408 -84.357193 -9.073838 +v -6.575696 -84.423744 -9.073839 +v 6.575696 -84.423744 -9.073839 +v -6.415100 -84.464409 -9.073839 +v 6.415101 -84.464409 -9.073839 +v -6.250000 -84.478088 -9.073839 +v 6.250000 -84.478088 -9.073839 +v -6.250000 -85.471954 -9.073841 +v 6.250000 -85.471954 -9.073841 +v 8.310726 -87.228752 -9.073772 +v 8.320050 -88.546585 -9.072474 +v -8.324980 -68.888901 -9.071842 +v 8.324750 -88.542877 -9.071404 +v -7.883975 -68.196793 -9.071339 +v 7.883976 -68.196793 -9.071339 +v -7.895633 -68.197678 -9.071339 +v 7.895634 -68.197678 -9.071339 +v -7.907029 -68.200279 -9.071339 +v 7.907030 -68.200279 -9.071339 +v -7.917912 -68.204544 -9.071339 +v 7.917912 -68.204544 -9.071339 +v -7.928036 -68.210388 -9.071339 +v 7.928037 -68.210388 -9.071339 +v -7.937176 -68.217674 -9.071339 +v 7.937177 -68.217674 -9.071339 +v -7.945127 -68.226250 -9.071339 +v 7.945127 -68.226250 -9.071339 +v -7.951713 -68.235909 -9.071339 +v 7.951714 -68.235909 -9.071339 +v 8.317738 -68.869888 -9.071341 +v 8.322263 -68.879059 -9.071341 +v 8.325552 -68.888748 -9.071341 +v 8.327548 -68.898788 -9.071341 +v 8.328218 -68.908997 -9.071341 +v -8.324968 -88.543121 -9.071370 +v -8.328219 -87.231247 -9.071301 +v -8.330008 -88.539543 -9.070942 +v -6.875099 -87.225021 -9.068255 +v -6.872002 -87.225021 -9.067742 +v 6.866451 -87.225021 -9.066912 +v -6.250000 -85.504189 -9.066902 +v 6.250000 -85.504189 -9.066902 +v 6.265249 -85.504303 -9.066902 +v -6.265340 -85.504303 -9.066902 +v 6.431918 -85.521378 -9.066902 +v -6.432994 -85.521591 -9.066902 +v 6.593167 -85.566856 -9.066902 +v -6.595135 -85.567604 -9.066902 +v 6.744196 -85.639381 -9.066902 +v -6.746871 -85.640968 -9.066902 +v 6.880509 -85.736794 -9.066902 +v -6.883634 -85.739471 -9.066903 +v 6.998044 -85.856186 -9.066903 +v -7.001298 -85.860146 -9.066903 +v 7.093300 -85.994011 -9.066903 +v -7.096321 -85.999344 -9.066903 +v 7.163444 -86.146164 -9.066904 +v -7.165835 -86.152885 -9.066904 +v 7.206382 -86.308105 -9.066904 +v -7.207747 -86.316139 -9.066904 +v 7.220839 -86.475021 -9.066904 +v -7.220795 -86.484177 -9.066904 +v 7.206382 -86.641937 -9.066905 +v -7.204583 -86.651932 -9.066905 +v 7.163444 -86.803886 -9.066905 +v -7.159601 -86.814362 -9.066905 +v 7.093300 -86.956032 -9.066906 +v -7.087204 -86.966568 -9.066906 +v 6.998044 -87.093857 -9.066906 +v -6.989575 -87.103951 -9.066906 +v 6.880509 -87.213257 -9.066906 +v -6.869658 -87.222389 -9.066906 +v -6.865962 -87.225021 -9.066704 +v 8.368847 -87.239708 -9.063124 +v -6.250000 -82.517723 -9.062845 +v 6.250000 -82.517723 -9.062845 +v -6.407566 -82.530785 -9.062845 +v 6.407567 -82.530785 -9.062845 +v -6.560833 -82.569595 -9.062845 +v 6.560833 -82.569595 -9.062845 +v -6.705622 -82.633102 -9.062845 +v 6.705623 -82.633102 -9.062845 +v -6.837983 -82.719582 -9.062845 +v 6.837984 -82.719582 -9.062845 +v -6.954305 -82.826660 -9.062846 +v 6.954306 -82.826660 -9.062846 +v -7.051414 -82.951431 -9.062846 +v 7.051415 -82.951431 -9.062846 +v -7.126665 -83.090485 -9.062846 +v 7.126666 -83.090485 -9.062846 +v -7.178001 -83.240021 -9.062847 +v 7.178002 -83.240021 -9.062847 +v -7.204024 -83.395966 -9.062847 +v 7.204025 -83.395966 -9.062847 +v -7.204024 -83.554077 -9.062847 +v 7.204025 -83.554077 -9.062847 +v -7.178001 -83.710022 -9.062848 +v 7.178002 -83.710022 -9.062848 +v -7.126665 -83.859566 -9.062848 +v 7.126666 -83.859566 -9.062848 +v -7.051414 -83.998611 -9.062849 +v 7.051415 -83.998611 -9.062849 +v -6.954305 -84.123383 -9.062849 +v 6.954306 -84.123383 -9.062849 +v -6.837983 -84.230461 -9.062849 +v 6.837984 -84.230461 -9.062849 +v -6.705622 -84.316940 -9.062849 +v 6.705623 -84.316940 -9.062849 +v -6.560833 -84.380447 -9.062849 +v 6.560833 -84.380447 -9.062849 +v -6.407566 -84.419258 -9.062850 +v 6.407567 -84.419258 -9.062850 +v -6.250000 -84.432320 -9.062850 +v 6.250000 -84.432320 -9.062850 +v -6.250000 -85.517731 -9.062852 +v 6.250000 -85.517731 -9.062852 +v 8.370285 -88.507019 -9.061039 +v -8.749543 -87.725021 -9.060976 +v 8.749543 -87.725021 -9.060976 +v -8.745106 -87.819092 -9.060976 +v 8.745106 -87.819092 -9.060976 +v -8.714116 -87.988777 -9.060977 +v 8.714116 -87.988777 -9.060977 +v -8.654413 -88.150612 -9.060977 +v 8.654413 -88.150612 -9.060977 +v -8.567776 -88.299767 -9.060978 +v 8.567776 -88.299767 -9.060978 +v -8.456783 -88.431808 -9.060978 +v 8.456783 -88.431808 -9.060978 +v -8.372414 -88.507126 -9.060978 +v -8.381916 -68.873650 -9.059780 +v 8.381937 -68.908997 -9.059775 +v 8.381947 -87.243294 -9.059744 +v -8.383379 -87.243713 -9.059355 +v -8.402365 -88.481789 -9.053762 +v 8.402626 -88.481544 -9.053679 +v -8.403526 -68.867859 -9.053343 +v -7.883975 -68.120506 -9.053022 +v 7.883976 -68.120506 -9.053022 +v -7.907002 -68.122238 -9.053022 +v 7.907003 -68.122238 -9.053022 +v -7.929516 -68.127380 -9.053022 +v 7.929517 -68.127380 -9.053022 +v -7.951014 -68.135803 -9.053022 +v 7.951015 -68.135803 -9.053022 +v -7.971012 -68.147354 -9.053022 +v 7.971013 -68.147354 -9.053022 +v -7.989067 -68.161758 -9.053022 +v 7.989068 -68.161758 -9.053022 +v -8.004774 -68.178688 -9.053022 +v 8.004774 -68.178688 -9.053022 +v -8.017783 -68.197769 -9.053022 +v 8.017783 -68.197769 -9.053022 +v 8.383809 -68.831734 -9.053024 +v 8.392748 -68.849869 -9.053024 +v 8.399243 -68.868996 -9.053024 +v 8.403187 -68.888824 -9.053024 +v 8.404509 -68.908997 -9.053024 +v 8.411457 -88.475006 -9.050741 +v -6.250000 -85.552757 -9.048984 +v 6.250000 -85.552757 -9.048984 +v 6.264486 -85.552872 -9.048984 +v -6.264574 -85.552872 -9.048984 +v 6.422815 -85.569092 -9.048984 +v -6.423840 -85.569290 -9.048984 +v 6.575998 -85.612297 -9.048984 +v -6.577867 -85.613007 -9.048984 +v 6.719472 -85.681190 -9.048984 +v -6.722013 -85.682701 -9.048984 +v 6.848965 -85.773727 -9.048984 +v -6.851933 -85.776276 -9.048984 +v 6.960618 -85.887146 -9.048985 +v -6.963710 -85.890907 -9.048985 +v 7.051109 -86.018082 -9.048985 +v -7.053978 -86.023148 -9.048985 +v 7.117743 -86.162621 -9.048985 +v -7.120016 -86.169006 -9.048985 +v 7.158534 -86.316460 -9.048985 +v -7.159831 -86.324081 -9.048985 +v 7.172266 -86.475021 -9.048985 +v -7.172225 -86.483719 -9.048985 +v 7.158534 -86.633591 -9.048985 +v -7.156825 -86.643082 -9.048985 +v 7.117743 -86.787430 -9.048986 +v -7.114092 -86.797386 -9.048986 +v 7.051109 -86.931969 -9.048986 +v -7.045319 -86.941971 -9.048986 +v 6.960618 -87.062897 -9.048986 +v -6.952573 -87.072487 -9.048986 +v 6.848965 -87.176323 -9.048987 +v -6.838655 -87.184998 -9.048987 +v 6.784656 -87.225021 -9.048420 +v -6.784595 -87.225021 -9.048186 +v 8.425235 -87.258530 -9.045821 +v -6.250000 -82.561218 -9.044830 +v 6.250000 -82.561218 -9.044830 +v -6.400406 -82.573685 -9.044830 +v 6.400407 -82.573685 -9.044830 +v -6.546710 -82.610733 -9.044830 +v 6.546711 -82.610733 -9.044830 +v -6.684922 -82.671356 -9.044830 +v 6.684923 -82.671356 -9.044830 +v -6.811270 -82.753906 -9.044830 +v 6.811271 -82.753906 -9.044830 +v -6.922307 -82.856117 -9.044831 +v 6.922307 -82.856117 -9.044831 +v -7.015005 -82.975220 -9.044831 +v 7.015006 -82.975220 -9.044831 +v -7.086835 -83.107948 -9.044831 +v 7.086836 -83.107948 -9.044831 +v -7.135839 -83.250694 -9.044832 +v 7.135840 -83.250694 -9.044832 +v -7.160682 -83.399559 -9.044832 +v 7.160683 -83.399559 -9.044832 +v -7.160682 -83.550484 -9.044832 +v 7.160683 -83.550484 -9.044832 +v -7.135839 -83.699348 -9.044833 +v 7.135840 -83.699348 -9.044833 +v -7.086835 -83.842094 -9.044833 +v 7.086836 -83.842094 -9.044833 +v -7.015005 -83.974823 -9.044834 +v 7.015006 -83.974823 -9.044834 +v -6.922307 -84.093925 -9.044834 +v 6.922307 -84.093925 -9.044834 +v -6.811270 -84.196144 -9.044834 +v 6.811271 -84.196144 -9.044834 +v -6.684922 -84.278687 -9.044834 +v 6.684923 -84.278687 -9.044834 +v -6.546710 -84.339310 -9.044834 +v 6.546711 -84.339310 -9.044834 +v -6.400406 -84.376366 -9.044834 +v 6.400407 -84.376366 -9.044834 +v -6.250000 -84.388824 -9.044834 +v 6.250000 -84.388824 -9.044834 +v -6.250000 -85.561218 -9.044837 +v 6.250000 -85.561218 -9.044837 +v -8.434569 -87.262581 -9.042226 +v -8.461830 -87.274864 -9.038979 +v 8.461830 -87.274864 -9.038979 +v -8.536072 -87.317986 -9.038979 +v 8.536072 -87.317986 -9.038979 +v -8.601794 -87.373230 -9.038979 +v 8.601794 -87.373230 -9.038979 +v -8.657039 -87.438950 -9.038979 +v 8.657039 -87.438950 -9.038979 +v -8.700162 -87.513191 -9.038979 +v 8.700162 -87.513191 -9.038979 +v -8.729877 -87.593742 -9.038979 +v 8.729877 -87.593742 -9.038979 +v -8.745303 -87.678207 -9.038980 +v 8.745303 -87.678207 -9.038980 +v -8.747512 -87.725021 -9.038980 +v 8.747512 -87.725021 -9.038980 +v -8.451102 -88.438087 -9.034805 +v -8.454987 -88.429672 -9.033589 +v 8.457457 -88.431778 -9.032470 +v -8.457216 -88.432022 -9.032066 +v -6.731264 -87.225021 -9.031802 +v 6.730487 -87.225021 -9.031774 +v -8.462852 -68.851959 -9.029927 +v 8.462890 -68.908997 -9.029910 +v 8.463047 -87.276909 -9.029820 +v -8.463131 -87.276955 -9.029781 +v 8.463564 -88.425613 -9.029636 +v -8.463520 -88.425659 -9.029142 +v 8.467495 -88.415611 -9.027797 +v 8.471540 -87.281822 -9.025702 +v -8.473557 -88.408485 -9.024750 +v -8.476978 -68.848175 -9.023008 +v -7.883975 -68.048027 -9.022997 +v 7.883976 -68.048027 -9.022997 +v -7.917807 -68.050560 -9.022997 +v 7.917808 -68.050560 -9.022997 +v -7.950881 -68.058105 -9.022997 +v 7.950882 -68.058105 -9.022997 +v -7.982463 -68.070496 -9.022997 +v 7.982464 -68.070496 -9.022997 +v -8.011846 -68.087463 -9.022997 +v 8.011846 -68.087463 -9.022997 +v -8.038371 -68.108620 -9.022998 +v 8.038371 -68.108620 -9.022998 +v -8.061446 -68.133484 -9.022998 +v 8.061446 -68.133484 -9.022998 +v -8.080558 -68.161514 -9.022998 +v 8.080558 -68.161514 -9.022998 +v 8.446584 -68.795494 -9.022999 +v 8.459716 -68.822128 -9.022999 +v 8.469260 -68.850235 -9.022999 +v 8.475053 -68.879364 -9.022999 +v 8.476995 -68.908997 -9.023000 +v -6.250000 -85.597527 -9.022981 +v 6.250000 -85.597527 -9.022981 +v 6.263783 -85.597633 -9.022981 +v -6.263865 -85.597633 -9.022981 +v 6.414427 -85.613068 -9.022981 +v -6.415401 -85.613251 -9.022981 +v 6.560174 -85.654175 -9.022981 +v -6.561952 -85.654846 -9.022981 +v 6.696683 -85.719727 -9.022981 +v -6.699100 -85.721161 -9.022981 +v 6.819890 -85.807770 -9.022981 +v -6.822714 -85.810188 -9.022981 +v 6.926125 -85.915688 -9.022982 +v -6.929067 -85.919258 -9.022982 +v 7.012223 -86.040260 -9.022982 +v -7.014953 -86.045082 -9.022982 +v 7.075622 -86.177780 -9.022982 +v -7.077784 -86.183861 -9.022982 +v 7.114432 -86.324158 -9.022982 +v -7.115666 -86.331413 -9.022982 +v 7.127499 -86.475021 -9.022983 +v -7.127460 -86.483292 -9.022983 +v 7.114432 -86.625893 -9.022983 +v -7.112805 -86.634926 -9.022983 +v 7.075622 -86.772263 -9.022984 +v -7.072148 -86.781738 -9.022984 +v 7.012223 -86.909790 -9.022984 +v -7.006712 -86.919304 -9.022984 +v 6.926125 -87.034363 -9.022984 +v -6.918470 -87.043488 -9.022984 +v 6.819890 -87.142281 -9.022984 +v -6.810081 -87.150536 -9.022984 +v 6.703868 -87.225021 -9.022404 +v -8.478316 -87.285973 -9.022278 +v -6.704090 -87.225021 -9.022265 +v -6.250000 -82.601357 -9.020233 +v 6.250000 -82.601357 -9.020233 +v -6.393799 -82.613274 -9.020233 +v 6.393800 -82.613274 -9.020233 +v -6.533678 -82.648697 -9.020233 +v 6.533679 -82.648697 -9.020233 +v -6.665818 -82.706657 -9.020233 +v 6.665819 -82.706657 -9.020233 +v -6.786614 -82.785576 -9.020234 +v 6.786615 -82.785576 -9.020234 +v -6.892776 -82.883308 -9.020234 +v 6.892776 -82.883308 -9.020234 +v -6.981401 -82.997169 -9.020234 +v 6.981402 -82.997169 -9.020234 +v -7.050077 -83.124077 -9.020235 +v 7.050078 -83.124077 -9.020235 +v -7.096931 -83.260551 -9.020235 +v 7.096931 -83.260551 -9.020235 +v -7.120679 -83.402878 -9.020235 +v 7.120680 -83.402878 -9.020235 +v -7.120679 -83.547173 -9.020236 +v 7.120680 -83.547173 -9.020236 +v -7.096931 -83.689491 -9.020236 +v 7.096931 -83.689491 -9.020236 +v -7.050077 -83.825966 -9.020236 +v 7.050078 -83.825966 -9.020236 +v -6.981401 -83.952873 -9.020237 +v 6.981402 -83.952873 -9.020237 +v -6.892776 -84.066742 -9.020237 +v 6.892776 -84.066742 -9.020237 +v -6.786614 -84.164467 -9.020237 +v 6.786615 -84.164467 -9.020237 +v -6.665818 -84.243385 -9.020237 +v 6.665819 -84.243385 -9.020237 +v -6.533678 -84.301346 -9.020237 +v 6.533679 -84.301346 -9.020237 +v -6.393799 -84.336769 -9.020237 +v 6.393800 -84.336769 -9.020237 +v -6.250000 -84.348686 -9.020237 +v 6.250000 -84.348686 -9.020237 +v -6.250000 -85.601357 -9.020241 +v 6.250000 -85.601357 -9.020241 +v 6.694730 -87.225021 -9.019014 +v -8.485322 -68.845940 -9.018658 +v 8.494393 -88.392769 -9.013739 +v -6.679286 -87.225021 -9.012894 +v 8.501393 -88.373123 -9.009940 +v -8.501350 -88.373100 -9.009736 +v -8.742117 -87.725021 -9.009222 +v 8.742117 -87.725021 -9.009222 +v -8.737714 -87.818390 -9.009222 +v 8.737714 -87.818390 -9.009222 +v -8.706954 -87.986816 -9.009223 +v 8.706954 -87.986816 -9.009223 +v -8.647696 -88.147446 -9.009223 +v 8.647696 -88.147446 -9.009223 +v -8.561701 -88.295494 -9.009224 +v 8.561701 -88.295494 -9.009224 +v 8.516811 -87.314178 -9.000278 +v -8.525940 -87.322250 -8.994345 +v 8.529142 -88.331947 -8.992296 +v -8.530261 -87.326286 -8.991444 +v 8.530288 -87.326309 -8.991424 +v -6.250000 -82.637154 -8.989660 +v 6.250000 -82.637154 -8.989660 +v -6.387908 -82.648582 -8.989660 +v 6.387908 -82.648582 -8.989660 +v -6.522055 -82.682549 -8.989660 +v 6.522056 -82.682549 -8.989660 +v -6.648780 -82.738136 -8.989660 +v 6.648781 -82.738136 -8.989660 +v -6.764628 -82.813828 -8.989661 +v 6.764629 -82.813828 -8.989661 +v -6.866439 -82.907547 -8.989661 +v 6.866440 -82.907547 -8.989661 +v -6.951435 -83.016754 -8.989661 +v 6.951436 -83.016754 -8.989661 +v -7.017296 -83.138458 -8.989662 +v 7.017297 -83.138458 -8.989662 +v -7.062229 -83.269341 -8.989662 +v 7.062230 -83.269341 -8.989662 +v -7.085006 -83.405830 -8.989662 +v 7.085007 -83.405830 -8.989662 +v -7.085006 -83.544212 -8.989662 +v 7.085007 -83.544212 -8.989662 +v -7.062229 -83.680710 -8.989663 +v 7.062230 -83.680710 -8.989663 +v -7.017296 -83.811592 -8.989663 +v 7.017297 -83.811592 -8.989663 +v -6.951435 -83.933296 -8.989663 +v 6.951436 -83.933296 -8.989663 +v -6.866439 -84.042496 -8.989664 +v 6.866440 -84.042496 -8.989664 +v -6.764628 -84.136215 -8.989664 +v 6.764629 -84.136215 -8.989664 +v -6.648780 -84.211906 -8.989664 +v 6.648781 -84.211906 -8.989664 +v -6.522055 -84.267494 -8.989664 +v 6.522056 -84.267494 -8.989664 +v -6.387908 -84.301460 -8.989664 +v 6.387908 -84.301460 -8.989664 +v -6.250000 -84.312889 -8.989664 +v 6.250000 -84.312889 -8.989664 +v -6.250000 -85.637154 -8.989668 +v 6.250000 -85.637154 -8.989668 +v 6.263162 -85.637260 -8.989668 +v -6.263239 -85.637260 -8.989668 +v 6.407001 -85.651993 -8.989668 +v -6.407930 -85.652176 -8.989668 +v 6.546165 -85.691246 -8.989668 +v -6.547863 -85.691887 -8.989668 +v 6.676509 -85.753838 -8.989668 +v -6.678818 -85.755203 -8.989668 +v 6.794152 -85.837906 -8.989668 +v -6.796848 -85.840218 -8.989668 +v 6.895588 -85.940948 -8.989668 +v -6.898397 -85.944359 -8.989668 +v 6.977798 -86.059891 -8.989669 +v -6.980404 -86.064499 -8.989669 +v 7.038334 -86.191208 -8.989669 +v -7.040399 -86.197006 -8.989669 +v 7.075392 -86.330971 -8.989669 +v -7.076571 -86.337898 -8.989669 +v 7.087869 -86.475021 -8.989670 +v -7.087831 -86.482918 -8.989670 +v 7.075392 -86.619080 -8.989670 +v -7.073839 -86.627701 -8.989670 +v 7.038334 -86.758842 -8.989670 +v -7.035017 -86.767883 -8.989670 +v 6.977798 -86.890152 -8.989671 +v -6.972538 -86.899246 -8.989671 +v 6.895588 -87.009102 -8.989671 +v -6.888279 -87.017815 -8.989671 +v 6.794152 -87.112144 -8.989671 +v -6.784787 -87.120026 -8.989671 +v 6.676509 -87.196213 -8.989671 +v -6.665174 -87.202797 -8.989671 +v 8.533379 -87.329292 -8.989313 +v -8.533462 -87.329369 -8.989258 +v -8.594150 -87.380875 -8.989210 +v 8.594150 -87.380875 -8.989210 +v -8.648194 -87.445168 -8.989210 +v 8.648194 -87.445168 -8.989210 +v -8.690380 -87.517799 -8.989210 +v 8.690380 -87.517799 -8.989210 +v -8.719452 -87.596596 -8.989210 +v 8.719452 -87.596596 -8.989210 +v -8.734542 -87.679222 -8.989210 +v 8.734542 -87.679222 -8.989210 +v -8.736702 -87.725021 -8.989210 +v 8.736702 -87.725021 -8.989210 +v -6.620530 -87.225021 -8.988286 +v 6.620155 -87.225021 -8.988192 +v -8.536015 -88.343231 -8.987287 +v -8.536711 -88.319527 -8.987206 +v -8.537461 -68.831970 -8.986600 +v 8.537503 -68.908997 -8.986571 +v -8.537914 -87.333801 -8.986163 +v -8.537707 -88.341072 -8.986108 +v 8.538041 -87.333931 -8.986073 +v 8.538322 -88.340286 -8.986005 +v 8.538292 -88.316711 -8.985859 +v -8.543860 -68.830246 -8.982028 +v -7.883975 -67.981125 -8.982002 +v 7.883976 -67.981125 -8.982002 +v -7.927776 -67.984406 -8.982002 +v 7.927777 -67.984406 -8.982002 +v -7.970601 -67.994179 -8.982002 +v 7.970602 -67.994179 -8.982002 +v -8.011490 -68.010223 -8.982002 +v 8.011490 -68.010223 -8.982002 +v -8.049530 -68.032188 -8.982002 +v 8.049530 -68.032188 -8.982002 +v -8.083873 -68.059578 -8.982002 +v 8.083873 -68.059578 -8.982002 +v -8.113750 -68.091774 -8.982002 +v 8.113750 -68.091774 -8.982002 +v -8.138493 -68.128067 -8.982002 +v 8.138493 -68.128067 -8.982002 +v 8.504519 -68.762047 -8.982004 +v 8.521522 -68.796524 -8.982004 +v 8.533878 -68.832924 -8.982004 +v 8.541378 -68.870628 -8.982004 +v 8.543893 -68.908997 -8.982004 +v -8.553420 -88.289642 -8.975130 +v 8.553275 -88.289665 -8.974838 +v -8.558306 -68.826378 -8.971130 +v 8.558770 -87.357056 -8.970764 +v -8.565585 -87.365700 -8.965353 +v 8.568390 -88.299683 -8.963025 +v -8.568562 -88.299446 -8.962698 +v -8.572797 -88.249695 -8.959601 +v -8.725821 -87.725021 -8.959543 +v 8.725821 -87.725021 -8.959543 +v -8.721490 -87.816856 -8.959543 +v 8.721490 -87.816856 -8.959543 +v -8.691235 -87.982513 -8.959544 +v 8.691235 -87.982513 -8.959544 +v -8.632949 -88.140511 -8.959544 +v 8.632949 -88.140511 -8.959544 +v 8.572713 -88.249664 -8.959397 +v -6.250000 -82.667725 -8.953865 +v 6.250000 -82.667725 -8.953865 +v -6.382875 -82.678734 -8.953865 +v 6.382876 -82.678734 -8.953865 +v -6.512127 -82.711472 -8.953865 +v 6.512128 -82.711472 -8.953865 +v -6.634230 -82.765030 -8.953865 +v 6.634231 -82.765030 -8.953865 +v -6.745851 -82.837952 -8.953865 +v 6.745852 -82.837952 -8.953865 +v -6.843946 -82.928253 -8.953865 +v 6.843946 -82.928253 -8.953865 +v -6.925839 -83.033470 -8.953865 +v 6.925840 -83.033470 -8.953865 +v -6.989298 -83.150734 -8.953866 +v 6.989299 -83.150734 -8.953866 +v -7.032591 -83.276840 -8.953866 +v 7.032592 -83.276840 -8.953866 +v -7.054537 -83.408356 -8.953866 +v 7.054538 -83.408356 -8.953866 +v -7.054537 -83.541687 -8.953867 +v 7.054538 -83.541687 -8.953867 +v -7.032591 -83.673203 -8.953867 +v 7.032592 -83.673203 -8.953867 +v -6.989298 -83.799309 -8.953867 +v 6.989299 -83.799309 -8.953867 +v -6.925839 -83.916573 -8.953868 +v 6.925840 -83.916573 -8.953868 +v -6.843946 -84.021790 -8.953868 +v 6.843946 -84.021790 -8.953868 +v -6.745851 -84.112091 -8.953868 +v 6.745852 -84.112091 -8.953868 +v -6.634230 -84.185020 -8.953868 +v 6.634231 -84.185020 -8.953868 +v -6.512127 -84.238579 -8.953868 +v 6.512128 -84.238579 -8.953868 +v -6.382875 -84.271309 -8.953869 +v 6.382876 -84.271309 -8.953869 +v -6.250000 -84.282318 -8.953869 +v 6.250000 -84.282318 -8.953869 +v -6.250000 -85.667725 -8.953872 +v 6.250000 -85.667725 -8.953872 +v -6.548015 -87.225021 -8.953534 +v 8.581930 -88.279907 -8.951437 +v -8.583421 -87.391426 -8.950246 +v 8.583437 -87.391449 -8.950232 +v -6.250000 -85.670471 -8.950038 +v 6.250000 -85.670471 -8.950038 +v 6.262638 -85.670570 -8.950038 +v -6.262712 -85.670570 -8.950038 +v 6.400758 -85.684723 -8.950038 +v -6.401651 -85.684891 -8.950038 +v 6.534390 -85.722404 -8.950038 +v -6.536021 -85.723022 -8.950038 +v 6.659553 -85.782509 -8.950038 +v -6.661768 -85.783821 -8.950038 +v 6.772518 -85.863235 -8.950038 +v -6.775106 -85.865456 -8.950038 +v 6.869922 -85.962181 -8.950038 +v -6.872619 -85.965462 -8.950038 +v 6.948863 -86.076401 -8.950039 +v -6.951365 -86.080818 -8.950039 +v 7.006990 -86.202492 -8.950039 +v -7.008974 -86.208061 -8.950039 +v 7.042575 -86.336700 -8.950039 +v -7.043706 -86.343353 -8.950039 +v 7.054555 -86.475021 -8.950040 +v -7.054519 -86.482605 -8.950040 +v 7.042575 -86.613350 -8.950040 +v -7.041083 -86.621635 -8.950040 +v 7.006990 -86.747559 -8.950040 +v -7.003807 -86.756241 -8.950040 +v 6.948863 -86.873650 -8.950041 +v -6.943810 -86.882378 -8.950041 +v 6.869922 -86.987869 -8.950041 +v -6.862904 -86.996231 -8.950041 +v 6.772518 -87.086815 -8.950041 +v -6.763524 -87.094383 -8.950041 +v 6.659553 -87.167542 -8.950041 +v -6.648667 -87.173859 -8.950041 +v 6.541121 -87.225021 -8.949948 +v -6.540773 -87.225021 -8.949820 +v -8.584620 -88.221382 -8.948995 +v 6.539008 -87.225021 -8.948858 +v 8.585164 -88.220078 -8.948577 +v 6.533556 -87.225021 -8.946033 +v -8.632591 -87.456139 -8.941986 +v 8.632591 -87.456139 -8.941986 +v -8.673123 -87.525917 -8.941987 +v 8.673123 -87.525917 -8.941987 +v -8.701056 -87.601631 -8.941987 +v 8.701056 -87.601631 -8.941987 +v -8.715553 -87.681015 -8.941987 +v 8.715553 -87.681015 -8.941987 +v -8.717629 -87.725021 -8.941987 +v 8.717629 -87.725021 -8.941987 +v 8.592626 -87.406792 -8.941961 +v -8.592744 -87.406998 -8.941853 +v 8.593551 -87.408432 -8.941107 +v -6.519929 -87.225021 -8.938906 +v -8.598035 -87.416656 -8.936905 +v -8.603519 -68.814270 -8.931083 +v -7.883975 -67.921463 -8.931047 +v 7.883976 -67.921463 -8.931047 +v -7.936667 -67.925407 -8.931047 +v 7.936668 -67.925407 -8.931047 +v -7.988185 -67.937164 -8.931047 +v 7.988186 -67.937164 -8.931047 +v -8.037375 -67.956474 -8.931047 +v 8.037375 -67.956474 -8.931047 +v -8.083138 -67.982895 -8.931047 +v 8.083138 -67.982895 -8.931047 +v -8.124452 -68.015846 -8.931047 +v 8.124452 -68.015846 -8.931047 +v -8.160394 -68.054581 -8.931047 +v 8.160394 -68.054581 -8.931047 +v -8.190161 -68.098236 -8.931047 +v 8.190161 -68.098236 -8.931047 +v 8.556187 -68.732216 -8.931049 +v 8.576641 -68.773697 -8.931049 +v 8.591507 -68.817490 -8.931049 +v 8.600529 -68.862846 -8.931049 +v 8.603553 -68.908997 -8.931049 +v -8.604242 -87.428886 -8.930902 +v -8.603934 -88.245407 -8.930653 +v 8.604518 -87.429459 -8.930629 +v 8.604028 -88.245255 -8.930603 +v 8.605216 -88.163345 -8.929622 +v -8.604890 -88.163635 -8.929348 +v 8.614398 -88.132065 -8.920217 +v -8.614161 -88.131966 -8.919801 +v -8.616146 -88.224815 -8.918015 +v -8.619739 -87.465050 -8.914749 +v -8.619178 -68.810066 -8.914701 +v -6.250000 -82.692322 -8.913726 +v 6.250000 -82.692322 -8.913726 +v -6.378828 -82.703003 -8.913726 +v 6.378829 -82.703003 -8.913726 +v -6.504141 -82.734734 -8.913726 +v 6.504142 -82.734734 -8.913726 +v -6.622522 -82.786659 -8.913726 +v 6.622523 -82.786659 -8.913726 +v -6.730742 -82.857361 -8.913726 +v 6.730743 -82.857361 -8.913726 +v -6.825850 -82.944916 -8.913726 +v 6.825850 -82.944916 -8.913726 +v -6.905248 -83.046928 -8.913727 +v 6.905249 -83.046928 -8.913727 +v -6.966774 -83.160614 -8.913727 +v 6.966774 -83.160614 -8.913727 +v -7.008748 -83.282883 -8.913727 +v 7.008749 -83.282883 -8.913727 +v -7.030025 -83.410385 -8.913727 +v 7.030025 -83.410385 -8.913727 +v -7.030025 -83.539658 -8.913728 +v 7.030025 -83.539658 -8.913728 +v -7.008748 -83.667160 -8.913728 +v 7.008749 -83.667160 -8.913728 +v -6.966774 -83.789429 -8.913728 +v 6.966774 -83.789429 -8.913728 +v -6.905248 -83.903114 -8.913729 +v 6.905249 -83.903114 -8.913729 +v -6.825850 -84.005127 -8.913729 +v 6.825850 -84.005127 -8.913729 +v -6.730742 -84.092682 -8.913729 +v 6.730743 -84.092682 -8.913729 +v -6.622522 -84.163383 -8.913729 +v 6.622523 -84.163383 -8.913729 +v -6.504141 -84.215309 -8.913729 +v 6.504142 -84.215309 -8.913729 +v -6.378828 -84.247047 -8.913729 +v 6.378829 -84.247047 -8.913729 +v -6.250000 -84.257721 -8.913729 +v 6.250000 -84.257721 -8.913729 +v -6.250000 -85.692322 -8.913733 +v 6.250000 -85.692322 -8.913733 +v -8.701145 -87.725021 -8.913448 +v 8.701145 -87.725021 -8.913448 +v -8.696924 -87.814537 -8.913448 +v 8.696924 -87.814537 -8.913448 +v -8.667434 -87.976006 -8.913448 +v 8.667434 -87.976006 -8.913448 +v -8.620279 -88.108498 -8.913259 +v 8.620902 -88.106987 -8.913201 +v 8.621449 -87.469681 -8.912841 +v -8.621896 -88.101883 -8.911492 +v -8.622888 -87.473701 -8.911219 +v 8.623312 -88.096931 -8.910516 +v -6.250000 -85.696472 -8.905270 +v 6.250000 -85.696472 -8.905270 +v 6.262229 -85.696564 -8.905270 +v -6.262301 -85.696571 -8.905270 +v 6.395886 -85.710258 -8.905270 +v -6.396750 -85.710426 -8.905270 +v 6.525198 -85.746735 -8.905270 +v -6.526776 -85.747330 -8.905270 +v 6.646316 -85.804893 -8.905270 +v -6.648459 -85.806168 -8.905270 +v 6.755630 -85.883011 -8.905270 +v -6.758134 -85.885155 -8.905270 +v 6.849885 -85.978752 -8.905270 +v -6.852496 -85.981926 -8.905270 +v 6.926275 -86.089287 -8.905271 +v -6.928697 -86.093559 -8.905271 +v 6.982524 -86.211296 -8.905271 +v -6.984443 -86.216690 -8.905271 +v 7.016960 -86.341171 -8.905271 +v -7.018054 -86.347603 -8.905271 +v 7.028553 -86.475021 -8.905272 +v -7.028516 -86.482361 -8.905272 +v 7.016960 -86.608879 -8.905272 +v -7.015515 -86.616898 -8.905272 +v 6.982524 -86.738747 -8.905272 +v -6.979444 -86.747154 -8.905272 +v 6.926275 -86.860764 -8.905272 +v -6.921385 -86.869209 -8.905272 +v 6.849885 -86.971291 -8.905272 +v -6.843093 -86.979385 -8.905272 +v 6.755630 -87.067039 -8.905272 +v -6.746926 -87.074364 -8.905272 +v 6.646316 -87.145157 -8.905272 +v -6.635783 -87.151276 -8.905272 +v 6.525198 -87.203316 -8.905273 +v -6.513011 -87.207802 -8.905273 +v 6.455790 -87.225021 -8.903538 +v -6.455392 -87.225021 -8.903288 +v -8.648888 -87.537323 -8.898670 +v 8.648888 -87.537323 -8.898670 +v -8.675219 -87.608696 -8.898670 +v 8.675219 -87.608696 -8.898670 +v -8.688887 -87.683540 -8.898670 +v 8.688887 -87.683540 -8.898670 +v -8.690844 -87.725021 -8.898670 +v 8.690844 -87.725021 -8.898670 +v -8.634230 -87.510406 -8.897684 +v 8.641978 -87.542244 -8.887949 +v -8.643698 -87.550362 -8.885770 +v 8.645611 -87.970467 -8.883307 +v -8.645625 -87.970352 -8.883287 +v -8.673293 -87.797256 -8.880381 +v -8.648885 -87.942978 -8.879031 +v 8.649879 -87.933746 -8.877720 +v 8.652494 -88.155724 -8.874166 +v -8.668841 -87.725021 -8.872337 +v 8.668841 -87.725021 -8.872337 +v 8.664763 -87.811493 -8.872337 +v -8.653898 -87.614296 -8.872293 +v 8.653905 -87.614388 -8.872276 +v -8.654478 -68.800606 -8.871430 +v -7.883975 -67.870506 -8.871387 +v 7.883976 -67.870506 -8.871387 +v -7.944263 -67.875031 -8.871387 +v 7.944263 -67.875031 -8.871387 +v -8.003206 -67.888474 -8.871387 +v 8.003206 -67.888474 -8.871387 +v -8.059484 -67.910568 -8.871387 +v 8.059484 -67.910568 -8.871387 +v -8.111842 -67.940796 -8.871387 +v 8.111842 -67.940796 -8.871387 +v -8.159110 -67.978485 -8.871387 +v 8.159110 -67.978485 -8.871387 +v -8.200232 -68.022804 -8.871387 +v 8.200232 -68.022804 -8.871387 +v -8.234289 -68.072754 -8.871387 +v 8.234289 -68.072754 -8.871387 +v 8.600315 -68.706734 -8.871389 +v 8.623717 -68.754196 -8.871389 +v 8.640725 -68.804298 -8.871389 +v 8.651048 -68.856194 -8.871389 +v 8.654509 -68.908997 -8.871389 +v 8.654865 -88.150726 -8.870916 +v 8.654916 -87.623413 -8.870884 +v -8.655128 -88.150162 -8.870590 +v -6.250000 -82.710342 -8.870234 +v 6.250000 -82.710342 -8.870234 +v -6.375863 -82.720772 -8.870234 +v 6.375864 -82.720772 -8.870234 +v -6.498291 -82.751770 -8.870234 +v 6.498292 -82.751770 -8.870234 +v -6.613948 -82.802505 -8.870234 +v 6.613949 -82.802505 -8.870234 +v -6.719677 -82.871582 -8.870234 +v 6.719678 -82.871582 -8.870234 +v -6.812595 -82.957115 -8.870234 +v 6.812596 -82.957115 -8.870234 +v -6.890167 -83.056778 -8.870234 +v 6.890168 -83.056778 -8.870234 +v -6.950275 -83.167854 -8.870234 +v 6.950276 -83.167854 -8.870234 +v -6.991283 -83.287300 -8.870234 +v 6.991284 -83.287300 -8.870234 +v -7.012071 -83.411873 -8.870235 +v 7.012072 -83.411873 -8.870235 +v -7.012071 -83.538170 -8.870235 +v 7.012072 -83.538170 -8.870235 +v -6.991283 -83.662743 -8.870235 +v 6.991284 -83.662743 -8.870235 +v -6.950275 -83.782196 -8.870236 +v 6.950276 -83.782196 -8.870236 +v -6.890167 -83.893265 -8.870236 +v 6.890168 -83.893265 -8.870236 +v -6.812595 -83.992928 -8.870236 +v 6.812596 -83.992928 -8.870236 +v -6.719677 -84.078468 -8.870236 +v 6.719678 -84.078468 -8.870236 +v -6.613948 -84.147545 -8.870237 +v 6.613949 -84.147545 -8.870237 +v -6.498291 -84.198273 -8.870237 +v 6.498292 -84.198273 -8.870237 +v -6.375863 -84.229279 -8.870237 +v 6.375864 -84.229279 -8.870237 +v -6.250000 -84.239708 -8.870237 +v 6.250000 -84.239708 -8.870237 +v -6.250000 -85.710342 -8.870240 +v 6.250000 -85.710342 -8.870240 +v -8.655663 -87.630692 -8.869853 +v 6.394467 -87.225021 -8.867422 +v 8.658508 -87.811287 -8.865870 +v -8.659051 -68.799385 -8.865033 +v 8.659075 -68.908997 -8.865000 +v 8.659224 -88.141335 -8.864799 +v -8.659422 -87.686150 -8.864544 +v 8.659423 -87.686188 -8.864541 +v -8.659651 -87.773613 -8.864230 +v -8.659663 -88.140366 -8.864223 +v 8.659719 -87.694733 -8.864120 +v -8.659905 -87.701744 -8.863854 +v 8.660055 -87.748436 -8.863647 +v 8.660093 -87.712166 -8.863587 +v -8.660176 -87.725021 -8.863470 +v 8.660176 -87.725021 -8.863470 +v -6.380760 -87.225021 -8.859118 +v -6.250000 -85.714394 -8.856697 +v 6.250000 -85.714394 -8.856697 +v 6.261949 -85.714485 -8.856697 +v -6.262019 -85.714485 -8.856697 +v 6.392529 -85.727859 -8.856697 +v -6.393373 -85.728027 -8.856697 +v 6.518866 -85.763496 -8.856698 +v -6.520405 -85.764076 -8.856698 +v 6.637195 -85.820313 -8.856698 +v -6.639289 -85.821556 -8.856698 +v 6.743991 -85.896637 -8.856698 +v -6.746439 -85.898735 -8.856698 +v 6.836079 -85.990173 -8.856698 +v -6.838628 -85.993279 -8.856698 +v 6.910710 -86.098160 -8.856699 +v -6.913075 -86.102341 -8.856699 +v 6.965665 -86.217369 -8.856699 +v -6.967538 -86.222633 -8.856699 +v 6.999307 -86.344246 -8.856699 +v -7.000377 -86.350540 -8.856699 +v 7.010633 -86.475021 -8.856699 +v -7.010599 -86.482193 -8.856699 +v 6.999307 -86.605797 -8.856700 +v -6.997897 -86.613632 -8.856700 +v 6.965665 -86.732681 -8.856700 +v -6.962655 -86.740891 -8.856700 +v 6.910710 -86.851883 -8.856700 +v -6.905933 -86.860138 -8.856700 +v 6.836079 -86.959869 -8.856701 +v -6.829443 -86.967781 -8.856701 +v 6.743991 -87.053413 -8.856701 +v -6.735489 -87.060570 -8.856701 +v 6.637195 -87.129730 -8.856701 +v -6.626904 -87.135712 -8.856701 +v 6.518866 -87.186554 -8.856701 +v -6.506958 -87.190941 -8.856701 +v 6.392529 -87.222183 -8.856701 +v 6.373562 -87.225021 -8.854689 +v -6.373351 -87.225021 -8.854586 +v -8.669722 -68.796524 -8.849219 +v -8.683119 -88.084595 -8.827445 +v -6.250000 -82.721329 -8.824458 +v 6.250000 -82.721329 -8.824458 +v -6.374053 -82.731606 -8.824459 +v 6.374053 -82.731606 -8.824459 +v -6.494723 -82.762169 -8.824459 +v 6.494724 -82.762169 -8.824459 +v -6.608717 -82.812172 -8.824459 +v 6.608718 -82.812172 -8.824459 +v -6.712927 -82.880249 -8.824459 +v 6.712928 -82.880249 -8.824459 +v -6.804511 -82.964561 -8.824459 +v 6.804512 -82.964561 -8.824459 +v -6.880967 -83.062790 -8.824459 +v 6.880968 -83.062790 -8.824459 +v -6.940213 -83.172264 -8.824459 +v 6.940214 -83.172264 -8.824459 +v -6.980629 -83.290001 -8.824460 +v 6.980630 -83.290001 -8.824460 +v -7.001119 -83.412781 -8.824460 +v 7.001120 -83.412781 -8.824460 +v -7.001119 -83.537262 -8.824460 +v 7.001120 -83.537262 -8.824460 +v -6.980629 -83.660042 -8.824461 +v 6.980630 -83.660042 -8.824461 +v -6.940213 -83.777779 -8.824461 +v 6.940214 -83.777779 -8.824461 +v -6.880967 -83.887253 -8.824461 +v 6.880968 -83.887253 -8.824461 +v -6.804511 -83.985489 -8.824461 +v 6.804512 -83.985489 -8.824461 +v -6.712927 -84.069794 -8.824462 +v 6.712928 -84.069794 -8.824462 +v -6.608717 -84.137878 -8.824462 +v 6.608718 -84.137878 -8.824462 +v -6.494723 -84.187881 -8.824462 +v 6.494724 -84.187881 -8.824462 +v -6.374053 -84.218437 -8.824462 +v 6.374053 -84.218437 -8.824462 +v -6.250000 -84.228714 -8.824462 +v 6.250000 -84.228714 -8.824462 +v -6.250000 -85.721329 -8.824466 +v 6.250000 -85.721329 -8.824466 +v -6.250000 -85.723694 -8.805767 +v 6.250000 -85.723694 -8.805767 +v 6.261801 -85.723785 -8.805767 +v -6.261871 -85.723785 -8.805767 +v 6.390786 -85.737000 -8.805767 +v -6.391620 -85.737160 -8.805767 +v 6.515577 -85.772194 -8.805768 +v -6.517099 -85.772774 -8.805768 +v 6.632460 -85.828323 -8.805768 +v -6.634529 -85.829552 -8.805768 +v 6.737951 -85.903709 -8.805768 +v -6.740368 -85.905785 -8.805768 +v 6.828911 -85.996109 -8.805768 +v -6.831429 -85.999168 -8.805768 +v 6.902630 -86.102768 -8.805769 +v -6.904967 -86.106895 -8.805769 +v 6.956913 -86.220520 -8.805769 +v -6.958765 -86.225723 -8.805769 +v 6.990144 -86.345848 -8.805769 +v -6.991200 -86.352058 -8.805769 +v 7.001331 -86.475021 -8.805769 +v -7.001297 -86.482101 -8.805769 +v 6.990144 -86.604202 -8.805770 +v -6.988751 -86.611938 -8.805770 +v 6.956913 -86.729530 -8.805770 +v -6.953939 -86.737640 -8.805770 +v 6.902630 -86.847275 -8.805770 +v -6.897913 -86.855431 -8.805770 +v 6.828911 -86.953941 -8.805771 +v -6.822358 -86.961754 -8.805771 +v 6.737951 -87.046341 -8.805771 +v -6.729553 -87.053406 -8.805771 +v 6.632460 -87.121727 -8.805771 +v -6.622294 -87.127632 -8.805771 +v 6.515577 -87.177849 -8.805771 +v -6.503816 -87.182182 -8.805771 +v 6.390786 -87.213043 -8.805771 +v -6.377687 -87.215424 -8.805771 +v -6.293362 -87.225021 -8.804871 +v 6.293362 -87.225021 -8.804866 +v -8.695483 -68.789627 -8.804531 +v -7.883975 -67.829514 -8.804489 +v 7.883976 -67.829514 -8.804489 +v -7.950373 -67.834488 -8.804489 +v 7.950374 -67.834488 -8.804489 +v -8.015289 -67.849304 -8.804489 +v 8.015289 -67.849304 -8.804489 +v -8.077271 -67.873627 -8.804489 +v 8.077271 -67.873627 -8.804489 +v -8.134936 -67.906929 -8.804489 +v 8.134936 -67.906929 -8.804489 +v -8.186995 -67.948441 -8.804489 +v 8.186995 -67.948441 -8.804489 +v -8.232284 -67.997246 -8.804489 +v 8.232284 -67.997246 -8.804489 +v -8.269792 -68.052269 -8.804489 +v 8.269792 -68.052269 -8.804489 +v 8.635818 -68.686234 -8.804491 +v 8.661592 -68.738510 -8.804491 +v 8.680324 -68.793686 -8.804491 +v 8.691691 -68.850838 -8.804491 +v 8.695503 -68.908997 -8.804491 +v -8.702402 -68.787766 -8.790410 +v 8.702414 -68.908997 -8.790386 +v 8.702538 -88.029442 -8.790133 +v -8.702914 -88.028267 -8.789547 +v 6.261930 -87.225021 -8.785077 +v -6.253335 -87.225021 -8.779648 +v -8.707968 -68.786278 -8.778160 +v -6.250000 -82.725021 -8.777529 +v 6.250000 -82.725021 -8.777529 +v -6.373446 -82.735252 -8.777529 +v 6.373446 -82.735252 -8.777529 +v -6.493525 -82.765656 -8.777529 +v 6.493526 -82.765656 -8.777529 +v -6.606960 -82.815414 -8.777529 +v 6.606961 -82.815414 -8.777529 +v -6.710660 -82.883163 -8.777529 +v 6.710660 -82.883163 -8.777529 +v -6.801793 -82.967064 -8.777529 +v 6.801794 -82.967064 -8.777529 +v -6.877874 -83.064812 -8.777530 +v 6.877875 -83.064812 -8.777530 +v -6.936830 -83.173752 -8.777530 +v 6.936831 -83.173752 -8.777530 +v -6.977049 -83.290909 -8.777530 +v 6.977050 -83.290909 -8.777530 +v -6.997437 -83.413086 -8.777531 +v 6.997438 -83.413086 -8.777531 +v -6.997437 -83.536957 -8.777531 +v 6.997438 -83.536957 -8.777531 +v -6.977049 -83.659134 -8.777531 +v 6.977050 -83.659134 -8.777531 +v -6.936830 -83.776291 -8.777531 +v 6.936831 -83.776291 -8.777531 +v -6.877874 -83.885231 -8.777532 +v 6.877875 -83.885231 -8.777532 +v -6.801793 -83.982986 -8.777532 +v 6.801794 -83.982986 -8.777532 +v -6.710660 -84.066879 -8.777532 +v 6.710660 -84.066879 -8.777532 +v -6.606960 -84.134628 -8.777532 +v 6.606961 -84.134628 -8.777532 +v -6.493525 -84.184387 -8.777532 +v 6.493526 -84.184387 -8.777532 +v -6.373446 -84.214790 -8.777533 +v 6.373446 -84.214790 -8.777533 +v -6.250000 -84.225021 -8.777533 +v 6.250000 -84.225021 -8.777533 +v -6.250000 -85.725021 -8.777535 +v 6.250000 -85.725021 -8.777535 +v 6.261780 -85.725113 -8.777535 +v -6.261850 -85.725121 -8.777535 +v -6.373446 -85.735252 -8.777535 +v 6.373446 -85.735252 -8.777535 +v 6.390536 -85.738312 -8.777535 +v -6.391368 -85.738464 -8.777535 +v -6.493525 -85.765663 -8.777535 +v 6.493526 -85.765663 -8.777535 +v 6.515107 -85.773438 -8.777535 +v -6.516625 -85.774017 -8.777535 +v -6.606960 -85.815422 -8.777535 +v 6.606961 -85.815422 -8.777535 +v 6.631782 -85.829468 -8.777535 +v -6.633848 -85.830696 -8.777535 +v -6.710660 -85.883171 -8.777536 +v 6.710660 -85.883171 -8.777536 +v 6.737086 -85.904716 -8.777536 +v -6.739501 -85.906792 -8.777536 +v -6.801793 -85.967064 -8.777536 +v 6.801794 -85.967064 -8.777536 +v 6.827886 -85.996956 -8.777536 +v -6.830400 -86.000015 -8.777536 +v -6.877874 -86.064812 -8.777536 +v 6.877875 -86.064812 -8.777536 +v 6.901474 -86.103432 -8.777536 +v -6.903807 -86.107552 -8.777536 +v -6.936830 -86.173752 -8.777536 +v 6.936831 -86.173752 -8.777536 +v 6.955660 -86.220970 -8.777536 +v -6.957509 -86.226166 -8.777536 +v -6.977049 -86.290909 -8.777536 +v 6.977050 -86.290909 -8.777536 +v 6.988832 -86.346077 -8.777537 +v -6.989887 -86.352280 -8.777537 +v -6.997437 -86.413086 -8.777537 +v 6.997438 -86.413086 -8.777537 +v 7.000000 -86.475021 -8.777537 +v -6.999967 -86.482094 -8.777537 +v -6.997437 -86.536957 -8.777537 +v 6.997438 -86.536957 -8.777537 +v 6.988832 -86.603973 -8.777537 +v -6.987442 -86.611694 -8.777537 +v -6.977049 -86.659134 -8.777538 +v 6.977050 -86.659134 -8.777538 +v 6.955660 -86.729080 -8.777538 +v -6.952693 -86.737175 -8.777538 +v -6.936830 -86.776299 -8.777538 +v 6.936831 -86.776299 -8.777538 +v 6.901474 -86.846619 -8.777538 +v -6.896763 -86.854752 -8.777538 +v -6.877874 -86.885239 -8.777538 +v 6.877875 -86.885239 -8.777538 +v 6.827886 -86.953094 -8.777538 +v -6.821343 -86.960892 -8.777538 +v -6.801793 -86.982986 -8.777538 +v 6.801794 -86.982986 -8.777538 +v 6.737086 -87.045326 -8.777538 +v -6.728703 -87.052383 -8.777538 +v -6.710660 -87.066879 -8.777538 +v 6.710660 -87.066879 -8.777538 +v 6.631782 -87.120583 -8.777539 +v -6.621634 -87.126472 -8.777539 +v -6.606960 -87.134628 -8.777539 +v 6.606961 -87.134628 -8.777539 +v 6.515107 -87.176605 -8.777539 +v -6.503366 -87.180931 -8.777539 +v -6.493525 -87.184387 -8.777539 +v 6.493526 -87.184387 -8.777539 +v 6.390536 -87.211739 -8.777539 +v -6.377460 -87.214111 -8.777539 +v 6.373446 -87.214798 -8.777539 +v 6.261780 -87.224930 -8.777539 +v -6.250000 -87.225021 -8.777539 +v 6.250000 -87.225021 -8.777539 +v 8.708680 -88.009506 -8.776550 +v 8.714624 -87.988655 -8.762262 +v -8.714772 -87.988113 -8.762125 +v -8.725518 -68.781578 -8.732035 +v -7.883975 -67.799484 -8.732002 +v 7.883976 -67.799484 -8.732002 +v -7.954847 -67.804794 -8.732002 +v 7.954848 -67.804794 -8.732002 +v -8.024139 -67.820618 -8.732002 +v 8.024139 -67.820618 -8.732002 +v -8.090299 -67.846573 -8.732002 +v 8.090299 -67.846573 -8.732002 +v -8.151849 -67.882118 -8.732002 +v 8.151849 -67.882118 -8.732002 +v -8.207417 -67.926430 -8.732002 +v 8.207417 -67.926430 -8.732002 +v -8.255757 -67.978531 -8.732002 +v 8.255757 -67.978531 -8.732002 +v -8.295794 -68.037254 -8.732002 +v 8.295794 -68.037254 -8.732002 +v 8.661819 -68.671227 -8.732004 +v 8.689331 -68.727020 -8.732004 +v 8.709326 -68.785919 -8.732004 +v 8.721459 -68.846924 -8.732004 +v 8.725529 -68.908997 -8.732005 +v -8.732276 -68.779770 -8.709442 +v 8.732279 -68.908997 -8.709433 +v -8.732450 -87.911552 -8.708911 +v 8.732429 -87.911659 -8.708831 +v -8.733816 -68.779358 -8.703678 +v -8.735166 -87.896629 -8.698441 +v -8.743841 -68.776665 -8.655730 +v -7.883975 -67.781174 -8.655711 +v 7.883976 -67.781174 -8.655711 +v -7.957579 -67.786690 -8.655711 +v 7.957580 -67.786690 -8.655711 +v -8.029537 -67.803116 -8.655711 +v 8.029537 -67.803116 -8.655711 +v -8.098246 -67.830078 -8.655711 +v 8.098246 -67.830078 -8.655711 +v -8.162167 -67.866989 -8.655711 +v 8.162167 -67.866989 -8.655711 +v -8.219873 -67.913010 -8.655711 +v 8.219873 -67.913010 -8.655711 +v -8.270078 -67.967110 -8.655711 +v 8.270078 -67.967110 -8.655711 +v -8.311656 -68.028099 -8.655711 +v 8.311656 -68.028099 -8.655711 +v 8.677682 -68.662064 -8.655713 +v 8.706252 -68.720009 -8.655713 +v 8.727016 -68.781174 -8.655713 +v 8.739619 -68.844536 -8.655713 +v 8.743844 -68.908997 -8.655713 +v 8.745569 -87.819061 -8.643839 +v 8.746379 -87.810043 -8.637493 +v -8.747477 -68.775696 -8.627674 +v -8.747810 -87.791168 -8.624223 +v -7.883975 -67.775017 -8.577494 +v 7.883976 -67.775017 -8.577494 +v -7.958496 -67.780609 -8.577494 +v 7.958497 -67.780609 -8.577494 +v -8.031352 -67.797226 -8.577494 +v 8.031352 -67.797226 -8.577494 +v -8.100917 -67.824539 -8.577494 +v 8.100917 -67.824539 -8.577494 +v -8.165634 -67.861900 -8.577494 +v 8.165634 -67.861900 -8.577494 +v -8.224061 -67.908485 -8.577494 +v 8.224061 -67.908485 -8.577494 +v -8.274891 -67.963280 -8.577494 +v 8.274891 -67.963280 -8.577494 +v -8.316987 -68.025017 -8.577494 +v 8.316987 -68.025017 -8.577494 +v 8.683013 -68.658989 -8.577496 +v 8.711940 -68.717651 -8.577496 +v -8.750000 -68.775017 -8.577496 +v 8.732964 -68.779579 -8.577496 +v 8.745723 -68.843727 -8.577497 +v 8.750000 -68.908997 -8.577497 +v -12.578540 -80.304520 -8.577523 +v 12.578540 -80.304520 -8.577523 +v -12.335430 -80.311523 -8.577523 +v 12.335430 -80.311523 -8.577523 +v -12.819580 -80.336906 -8.577523 +v 12.819580 -80.336906 -8.577523 +v -12.096640 -80.357712 -8.577523 +v 12.096640 -80.357712 -8.577523 +v -13.052220 -80.407814 -8.577523 +v 13.052220 -80.407814 -8.577523 +v -11.868470 -80.441887 -8.577523 +v 11.868470 -80.441887 -8.577523 +v -13.270350 -80.515388 -8.577523 +v 13.270350 -80.515388 -8.577523 +v -11.656890 -80.561836 -8.577523 +v 11.656890 -80.561836 -8.577523 +v -11.467480 -80.714394 -8.577524 +v 11.467480 -80.714394 -8.577524 +v -11.305210 -80.895554 -8.577524 +v 11.305210 -80.895554 -8.577524 +v -11.174360 -81.100563 -8.577525 +v 11.174360 -81.100563 -8.577525 +v -11.078350 -81.324020 -8.577525 +v 11.078350 -81.324020 -8.577525 +v -11.019720 -81.560059 -8.577526 +v 11.019720 -81.560059 -8.577526 +v -14.938910 -81.603554 -8.577526 +v 14.938910 -81.603554 -8.577526 +v -11.000000 -81.802467 -8.577526 +v 11.000000 -81.802467 -8.577526 +v -13.500000 -82.675026 -8.577528 +v 13.500000 -82.675026 -8.577528 +v -13.681050 -82.690025 -8.577528 +v -13.318950 -82.690025 -8.577528 +v 13.318950 -82.690025 -8.577528 +v 13.681050 -82.690025 -8.577528 +v -13.857170 -82.734627 -8.577529 +v -13.142830 -82.734627 -8.577529 +v 13.142830 -82.734627 -8.577529 +v 13.857170 -82.734627 -8.577529 +v -14.023540 -82.807602 -8.577529 +v -12.976460 -82.807602 -8.577529 +v 12.976460 -82.807602 -8.577529 +v 14.023540 -82.807602 -8.577529 +v -16.518681 -82.817017 -8.577529 +v 16.518681 -82.817017 -8.577529 +v -14.175630 -82.906967 -8.577529 +v -12.824370 -82.906967 -8.577529 +v 12.824370 -82.906967 -8.577529 +v 14.175630 -82.906967 -8.577529 +v -14.309300 -83.030014 -8.577529 +v -12.690700 -83.030014 -8.577529 +v 12.690700 -83.030014 -8.577529 +v 14.309300 -83.030014 -8.577529 +v -14.420880 -83.173378 -8.577530 +v -12.579120 -83.173378 -8.577530 +v 12.579120 -83.173378 -8.577530 +v 14.420880 -83.173378 -8.577530 +v -14.507350 -83.333160 -8.577530 +v -12.492650 -83.333160 -8.577530 +v 12.492650 -83.333160 -8.577530 +v 14.507350 -83.333160 -8.577530 +v -14.566340 -83.504990 -8.577530 +v -12.433660 -83.504990 -8.577530 +v 12.433660 -83.504990 -8.577530 +v 14.566340 -83.504990 -8.577530 +v -14.596240 -83.684189 -8.577531 +v -12.403760 -83.684189 -8.577531 +v 12.403760 -83.684189 -8.577531 +v 14.596240 -83.684189 -8.577531 +v -14.596240 -83.865860 -8.577531 +v -12.403760 -83.865860 -8.577531 +v 12.403760 -83.865860 -8.577531 +v 14.596240 -83.865860 -8.577531 +v -14.566340 -84.045059 -8.577532 +v -12.433660 -84.045059 -8.577532 +v 12.433660 -84.045059 -8.577532 +v 14.566340 -84.045059 -8.577532 +v -18.000280 -84.148575 -8.577532 +v 18.000280 -84.148575 -8.577532 +v -14.507350 -84.216888 -8.577532 +v -12.492650 -84.216888 -8.577532 +v 12.492650 -84.216888 -8.577532 +v 14.507350 -84.216888 -8.577532 +v -14.420880 -84.376663 -8.577533 +v -12.579120 -84.376663 -8.577533 +v 12.579120 -84.376663 -8.577533 +v 14.420880 -84.376663 -8.577533 +v -14.309300 -84.520035 -8.577533 +v -12.690700 -84.520035 -8.577533 +v 12.690700 -84.520035 -8.577533 +v 14.309300 -84.520035 -8.577533 +v -14.175630 -84.643082 -8.577533 +v -12.824370 -84.643082 -8.577533 +v 12.824370 -84.643082 -8.577533 +v 14.175630 -84.643082 -8.577533 +v -14.023540 -84.742447 -8.577534 +v -12.976460 -84.742447 -8.577534 +v 12.976460 -84.742447 -8.577534 +v 14.023540 -84.742447 -8.577534 +v -13.857170 -84.815422 -8.577534 +v -13.142830 -84.815422 -8.577534 +v 13.142830 -84.815422 -8.577534 +v 13.857170 -84.815422 -8.577534 +v -13.681050 -84.860023 -8.577534 +v -13.318950 -84.860023 -8.577534 +v 13.318950 -84.860023 -8.577534 +v 13.681050 -84.860023 -8.577534 +v -13.500000 -84.875023 -8.577534 +v 13.500000 -84.875023 -8.577534 +v -19.374910 -85.590309 -8.577536 +v 19.374910 -85.590309 -8.577536 +v -19.418671 -85.647789 -8.577536 +v 19.418671 -85.647789 -8.577536 +v -19.453690 -85.710968 -8.577536 +v 19.453690 -85.710968 -8.577536 +v -19.479231 -85.778542 -8.577536 +v 19.479231 -85.778542 -8.577536 +v -19.494780 -85.849083 -8.577536 +v 19.494780 -85.849083 -8.577536 +v -19.500000 -85.921135 -8.577536 +v 19.500000 -85.921135 -8.577536 +v -17.500000 -86.125023 -8.577537 +v -13.500000 -86.125023 -8.577537 +v 13.500000 -86.125023 -8.577537 +v 17.500000 -86.125023 -8.577537 +v -17.631680 -86.135933 -8.577537 +v -13.368320 -86.135933 -8.577537 +v 13.368320 -86.135933 -8.577537 +v 17.631680 -86.135933 -8.577537 +v -17.759760 -86.168373 -8.577537 +v -13.240240 -86.168373 -8.577537 +v 13.240240 -86.168373 -8.577537 +v 17.759760 -86.168373 -8.577537 +v -17.880760 -86.221443 -8.577537 +v -13.119240 -86.221443 -8.577537 +v 13.119240 -86.221443 -8.577537 +v 17.880760 -86.221443 -8.577537 +v -17.991369 -86.293709 -8.577537 +v -13.008630 -86.293709 -8.577537 +v 13.008630 -86.293709 -8.577537 +v 17.991369 -86.293709 -8.577537 +v -18.088579 -86.383202 -8.577538 +v -12.911420 -86.383202 -8.577538 +v 12.911420 -86.383202 -8.577538 +v 18.088579 -86.383202 -8.577538 +v -18.169729 -86.487465 -8.577538 +v -12.830270 -86.487465 -8.577538 +v 12.830270 -86.487465 -8.577538 +v 18.169729 -86.487465 -8.577538 +v -18.232620 -86.603668 -8.577538 +v -12.767380 -86.603668 -8.577538 +v 12.767380 -86.603668 -8.577538 +v 18.232620 -86.603668 -8.577538 +v -18.275520 -86.728638 -8.577538 +v -12.724480 -86.728638 -8.577538 +v 12.724480 -86.728638 -8.577538 +v 18.275520 -86.728638 -8.577538 +v -18.297270 -86.858963 -8.577538 +v -12.702730 -86.858963 -8.577538 +v 12.702730 -86.858963 -8.577538 +v 18.297270 -86.858963 -8.577538 +v -18.297270 -86.991089 -8.577538 +v -12.702730 -86.991089 -8.577538 +v 12.702730 -86.991089 -8.577538 +v 18.297270 -86.991089 -8.577538 +v -18.275520 -87.121414 -8.577538 +v -12.724480 -87.121414 -8.577538 +v 12.724480 -87.121414 -8.577538 +v 18.275520 -87.121414 -8.577538 +v -18.232620 -87.246384 -8.577539 +v -12.767380 -87.246384 -8.577539 +v 12.767380 -87.246384 -8.577539 +v 18.232620 -87.246384 -8.577539 +v -18.169729 -87.362579 -8.577539 +v -12.830270 -87.362579 -8.577539 +v 12.830270 -87.362579 -8.577539 +v 18.169729 -87.362579 -8.577539 +v -18.088579 -87.466850 -8.577539 +v -12.911420 -87.466850 -8.577539 +v 12.911420 -87.466850 -8.577539 +v 18.088579 -87.466850 -8.577539 +v -17.991369 -87.556335 -8.577539 +v -13.008630 -87.556335 -8.577539 +v 13.008630 -87.556335 -8.577539 +v 17.991369 -87.556335 -8.577539 +v -17.880760 -87.628601 -8.577540 +v -13.119240 -87.628601 -8.577540 +v 13.119240 -87.628601 -8.577540 +v 17.880760 -87.628601 -8.577540 +v -17.759760 -87.681679 -8.577540 +v -13.240240 -87.681679 -8.577540 +v 13.240240 -87.681679 -8.577540 +v 17.759760 -87.681679 -8.577540 +v -17.631680 -87.714111 -8.577540 +v -13.368320 -87.714111 -8.577540 +v 13.368320 -87.714111 -8.577540 +v 17.631680 -87.714111 -8.577540 +v -17.500000 -87.725021 -8.577540 +v -13.500000 -87.725021 -8.577540 +v -11.000000 -87.725021 -8.577540 +v -8.750000 -87.725021 -8.577540 +v 8.750000 -87.725021 -8.577540 +v 11.000000 -87.725021 -8.577540 +v 13.500000 -87.725021 -8.577540 +v 17.500000 -87.725021 -8.577540 +v -11.004440 -87.819130 -8.577540 +v 11.004440 -87.819130 -8.577540 +v -11.035440 -87.988899 -8.577540 +v 11.035440 -87.988899 -8.577540 +v -11.095170 -88.150803 -8.577541 +v 11.095170 -88.150803 -8.577541 +v -19.500000 -88.225021 -8.577541 +v 19.500000 -88.225021 -8.577541 +v -11.181850 -88.300026 -8.577541 +v 11.181850 -88.300026 -8.577541 +v -19.493839 -88.303238 -8.577541 +v 19.493839 -88.303238 -8.577541 +v -19.475531 -88.379532 -8.577541 +v 19.475531 -88.379532 -8.577541 +v -11.292890 -88.432129 -8.577542 +v 11.292890 -88.432129 -8.577542 +v -19.445499 -88.452019 -8.577542 +v 19.445499 -88.452019 -8.577542 +v -19.404510 -88.518921 -8.577542 +v 19.404510 -88.518921 -8.577542 +v -11.425000 -88.543175 -8.577542 +v 11.425000 -88.543175 -8.577542 +v -19.353550 -88.578575 -8.577542 +v 19.353550 -88.578575 -8.577542 +v -19.293890 -88.629532 -8.577542 +v 19.293890 -88.629532 -8.577542 +v -11.574220 -88.629852 -8.577542 +v 11.574220 -88.629852 -8.577542 +v -19.226990 -88.670525 -8.577542 +v 19.226990 -88.670525 -8.577542 +v -11.736130 -88.689583 -8.577542 +v 11.736130 -88.689583 -8.577542 +v -19.154510 -88.700554 -8.577542 +v 19.154510 -88.700554 -8.577542 +v -19.078220 -88.718872 -8.577542 +v 19.078220 -88.718872 -8.577542 +v -11.905890 -88.720589 -8.577542 +v 11.905890 -88.720589 -8.577542 +v -19.000000 -88.725021 -8.577542 +v -12.000000 -88.725021 -8.577542 +v 12.000000 -88.725021 -8.577542 +v 19.000000 -88.725021 -8.577542 +v -7.883975 -67.775017 -8.360589 +v 7.883976 -67.775017 -8.360589 +v -7.958939 -67.780670 -8.360589 +v 7.958940 -67.780670 -8.360589 +v -8.032209 -67.797501 -8.360589 +v 8.032209 -67.797501 -8.360589 +v -8.102128 -67.825119 -8.360589 +v 8.102128 -67.825119 -8.360589 +v -8.167116 -67.862907 -8.360589 +v 8.167116 -67.862907 -8.360589 +v -8.225702 -67.910019 -8.360589 +v 8.225702 -67.910019 -8.360589 +v -8.276563 -67.965378 -8.360589 +v 8.276563 -67.965378 -8.360589 +v -8.316987 -68.025017 -8.360589 +v 8.316987 -68.025017 -8.360589 +v -8.292389 -67.995796 -8.288227 +v 8.292389 -67.995796 -8.288227 +v -6.250000 -82.725021 -8.277529 +v 6.250000 -82.725021 -8.277529 +v -6.373446 -82.735252 -8.277529 +v 6.373446 -82.735252 -8.277529 +v -6.493525 -82.765663 -8.277529 +v 6.493526 -82.765663 -8.277529 +v -6.606960 -82.815414 -8.277529 +v 6.606961 -82.815414 -8.277529 +v -6.710660 -82.883171 -8.277529 +v 6.710660 -82.883171 -8.277529 +v -6.801793 -82.967064 -8.277529 +v 6.801794 -82.967064 -8.277529 +v -6.877874 -83.064812 -8.277529 +v 6.877875 -83.064812 -8.277529 +v -6.936830 -83.173752 -8.277530 +v 6.936831 -83.173752 -8.277530 +v -6.977049 -83.290909 -8.277530 +v 6.977050 -83.290909 -8.277530 +v -6.997437 -83.413086 -8.277530 +v 6.997438 -83.413086 -8.277530 +v -6.997437 -83.536957 -8.277531 +v 6.997438 -83.536957 -8.277531 +v -6.977049 -83.659134 -8.277531 +v 6.977050 -83.659134 -8.277531 +v -6.936830 -83.776299 -8.277531 +v 6.936831 -83.776299 -8.277531 +v -6.877874 -83.885231 -8.277531 +v 6.877875 -83.885231 -8.277531 +v -6.801793 -83.982986 -8.277532 +v 6.801794 -83.982986 -8.277532 +v -6.710660 -84.066879 -8.277532 +v 6.710660 -84.066879 -8.277532 +v -6.606960 -84.134628 -8.277532 +v 6.606961 -84.134628 -8.277532 +v -6.493525 -84.184387 -8.277532 +v 6.493526 -84.184387 -8.277532 +v -6.373446 -84.214798 -8.277532 +v 6.373446 -84.214798 -8.277532 +v -6.250000 -84.225021 -8.277532 +v 6.250000 -84.225021 -8.277532 +v -6.250000 -85.725021 -8.277535 +v 6.250000 -85.725021 -8.277535 +v -6.373446 -85.735252 -8.277535 +v 6.373446 -85.735252 -8.277535 +v -6.493525 -85.765663 -8.277535 +v 6.493526 -85.765663 -8.277535 +v -6.606960 -85.815422 -8.277535 +v 6.606961 -85.815422 -8.277535 +v -6.710660 -85.883171 -8.277535 +v 6.710660 -85.883171 -8.277535 +v -6.801793 -85.967064 -8.277536 +v 6.801794 -85.967064 -8.277536 +v -6.877874 -86.064812 -8.277536 +v 6.877875 -86.064812 -8.277536 +v -6.936830 -86.173752 -8.277536 +v 6.936831 -86.173752 -8.277536 +v -6.977049 -86.290909 -8.277536 +v 6.977050 -86.290909 -8.277536 +v -6.997437 -86.413094 -8.277537 +v 6.997438 -86.413094 -8.277537 +v -6.997437 -86.536957 -8.277537 +v 6.997438 -86.536957 -8.277537 +v -6.977049 -86.659142 -8.277537 +v 6.977050 -86.659142 -8.277537 +v -6.936830 -86.776299 -8.277538 +v 6.936831 -86.776299 -8.277538 +v -6.877874 -86.885239 -8.277538 +v 6.877875 -86.885239 -8.277538 +v -6.801793 -86.982986 -8.277538 +v 6.801794 -86.982986 -8.277538 +v -6.710660 -87.066879 -8.277538 +v 6.710660 -87.066879 -8.277538 +v -6.606960 -87.134628 -8.277538 +v 6.606961 -87.134628 -8.277538 +v -6.493525 -87.184387 -8.277539 +v 6.493526 -87.184387 -8.277539 +v -6.373446 -87.214798 -8.277539 +v 6.373446 -87.214798 -8.277539 +v -6.250000 -87.225021 -8.277539 +v 6.250000 -87.225021 -8.277539 +v -7.883975 -67.782364 -8.275146 +v 7.883976 -67.782364 -8.275146 +v -7.957824 -67.788025 -8.274638 +v 7.957825 -67.788025 -8.274638 +v -8.030003 -67.804611 -8.274638 +v 8.030003 -67.804611 -8.274638 +v -8.098882 -67.831818 -8.274638 +v 8.098882 -67.831818 -8.274638 +v -8.162901 -67.869049 -8.274638 +v 8.162901 -67.869049 -8.274638 +v -8.220615 -67.915459 -8.274638 +v 8.220615 -67.915459 -8.274638 +v -8.270720 -67.969986 -8.274638 +v 8.270720 -67.969986 -8.274638 +v -8.256853 -67.974068 -8.217803 +v 8.256853 -67.974068 -8.217803 +v -7.883975 -67.804214 -8.192216 +v 7.883976 -67.804214 -8.192216 +v -7.954508 -67.809891 -8.191246 +v 7.954509 -67.809891 -8.191246 +v -8.023449 -67.825714 -8.191246 +v 8.023449 -67.825714 -8.191246 +v -8.089236 -67.851707 -8.191246 +v 8.089236 -67.851707 -8.191246 +v -8.150382 -67.887268 -8.191246 +v 8.150382 -67.887268 -8.191246 +v -8.205506 -67.931595 -8.191246 +v 8.205506 -67.931595 -8.191246 +v -8.240050 -67.967690 -8.191008 +v 8.240050 -67.967690 -8.191008 +v -8.211332 -67.960388 -8.151202 +v 8.211332 -67.960388 -8.151202 +v -8.183160 -67.956497 -8.117618 +v 8.183160 -67.956497 -8.117618 +v -7.883975 -67.839920 -8.114240 +v 7.883976 -67.839920 -8.114240 +v -7.949093 -67.845589 -8.112896 +v 7.949094 -67.845589 -8.112896 +v -8.012743 -67.860207 -8.112896 +v 8.012743 -67.860207 -8.112896 +v -8.073479 -67.884209 -8.112896 +v 8.073479 -67.884209 -8.112896 +v -8.129932 -67.917030 -8.112896 +v 8.129932 -67.917030 -8.112896 +v -8.178536 -67.956116 -8.112528 +v 8.178536 -67.956116 -8.112528 +v -8.157045 -67.955124 -8.090209 +v 8.157045 -67.955124 -8.090209 +v -8.750000 -68.775017 -8.060591 +v -7.883975 -67.888420 -8.043510 +v 7.883976 -67.888420 -8.043510 +v -8.102482 -67.957672 -8.041930 +v -7.883975 -67.889725 -8.041920 +v 7.883976 -67.889725 -8.041920 +v -7.941741 -67.894081 -8.041920 +v 7.941741 -67.894081 -8.041920 +v -7.998201 -67.907051 -8.041920 +v 7.998202 -67.907051 -8.041920 +v -8.052081 -67.928337 -8.041920 +v 8.052081 -67.928337 -8.041920 +v 8.102197 -67.957703 -8.041705 +v -8.095445 -67.958450 -8.036456 +v 8.095445 -67.958450 -8.036456 +v -8.748234 -68.771957 -8.013471 +v -8.032577 -67.969238 -7.993957 +v 8.032577 -67.969238 -7.993957 +v -8.028182 -67.970238 -7.991384 +v 8.028182 -67.970238 -7.991384 +v -7.883975 -67.948288 -7.982109 +v 7.883976 -67.948288 -7.982109 +v -7.883975 -67.950241 -7.980431 +v 7.883976 -67.950241 -7.980431 +v -7.932669 -67.953911 -7.980431 +v 7.932670 -67.953911 -7.980431 +v -7.980260 -67.964851 -7.980431 +v 7.980261 -67.964851 -7.980431 +v 8.683013 -68.658989 -7.980206 +v 8.694860 -68.680740 -7.980206 +v 8.711940 -68.717651 -7.980206 +v 8.725236 -68.753586 -7.980206 +v 8.732964 -68.779579 -7.980206 +v 8.743771 -68.830307 -7.980206 +v 8.750000 -68.908997 -7.980206 +v -8.743682 -68.764076 -7.974754 +v -7.957057 -67.990189 -7.956198 +v 7.957057 -67.990189 -7.956198 +v -7.927074 -68.000671 -7.944809 +v 7.927075 -68.000671 -7.944809 +v -8.736941 -68.752396 -7.941766 +v -7.883975 -68.017769 -7.931843 +v 7.883976 -68.017769 -7.931843 +v -8.733173 -68.745865 -7.928078 +v 8.743844 -68.868752 -7.913136 +v 8.658415 -68.629776 -7.907844 +v -8.725522 -68.734077 -7.904944 +v 8.688237 -68.684135 -7.894255 +v 8.718162 -68.755898 -7.894255 +v 8.736421 -68.831482 -7.894255 +v 8.652441 -68.625015 -7.894172 +v 8.645149 -68.619942 -7.878685 +v -8.708992 -68.714867 -7.865413 +v -8.705719 -68.711716 -7.858665 +v 8.725529 -68.829498 -7.847716 +v -8.695486 -68.702805 -7.839159 +v 8.622879 -68.608040 -7.837419 +v 8.629557 -68.631042 -7.810863 +v 8.668568 -68.694229 -7.810863 +v 8.697149 -68.762772 -7.810863 +v 8.606076 -68.601662 -7.810624 +v 8.709220 -68.807236 -7.810612 +v -8.669124 -68.684631 -7.796871 +v 8.695503 -68.792206 -7.785559 +v -8.750000 -77.743896 -7.777516 +v 8.750000 -77.743896 -7.777516 +v -8.750000 -71.275017 -7.777502 +v 8.750000 -71.275017 -7.777502 +v -8.654486 -68.676620 -7.776861 +v 8.577358 -68.594360 -7.770819 +v -8.750000 -77.900330 -7.765205 +v 8.750000 -77.900330 -7.765205 +v 8.672526 -68.771446 -7.750963 +v -8.617569 -68.660851 -7.733800 +v 8.555671 -68.600426 -7.732512 +v 8.600420 -68.652382 -7.732512 +v 8.636437 -68.710716 -7.732512 +v 8.658027 -68.760307 -7.732399 +v -8.750000 -78.052910 -7.728574 +v 8.750000 -78.052910 -7.728574 +v 8.654509 -68.757790 -7.728195 +v -8.603529 -68.656151 -7.719574 +v 8.523071 -68.589111 -7.709825 +v -8.743876 -71.353043 -7.699485 +v 8.743866 -71.353104 -7.699425 +v -8.743844 -77.743896 -7.699299 +v 8.743844 -77.743896 -7.699299 +v -8.743844 -77.888092 -7.687951 +v 8.743844 -77.888092 -7.687951 +v -8.556067 -68.644165 -7.678018 +v 8.603553 -68.727089 -7.677036 +v -8.550591 -68.643112 -7.673776 +v 8.738440 -71.381920 -7.670604 +v -8.750000 -78.197884 -7.668524 +v 8.750000 -78.197884 -7.668524 +v 8.474703 -68.596008 -7.661536 +v 8.521155 -68.635269 -7.661536 +v 8.560852 -68.681351 -7.661537 +v -8.736115 -71.392029 -7.660492 +v 8.461471 -68.592422 -7.656073 +v -8.743844 -78.028740 -7.654185 +v 8.743844 -78.028740 -7.654185 +v 8.543893 -68.700882 -7.633343 +v -8.485958 -68.634850 -7.630610 +v 8.537897 -68.698669 -7.629665 +v -8.480557 -68.634468 -7.627517 +v -8.725654 -71.429138 -7.623380 +v 8.725646 -71.429169 -7.623356 +v -8.725529 -77.743896 -7.623008 +v 8.725529 -77.743896 -7.623008 +v 8.404654 -68.601898 -7.617197 +v -8.725529 -77.876160 -7.612599 +v 8.725529 -77.876160 -7.612599 +v 8.394207 -68.604210 -7.611000 +v 8.395533 -68.618652 -7.600048 +v 8.439410 -68.645172 -7.600048 +v 8.478567 -68.678261 -7.600048 +v 8.480765 -68.680779 -7.599854 +v 8.372873 -68.609436 -7.599191 +v -8.743844 -78.162376 -7.598832 +v 8.743844 -78.162376 -7.598832 +v 8.476995 -68.679787 -7.598190 +v -8.410904 -68.633148 -7.593637 +v -8.404444 -68.633339 -7.591018 +v -8.750000 -78.331680 -7.586535 +v 8.750000 -78.331680 -7.586535 +v 8.343472 -68.617722 -7.584700 +v -8.725529 -78.005165 -7.581627 +v 8.725529 -78.005165 -7.581627 +v 8.707687 -71.476318 -7.576200 +v 8.323082 -68.624168 -7.575815 +v 8.404509 -68.664337 -7.572443 +v -8.331543 -68.638824 -7.567016 +v -8.324681 -68.639648 -7.565259 +v 8.375784 -68.660019 -7.565248 +v 8.292542 -68.634850 -7.564231 +v -8.701675 -71.489471 -7.563052 +v 8.330461 -68.655098 -7.557047 +v 8.328218 -68.654907 -7.556738 +v -8.250000 -68.651749 -7.551459 +v 8.250000 -68.651749 -7.551459 +v 8.695695 -71.501640 -7.550882 +v -8.695626 -71.501770 -7.550750 +v -8.695503 -77.743896 -7.550521 +v 8.695503 -77.743896 -7.550521 +v -8.695503 -77.864822 -7.541005 +v 8.695503 -77.864822 -7.541005 +v -8.725529 -78.127739 -7.530856 +v 8.725529 -78.127739 -7.530856 +v -8.743844 -78.285706 -7.523256 +v 8.743844 -78.285706 -7.523256 +v -8.695503 -77.982765 -7.512688 +v 8.695503 -77.982765 -7.512688 +v 8.663172 -71.556602 -7.495919 +v -8.750000 -78.451004 -7.484625 +v 8.750000 -78.451004 -7.484625 +v 8.654696 -71.568649 -7.483869 +v -8.654509 -77.743896 -7.483624 +v 8.654509 -77.743896 -7.483624 +v -8.652938 -71.571060 -7.481460 +v -8.654509 -77.854355 -7.474931 +v 8.654509 -77.854355 -7.474931 +v -8.695503 -78.094833 -7.466269 +v 8.695503 -78.094833 -7.466269 +v -8.725529 -78.240860 -7.461535 +v 8.725529 -78.240860 -7.461535 +v -8.654509 -77.962090 -7.449065 +v 8.654509 -77.962090 -7.449065 +v -8.743844 -78.395691 -7.429317 +v 8.743844 -78.395691 -7.429317 +v 8.607868 -71.624199 -7.428317 +v -8.603843 -71.628281 -7.424238 +v -8.603553 -77.743896 -7.423963 +v 8.603553 -77.743896 -7.423963 +v 8.602103 -71.630020 -7.422505 +v -8.603553 -77.845024 -7.416005 +v 8.603553 -77.845024 -7.416005 +v -8.591882 -71.639870 -7.412651 +v -8.654509 -78.064461 -7.406663 +v 8.654509 -78.064461 -7.406663 +v -8.695503 -78.198257 -7.402892 +v 8.695503 -78.198257 -7.402892 +v -8.603553 -77.943657 -7.392324 +v 8.603553 -77.943657 -7.392324 +v -8.725529 -78.341743 -7.375371 +v 8.725529 -78.341743 -7.375371 +v 8.544389 -71.679169 -7.373355 +v -8.544152 -71.679337 -7.373183 +v -8.543893 -77.743896 -7.373008 +v 8.543893 -77.743896 -7.373008 +v -8.543893 -77.837051 -7.365677 +v 8.543893 -77.837051 -7.365677 +v -8.750000 -78.552910 -7.365304 +v 8.750000 -78.552910 -7.365304 +v -8.532213 -71.687759 -7.364760 +v -8.603553 -78.037376 -7.353505 +v 8.603553 -78.037376 -7.353505 +v -8.654509 -78.158936 -7.348770 +v 8.654509 -78.158936 -7.348770 +v -8.543893 -77.927910 -7.343863 +v 8.543893 -77.927910 -7.343863 +v 8.485209 -71.716240 -7.336280 +v 8.477141 -71.720451 -7.332073 +v -8.476995 -77.743896 -7.332013 +v 8.476995 -77.743896 -7.332013 +v -8.472437 -71.722824 -7.329706 +v -8.476995 -77.830635 -7.325187 +v 8.476995 -77.830635 -7.325187 +v -8.695503 -78.290489 -7.324115 +v 8.695503 -78.290489 -7.324115 +v -8.743844 -78.489632 -7.319328 +v 8.743844 -78.489632 -7.319328 +v 8.425650 -71.743149 -7.309371 +v -8.543893 -78.014244 -7.308104 +v 8.543893 -78.014244 -7.308104 +v -8.413760 -71.747437 -7.305080 +v -8.476995 -77.915245 -7.304874 +v 8.476995 -77.915245 -7.304874 +v 8.404727 -71.750481 -7.302045 +v -8.404631 -71.750511 -7.302013 +v -8.404509 -77.743896 -7.301988 +v 8.404509 -77.743896 -7.301988 +v -8.603553 -78.123863 -7.300504 +v 8.603553 -78.123863 -7.300504 +v -8.404509 -77.825943 -7.295531 +v 8.404509 -77.825943 -7.295531 +v 8.365875 -71.761414 -7.291115 +v -8.350766 -71.764763 -7.287762 +v 8.328361 -71.768845 -7.283681 +v -8.328335 -71.768845 -7.283677 +v -8.328218 -77.743896 -7.283672 +v 8.328218 -77.743896 -7.283672 +v 8.305572 -71.771919 -7.280600 +v -8.290945 -71.773338 -7.279182 +v -8.250000 -71.775024 -7.277503 +v 8.250000 -71.775024 -7.277503 +v -8.250000 -77.743896 -7.277516 +v 8.250000 -77.743896 -7.277516 +v -8.750000 -81.675026 -7.277525 +v 8.750000 -81.675026 -7.277525 +v -8.750000 -87.725029 -7.277540 +v 8.750000 -87.725029 -7.277540 +v -8.745563 -87.819138 -7.277540 +v 8.745563 -87.819138 -7.277540 +v -8.714558 -87.988899 -7.277540 +v 8.714558 -87.988899 -7.277540 +v -8.654827 -88.150803 -7.277541 +v 8.654827 -88.150803 -7.277541 +v -8.568150 -88.300034 -7.277541 +v 8.568150 -88.300034 -7.277541 +v -8.457107 -88.432137 -7.277541 +v 8.457107 -88.432137 -7.277541 +v -8.325005 -88.543175 -7.277542 +v 8.325005 -88.543175 -7.277542 +v -8.175779 -88.629852 -7.277542 +v 8.175779 -88.629852 -7.277542 +v -8.013873 -88.689583 -7.277542 +v 8.013873 -88.689583 -7.277542 +v -7.844108 -88.720589 -7.277542 +v 7.844109 -88.720589 -7.277542 +v -7.750000 -88.725029 -7.277542 +v 7.750000 -88.725029 -7.277542 +v -8.328218 -77.823074 -7.277441 +v 8.328218 -77.823074 -7.277441 +v -8.654509 -78.243187 -7.276811 +v 8.654509 -78.243187 -7.276811 +v -8.404509 -77.905968 -7.276319 +v 8.404509 -77.905968 -7.276319 +v -8.725529 -78.427910 -7.274486 +v 8.725529 -78.427910 -7.274486 +v -8.476995 -77.995628 -7.271577 +v 8.476995 -77.995628 -7.271577 +v -8.250000 -77.822113 -7.271361 +v 8.250000 -77.822113 -7.271361 +v -8.543893 -78.093918 -7.259280 +v 8.543893 -78.093918 -7.259280 +v -8.328218 -77.900307 -7.258900 +v 8.328218 -77.900307 -7.258900 +v -8.250000 -77.898407 -7.253045 +v 8.250000 -77.898407 -7.253045 +v -8.750000 -81.345833 -7.250247 +v 8.750000 -81.345833 -7.250247 +v -8.404509 -77.982002 -7.244824 +v 8.404509 -77.982002 -7.244824 +v -8.603553 -78.201004 -7.234624 +v 8.603553 -78.201004 -7.234624 +v -8.695503 -78.369270 -7.231879 +v 8.695503 -78.369270 -7.231879 +v -8.750000 -78.634903 -7.231509 +v 8.750000 -78.634903 -7.231509 +v -8.328218 -77.973686 -7.228505 +v 8.328218 -77.973686 -7.228505 +v -8.476995 -78.069817 -7.226114 +v 8.476995 -78.069817 -7.226114 +v -8.250000 -77.970894 -7.223020 +v 8.250000 -77.970894 -7.223020 +v -8.404509 -78.052170 -7.201824 +v 8.404509 -78.052170 -7.201824 +v -8.543893 -78.164970 -7.198594 +v 8.543893 -78.164970 -7.198594 +v -8.743844 -78.565208 -7.195999 +v 8.743844 -78.565208 -7.195999 +v -8.654509 -78.315147 -7.192557 +v 8.654509 -78.315147 -7.192557 +v -8.328218 -78.041405 -7.187006 +v 8.328218 -78.041405 -7.187006 +v -8.250000 -78.037788 -7.182025 +v 8.250000 -78.037788 -7.182025 +v -8.476995 -78.135986 -7.169606 +v 8.476995 -78.135986 -7.169606 +v -8.750000 -81.025627 -7.169158 +v 8.750000 -81.025627 -7.169158 +v -8.725529 -78.497231 -7.161363 +v 8.725529 -78.497231 -7.161363 +v -8.603553 -78.266884 -7.157489 +v 8.603553 -78.266884 -7.157489 +v -8.404509 -78.114754 -7.148375 +v 8.404509 -78.114754 -7.148375 +v -8.328218 -78.101799 -7.135424 +v 8.328218 -78.101799 -7.135424 +v -8.250000 -78.097450 -7.131071 +v 8.250000 -78.097450 -7.131071 +v -8.695503 -78.432648 -7.128455 +v 8.695503 -78.432648 -7.128455 +v -8.543893 -78.225655 -7.127539 +v 8.543893 -78.225655 -7.127539 +v -8.476995 -78.192490 -7.103442 +v 8.476995 -78.192490 -7.103442 +v -8.654509 -78.373039 -7.098084 +v 8.654509 -78.373039 -7.098084 +v -8.750000 -78.694954 -7.086535 +v 8.750000 -78.694954 -7.086535 +v -8.404509 -78.168198 -7.085794 +v 8.404509 -78.168198 -7.085794 +v -8.328218 -78.153381 -7.075028 +v 8.328218 -78.153381 -7.075028 +v -8.250000 -78.148407 -7.071410 +v 8.250000 -78.148407 -7.071410 +v -8.603553 -78.319885 -7.070998 +v 8.603553 -78.319885 -7.070998 +v -8.743844 -78.620560 -7.062365 +v 8.743844 -78.620560 -7.062365 +v -8.543893 -78.274483 -7.047865 +v 8.543893 -78.274483 -7.047865 +v -8.725529 -78.548004 -7.038789 +v 8.725529 -78.548004 -7.038789 +v -8.750000 -80.723129 -7.036471 +v 8.750000 -80.723129 -7.036471 +v -8.476995 -78.237953 -7.029254 +v 8.476995 -78.237953 -7.029254 +v -8.695503 -78.479065 -7.016389 +v 8.695503 -78.479065 -7.016389 +v -8.404509 -78.211205 -7.015623 +v 8.404509 -78.211205 -7.015623 +v -8.328218 -78.194885 -7.007307 +v 8.328218 -78.194885 -7.007307 +v -8.250000 -78.189400 -7.004513 +v 8.250000 -78.189400 -7.004513 +v -8.654509 -78.415443 -6.995717 +v 8.654509 -78.415443 -6.995717 +v -8.603553 -78.358704 -6.977281 +v 8.603553 -78.358704 -6.977281 +v -8.543893 -78.310242 -6.961535 +v 8.543893 -78.310242 -6.961535 +v -8.476995 -78.271255 -6.948866 +v 8.476995 -78.271255 -6.948866 +v -8.404509 -78.242699 -6.939588 +v 8.404509 -78.242699 -6.939588 +v -8.750000 -78.731583 -6.933953 +v 8.750000 -78.731583 -6.933953 +v -8.328218 -78.225281 -6.933928 +v 8.328218 -78.225281 -6.933928 +v -8.250000 -78.219421 -6.932026 +v 8.250000 -78.219421 -6.932026 +v -8.743844 -78.654327 -6.921717 +v 8.743844 -78.654327 -6.921717 +v -8.725529 -78.578979 -6.909782 +v 8.725529 -78.578979 -6.909782 +v -8.695503 -78.507385 -6.898443 +v 8.695503 -78.507385 -6.898443 +v -8.654509 -78.441307 -6.887978 +v 8.654509 -78.441307 -6.887978 +v -8.603553 -78.382385 -6.878644 +v 8.603553 -78.382385 -6.878644 +v -8.543893 -78.332054 -6.870673 +v 8.543893 -78.332054 -6.870673 +v -8.476995 -78.291565 -6.864260 +v 8.476995 -78.291565 -6.864260 +v -8.404509 -78.261909 -6.859563 +v 8.404509 -78.261909 -6.859563 +v -8.328218 -78.243820 -6.856698 +v 8.328218 -78.243820 -6.856698 +v -8.750000 -80.446602 -6.855803 +v 8.750000 -80.446602 -6.855803 +v -8.250000 -78.237740 -6.855735 +v 8.250000 -78.237740 -6.855735 +v -15.603870 -82.090836 -6.810654 +v 15.603870 -82.090836 -6.810654 +v -15.638640 -82.118416 -6.798664 +v -8.250000 -78.243896 -6.777517 +v 8.250000 -78.243896 -6.777517 +v -8.328218 -78.250053 -6.777517 +v 8.328218 -78.250053 -6.777517 +v -8.404509 -78.268364 -6.777517 +v 8.404509 -78.268364 -6.777517 +v -8.476995 -78.298393 -6.777517 +v 8.476995 -78.298393 -6.777517 +v -8.543893 -78.339386 -6.777517 +v 8.543893 -78.339386 -6.777517 +v -8.603553 -78.390343 -6.777518 +v 8.603553 -78.390343 -6.777518 +v -8.654509 -78.450005 -6.777518 +v 8.654509 -78.450005 -6.777518 +v -8.695503 -78.516899 -6.777518 +v 8.695503 -78.516899 -6.777518 +v -8.725529 -78.589386 -6.777518 +v 8.725529 -78.589386 -6.777518 +v -8.743844 -78.665680 -6.777518 +v 8.743844 -78.665680 -6.777518 +v -8.750000 -78.743896 -6.777518 +v 8.750000 -78.743896 -6.777518 +v -15.718970 -82.192879 -6.766290 +v 15.726170 -82.200401 -6.763018 +v -15.751520 -82.228203 -6.750929 +v 15.816880 -82.311111 -6.714884 +v -15.816960 -82.311226 -6.714835 +v 15.831410 -82.332260 -6.705689 +v -15.854290 -82.368126 -6.690095 +v -16.010019 -82.404938 -6.674090 +v 16.010019 -82.404938 -6.674090 +v 15.895590 -82.443047 -6.657522 +v -15.895630 -82.443115 -6.657492 +v 15.913980 -82.482162 -6.640515 +v -8.750000 -80.203575 -6.632085 +v 8.750000 -80.203575 -6.632085 +v -15.933610 -82.529633 -6.619875 +v -15.953150 -82.585411 -6.595623 +v 15.953150 -82.585419 -6.595619 +v 15.970250 -82.645828 -6.569356 +v -8.750000 -71.275024 -6.560596 +v 8.750000 -71.275024 -6.560596 +v -15.983610 -82.707588 -6.542502 +v -15.988210 -82.734818 -6.530663 +v 15.988220 -82.734879 -6.530640 +v 15.997530 -82.817688 -6.494635 +v -16.519569 -82.817764 -6.494602 +v 16.519569 -82.817764 -6.494602 +v -16.000000 -82.887917 -6.464099 +v 16.000000 -82.887917 -6.464099 +v -8.743945 -71.352592 -6.423586 +v 8.743882 -71.353004 -6.422874 +v -8.750000 -80.000694 -6.371418 +v 8.750000 -80.000694 -6.371418 +v 8.737767 -71.384941 -6.366448 +v -8.727582 -71.423065 -6.299133 +v 8.725829 -71.428604 -6.289345 +v -17.316900 -83.508682 -6.194204 +v 17.316900 -83.508682 -6.194204 +v -8.696157 -71.500732 -6.161956 +v 8.693771 -71.505386 -6.153733 +v -8.671227 -71.544403 -6.084816 +v -8.750000 -79.843475 -6.080912 +v 8.750000 -79.843475 -6.080912 +v 8.655480 -71.567574 -6.043896 +v -8.654907 -71.568359 -6.042498 +v -8.250000 -71.275024 -5.977501 +v 8.250000 -71.275024 -5.977501 +v 8.256512 -71.275101 -5.977501 +v -8.295012 -71.278976 -5.977501 +v 8.297253 -71.279373 -5.977501 +v -8.328334 -71.287025 -5.977501 +v 8.328340 -71.287025 -5.977501 +v -8.338230 -71.290276 -5.977501 +v 8.339293 -71.290642 -5.977501 +v -8.382379 -71.309700 -5.977501 +v 8.383858 -71.310493 -5.977501 +v -8.404874 -71.322823 -5.977501 +v 8.404903 -71.322830 -5.977501 +v -8.428703 -71.339211 -5.977501 +v 8.432139 -71.341789 -5.977501 +v 8.477511 -71.381454 -5.977501 +v -8.482710 -71.386688 -5.977501 +v 8.492044 -71.396484 -5.977501 +v -8.545690 -71.463173 -5.977501 +v 8.551228 -71.471184 -5.977501 +v -8.604050 -71.560631 -5.977502 +v 8.604474 -71.561462 -5.977502 +v -8.614455 -71.581535 -5.977502 +v -8.625507 -71.605164 -5.977502 +v 8.625507 -71.605164 -5.977502 +v -8.603553 -71.628571 -5.977502 +v 8.603553 -71.628571 -5.977502 +v -8.543893 -71.679535 -5.977502 +v 8.543893 -71.679535 -5.977502 +v -8.476995 -71.720520 -5.977502 +v 8.476995 -71.720520 -5.977502 +v -8.404509 -71.750549 -5.977502 +v 8.404509 -71.750549 -5.977502 +v -8.328218 -71.768860 -5.977502 +v 8.328218 -71.768860 -5.977502 +v -8.250000 -71.775024 -5.977502 +v 8.250000 -71.775024 -5.977502 +v -18.001150 -84.149422 -5.915622 +v 18.001150 -84.149422 -5.915622 +v -17.500000 -86.125031 -5.777535 +v -13.500000 -86.125031 -5.777535 +v 13.500000 -86.125031 -5.777535 +v 17.500000 -86.125031 -5.777535 +v -17.631680 -86.135941 -5.777535 +v -13.368320 -86.135941 -5.777535 +v 13.368320 -86.135941 -5.777535 +v 17.631680 -86.135941 -5.777535 +v -17.759760 -86.168373 -5.777535 +v -13.240240 -86.168373 -5.777535 +v 13.240240 -86.168373 -5.777535 +v 17.759760 -86.168373 -5.777535 +v -17.880760 -86.221451 -5.777535 +v -13.119240 -86.221451 -5.777535 +v 13.119240 -86.221451 -5.777535 +v 17.880760 -86.221451 -5.777535 +v -17.991369 -86.293716 -5.777536 +v -13.008630 -86.293716 -5.777536 +v 13.008630 -86.293716 -5.777536 +v 17.991369 -86.293716 -5.777536 +v -18.088579 -86.383202 -5.777536 +v -12.911420 -86.383202 -5.777536 +v 12.911420 -86.383202 -5.777536 +v 18.088579 -86.383202 -5.777536 +v -18.169729 -86.487473 -5.777536 +v -12.830270 -86.487473 -5.777536 +v 12.830270 -86.487473 -5.777536 +v 18.169729 -86.487473 -5.777536 +v -18.232620 -86.603676 -5.777536 +v -12.767380 -86.603676 -5.777536 +v 12.767380 -86.603676 -5.777536 +v 18.232620 -86.603676 -5.777536 +v -18.275520 -86.728638 -5.777537 +v -12.724480 -86.728638 -5.777537 +v 12.724480 -86.728638 -5.777537 +v 18.275520 -86.728638 -5.777537 +v -18.297270 -86.858963 -5.777537 +v -12.702730 -86.858963 -5.777537 +v 12.702730 -86.858963 -5.777537 +v 18.297270 -86.858963 -5.777537 +v -18.297270 -86.991089 -5.777537 +v -12.702730 -86.991089 -5.777537 +v 12.702730 -86.991089 -5.777537 +v 18.297270 -86.991089 -5.777537 +v -18.275520 -87.121414 -5.777538 +v -12.724480 -87.121414 -5.777538 +v 12.724480 -87.121414 -5.777538 +v 18.275520 -87.121414 -5.777538 +v -18.232620 -87.246384 -5.777538 +v -12.767380 -87.246384 -5.777538 +v 12.767380 -87.246384 -5.777538 +v 18.232620 -87.246384 -5.777538 +v -18.169729 -87.362587 -5.777538 +v -12.830270 -87.362587 -5.777538 +v 12.830270 -87.362587 -5.777538 +v 18.169729 -87.362587 -5.777538 +v -18.088579 -87.466858 -5.777538 +v -12.911420 -87.466858 -5.777538 +v 12.911420 -87.466858 -5.777538 +v 18.088579 -87.466858 -5.777538 +v -17.991369 -87.556343 -5.777539 +v -13.008630 -87.556343 -5.777539 +v 13.008630 -87.556343 -5.777539 +v 17.991369 -87.556343 -5.777539 +v -17.880760 -87.628609 -5.777539 +v -13.119240 -87.628609 -5.777539 +v 13.119240 -87.628609 -5.777539 +v 17.880760 -87.628609 -5.777539 +v -17.759760 -87.681686 -5.777539 +v -13.240240 -87.681686 -5.777539 +v 13.240240 -87.681686 -5.777539 +v 17.759760 -87.681686 -5.777539 +v -17.631680 -87.714119 -5.777539 +v -13.368320 -87.714119 -5.777539 +v 13.368320 -87.714119 -5.777539 +v 17.631680 -87.714119 -5.777539 +v -17.500000 -87.725029 -5.777539 +v -13.500000 -87.725029 -5.777539 +v 13.500000 -87.725029 -5.777539 +v 17.500000 -87.725029 -5.777539 +v -8.750000 -79.736221 -5.768492 +v 8.750000 -79.736221 -5.768492 +v -18.548441 -84.697037 -5.677532 +v -16.000000 -84.697037 -5.677532 +v 16.000000 -84.697037 -5.677532 +v 18.548441 -84.697037 -5.677532 +v -19.374910 -85.590317 -5.677534 +v 19.374910 -85.590317 -5.677534 +v -19.418671 -85.647789 -5.677534 +v 19.418671 -85.647789 -5.677534 +v -19.453690 -85.710976 -5.677535 +v 19.453690 -85.710976 -5.677535 +v -19.479231 -85.778542 -5.677535 +v 19.479231 -85.778542 -5.677535 +v -19.494780 -85.849091 -5.677535 +v 19.494780 -85.849091 -5.677535 +v -19.500000 -85.921143 -5.677535 +v 19.500000 -85.921143 -5.677535 +v -19.000000 -86.825027 -5.677537 +v -16.000000 -86.825027 -5.677537 +v 16.000000 -86.825027 -5.677537 +v 19.000000 -86.825027 -5.677537 +v -19.078220 -86.831184 -5.677537 +v 19.078220 -86.831184 -5.677537 +v -19.154510 -86.849503 -5.677537 +v 19.154510 -86.849503 -5.677537 +v -19.226990 -86.879524 -5.677537 +v 19.226990 -86.879524 -5.677537 +v -19.293890 -86.920517 -5.677537 +v 19.293890 -86.920517 -5.677537 +v -19.353550 -86.971474 -5.677537 +v 19.353550 -86.971474 -5.677537 +v -19.404510 -87.031136 -5.677538 +v 19.404510 -87.031136 -5.677538 +v -19.445499 -87.098038 -5.677538 +v 19.445499 -87.098038 -5.677538 +v -19.475531 -87.170525 -5.677538 +v 19.475531 -87.170525 -5.677538 +v -19.493839 -87.246811 -5.677538 +v 19.493839 -87.246811 -5.677538 +v -19.500000 -87.325027 -5.677538 +v 19.500000 -87.325027 -5.677538 +v -8.750000 -79.681854 -5.442679 +v 8.750000 -79.681854 -5.442679 +v -8.250000 -78.243896 -5.277517 +v 8.250000 -78.243896 -5.277517 +v -8.297054 -78.246117 -5.277517 +v 8.297054 -78.246117 -5.277517 +v -8.328218 -78.250053 -5.277517 +v 8.328218 -78.250053 -5.277517 +v -8.381937 -78.261620 -5.277517 +v 8.381937 -78.261620 -5.277517 +v -8.404509 -78.268372 -5.277517 +v 8.404509 -78.268372 -5.277517 +v -8.462890 -78.291489 -5.277517 +v 8.462890 -78.291489 -5.277517 +v -8.476995 -78.298393 -5.277517 +v 8.476995 -78.298393 -5.277517 +v -8.537503 -78.334824 -5.277517 +v 8.537503 -78.334824 -5.277517 +v -8.603553 -78.390343 -5.277517 +v 8.603553 -78.390343 -5.277517 +v -8.659075 -78.456398 -5.277517 +v 8.659075 -78.456398 -5.277517 +v -8.695503 -78.516907 -5.277517 +v 8.695503 -78.516907 -5.277517 +v -8.702414 -78.531006 -5.277517 +v 8.702414 -78.531006 -5.277517 +v -8.725529 -78.589386 -5.277517 +v 8.725529 -78.589386 -5.277517 +v -8.732279 -78.611961 -5.277517 +v 8.732279 -78.611961 -5.277517 +v -8.743844 -78.665680 -5.277518 +v 8.743844 -78.665680 -5.277518 +v -8.747781 -78.696846 -5.277518 +v 8.747781 -78.696846 -5.277518 +v -8.750000 -78.743896 -5.277518 +v 8.750000 -78.743896 -5.277518 +v -8.750000 -79.681854 -5.112361 +v 8.750000 -79.681854 -5.112361 +v -8.750000 -78.753242 -5.020834 +v 8.750000 -78.753242 -5.020834 +v -8.747781 -78.706314 -5.017413 +v 8.747781 -78.706314 -5.017413 +v -8.732279 -78.621651 -5.011243 +v 8.732279 -78.621651 -5.011243 +v -8.702414 -78.540916 -5.005358 +v 8.702414 -78.540916 -5.005358 +v -8.659075 -78.466499 -4.999934 +v 8.659075 -78.466499 -4.999934 +v -8.603553 -78.400620 -4.995132 +v 8.603553 -78.400620 -4.995132 +v -8.537503 -78.345245 -4.991096 +v 8.537503 -78.345245 -4.991096 +v -8.462890 -78.302025 -4.987946 +v 8.462890 -78.302025 -4.987946 +v -8.381937 -78.272240 -4.985775 +v 8.381937 -78.272240 -4.985775 +v -8.297054 -78.256775 -4.984648 +v 8.297054 -78.256775 -4.984648 +v -8.250000 -78.254562 -4.984487 +v 8.250000 -78.254562 -4.984487 +v -8.750000 -79.736229 -4.786549 +v 8.750000 -79.736229 -4.786549 +v -8.250000 -78.295845 -4.632437 +v 8.250000 -78.295845 -4.632437 +v -8.750000 -78.827682 -4.512891 +v 8.750000 -78.827682 -4.512891 +v -8.747781 -78.781738 -4.502702 +v 8.747781 -78.781738 -4.502702 +v -8.732279 -78.698875 -4.484321 +v 8.732279 -78.698875 -4.484321 +v -8.750000 -79.843483 -4.474129 +v 8.750000 -79.843483 -4.474129 +v -8.702414 -78.619843 -4.466791 +v 8.702414 -78.619843 -4.466791 +v -8.659075 -78.546997 -4.450634 +v 8.659075 -78.546997 -4.450634 +v -8.603553 -78.482513 -4.436332 +v 8.603553 -78.482513 -4.436332 +v -8.537503 -78.428314 -4.424309 +v 8.537503 -78.428314 -4.424309 +v -8.462890 -78.386002 -4.414925 +v 8.462890 -78.386002 -4.414925 +v -8.381937 -78.356842 -4.408458 +v 8.381937 -78.356842 -4.408458 +v -8.297054 -78.341705 -4.405101 +v 8.297054 -78.341705 -4.405101 +v -8.250000 -78.339539 -4.404620 +v 8.250000 -78.339539 -4.404620 +v -8.750000 -80.000694 -4.183625 +v 8.750000 -80.000694 -4.183625 +v -8.750000 -78.974983 -4.021109 +v 8.750000 -78.974983 -4.021109 +v -8.747781 -78.931007 -4.004367 +v 8.747781 -78.931007 -4.004367 +v -8.250000 -78.450356 -4.003983 +v 8.250000 -78.450356 -4.003983 +v -8.732279 -78.851677 -3.974165 +v 8.732279 -78.851677 -3.974165 +v -8.702414 -78.776024 -3.945361 +v 8.702414 -78.776024 -3.945361 +v -8.750000 -80.203583 -3.922958 +v 8.750000 -80.203583 -3.922958 +v -8.659075 -78.706291 -3.918812 +v 8.659075 -78.706291 -3.918812 +v -8.603553 -78.644569 -3.895311 +v 8.603553 -78.644569 -3.895311 +v -8.537503 -78.592682 -3.875555 +v 8.537503 -78.592682 -3.875555 +v -8.462890 -78.552177 -3.860135 +v 8.462890 -78.552177 -3.860135 +v -8.381937 -78.524261 -3.849509 +v 8.381937 -78.524261 -3.849509 +v -8.297054 -78.509781 -3.843993 +v 8.297054 -78.509781 -3.843993 +v -8.250000 -78.507706 -3.843203 +v 8.250000 -78.507706 -3.843203 +v -8.750000 -80.446602 -3.699241 +v 8.750000 -80.446602 -3.699241 +v -8.750000 -79.192039 -3.555885 +v 8.750000 -79.192039 -3.555885 +v -8.747781 -79.150955 -3.532942 +v 8.747781 -79.150955 -3.532942 +v -8.750000 -80.723137 -3.518575 +v 8.750000 -80.723137 -3.518575 +v -8.732279 -79.076843 -3.491557 +v 8.732279 -79.076843 -3.491557 +v -8.702414 -79.006165 -3.452087 +v 8.702414 -79.006165 -3.452087 +v -8.659075 -78.941017 -3.415709 +v 8.659075 -78.941017 -3.415709 +v -8.250000 -78.703445 -3.408353 +v 8.250000 -78.703445 -3.408353 +v -8.750000 -81.025635 -3.385889 +v 8.750000 -81.025635 -3.385889 +v -8.603553 -78.883354 -3.383506 +v 8.603553 -78.883354 -3.383506 +v -8.537503 -78.834877 -3.356435 +v 8.537503 -78.834877 -3.356435 +v -8.462890 -78.797043 -3.335305 +v 8.462890 -78.797043 -3.335305 +v -8.381937 -78.770966 -3.320743 +v 8.381937 -78.770966 -3.320743 +v -8.297054 -78.757431 -3.313185 +v 8.297054 -78.757431 -3.313185 +v -8.250000 -78.755493 -3.312103 +v 8.250000 -78.755493 -3.312103 +v -8.750000 -81.345840 -3.304801 +v 8.750000 -81.345840 -3.304801 +v -8.750000 -81.675034 -3.277524 +v 8.750000 -81.675034 -3.277524 +v -11.000250 -81.775032 -3.277524 +v -8.750000 -81.775032 -3.277524 +v 8.750000 -81.775032 -3.277524 +v 11.000250 -81.775032 -3.277524 +v -11.000000 -81.802475 -3.277524 +v 11.000000 -81.802475 -3.277524 +v -11.000000 -87.725037 -3.277538 +v 11.000000 -87.725037 -3.277538 +v -11.004440 -87.819138 -3.277539 +v 11.004440 -87.819138 -3.277539 +v -11.035440 -87.988907 -3.277539 +v 11.035440 -87.988907 -3.277539 +v -11.095170 -88.150810 -3.277539 +v 11.095170 -88.150810 -3.277539 +v -11.133970 -88.225037 -3.277540 +v 11.133970 -88.225037 -3.277540 +v 11.157590 -88.263878 -3.275979 +v 11.163090 -88.272369 -3.275223 +v -11.181870 -88.300064 -3.271866 +v 11.181960 -88.300201 -3.271699 +v -11.186230 -88.306221 -3.270891 +v 11.213570 -88.342712 -3.263183 +v -11.225470 -88.357574 -3.259634 +v 11.225490 -88.357597 -3.259284 +v -11.250020 -88.386490 -3.250739 +v 11.286940 -88.426132 -3.234803 +v -11.293240 -88.432487 -3.232467 +v 11.293000 -88.432251 -3.232065 +v -11.299410 -88.438599 -3.229634 +v 11.299360 -88.438553 -3.229140 +v -11.332260 -88.469429 -3.213737 +v 11.381790 -88.511047 -3.187285 +v 11.383950 -88.512741 -3.186106 +v -11.384740 -88.513359 -3.186003 +v -11.425340 -88.543427 -3.163023 +v 11.425580 -88.543594 -3.162696 +v -11.445120 -88.556961 -3.151435 +v 11.479620 -88.578964 -3.130651 +v -11.479770 -88.579063 -3.130602 +v -8.750000 -79.474258 -3.127048 +v 8.750000 -79.474258 -3.127048 +v 11.500210 -88.591179 -3.118015 +v -8.747781 -79.436935 -3.098392 +v 8.747781 -79.436935 -3.098392 +v -11.569300 -88.627525 -3.074164 +v -11.574300 -88.629898 -3.070915 +v 11.574860 -88.630165 -3.070590 +v -11.583690 -88.634254 -3.064797 +v 11.584660 -88.634697 -3.064221 +v -8.732279 -79.369606 -3.046697 +v 8.732279 -79.369606 -3.046697 +v 11.640430 -88.658157 -3.027444 +v -8.702414 -79.305397 -2.997396 +v 8.702414 -79.305397 -2.997396 +v -11.695580 -88.677574 -2.990133 +v 11.696760 -88.677948 -2.989547 +v -11.715510 -88.683716 -2.976550 +v -11.736370 -88.689659 -2.962261 +v 11.736910 -88.689804 -2.962124 +v -8.659075 -79.246216 -2.951957 +v 8.659075 -79.246216 -2.951957 +v -8.603553 -79.193825 -2.911732 +v 8.603553 -79.193825 -2.911732 +v 11.813470 -88.707481 -2.908911 +v -11.813360 -88.707466 -2.908830 +v 11.828390 -88.710197 -2.898440 +v -8.537503 -79.149788 -2.877919 +v 8.537503 -79.149788 -2.877919 +v -8.250000 -79.048584 -2.860900 +v 8.250000 -79.048584 -2.860900 +v -8.462890 -79.115417 -2.851526 +v 8.462890 -79.115417 -2.851526 +v -11.905960 -88.720604 -2.843838 +v -11.914980 -88.721413 -2.837493 +v -8.381937 -79.091728 -2.833338 +v 8.381937 -79.091728 -2.833338 +v 11.933860 -88.722847 -2.824223 +v -8.297054 -79.079430 -2.823897 +v 8.297054 -79.079430 -2.823897 +v -8.250000 -79.077667 -2.822545 +v 8.250000 -79.077667 -2.822545 +v -12.000000 -88.725037 -2.777540 +v 12.000000 -88.725037 -2.777540 +v -8.750000 -79.815674 -2.743666 +v 8.750000 -79.815674 -2.743666 +v -8.747781 -79.782898 -2.709900 +v 8.747781 -79.782898 -2.709900 +v -8.732279 -79.723778 -2.648990 +v 8.732279 -79.723778 -2.648990 +v -8.702414 -79.667397 -2.590900 +v 8.702414 -79.667397 -2.590900 +v -8.659075 -79.615433 -2.537360 +v 8.659075 -79.615433 -2.537360 +v -8.603553 -79.569427 -2.489963 +v 8.603553 -79.569427 -2.489963 +v -8.537503 -79.530762 -2.450123 +v 8.537503 -79.530762 -2.450123 +v -8.462890 -79.500572 -2.419024 +v 8.462890 -79.500572 -2.419024 +v -8.750000 -80.209068 -2.413840 +v 8.750000 -80.209068 -2.413840 +v -8.381937 -79.479774 -2.397593 +v 8.381937 -79.479774 -2.397593 +v -8.297054 -79.468979 -2.386469 +v 8.297054 -79.468979 -2.386469 +v -8.250000 -79.467430 -2.384877 +v 8.250000 -79.467430 -2.384877 +v -8.250000 -79.476883 -2.375733 +v 8.250000 -79.476883 -2.375733 +v -8.747781 -80.181541 -2.375679 +v 8.747781 -80.181541 -2.375679 +v -8.732279 -80.131874 -2.306841 +v 8.732279 -80.131874 -2.306841 +v -8.702414 -80.084511 -2.241190 +v 8.702414 -80.084511 -2.241190 +v -8.659075 -80.040863 -2.180680 +v 8.659075 -80.040863 -2.180680 +v -8.750000 -80.646133 -2.144543 +v 8.750000 -80.646133 -2.144543 +v -8.603553 -80.002213 -2.127114 +v 8.603553 -80.002213 -2.127114 +v -8.747781 -80.624428 -2.102794 +v 8.747781 -80.624428 -2.102794 +v -8.537503 -79.969734 -2.082087 +v 8.537503 -79.969734 -2.082087 +v -8.462890 -79.944374 -2.046941 +v 8.462890 -79.944374 -2.046941 +v -8.732279 -80.585274 -2.027481 +v 8.732279 -80.585274 -2.027481 +v -8.381937 -79.926903 -2.022720 +v 8.381937 -79.926903 -2.022720 +v -8.297054 -79.917831 -2.010148 +v 8.297054 -79.917831 -2.010148 +v -8.250000 -79.916534 -2.008348 +v 8.250000 -79.916534 -2.008348 +v -8.250000 -79.977303 -1.965356 +v 8.250000 -79.977303 -1.965356 +v -8.702414 -80.547928 -1.955656 +v 8.702414 -80.547928 -1.955656 +v -8.750000 -81.117630 -1.941463 +v 8.750000 -81.117630 -1.941463 +v -8.747781 -81.102203 -1.897009 +v 8.747781 -81.102203 -1.897009 +v -8.659075 -80.513512 -1.889456 +v 8.659075 -80.513512 -1.889456 +v -8.603553 -80.483040 -1.830853 +v 8.603553 -80.483040 -1.830853 +v -8.732279 -81.074387 -1.816816 +v 8.732279 -81.074387 -1.816816 +v -8.750000 -81.613586 -1.808898 +v 8.750000 -81.613586 -1.808898 +v -8.750000 -81.775032 -1.781974 +v 8.750000 -81.775032 -1.781974 +v -8.537503 -80.457428 -1.781592 +v 8.537503 -80.457428 -1.781592 +v -13.500000 -82.675034 -1.777526 +v 13.500000 -82.675034 -1.777526 +v -13.681050 -82.690041 -1.777526 +v -13.318950 -82.690041 -1.777526 +v 13.318950 -82.690041 -1.777526 +v 13.681050 -82.690041 -1.777526 +v -13.857170 -82.734634 -1.777526 +v -13.142830 -82.734634 -1.777526 +v 13.142830 -82.734634 -1.777526 +v 13.857170 -82.734634 -1.777526 +v -14.023540 -82.807610 -1.777526 +v -12.976460 -82.807610 -1.777526 +v 12.976460 -82.807610 -1.777526 +v 14.023540 -82.807610 -1.777526 +v -14.175630 -82.906982 -1.777527 +v -12.824370 -82.906982 -1.777527 +v 12.824370 -82.906982 -1.777527 +v 14.175630 -82.906982 -1.777527 +v -14.309300 -83.030022 -1.777527 +v -12.690700 -83.030022 -1.777527 +v 12.690700 -83.030022 -1.777527 +v 14.309300 -83.030022 -1.777527 +v -14.420880 -83.173393 -1.777527 +v -12.579120 -83.173393 -1.777527 +v 12.579120 -83.173393 -1.777527 +v 14.420880 -83.173393 -1.777527 +v -14.507350 -83.333168 -1.777528 +v -12.492650 -83.333168 -1.777528 +v 12.492650 -83.333168 -1.777528 +v 14.507350 -83.333168 -1.777528 +v -14.566340 -83.504997 -1.777528 +v -12.433660 -83.504997 -1.777528 +v 12.433660 -83.504997 -1.777528 +v 14.566340 -83.504997 -1.777528 +v -14.596240 -83.684196 -1.777529 +v -12.403760 -83.684196 -1.777529 +v 12.403760 -83.684196 -1.777529 +v 14.596240 -83.684196 -1.777529 +v -14.596240 -83.865875 -1.777529 +v -12.403760 -83.865875 -1.777529 +v 12.403760 -83.865875 -1.777529 +v 14.596240 -83.865875 -1.777529 +v -14.566340 -84.045067 -1.777529 +v -12.433660 -84.045067 -1.777529 +v 12.433660 -84.045067 -1.777529 +v 14.566340 -84.045067 -1.777529 +v -14.507350 -84.216896 -1.777530 +v -12.492650 -84.216896 -1.777530 +v 12.492650 -84.216896 -1.777530 +v 14.507350 -84.216896 -1.777530 +v -14.420880 -84.376678 -1.777530 +v -12.579120 -84.376678 -1.777530 +v 12.579120 -84.376678 -1.777530 +v 14.420880 -84.376678 -1.777530 +v -14.309300 -84.520042 -1.777531 +v -12.690700 -84.520042 -1.777531 +v 12.690700 -84.520042 -1.777531 +v 14.309300 -84.520042 -1.777531 +v -14.175630 -84.643089 -1.777531 +v -12.824370 -84.643089 -1.777531 +v 12.824370 -84.643089 -1.777531 +v 14.175630 -84.643089 -1.777531 +v -14.023540 -84.742455 -1.777531 +v -12.976460 -84.742455 -1.777531 +v 12.976460 -84.742455 -1.777531 +v 14.023540 -84.742455 -1.777531 +v -13.857170 -84.815437 -1.777531 +v -13.142830 -84.815437 -1.777531 +v 13.142830 -84.815437 -1.777531 +v 13.857170 -84.815437 -1.777531 +v -13.681050 -84.860031 -1.777531 +v -13.318950 -84.860031 -1.777531 +v 13.318950 -84.860031 -1.777531 +v 13.681050 -84.860031 -1.777531 +v -13.500000 -84.875038 -1.777531 +v 13.500000 -84.875038 -1.777531 +v -8.747781 -81.604774 -1.762677 +v 8.747781 -81.604774 -1.762677 +v -8.462890 -80.437439 -1.743140 +v 8.462890 -80.437439 -1.743140 +v -8.702414 -81.047852 -1.740335 +v 8.702414 -81.047852 -1.740335 +v -8.747551 -81.775032 -1.731721 +v -8.381937 -80.423660 -1.716641 +v 8.381937 -80.423660 -1.716641 +v 8.744659 -81.775032 -1.709112 +v -8.297054 -80.416512 -1.702887 +v 8.297054 -80.416512 -1.702887 +v -8.250000 -80.415489 -1.700919 +v 8.250000 -80.415489 -1.700919 +v -8.732279 -81.588867 -1.679297 +v 8.732279 -81.588867 -1.679297 +v -8.659075 -81.023392 -1.669844 +v 8.659075 -81.023392 -1.669844 +v 8.731970 -81.775032 -1.648869 +v -8.732005 -81.775032 -1.648149 +v -8.250000 -80.536942 -1.640347 +v 8.250000 -80.536942 -1.640347 +v 8.725780 -81.775032 -1.628024 +v -8.603553 -81.001747 -1.607441 +v 8.603553 -81.001747 -1.607441 +v -8.702414 -81.573708 -1.599777 +v 8.702414 -81.573708 -1.599777 +v 8.702217 -81.775032 -1.567216 +v -8.701929 -81.775032 -1.567055 +v -8.537503 -80.983543 -1.554986 +v 8.537503 -80.983543 -1.554986 +v 8.693389 -81.775032 -1.549067 +v -8.659075 -81.559731 -1.526485 +v 8.659075 -81.559731 -1.526485 +v -8.462890 -80.969337 -1.514042 +v 8.462890 -80.969337 -1.514042 +v -8.662011 -81.775032 -1.496171 +v 8.659058 -81.775032 -1.491901 +v -8.659083 -81.775032 -1.491875 +v -8.381937 -80.959549 -1.485826 +v 8.381937 -80.959549 -1.485826 +v 8.648407 -81.775032 -1.477186 +v -8.297054 -80.954468 -1.471181 +v 8.297054 -80.954468 -1.471181 +v -8.250000 -80.953743 -1.469086 +v 8.250000 -80.953743 -1.469086 +v -8.603553 -81.547356 -1.461603 +v 8.603553 -81.547356 -1.461603 +v -8.610209 -81.775032 -1.431942 +v 8.603626 -81.775032 -1.425219 +v 8.593399 -81.775032 -1.415123 +v -8.250000 -81.141380 -1.409082 +v 8.250000 -81.141380 -1.409082 +v -8.537503 -81.536957 -1.407064 +v 8.537503 -81.536957 -1.407064 +v -8.548657 -81.775032 -1.377448 +v -8.537492 -81.775032 -1.369307 +v -8.462890 -81.528839 -1.364493 +v 8.462890 -81.528839 -1.364493 +v 8.528754 -81.775032 -1.363274 +v -8.381937 -81.523247 -1.335156 +v 8.381937 -81.523247 -1.335156 +v -8.477719 -81.775032 -1.333107 +v 8.462692 -81.775032 -1.325915 +v -8.462800 -81.775032 -1.325791 +v 8.457869 -81.775032 -1.323658 +v -8.297054 -81.520340 -1.319928 +v 8.297054 -81.520340 -1.319928 +v -8.250000 -81.519928 -1.317749 +v 8.250000 -81.519928 -1.317749 +v -8.400577 -81.775032 -1.301373 +v -8.381864 -81.775032 -1.295749 +v 8.381909 -81.775032 -1.295496 +v 8.378490 -81.775032 -1.294550 +v -8.321754 -81.775032 -1.282859 +v 8.299632 -81.775032 -1.279981 +v -12.578540 -80.304535 -1.277520 +v 12.578540 -80.304535 -1.277520 +v -12.335430 -80.311531 -1.277520 +v 12.335430 -80.311531 -1.277520 +v -12.819580 -80.336914 -1.277520 +v 12.819580 -80.336914 -1.277520 +v -12.096640 -80.357727 -1.277520 +v 12.096640 -80.357727 -1.277520 +v -13.052220 -80.407829 -1.277520 +v 13.052220 -80.407829 -1.277520 +v -11.868470 -80.441902 -1.277521 +v 11.868470 -80.441902 -1.277521 +v -13.270350 -80.515404 -1.277521 +v 13.270350 -80.515404 -1.277521 +v -11.656890 -80.561844 -1.277521 +v 11.656890 -80.561844 -1.277521 +v -11.467480 -80.714409 -1.277521 +v 11.467480 -80.714409 -1.277521 +v -11.305210 -80.895569 -1.277522 +v 11.305210 -80.895569 -1.277522 +v -11.174360 -81.100578 -1.277522 +v 11.174360 -81.100578 -1.277522 +v -11.078350 -81.324036 -1.277523 +v 11.078350 -81.324036 -1.277523 +v -11.019720 -81.560066 -1.277523 +v 11.019720 -81.560066 -1.277523 +v -14.938910 -81.603561 -1.277523 +v 14.938910 -81.603561 -1.277523 +v -11.000250 -81.775032 -1.277524 +v -8.250000 -81.775032 -1.277524 +v 8.250000 -81.775032 -1.277524 +v 11.000250 -81.775032 -1.277524 +v -15.603870 -82.090843 -1.277524 +v 15.603870 -82.090843 -1.277524 +v -13.500000 -82.175034 -1.277524 +v 13.500000 -82.175034 -1.277524 +v -15.718810 -82.192726 -1.277524 +v 15.718810 -82.192726 -1.277524 +v -13.763350 -82.196854 -1.277524 +v -13.236650 -82.196854 -1.277524 +v 13.236650 -82.196854 -1.277524 +v 13.763350 -82.196854 -1.277524 +v -14.019520 -82.261726 -1.277525 +v -12.980480 -82.261726 -1.277525 +v 12.980480 -82.261726 -1.277525 +v 14.019520 -82.261726 -1.277525 +v -15.816790 -82.310997 -1.277525 +v 15.816790 -82.310997 -1.277525 +v -14.261520 -82.367874 -1.277525 +v -12.738480 -82.367874 -1.277525 +v 12.738480 -82.367874 -1.277525 +v 14.261520 -82.367874 -1.277525 +v -15.895510 -82.442886 -1.277525 +v 15.895510 -82.442886 -1.277525 +v -14.482740 -82.512413 -1.277525 +v -12.517260 -82.512413 -1.277525 +v 12.517260 -82.512413 -1.277525 +v 14.482740 -82.512413 -1.277525 +v -15.953100 -82.585266 -1.277525 +v 15.953100 -82.585266 -1.277525 +v -14.677160 -82.691383 -1.277526 +v -12.322840 -82.691383 -1.277526 +v 12.322840 -82.691383 -1.277526 +v 14.677160 -82.691383 -1.277526 +v -15.988200 -82.734795 -1.277526 +v 15.988200 -82.734795 -1.277526 +v -16.000000 -82.887924 -1.277526 +v 16.000000 -82.887924 -1.277526 +v -14.839470 -82.899918 -1.277526 +v -12.160530 -82.899918 -1.277526 +v 12.160530 -82.899918 -1.277526 +v 14.839470 -82.899918 -1.277526 +v -14.965240 -83.132324 -1.277527 +v -12.034760 -83.132324 -1.277527 +v 12.034760 -83.132324 -1.277527 +v 14.965240 -83.132324 -1.277527 +v -15.051040 -83.382256 -1.277527 +v -11.948960 -83.382256 -1.277527 +v 11.948960 -83.382256 -1.277527 +v 15.051040 -83.382256 -1.277527 +v -15.094540 -83.642906 -1.277528 +v -11.905470 -83.642906 -1.277528 +v 11.905470 -83.642906 -1.277528 +v 15.094540 -83.642906 -1.277528 +v -15.094540 -83.907166 -1.277529 +v -11.905470 -83.907166 -1.277529 +v 11.905470 -83.907166 -1.277529 +v 15.094540 -83.907166 -1.277529 +v -15.051040 -84.167809 -1.277529 +v -11.948960 -84.167809 -1.277529 +v 11.948960 -84.167809 -1.277529 +v 15.051040 -84.167809 -1.277529 +v -14.965240 -84.417747 -1.277530 +v -12.034760 -84.417747 -1.277530 +v 12.034760 -84.417747 -1.277530 +v 14.965240 -84.417747 -1.277530 +v -14.839470 -84.650154 -1.277530 +v -12.160530 -84.650154 -1.277530 +v 12.160530 -84.650154 -1.277530 +v 14.839470 -84.650154 -1.277530 +v -14.677160 -84.858688 -1.277531 +v -12.322840 -84.858688 -1.277531 +v 12.322840 -84.858688 -1.277531 +v 14.677160 -84.858688 -1.277531 +v -14.482740 -85.037659 -1.277531 +v -12.517260 -85.037659 -1.277531 +v 12.517260 -85.037659 -1.277531 +v 14.482740 -85.037659 -1.277531 +v -14.261520 -85.182190 -1.277532 +v -12.738480 -85.182190 -1.277532 +v 12.738480 -85.182190 -1.277532 +v 14.261520 -85.182190 -1.277532 +v -14.019520 -85.288345 -1.277532 +v -12.980480 -85.288345 -1.277532 +v 12.980480 -85.288345 -1.277532 +v 14.019520 -85.288345 -1.277532 +v -13.763350 -85.353210 -1.277532 +v -13.236650 -85.353210 -1.277532 +v 13.236650 -85.353210 -1.277532 +v 13.763350 -85.353210 -1.277532 +v -13.500000 -85.375038 -1.277532 +v 13.500000 -85.375038 -1.277532 +v -19.000000 -86.825035 -1.277535 +v -16.000000 -86.825035 -1.277535 +v 16.000000 -86.825035 -1.277535 +v 19.000000 -86.825035 -1.277535 +v -19.078220 -86.831192 -1.277535 +v 19.078220 -86.831192 -1.277535 +v -19.154510 -86.849510 -1.277535 +v 19.154510 -86.849510 -1.277535 +v -19.226990 -86.879532 -1.277535 +v 19.226990 -86.879532 -1.277535 +v -19.293890 -86.920525 -1.277535 +v 19.293890 -86.920525 -1.277535 +v -19.353550 -86.971481 -1.277536 +v 19.353550 -86.971481 -1.277536 +v -19.404510 -87.031143 -1.277536 +v 19.404510 -87.031143 -1.277536 +v -19.445499 -87.098038 -1.277536 +v 19.445499 -87.098038 -1.277536 +v -19.475531 -87.170532 -1.277536 +v 19.475531 -87.170532 -1.277536 +v -19.493839 -87.246819 -1.277536 +v 19.493839 -87.246819 -1.277536 +v -19.500000 -87.325035 -1.277536 +v 19.500000 -87.325035 -1.277536 +v -19.000000 -87.425034 -1.277537 +v 19.000000 -87.425034 -1.277537 +v -19.078220 -87.431190 -1.277537 +v 19.078220 -87.431190 -1.277537 +v -19.154510 -87.449509 -1.277537 +v 19.154510 -87.449509 -1.277537 +v -19.226990 -87.479530 -1.277537 +v 19.226990 -87.479530 -1.277537 +v -19.293890 -87.520531 -1.277537 +v 19.293890 -87.520531 -1.277537 +v -19.353550 -87.571487 -1.277537 +v 19.353550 -87.571487 -1.277537 +v -19.404510 -87.631142 -1.277537 +v 19.404510 -87.631142 -1.277537 +v -19.445499 -87.698044 -1.277537 +v 19.445499 -87.698044 -1.277537 +v -19.475531 -87.770531 -1.277538 +v 19.475531 -87.770531 -1.277538 +v -19.493839 -87.846817 -1.277538 +v 19.493839 -87.846817 -1.277538 +v -19.500000 -87.925034 -1.277538 +v 19.500000 -87.925034 -1.277538 +v -19.000000 -87.425041 -0.277536 +v 19.000000 -87.425041 -0.277536 +v -19.078220 -87.431198 -0.277536 +v 19.078220 -87.431198 -0.277536 +v -19.154510 -87.449509 -0.277536 +v 19.154510 -87.449509 -0.277536 +v -19.226990 -87.479538 -0.277536 +v 19.226990 -87.479538 -0.277536 +v -19.293890 -87.520531 -0.277536 +v 19.293890 -87.520531 -0.277536 +v -19.353550 -87.571487 -0.277537 +v 19.353550 -87.571487 -0.277537 +v -19.404510 -87.631149 -0.277537 +v 19.404510 -87.631149 -0.277537 +v -19.445499 -87.698044 -0.277537 +v 19.445499 -87.698044 -0.277537 +v -19.475531 -87.770531 -0.277537 +v 19.475531 -87.770531 -0.277537 +v -19.493839 -87.846825 -0.277537 +v 19.493839 -87.846825 -0.277537 +v -19.500000 -87.925041 -0.277537 +v 19.500000 -87.925041 -0.277537 +v -19.500000 -88.225037 -0.277538 +v 19.500000 -88.225037 -0.277538 +v -19.493839 -88.303253 -0.277538 +v 19.493839 -88.303253 -0.277538 +v -19.475531 -88.379547 -0.277539 +v 19.475531 -88.379547 -0.277539 +v -19.445499 -88.452034 -0.277539 +v 19.445499 -88.452034 -0.277539 +v -19.404510 -88.518929 -0.277539 +v 19.404510 -88.518929 -0.277539 +v -19.353550 -88.578590 -0.277539 +v 19.353550 -88.578590 -0.277539 +v -19.293890 -88.629547 -0.277539 +v 19.293890 -88.629547 -0.277539 +v -19.226990 -88.670540 -0.277539 +v 19.226990 -88.670540 -0.277539 +v -19.154510 -88.700569 -0.277539 +v 19.154510 -88.700569 -0.277539 +v -19.078220 -88.718880 -0.277539 +v 19.078220 -88.718880 -0.277539 +v -19.000000 -88.725037 -0.277539 +v 19.000000 -88.725037 -0.277539 +v -18.993839 -87.425041 -0.199318 +v 18.993839 -87.425041 -0.199318 +v -18.993839 -88.725037 -0.199321 +v 18.993839 -88.725037 -0.199321 +v -19.071100 -87.431198 -0.187083 +v 19.071100 -87.431198 -0.187083 +v -19.071100 -88.718880 -0.187086 +v 19.071100 -88.718880 -0.187086 +v -19.146450 -87.449509 -0.175149 +v 19.146450 -87.449509 -0.175149 +v -19.146450 -88.700569 -0.175152 +v 19.146450 -88.700569 -0.175152 +v -19.218040 -87.479538 -0.163809 +v 19.218040 -87.479538 -0.163809 +v -19.218040 -88.670540 -0.163812 +v 19.218040 -88.670540 -0.163812 +v -19.284121 -87.520531 -0.153344 +v 19.284121 -87.520531 -0.153344 +v -19.284121 -88.629547 -0.153347 +v 19.284121 -88.629547 -0.153347 +v -19.343040 -87.571487 -0.144012 +v 19.343040 -87.571487 -0.144012 +v -19.343040 -88.578590 -0.144014 +v 19.343040 -88.578590 -0.144014 +v -19.393370 -87.631149 -0.136041 +v 19.393370 -87.631149 -0.136041 +v -19.393370 -88.518936 -0.136043 +v 19.393370 -88.518936 -0.136043 +v -19.433861 -87.698044 -0.129628 +v 19.433861 -87.698044 -0.129628 +v -19.433861 -88.452034 -0.129630 +v 19.433861 -88.452034 -0.129630 +v -19.463520 -87.770531 -0.124931 +v 19.463520 -87.770531 -0.124931 +v -19.463520 -88.379547 -0.124933 +v 19.463520 -88.379547 -0.124933 +v -18.975531 -87.425041 -0.123027 +v 18.975531 -87.425041 -0.123027 +v -18.975531 -88.725037 -0.123030 +v 18.975531 -88.725037 -0.123030 +v -19.481609 -87.846825 -0.122066 +v 19.481609 -87.846825 -0.122066 +v -19.481609 -88.303253 -0.122066 +v 19.481609 -88.303253 -0.122066 +v -19.487690 -87.925041 -0.121102 +v 19.487690 -87.925041 -0.121102 +v -19.487690 -88.225037 -0.121103 +v 19.487690 -88.225037 -0.121103 +v -19.049919 -87.431198 -0.098857 +v 19.049919 -87.431198 -0.098857 +v -19.049919 -88.718880 -0.098860 +v 19.049919 -88.718880 -0.098860 +v -19.122471 -87.449509 -0.075283 +v 19.122471 -87.449509 -0.075283 +v -19.122471 -88.700569 -0.075285 +v 19.122471 -88.700569 -0.075285 +v -19.191410 -87.479538 -0.052882 +v 19.191410 -87.479538 -0.052882 +v -19.191410 -88.670540 -0.052885 +v 19.191410 -88.670540 -0.052885 +v -18.945499 -87.425041 -0.050541 +v 18.945499 -87.425041 -0.050541 +v -18.945499 -88.725037 -0.050544 +v 18.945499 -88.725037 -0.050544 +v -19.255039 -87.520531 -0.032209 +v 19.255039 -87.520531 -0.032209 +v -19.255039 -88.629547 -0.032212 +v 19.255039 -88.629547 -0.032212 +v -19.015190 -87.431198 -0.015031 +v 19.015190 -87.431198 -0.015031 +v -19.015190 -88.718880 -0.015034 +v 19.015190 -88.718880 -0.015034 +v -19.311781 -87.571487 -0.013775 +v 19.311781 -87.571487 -0.013775 +v -19.311781 -88.578590 -0.013777 +v 19.311781 -88.578590 -0.013777 +v -19.360241 -87.631149 0.001972 +v 19.360241 -87.631149 0.001972 +v -19.360241 -88.518936 0.001970 +v 19.360241 -88.518936 0.001970 +v -19.399229 -87.698044 0.014640 +v 19.399229 -87.698044 0.014640 +v -19.399229 -88.452034 0.014638 +v 19.399229 -88.452034 0.014638 +v -18.904510 -87.425041 0.016356 +v 18.904510 -87.425041 0.016356 +v -18.904510 -88.725037 0.016354 +v 18.904510 -88.725037 0.016354 +v -19.083170 -87.449509 0.019605 +v 19.083170 -87.449509 0.019605 +v -19.083170 -88.700569 0.019602 +v 19.083170 -88.700569 0.019602 +v -19.427780 -87.770531 0.023918 +v 19.427780 -87.770531 0.023918 +v -19.427780 -88.379547 0.023916 +v 19.427780 -88.379547 0.023916 +v -19.445200 -87.846825 0.029578 +v 19.445200 -87.846825 0.029578 +v -19.445200 -88.303253 0.029577 +v 19.445200 -88.303253 0.029577 +v -19.451059 -87.925041 0.031480 +v 19.451059 -87.925041 0.031480 +v -19.451059 -88.225037 0.031479 +v 19.451059 -88.225037 0.031479 +v -19.147760 -87.479538 0.052513 +v 19.147760 -87.479538 0.052513 +v -19.147760 -88.670540 0.052510 +v 19.147760 -88.670540 0.052510 +v -18.967791 -87.431198 0.062332 +v 18.967791 -87.431198 0.062332 +v -18.967791 -88.718880 0.062329 +v 18.967791 -88.718880 0.062329 +v -18.853550 -87.425041 0.076017 +v 18.853550 -87.425041 0.076017 +v -18.853550 -88.725037 0.076015 +v 18.853550 -88.725037 0.076015 +v -19.207359 -87.520531 0.082882 +v 19.207359 -87.520531 0.082882 +v -19.207359 -88.629547 0.082880 +v 19.207359 -88.629547 0.082880 +v -19.029510 -87.449509 0.107173 +v 19.029510 -87.449509 0.107173 +v -19.029510 -88.700569 0.107171 +v 19.029510 -88.700569 0.107171 +v -19.260521 -87.571487 0.109968 +v 19.260521 -87.571487 0.109968 +v -19.260521 -88.578590 0.109966 +v 19.260521 -88.578590 0.109966 +v -18.793890 -87.425041 0.126972 +v 18.793890 -87.425041 0.126972 +v -18.793890 -88.725037 0.126969 +v 18.793890 -88.725037 0.126969 +v -18.908859 -87.431198 0.131325 +v 18.908859 -87.431198 0.131325 +v -18.908859 -88.718887 0.131322 +v 18.908859 -88.718887 0.131322 +v -19.305920 -87.631149 0.133101 +v 19.305920 -87.631149 0.133101 +v -19.305920 -88.518936 0.133099 +v 19.305920 -88.518936 0.133099 +v -19.088150 -87.479538 0.149781 +v 19.088150 -87.479538 0.149781 +v -19.088150 -88.670540 0.149778 +v 19.088150 -88.670540 0.149778 +v -19.342449 -87.698044 0.151713 +v 19.342449 -87.698044 0.151713 +v -19.342449 -88.452034 0.151711 +v 19.342449 -88.452034 0.151711 +v -19.369200 -87.770531 0.165344 +v 19.369200 -87.770531 0.165344 +v -19.369200 -88.379547 0.165342 +v 19.369200 -88.379547 0.165342 +v -18.726999 -87.425041 0.167967 +v 18.726999 -87.425041 0.167967 +v -18.726999 -88.725037 0.167964 +v 18.726999 -88.725037 0.167964 +v -19.385521 -87.846825 0.173657 +v 19.385521 -87.846825 0.173657 +v -19.385521 -88.303253 0.173656 +v 19.385521 -88.303253 0.173656 +v -19.391010 -87.925041 0.176453 +v 19.391010 -87.925041 0.176453 +v -19.391010 -88.225037 0.176452 +v 19.391010 -88.225037 0.176452 +v -18.962811 -87.449509 0.185271 +v 18.962811 -87.449509 0.185271 +v -18.962811 -88.700569 0.185268 +v 18.962811 -88.700569 0.185268 +v -19.142269 -87.520531 0.189103 +v 19.142269 -87.520531 0.189103 +v -19.142269 -88.629547 0.189100 +v 19.142269 -88.629547 0.189100 +v -18.839870 -87.431198 0.190252 +v 18.839870 -87.431198 0.190252 +v -18.839870 -88.718887 0.190249 +v 18.839870 -88.718887 0.190249 +v -18.654510 -87.425041 0.197991 +v 18.654510 -87.425041 0.197991 +v -18.654510 -88.725037 0.197989 +v 18.654510 -88.725037 0.197989 +v -18.578220 -87.425041 0.216309 +v 18.578220 -87.425041 0.216309 +v -18.578220 -88.725037 0.216306 +v 18.578220 -88.725037 0.216306 +v -18.500000 -87.425041 0.222464 +v 18.500000 -87.425041 0.222464 +v -18.500000 -88.725037 0.222461 +v 18.500000 -88.725037 0.222461 +v -19.190540 -87.571487 0.224169 +v 19.190540 -87.571487 0.224169 +v -19.190540 -88.578590 0.224166 +v 19.190540 -88.578590 0.224166 +v -19.014059 -87.479538 0.236526 +v 19.014059 -87.479538 0.236526 +v -19.014059 -88.670540 0.236524 +v 19.014059 -88.670540 0.236524 +v -18.762501 -87.431198 0.237659 +v 18.762501 -87.431198 0.237659 +v -18.762501 -88.718887 0.237656 +v 18.762501 -88.718887 0.237656 +v -18.884710 -87.449509 0.251972 +v 18.884710 -87.449509 0.251972 +v -18.884710 -88.700569 0.251969 +v 18.884710 -88.700569 0.251969 +v -19.231760 -87.631149 0.254121 +v 19.231760 -87.631149 0.254121 +v -19.231760 -88.518936 0.254118 +v 19.231760 -88.518936 0.254118 +v -18.678680 -87.431198 0.272381 +v 18.678680 -87.431198 0.272381 +v -18.678680 -88.718887 0.272378 +v 18.678680 -88.718887 0.272378 +v -19.264931 -87.698044 0.278215 +v 19.264931 -87.698044 0.278215 +v -19.264931 -88.452034 0.278214 +v 19.264931 -88.452034 0.278214 +v -19.061371 -87.520531 0.283831 +v 19.061371 -87.520531 0.283831 +v -19.061371 -88.629547 0.283828 +v 19.061371 -88.629547 0.283828 +v -18.590450 -87.431198 0.293562 +v 18.590450 -87.431198 0.293562 +v -18.590450 -88.718887 0.293559 +v 18.590450 -88.718887 0.293559 +v -19.289221 -87.770531 0.295862 +v 19.289221 -87.770531 0.295862 +v -19.289221 -88.379547 0.295861 +v 19.289221 -88.379547 0.295861 +v -18.500000 -87.431198 0.300682 +v 18.500000 -87.431198 0.300682 +v -18.500000 -88.718887 0.300679 +v 18.500000 -88.718887 0.300679 +v -18.797140 -87.449509 0.305634 +v 18.797140 -87.449509 0.305634 +v -18.797140 -88.700569 0.305632 +v 18.797140 -88.700569 0.305632 +v -19.304041 -87.846825 0.306629 +v 19.304041 -87.846825 0.306629 +v -19.304041 -88.303253 0.306628 +v 19.304041 -88.303253 0.306628 +v -19.309019 -87.925041 0.310247 +v 19.309019 -87.925041 0.310247 +v -19.309019 -88.225037 0.310246 +v 19.309019 -88.225037 0.310246 +v -18.927320 -87.479538 0.310616 +v 18.927320 -87.479538 0.310616 +v -18.927320 -88.670540 0.310613 +v 18.927320 -88.670540 0.310613 +v -19.103550 -87.571487 0.326016 +v 19.103550 -87.571487 0.326016 +v -19.103550 -88.578590 0.326014 +v 19.103550 -88.578590 0.326014 +v -18.702250 -87.449509 0.344938 +v 18.702250 -87.449509 0.344938 +v -18.702250 -88.700569 0.344935 +v 18.702250 -88.700569 0.344935 +v -19.139580 -87.631149 0.362048 +v 19.139580 -87.631149 0.362048 +v -19.139580 -88.518936 0.362045 +v 19.139580 -88.518936 0.362045 +v -18.966640 -87.520531 0.364737 +v 18.966640 -87.520531 0.364737 +v -18.966640 -88.629547 0.364734 +v 18.966640 -88.629547 0.364734 +v -18.602390 -87.449509 0.368915 +v 18.602390 -87.449509 0.368915 +v -18.602390 -88.700569 0.368912 +v 18.602390 -88.700569 0.368912 +v -18.830050 -87.479538 0.370221 +v 18.830050 -87.479538 0.370221 +v -18.830050 -88.670540 0.370218 +v 18.830050 -88.670540 0.370218 +v -18.500000 -87.449509 0.376972 +v 18.500000 -87.449509 0.376972 +v -18.500000 -88.700569 0.376969 +v 18.500000 -88.700569 0.376969 +v -19.168570 -87.698044 0.391034 +v 19.168570 -87.698044 0.391034 +v -19.168570 -88.452034 0.391033 +v 19.168570 -88.452034 0.391033 +v -19.189800 -87.770531 0.412266 +v 19.189800 -87.770531 0.412266 +v -19.189800 -88.379547 0.412265 +v 19.189800 -88.379547 0.412265 +v -19.001711 -87.571487 0.413002 +v 19.001711 -87.571487 0.413002 +v -19.001711 -88.578590 0.412999 +v 19.001711 -88.578590 0.412999 +v -18.724649 -87.479538 0.413877 +v 18.724649 -87.479538 0.413877 +v -18.724649 -88.670540 0.413874 +v 18.724649 -88.670540 0.413874 +v -19.202749 -87.846825 0.425217 +v 19.202749 -87.846825 0.425217 +v -19.202749 -88.303253 0.425216 +v 19.202749 -88.303253 0.425216 +v -19.207109 -87.925041 0.429569 +v 19.207109 -87.925041 0.429569 +v -19.207109 -88.225037 0.429568 +v 19.207109 -88.225037 0.429568 +v -18.860420 -87.520531 0.429827 +v 18.860420 -87.520531 0.429827 +v -18.860420 -88.629547 0.429824 +v 18.860420 -88.629547 0.429824 +v -18.613729 -87.479538 0.440508 +v 18.613729 -87.479538 0.440508 +v -18.613729 -88.670540 0.440505 +v 18.613729 -88.670540 0.440505 +v -18.500000 -87.479538 0.449459 +v 18.500000 -87.479538 0.449459 +v -18.500000 -88.670540 0.449456 +v 18.500000 -88.670540 0.449456 +v -19.031660 -87.631149 0.454226 +v 19.031660 -87.631149 0.454226 +v -19.031660 -88.518936 0.454224 +v 19.031660 -88.518936 0.454224 +v -18.745331 -87.520531 0.477500 +v 18.745331 -87.520531 0.477500 +v -18.745331 -88.629547 0.477497 +v 18.745331 -88.629547 0.477497 +v -18.887501 -87.571487 0.482985 +v 18.887501 -87.571487 0.482985 +v -18.887501 -88.578590 0.482983 +v 18.887501 -88.578590 0.482983 +v -19.055750 -87.698044 0.487391 +v 19.055750 -87.698044 0.487391 +v -19.055750 -88.452034 0.487390 +v 19.055750 -88.452034 0.487390 +v -18.624189 -87.520531 0.506581 +v 18.624189 -87.520531 0.506581 +v -18.624189 -88.629547 0.506578 +v 18.624189 -88.629547 0.506578 +v -19.073400 -87.770531 0.511682 +v 19.073400 -87.770531 0.511682 +v -19.073400 -88.379547 0.511681 +v 19.073400 -88.379547 0.511681 +v -18.500000 -87.520531 0.516356 +v 18.500000 -87.520531 0.516356 +v -18.500000 -88.629547 0.516353 +v 18.500000 -88.629547 0.516353 +v -19.084169 -87.846825 0.526500 +v 19.084169 -87.846825 0.526500 +v -19.084169 -88.303253 0.526499 +v 19.084169 -88.303253 0.526499 +v -18.910641 -87.631149 0.528387 +v 18.910641 -87.631149 0.528387 +v -18.910641 -88.518936 0.528384 +v 18.910641 -88.518936 0.528384 +v -19.087790 -87.925041 0.531480 +v 19.087790 -87.925041 0.531480 +v -19.087790 -88.225037 0.531479 +v 19.087790 -88.225037 0.531479 +v -18.763760 -87.571487 0.534241 +v 18.763760 -87.571487 0.534241 +v -18.763760 -88.578590 0.534238 +v 18.763760 -88.578590 0.534238 +v -18.929251 -87.698044 0.564912 +v 18.929251 -87.698044 0.564912 +v -18.929251 -88.452034 0.564911 +v 18.929251 -88.452034 0.564911 +v -18.633530 -87.571487 0.565508 +v 18.633530 -87.571487 0.565508 +v -18.633530 -88.578590 0.565505 +v 18.633530 -88.578590 0.565505 +v -18.500000 -87.571487 0.576017 +v 18.500000 -87.571487 0.576017 +v -18.500000 -88.578590 0.576015 +v 18.500000 -88.578590 0.576015 +v -18.779510 -87.631149 0.582703 +v 18.779510 -87.631149 0.582703 +v -18.779510 -88.518936 0.582700 +v 18.779510 -88.518936 0.582700 +v -18.942881 -87.770531 0.591664 +v 18.942881 -87.770531 0.591664 +v -18.942881 -88.379547 0.591663 +v 18.942881 -88.379547 0.591663 +v -18.951200 -87.846825 0.607984 +v 18.951200 -87.846825 0.607984 +v -18.951200 -88.303253 0.607983 +v 18.951200 -88.303253 0.607983 +v -18.953991 -87.925041 0.613469 +v 18.953991 -87.925041 0.613469 +v -18.953991 -88.225037 0.613468 +v 18.953991 -88.225037 0.613468 +v -18.641500 -87.631149 0.615836 +v 18.641500 -87.631149 0.615836 +v -18.641500 -88.518936 0.615833 +v 18.641500 -88.518936 0.615833 +v -18.792179 -87.698044 0.621690 +v 18.792179 -87.698044 0.621690 +v -18.792179 -88.452034 0.621689 +v 18.792179 -88.452034 0.621689 +v -18.500000 -87.631149 0.626972 +v 18.500000 -87.631149 0.626972 +v -18.500000 -88.518936 0.626969 +v 18.500000 -88.518936 0.626969 +v -18.801451 -87.770531 0.650246 +v 18.801451 -87.770531 0.650246 +v -18.801451 -88.379547 0.650245 +v 18.801451 -88.379547 0.650245 +v -18.647909 -87.698044 0.656325 +v 18.647909 -87.698044 0.656325 +v -18.647909 -88.452034 0.656324 +v 18.647909 -88.452034 0.656324 +v -18.807119 -87.846825 0.667665 +v 18.807119 -87.846825 0.667665 +v -18.807119 -88.303253 0.667665 +v 18.807119 -88.303253 0.667665 +v -18.500000 -87.698044 0.667966 +v 18.500000 -87.698044 0.667966 +v -18.500000 -88.452034 0.667965 +v 18.500000 -88.452034 0.667965 +v -18.809019 -87.925041 0.673518 +v 18.809019 -87.925041 0.673518 +v -18.809019 -88.225037 0.673517 +v 18.809019 -88.225037 0.673517 +v -18.652611 -87.770531 0.685981 +v 18.652611 -87.770531 0.685981 +v -18.652611 -88.379547 0.685980 +v 18.652611 -88.379547 0.685980 +v -18.500000 -87.770531 0.697990 +v 18.500000 -87.770531 0.697990 +v -18.500000 -88.379547 0.697989 +v 18.500000 -88.379547 0.697989 +v -18.655470 -87.846825 0.704071 +v 18.655470 -87.846825 0.704071 +v -18.655470 -88.303253 0.704070 +v 18.655470 -88.303253 0.704070 +v -18.656441 -87.925041 0.710151 +v 18.656441 -87.925041 0.710151 +v -18.656441 -88.225037 0.710150 +v 18.656441 -88.225037 0.710150 +v -18.500000 -87.846825 0.716307 +v 18.500000 -87.846825 0.716307 +v -18.500000 -88.303253 0.716306 +v 18.500000 -88.303253 0.716306 +v -18.500000 -87.925041 0.722463 +v 18.500000 -87.925041 0.722463 +v -18.500000 -88.225037 0.722462 +v 18.500000 -88.225037 0.722462 + +f 6026 6028 5423 +f 6028 5425 5423 +f 6028 6030 5425 +f 6030 5427 5425 +f 6030 6032 5427 +f 6032 5429 5427 +f 6032 6034 5429 +f 6034 5431 5429 +f 6034 6036 5431 +f 6036 5433 5431 +f 6036 6038 5433 +f 6038 5435 5433 +f 6038 6040 5435 +f 6040 5437 5435 +f 6040 6042 5437 +f 6042 5439 5437 +f 6042 6044 5439 +f 6044 5441 5439 +f 6044 6046 5441 +f 6046 5443 5441 +f 5424 6023 5420 +f 6027 6023 5424 +f 5426 6027 5424 +f 6029 6027 5426 +f 5428 6029 5426 +f 6031 6029 5428 +f 5430 6031 5428 +f 6033 6031 5430 +f 5432 6033 5430 +f 6035 6033 5432 +f 5434 6035 5432 +f 6037 6035 5434 +f 5436 6037 5434 +f 6039 6037 5436 +f 5438 6039 5436 +f 6041 6039 5438 +f 5440 6041 5438 +f 6043 6041 5440 +f 5442 6043 5440 +f 6045 6043 5442 +f 5934 5938 5215 +f 5938 5240 5215 +f 5938 5948 5240 +f 5948 5242 5240 +f 5948 5244 5242 +f 5948 5954 5244 +f 5954 5248 5244 +f 5954 5250 5248 +f 5954 5960 5250 +f 5960 5255 5250 +f 5960 5256 5255 +f 5960 5966 5256 +f 5966 5261 5256 +f 5966 5262 5261 +f 5966 5968 5262 +f 5968 5266 5262 +f 5216 5933 5214 +f 5239 5937 5216 +f 5937 5933 5216 +f 5241 5937 5239 +f 5243 5947 5241 +f 5947 5937 5241 +f 5245 5947 5243 +f 5249 5953 5245 +f 5953 5947 5245 +f 5253 5953 5249 +f 5254 5959 5253 +f 5959 5953 5253 +f 5259 5959 5254 +f 5260 5965 5259 +f 5965 5959 5259 +f 5265 5965 5260 +f 5967 5965 5265 +f 5240 5247 5215 +f 5242 5247 5240 +f 5244 5247 5242 +f 5248 5247 5244 +f 5248 5250 5247 +f 5250 5264 5247 +f 5255 5264 5250 +f 5256 5264 5255 +f 5261 5264 5256 +f 5262 5264 5261 +f 5266 5264 5262 +f 5266 5275 5264 +f 5406 5275 5266 +f 5406 5321 5275 +f 5406 5407 5321 +f 5246 5216 5214 +f 5246 5239 5216 +f 5246 5241 5239 +f 5246 5243 5241 +f 5246 5245 5243 +f 5246 5249 5245 +f 5263 5254 5246 +f 5254 5253 5246 +f 5253 5249 5246 +f 5263 5259 5254 +f 5263 5260 5259 +f 5263 5265 5260 +f 5405 5265 5263 +f 5274 5405 5263 +f 5320 5405 5274 +f 5404 5405 5320 +f 5422 5407 5406 +f 5422 5423 5407 +f 5423 5409 5407 +f 5423 5425 5409 +f 5425 5411 5409 +f 5425 5413 5411 +f 5425 5415 5413 +f 5425 5417 5415 +f 5427 5419 5417 +f 5425 5427 5417 +f 5429 5431 5419 +f 5431 5433 5419 +f 5433 5435 5419 +f 5435 5437 5419 +f 5437 5439 5419 +f 5439 5441 5419 +f 5441 5443 5419 +f 5427 5429 5419 +f 5968 5406 5266 +f 5968 5422 5406 +f 5968 6025 5422 +f 6026 5423 5422 +f 6025 6026 5422 +f 5405 5967 5265 +f 5421 6024 5405 +f 6024 5967 5405 +f 6023 6024 5420 +f 6024 5421 5420 +f 5609 5612 5608 +f 5610 5612 5609 +f 5611 5612 5610 +f 5613 5616 5611 +f 5614 5612 5611 +f 5616 5614 5611 +f 5615 5616 5613 +f 5617 5616 5615 +f 5617 5618 5616 +f 5620 5618 5617 +f 5622 5620 5617 +f 5619 5622 5617 +f 5621 5622 5619 +f 5623 5622 5621 +f 5623 5624 5622 +f 5625 5627 5623 +f 5627 5624 5623 +f 5626 5627 5625 +f 5632 5630 5626 +f 5630 5628 5626 +f 5628 5627 5626 +f 5629 5632 5626 +f 5631 5632 5629 +f 5638 5632 5631 +f 5635 5641 5631 +f 5641 5639 5631 +f 5639 5638 5631 +f 5640 5641 5635 +f 5642 5641 5640 +f 5642 5648 5641 +f 5645 5648 5642 +f 5649 5648 5645 +f 5649 5650 5648 +f 5658 5651 5649 +f 5651 5650 5649 +f 5652 5658 5649 +f 5657 5658 5652 +f 5659 5667 5657 +f 5666 5658 5657 +f 5667 5666 5657 +f 5670 5667 5659 +f 5670 5676 5667 +f 5676 5675 5667 +f 4673 4675 4403 +f 4675 4405 4403 +f 4675 4677 4405 +f 4677 4407 4405 +f 4677 4679 4407 +f 4679 4409 4407 +f 4679 4681 4409 +f 4681 4411 4409 +f 4681 4683 4411 +f 4683 4413 4411 +f 4683 4685 4413 +f 4685 4415 4413 +f 4685 4687 4415 +f 4687 4417 4415 +f 3233 3235 3066 +f 3237 3239 3066 +f 3239 3241 3066 +f 3235 3237 3066 +f 3243 3245 3066 +f 3245 3247 3066 +f 3241 3243 3066 +f 3357 3359 3233 +f 3359 3235 3233 +f 3359 3361 3235 +f 3361 3237 3235 +f 3361 3363 3237 +f 3363 3239 3237 +f 3363 3365 3239 +f 3365 3241 3239 +f 3365 3367 3241 +f 3367 3243 3241 +f 3367 3369 3243 +f 3369 3245 3243 +f 3369 3371 3245 +f 3371 3247 3245 +f 3489 3491 3357 +f 3491 3359 3357 +f 3491 3493 3359 +f 3493 3361 3359 +f 3493 3495 3361 +f 3495 3363 3361 +f 3495 3497 3363 +f 3497 3365 3363 +f 3497 3499 3365 +f 3499 3367 3365 +f 3499 3501 3367 +f 3501 3369 3367 +f 3501 3503 3369 +f 3503 3371 3369 +f 3708 3710 3489 +f 3710 3491 3489 +f 3710 3712 3491 +f 3712 3493 3491 +f 3712 3714 3493 +f 3714 3495 3493 +f 3714 3716 3495 +f 3716 3497 3495 +f 3716 3718 3497 +f 3718 3499 3497 +f 3718 3720 3499 +f 3720 3501 3499 +f 3720 3722 3501 +f 3722 3503 3501 +f 3848 3850 3708 +f 3850 3710 3708 +f 3850 3852 3710 +f 3852 3712 3710 +f 3852 3854 3712 +f 3854 3714 3712 +f 3854 3856 3714 +f 3856 3716 3714 +f 3856 3858 3716 +f 3858 3718 3716 +f 3858 3860 3718 +f 3860 3720 3718 +f 3860 3862 3720 +f 3862 3722 3720 +f 3995 3997 3848 +f 3997 3850 3848 +f 3997 3999 3850 +f 3999 3852 3850 +f 3999 4001 3852 +f 4001 3854 3852 +f 4001 4003 3854 +f 4003 3856 3854 +f 4003 4005 3856 +f 4005 3858 3856 +f 4005 4007 3858 +f 4007 3860 3858 +f 4007 4009 3860 +f 4009 3862 3860 +f 4202 4204 3995 +f 4204 3997 3995 +f 4204 4206 3997 +f 4206 3999 3997 +f 4206 4208 3999 +f 4208 4001 3999 +f 4208 4210 4001 +f 4210 4003 4001 +f 4210 4212 4003 +f 4212 4005 4003 +f 4212 4214 4005 +f 4214 4007 4005 +f 4214 4216 4007 +f 4216 4009 4007 +f 4350 4352 4202 +f 4352 4204 4202 +f 4352 4354 4204 +f 4354 4206 4204 +f 4354 4356 4206 +f 4356 4208 4206 +f 4356 4358 4208 +f 4358 4210 4208 +f 4358 4360 4210 +f 4360 4212 4210 +f 4360 4362 4212 +f 4362 4214 4212 +f 4362 4364 4214 +f 4364 4216 4214 +f 4378 4380 4350 +f 4380 4352 4350 +f 4380 4382 4352 +f 4382 4354 4352 +f 4382 4384 4354 +f 4384 4356 4354 +f 4384 4386 4356 +f 4386 4358 4356 +f 4386 4388 4358 +f 4388 4360 4358 +f 4388 4390 4360 +f 4390 4362 4360 +f 4390 4392 4362 +f 4392 4364 4362 +f 4403 4405 4378 +f 4405 4380 4378 +f 4405 4407 4380 +f 4407 4382 4380 +f 4407 4409 4382 +f 4409 4384 4382 +f 4409 4411 4384 +f 4411 4386 4384 +f 4411 4413 4386 +f 4413 4388 4386 +f 4413 4415 4388 +f 4415 4390 4388 +f 4415 4417 4390 +f 4417 4392 4390 +f 4771 4675 4673 +f 4775 4677 4675 +f 4773 4775 4675 +f 4771 4773 4675 +f 4777 4679 4677 +f 4775 4777 4677 +f 4779 4681 4679 +f 4777 4779 4679 +f 4781 4683 4681 +f 4779 4781 4681 +f 4783 4685 4683 +f 4781 4783 4683 +f 4783 4687 4685 +f 4783 4689 4687 +f 4783 4785 4689 +f 4787 4773 4771 +f 4791 4775 4773 +f 4789 4791 4773 +f 4787 4789 4773 +f 4793 4777 4775 +f 4791 4793 4775 +f 4795 4779 4777 +f 4793 4795 4777 +f 4797 4781 4779 +f 4795 4797 4779 +f 4785 4783 4781 +f 4797 4785 4781 +f 4797 4799 4785 +f 4805 4789 4787 +f 4809 4791 4789 +f 4807 4809 4789 +f 4805 4807 4789 +f 4811 4793 4791 +f 4809 4811 4791 +f 4813 4795 4793 +f 4811 4813 4793 +f 4803 4797 4795 +f 4813 4803 4795 +f 4801 4799 4797 +f 4803 4801 4797 +f 4813 4815 4803 +f 4820 4807 4805 +f 4827 4809 4807 +f 4825 4827 4807 +f 4820 4825 4807 +f 4829 4811 4809 +f 4827 4829 4809 +f 4830 4813 4811 +f 4829 4830 4811 +f 4817 4815 4813 +f 4830 4817 4813 +f 4823 4825 4820 +f 4839 4825 4823 +f 4845 4827 4825 +f 4843 4845 4825 +f 4839 4843 4825 +f 4837 4829 4827 +f 4845 4837 4827 +f 4835 4832 4829 +f 4832 4830 4829 +f 4837 4835 4829 +f 4845 4855 4837 +f 4841 4843 4839 +f 4857 4843 4841 +f 4860 4857 4841 +f 4855 4845 4843 +f 4857 4855 4843 +f 3247 3068 3066 +f 3247 3248 3068 +f 3371 3248 3247 +f 3371 3372 3248 +f 3503 3372 3371 +f 3503 3504 3372 +f 3722 3504 3503 +f 3722 3723 3504 +f 3862 3723 3722 +f 3862 3863 3723 +f 4009 3863 3862 +f 4009 4010 3863 +f 4216 4010 4009 +f 4216 4217 4010 +f 4364 4217 4216 +f 4364 4365 4217 +f 4392 4365 4364 +f 4392 4393 4365 +f 4417 4393 4392 +f 4417 4418 4393 +f 3232 3066 3065 +f 3232 3233 3066 +f 3356 3233 3232 +f 3356 3357 3233 +f 3488 3357 3356 +f 3488 3489 3357 +f 3707 3489 3488 +f 3707 3708 3489 +f 3847 3708 3707 +f 3847 3848 3708 +f 3994 3848 3847 +f 3994 3995 3848 +f 4201 3995 3994 +f 4201 4202 3995 +f 4349 4202 4201 +f 4349 4350 4202 +f 4377 4350 4349 +f 4377 4378 4350 +f 4402 4378 4377 +f 4402 4403 4378 +f 4689 4846 4687 +f 4785 4874 4689 +f 4874 4869 4689 +f 4869 4868 4689 +f 4868 4863 4689 +f 4863 4846 4689 +f 4799 4878 4785 +f 4878 4874 4785 +f 4801 4887 4799 +f 4887 4878 4799 +f 4803 4887 4801 +f 4815 4900 4803 +f 4900 4887 4803 +f 4817 4900 4815 +f 4830 4917 4817 +f 4917 4900 4817 +f 4832 4917 4830 +f 4835 4928 4832 +f 4928 4917 4832 +f 4837 4931 4835 +f 4931 4928 4835 +f 4855 4936 4837 +f 4936 4931 4837 +f 4857 4953 4855 +f 4953 4948 4855 +f 4948 4944 4855 +f 4944 4936 4855 +f 4860 4958 4857 +f 4958 4953 4857 +f 3251 3252 3068 +f 3248 3249 3068 +f 3249 3250 3068 +f 3250 3251 3068 +f 3372 3373 3248 +f 3373 3249 3248 +f 3373 3374 3249 +f 3374 3250 3249 +f 3374 3375 3250 +f 3375 3251 3250 +f 3350 3252 3251 +f 3375 3350 3251 +f 3375 3376 3350 +f 3504 3505 3372 +f 3505 3373 3372 +f 3505 3506 3373 +f 3506 3374 3373 +f 3506 3507 3374 +f 3507 3375 3374 +f 3479 3376 3375 +f 3507 3479 3375 +f 3507 3508 3479 +f 3723 3724 3504 +f 3724 3505 3504 +f 3724 3725 3505 +f 3725 3506 3505 +f 3725 3726 3506 +f 3726 3507 3506 +f 3726 3700 3507 +f 3700 3508 3507 +f 3726 3727 3700 +f 3863 3864 3723 +f 3864 3724 3723 +f 3864 3865 3724 +f 3865 3725 3724 +f 3865 3866 3725 +f 3866 3726 3725 +f 3866 3867 3726 +f 3867 3727 3726 +f 4010 4011 3863 +f 4011 3864 3863 +f 4011 4012 3864 +f 4012 3865 3864 +f 4012 4013 3865 +f 4013 3866 3865 +f 4013 4014 3866 +f 4014 3867 3866 +f 4217 4218 4010 +f 4218 4011 4010 +f 4218 4219 4011 +f 4219 4012 4011 +f 4219 4220 4012 +f 4220 4013 4012 +f 4220 4064 4013 +f 4064 4014 4013 +f 4220 4221 4064 +f 4365 4366 4217 +f 4366 4218 4217 +f 4366 4367 4218 +f 4367 4219 4218 +f 4367 4368 4219 +f 4368 4220 4219 +f 4368 4223 4220 +f 4223 4221 4220 +f 4368 4369 4223 +f 4393 4394 4365 +f 4394 4366 4365 +f 4394 4395 4366 +f 4395 4367 4366 +f 4395 4396 4367 +f 4396 4368 4367 +f 4396 4371 4368 +f 4371 4369 4368 +f 4396 4397 4371 +f 4418 4419 4393 +f 4419 4394 4393 +f 4419 4421 4394 +f 4421 4395 4394 +f 4421 4422 4395 +f 4422 4396 4395 +f 4422 4423 4396 +f 4423 4397 4396 +f 3246 3244 3065 +f 3242 3240 3065 +f 3240 3238 3065 +f 3244 3242 3065 +f 3236 3234 3065 +f 3234 3232 3065 +f 3238 3236 3065 +f 3234 3356 3232 +f 3236 3358 3234 +f 3358 3356 3234 +f 3360 3358 3236 +f 3238 3360 3236 +f 3240 3362 3238 +f 3362 3360 3238 +f 3242 3364 3240 +f 3364 3362 3240 +f 3366 3364 3242 +f 3244 3366 3242 +f 3246 3368 3244 +f 3368 3366 3244 +f 3370 3368 3246 +f 3358 3488 3356 +f 3360 3490 3358 +f 3490 3488 3358 +f 3492 3490 3360 +f 3362 3492 3360 +f 3364 3494 3362 +f 3494 3492 3362 +f 3366 3496 3364 +f 3496 3494 3364 +f 3498 3496 3366 +f 3368 3498 3366 +f 3370 3500 3368 +f 3500 3498 3368 +f 3502 3500 3370 +f 3490 3707 3488 +f 3492 3709 3490 +f 3709 3707 3490 +f 3711 3709 3492 +f 3494 3711 3492 +f 3496 3713 3494 +f 3713 3711 3494 +f 3498 3715 3496 +f 3715 3713 3496 +f 3717 3715 3498 +f 3500 3717 3498 +f 3502 3719 3500 +f 3719 3717 3500 +f 3721 3719 3502 +f 3709 3847 3707 +f 3711 3849 3709 +f 3849 3847 3709 +f 3851 3849 3711 +f 3713 3851 3711 +f 3715 3853 3713 +f 3853 3851 3713 +f 3717 3855 3715 +f 3855 3853 3715 +f 3857 3855 3717 +f 3719 3857 3717 +f 3721 3859 3719 +f 3859 3857 3719 +f 3861 3859 3721 +f 3849 3994 3847 +f 3851 3996 3849 +f 3996 3994 3849 +f 3998 3996 3851 +f 3853 3998 3851 +f 3855 4000 3853 +f 4000 3998 3853 +f 3857 4002 3855 +f 4002 4000 3855 +f 4004 4002 3857 +f 3859 4004 3857 +f 3861 4006 3859 +f 4006 4004 3859 +f 4008 4006 3861 +f 3996 4201 3994 +f 3998 4203 3996 +f 4203 4201 3996 +f 4205 4203 3998 +f 4000 4205 3998 +f 4002 4207 4000 +f 4207 4205 4000 +f 4004 4209 4002 +f 4209 4207 4002 +f 4211 4209 4004 +f 4006 4211 4004 +f 4008 4213 4006 +f 4213 4211 4006 +f 4215 4213 4008 +f 4203 4349 4201 +f 4205 4351 4203 +f 4351 4349 4203 +f 4353 4351 4205 +f 4207 4353 4205 +f 4209 4355 4207 +f 4355 4353 4207 +f 4211 4357 4209 +f 4357 4355 4209 +f 4359 4357 4211 +f 4213 4359 4211 +f 4215 4361 4213 +f 4361 4359 4213 +f 4363 4361 4215 +f 4351 4377 4349 +f 4353 4379 4351 +f 4379 4377 4351 +f 4381 4379 4353 +f 4355 4381 4353 +f 4357 4383 4355 +f 4383 4381 4355 +f 4359 4385 4357 +f 4385 4383 4357 +f 4387 4385 4359 +f 4361 4387 4359 +f 4363 4389 4361 +f 4389 4387 4361 +f 4391 4389 4363 +f 4379 4402 4377 +f 4381 4404 4379 +f 4404 4402 4379 +f 4406 4404 4381 +f 4383 4406 4381 +f 4385 4408 4383 +f 4408 4406 4383 +f 4387 4410 4385 +f 4410 4408 4385 +f 4412 4410 4387 +f 4389 4412 4387 +f 4391 4414 4389 +f 4414 4412 4389 +f 4416 4414 4391 +f 4863 4847 4846 +f 4863 4865 4847 +f 4865 4848 4847 +f 4865 4866 4848 +f 4866 4849 4848 +f 4866 4850 4849 +f 4867 4851 4850 +f 4866 4867 4850 +f 4867 4852 4851 +f 4867 4862 4852 +f 4867 4872 4862 +f 4868 4865 4863 +f 4868 4869 4865 +f 4876 4877 4865 +f 4869 4876 4865 +f 4877 4866 4865 +f 4872 4867 4866 +f 4879 4872 4866 +f 4877 4879 4866 +f 4875 4876 4869 +f 4874 4875 4869 +f 4878 4875 4874 +f 4878 4887 4875 +f 4894 4876 4875 +f 4893 4894 4875 +f 4887 4893 4875 +f 4890 4877 4876 +f 4895 4890 4876 +f 4894 4895 4876 +f 4890 4881 4877 +f 4881 4879 4877 +f 4892 4893 4887 +f 4900 4892 4887 +f 4914 4915 4892 +f 4915 4893 4892 +f 4900 4914 4892 +f 4908 4894 4893 +f 4915 4908 4893 +f 4898 4895 4894 +f 4908 4898 4894 +f 4917 4913 4900 +f 4913 4914 4900 +f 4915 4920 4908 +f 4917 4933 4913 +f 4934 4914 4913 +f 4933 4934 4913 +f 4934 4935 4914 +f 4935 4915 4914 +f 4935 4922 4915 +f 4922 4920 4915 +f 4928 4932 4917 +f 4932 4933 4917 +f 4931 4932 4928 +f 4936 4932 4931 +f 4949 4933 4932 +f 4952 4949 4932 +f 4936 4952 4932 +f 4949 4934 4933 +f 4949 4939 4934 +f 4939 4935 4934 +f 4955 4952 4936 +f 4944 4955 4936 +f 4948 4955 4944 +f 4956 4955 4948 +f 4953 4956 4948 +f 4958 4956 4953 +f 4846 4847 4418 +f 4847 4419 4418 +f 4847 4848 4419 +f 4848 4849 4419 +f 4849 4421 4419 +f 4849 4850 4421 +f 4850 4851 4421 +f 4851 4422 4421 +f 4851 4852 4422 +f 4852 4423 4422 +f 3228 3142 3068 +f 3252 3228 3068 +f 3252 3292 3228 +f 3350 3351 3252 +f 3351 3292 3252 +f 3480 3412 3350 +f 3412 3351 3350 +f 3376 3480 3350 +f 3484 3377 3354 +f 3479 3480 3376 +f 3484 3474 3377 +f 3484 3482 3474 +f 3703 3681 3479 +f 3681 3606 3479 +f 3606 3602 3479 +f 3485 3480 3479 +f 3602 3485 3479 +f 3508 3703 3479 +f 3484 3588 3482 +f 3590 3588 3484 +f 3700 3703 3508 +f 3590 3704 3588 +f 3604 3704 3590 +f 3705 3704 3604 +f 3731 3703 3700 +f 3870 3843 3700 +f 3843 3841 3700 +f 3841 3790 3700 +f 3790 3731 3700 +f 3727 3870 3700 +f 3705 3733 3704 +f 3729 3733 3705 +f 3867 3870 3727 +f 3788 3733 3729 +f 3744 3788 3729 +f 3871 3788 3744 +f 3829 3871 3744 +f 3872 3871 3829 +f 3992 3980 3867 +f 4014 4067 3867 +f 4067 4016 3867 +f 4016 3992 3867 +f 3929 3870 3867 +f 3980 3929 3867 +f 3872 3987 3871 +f 3874 3987 3872 +f 4015 3987 3874 +f 3928 4015 3874 +f 4065 4015 3928 +f 3932 4065 3928 +f 3982 4065 3932 +f 3986 4065 3982 +f 4062 4065 3986 +f 4064 4070 4014 +f 4070 4067 4014 +f 4072 4065 4062 +f 4221 4070 4064 +f 4072 4224 4065 +f 4221 4224 4070 +f 4224 4073 4070 +f 4075 4224 4072 +f 4224 4075 4073 +f 4223 4224 4221 +f 4373 4346 4223 +f 4346 4345 4223 +f 4345 4224 4223 +f 4369 4373 4223 +f 4371 4373 4369 +f 4398 4373 4371 +f 4399 4398 4371 +f 4397 4399 4371 +f 4423 4399 4397 +f 4423 4626 4399 +f 3230 3246 3065 +f 3067 3230 3065 +f 3349 3246 3230 +f 3349 3370 3246 +f 3355 3370 3349 +f 3478 3370 3355 +f 3478 3502 3370 +f 3487 3502 3478 +f 3587 3502 3487 +f 3587 3721 3502 +f 3699 3721 3587 +f 3706 3721 3699 +f 3730 3721 3706 +f 3730 3861 3721 +f 3846 3861 3730 +f 3878 3861 3846 +f 3878 4008 3861 +f 3993 4008 3878 +f 4215 4008 3993 +f 4063 4215 3993 +f 4116 4215 4063 +f 4200 4215 4116 +f 4222 4363 4200 +f 4363 4215 4200 +f 4228 4363 4222 +f 4348 4363 4228 +f 4391 4363 4348 +f 4370 4391 4348 +f 4374 4391 4370 +f 4376 4391 4374 +f 4400 4391 4376 +f 4400 4416 4391 +f 4420 4416 4400 +f 4404 4672 4402 +f 4406 4674 4404 +f 4674 4672 4404 +f 4408 4676 4406 +f 4676 4674 4406 +f 4410 4678 4408 +f 4678 4676 4408 +f 4412 4680 4410 +f 4680 4678 4410 +f 4414 4682 4412 +f 4682 4680 4412 +f 4416 4684 4414 +f 4684 4682 4414 +f 4686 4684 4416 +f 4862 5258 4852 +f 4872 5271 4862 +f 5271 5268 4862 +f 5268 5258 4862 +f 5277 5273 4872 +f 5273 5271 4872 +f 4879 5277 4872 +f 4881 5277 4879 +f 5281 5277 4881 +f 4890 5281 4881 +f 4895 5281 4890 +f 4898 5281 4895 +f 4908 5281 4898 +f 4920 5304 4908 +f 5304 5281 4908 +f 5300 5302 4920 +f 5302 5304 4920 +f 5298 5300 4920 +f 4922 5298 4920 +f 4935 5298 4922 +f 4939 5298 4935 +f 4949 5295 4939 +f 5297 5298 4939 +f 5295 5297 4939 +f 4952 5291 4949 +f 5291 5293 4949 +f 5293 5295 4949 +f 4955 5289 4952 +f 5289 5291 4952 +f 4956 5289 4955 +f 5287 5289 4956 +f 4958 5284 4956 +f 5284 5285 4956 +f 5285 5287 4956 +f 5304 5307 5281 +f 3139 3230 3067 +f 3153 3230 3139 +f 3254 3230 3153 +f 3254 3349 3230 +f 3352 3349 3254 +f 3352 3355 3349 +f 3478 3355 3352 +f 3455 3478 3352 +f 3472 3473 3353 +f 3481 3478 3455 +f 3475 3473 3472 +f 3483 3486 3473 +f 3475 3483 3473 +f 3481 3487 3478 +f 3542 3487 3481 +f 3697 3486 3483 +f 3697 3591 3486 +f 3542 3587 3487 +f 3699 3587 3542 +f 3603 3699 3542 +f 3697 3698 3591 +f 3605 3699 3603 +f 3682 3699 3605 +f 3701 3699 3682 +f 3702 3698 3697 +f 3702 3728 3698 +f 3701 3706 3699 +f 3732 3706 3701 +f 3734 3728 3702 +f 3732 3730 3706 +f 3734 3735 3728 +f 3732 3846 3730 +f 3789 3846 3732 +f 3869 3735 3734 +f 3869 3827 3735 +f 3842 3846 3789 +f 3869 3873 3827 +f 3845 3846 3842 +f 3868 3846 3845 +f 3868 3878 3846 +f 3877 3878 3868 +f 3876 3873 3869 +f 3876 3875 3873 +f 4017 3927 3875 +f 3876 4017 3875 +f 3931 4063 3877 +f 4063 3993 3877 +f 3993 3878 3877 +f 4069 3930 3927 +f 4017 4069 3927 +f 4069 3983 3930 +f 3979 4063 3931 +f 3981 4063 3979 +f 3991 4063 3981 +f 4069 3985 3983 +f 4069 4068 3985 +f 4060 4063 3991 +f 4066 4063 4060 +f 4066 4071 4063 +f 4071 4116 4063 +f 4225 4074 4068 +f 4117 4225 4068 +f 4069 4117 4068 +f 4074 4225 4071 +f 4225 4116 4071 +f 4225 4200 4116 +f 4225 4222 4200 +f 4225 4347 4222 +f 4347 4228 4222 +f 4347 4372 4228 +f 4372 4348 4228 +f 4372 4370 4348 +f 4372 4375 4370 +f 4375 4374 4370 +f 4375 4401 4374 +f 4401 4376 4374 +f 4401 4400 4376 +f 4401 4625 4400 +f 4625 4420 4400 +f 4674 4770 4672 +f 4676 4772 4674 +f 4772 4770 4674 +f 4678 4774 4676 +f 4774 4772 4676 +f 4680 4776 4678 +f 4776 4774 4678 +f 4682 4778 4680 +f 4778 4776 4680 +f 4684 4780 4682 +f 4780 4778 4682 +f 4686 4688 4684 +f 4688 4782 4684 +f 4782 4780 4684 +f 4784 4782 4688 +f 4772 4786 4770 +f 4774 4788 4772 +f 4788 4786 4772 +f 4776 4790 4774 +f 4790 4788 4774 +f 4778 4792 4776 +f 4792 4790 4776 +f 4780 4794 4778 +f 4794 4792 4778 +f 4784 4796 4780 +f 4782 4784 4780 +f 4796 4794 4780 +f 4798 4796 4784 +f 4788 4804 4786 +f 4806 4804 4788 +f 4790 4806 4788 +f 4792 4808 4790 +f 4808 4806 4790 +f 4794 4810 4792 +f 4810 4808 4792 +f 4802 4812 4794 +f 4796 4802 4794 +f 4812 4810 4794 +f 4798 4800 4796 +f 4800 4802 4796 +f 4814 4812 4802 +f 4806 4819 4804 +f 4824 4819 4806 +f 4808 4824 4806 +f 4810 4826 4808 +f 4826 4824 4808 +f 4821 4828 4810 +f 4812 4821 4810 +f 4828 4826 4810 +f 4814 4816 4812 +f 4816 4821 4812 +f 4824 4822 4819 +f 4824 4838 4822 +f 4842 4838 4824 +f 4826 4842 4824 +f 4836 4844 4826 +f 4834 4836 4826 +f 4828 4834 4826 +f 4844 4842 4826 +f 4821 4831 4828 +f 4831 4834 4828 +f 4854 4844 4836 +f 4842 4840 4838 +f 4842 4859 4840 +f 4856 4859 4842 +f 4844 4856 4842 +f 4854 4856 4844 +f 5268 4902 4885 +f 5258 5268 4885 +f 5268 4910 4902 +f 5268 4925 4910 +f 5273 4947 4925 +f 5271 5273 4925 +f 5268 5271 4925 +f 5273 4959 4947 +f 5277 4971 4959 +f 5273 5277 4959 +f 5277 4974 4971 +f 5277 5281 4974 +f 5281 4988 4974 +f 5281 5309 4988 +f 5309 4992 4988 +f 5309 5311 4992 +f 5311 5004 4992 +f 5311 5019 5004 +f 5311 5020 5019 +f 5313 5030 5020 +f 5311 5313 5020 +f 5313 5036 5030 +f 5313 5315 5036 +f 5315 5044 5036 +f 5315 5046 5044 +f 5317 5050 5046 +f 5315 5317 5046 +f 5317 5053 5050 +f 5317 5319 5053 +f 5307 5309 5281 +f 4861 4864 4686 +f 4864 4870 4686 +f 4870 4688 4686 +f 4873 4784 4688 +f 4870 4871 4688 +f 4871 4873 4688 +f 4880 4798 4784 +f 4873 4880 4784 +f 4886 4800 4798 +f 4880 4886 4798 +f 4891 4802 4800 +f 4886 4891 4800 +f 4899 4814 4802 +f 4891 4899 4802 +f 4907 4816 4814 +f 4899 4907 4814 +f 4909 4821 4816 +f 4907 4909 4816 +f 4909 4921 4821 +f 4921 4831 4821 +f 4923 4834 4831 +f 4921 4923 4831 +f 4940 4836 4834 +f 4923 4940 4834 +f 4941 4854 4836 +f 4940 4941 4836 +f 4950 4856 4854 +f 4941 4950 4854 +f 4951 4859 4856 +f 4950 4951 4856 +f 4951 4957 4859 +f 4902 4904 4883 +f 4885 4902 4883 +f 4910 4927 4902 +f 4927 4904 4902 +f 4925 4927 4910 +f 4947 4927 4925 +f 4947 4962 4927 +f 4959 4962 4947 +f 4971 4962 4959 +f 4971 4976 4962 +f 4974 4976 4971 +f 4988 4976 4974 +f 4988 4991 4976 +f 4992 4991 4988 +f 5004 5007 4991 +f 4992 5004 4991 +f 5019 5007 5004 +f 5019 5022 5007 +f 5020 5022 5019 +f 5030 5022 5020 +f 5030 5039 5022 +f 5036 5039 5030 +f 5044 5039 5036 +f 5044 5049 5039 +f 5046 5049 5044 +f 5055 5049 5046 +f 5050 5055 5046 +f 5053 5055 5050 +f 5257 4833 4818 +f 5257 4853 4833 +f 5267 4858 4853 +f 5257 5267 4853 +f 5267 4861 4858 +f 5267 4864 4861 +f 5272 4870 4864 +f 5267 5272 4864 +f 5272 4871 4870 +f 5272 4873 4871 +f 5276 4880 4873 +f 5272 5276 4873 +f 5276 4886 4880 +f 5276 5278 4886 +f 5278 5282 4886 +f 5282 4891 4886 +f 5282 5303 4891 +f 5303 4899 4891 +f 5303 4907 4899 +f 5303 4909 4907 +f 5301 4921 4909 +f 5303 5301 4909 +f 5301 4923 4921 +f 5301 5299 4923 +f 5299 5296 4923 +f 5296 4940 4923 +f 5296 5294 4940 +f 5294 4941 4940 +f 5294 5292 4941 +f 5292 5290 4941 +f 5290 4950 4941 +f 5290 5288 4950 +f 5288 5286 4950 +f 5286 4951 4950 +f 5286 5283 4951 +f 5283 4957 4951 +f 5306 5305 5282 +f 5305 5303 5282 +f 4904 4906 4883 +f 4906 4889 4883 +f 4906 4919 4889 +f 4919 4897 4889 +f 4919 4938 4897 +f 4938 4912 4897 +f 4927 4930 4904 +f 4930 4906 4904 +f 4930 4946 4906 +f 4946 4919 4906 +f 4938 4968 4912 +f 4968 4943 4912 +f 4946 4966 4919 +f 4966 4938 4919 +f 4962 4964 4927 +f 4964 4930 4927 +f 4964 4970 4930 +f 4970 4946 4930 +f 4966 4983 4938 +f 4983 4968 4938 +f 4968 4987 4943 +f 4987 4973 4943 +f 4970 4981 4946 +f 4981 4966 4946 +f 4976 4979 4962 +f 4979 4964 4962 +f 4979 4985 4964 +f 4985 4970 4964 +f 4981 4999 4966 +f 4999 4983 4966 +f 4983 5003 4968 +f 5003 4987 4968 +f 4985 4997 4970 +f 4997 4981 4970 +f 4987 5029 4973 +f 5029 5011 4973 +f 4991 4994 4976 +f 4994 4979 4976 +f 4994 5001 4979 +f 5001 4985 4979 +f 4997 5016 4981 +f 5016 4999 4981 +f 4999 5027 4983 +f 5027 5003 4983 +f 5001 5014 4985 +f 5014 4997 4985 +f 5003 5087 4987 +f 5087 5029 4987 +f 5007 5009 4991 +f 5009 4994 4991 +f 5009 5018 4994 +f 5018 5001 4994 +f 5014 5041 4997 +f 5041 5016 4997 +f 5016 5083 4999 +f 5083 5027 4999 +f 5018 5032 5001 +f 5032 5014 5001 +f 5027 5105 5003 +f 5105 5087 5003 +f 5022 5025 5007 +f 5025 5009 5007 +f 5025 5035 5009 +f 5035 5018 5009 +f 5029 5119 5011 +f 5119 5107 5011 +f 5032 5093 5014 +f 5093 5041 5014 +f 5041 5103 5016 +f 5103 5083 5016 +f 5035 5089 5018 +f 5089 5032 5018 +f 5039 5043 5022 +f 5043 5025 5022 +f 5043 5085 5025 +f 5085 5035 5025 +f 5083 5121 5027 +f 5121 5105 5027 +f 5087 5131 5029 +f 5131 5119 5029 +f 5089 5111 5032 +f 5111 5093 5032 +f 5085 5101 5035 +f 5101 5089 5035 +f 5049 5081 5039 +f 5081 5043 5039 +f 5093 5117 5041 +f 5117 5103 5041 +f 5081 5095 5043 +f 5095 5085 5043 +f 5055 5091 5049 +f 5091 5081 5049 +f 5091 5097 5081 +f 5097 5095 5081 +f 5103 5133 5083 +f 5133 5121 5083 +f 5095 5109 5085 +f 5109 5101 5085 +f 5105 5141 5087 +f 5141 5131 5087 +f 5101 5115 5089 +f 5115 5111 5089 +f 5111 5127 5093 +f 5127 5117 5093 +f 5097 5113 5095 +f 5113 5109 5095 +f 5109 5123 5101 +f 5123 5115 5101 +f 5117 5143 5103 +f 5143 5133 5103 +f 5121 5147 5105 +f 5147 5141 5105 +f 5119 5159 5107 +f 5159 5149 5107 +f 5113 5125 5109 +f 5125 5123 5109 +f 5115 5135 5111 +f 5135 5127 5111 +f 5123 5137 5115 +f 5137 5135 5115 +f 5127 5145 5117 +f 5145 5143 5117 +f 5131 5163 5119 +f 5163 5159 5119 +f 5133 5157 5121 +f 5157 5147 5121 +f 5125 5139 5123 +f 5139 5137 5123 +f 5135 5151 5127 +f 5151 5145 5127 +f 5141 5169 5131 +f 5169 5163 5131 +f 5143 5161 5133 +f 5161 5157 5133 +f 5137 5153 5135 +f 5153 5151 5135 +f 5139 5155 5137 +f 5155 5153 5137 +f 5147 5177 5141 +f 5177 5169 5141 +f 5145 5167 5143 +f 5167 5161 5143 +f 5151 5171 5145 +f 5171 5167 5145 +f 5157 5179 5147 +f 5179 5177 5147 +f 5159 5193 5149 +f 5193 5187 5149 +f 5153 5173 5151 +f 5173 5171 5151 +f 5155 5175 5153 +f 5175 5173 5153 +f 5161 5181 5157 +f 5181 5179 5157 +f 5163 5195 5159 +f 5195 5193 5159 +f 5167 5183 5161 +f 5183 5181 5161 +f 5169 5197 5163 +f 5197 5195 5163 +f 5171 5185 5167 +f 5185 5183 5167 +f 5177 5199 5169 +f 5199 5197 5169 +f 5173 5189 5171 +f 5189 5185 5171 +f 5175 5191 5173 +f 5191 5189 5173 +f 5179 5201 5177 +f 5201 5199 5177 +f 5181 5203 5179 +f 5203 5201 5179 +f 5183 5205 5181 +f 5205 5203 5181 +f 5185 5207 5183 +f 5207 5205 5183 +f 5189 5209 5185 +f 5209 5207 5185 +f 5193 5236 5187 +f 5236 5238 5187 +f 5191 5213 5189 +f 5213 5209 5189 +f 5195 5234 5193 +f 5234 5236 5193 +f 5197 5232 5195 +f 5232 5234 5195 +f 5199 5230 5197 +f 5230 5232 5197 +f 5201 5228 5199 +f 5228 5230 5199 +f 5203 5226 5201 +f 5226 5228 5201 +f 5205 5224 5203 +f 5224 5226 5203 +f 5207 5222 5205 +f 5222 5224 5205 +f 5209 5220 5207 +f 5220 5222 5207 +f 5213 5218 5209 +f 5218 5220 5209 +f 4901 5257 4884 +f 4916 5267 4901 +f 5267 5257 4901 +f 4924 5272 4916 +f 5272 5267 4916 +f 4954 5272 4924 +f 4960 5276 4954 +f 5276 5272 4954 +f 4977 5278 4960 +f 5278 5276 4960 +f 4989 5282 4977 +f 5282 5278 4977 +f 4995 5308 4989 +f 5308 5282 4989 +f 5005 5310 4995 +f 5310 5308 4995 +f 5012 5310 5005 +f 5023 5312 5012 +f 5312 5310 5012 +f 5033 5312 5023 +f 5037 5314 5033 +f 5314 5312 5033 +f 5045 5314 5037 +f 5047 5316 5045 +f 5316 5314 5045 +f 5051 5316 5047 +f 5052 5318 5051 +f 5318 5316 5051 +f 5308 5306 5282 +f 5449 5220 5218 +f 5447 5449 5218 +f 5453 5222 5220 +f 5451 5453 5220 +f 5449 5451 5220 +f 5457 5224 5222 +f 5455 5457 5222 +f 5453 5455 5222 +f 5461 5226 5224 +f 5459 5461 5224 +f 5457 5459 5224 +f 5463 5228 5226 +f 5461 5463 5226 +f 5465 5230 5228 +f 5463 5465 5228 +f 5467 5232 5230 +f 5465 5467 5230 +f 5469 5234 5232 +f 5467 5469 5232 +f 5473 5236 5234 +f 5471 5473 5234 +f 5469 5471 5234 +f 5477 5238 5236 +f 5475 5477 5236 +f 5473 5475 5236 +f 5477 5479 5238 +f 4903 4884 4882 +f 4903 4901 4884 +f 4903 4916 4901 +f 4926 4924 4903 +f 4924 4916 4903 +f 4926 4954 4924 +f 4960 4954 4926 +f 4961 4960 4926 +f 4961 4975 4960 +f 4975 4977 4960 +f 4990 4977 4975 +f 4990 4989 4977 +f 4990 4995 4989 +f 5006 5005 4990 +f 5005 4995 4990 +f 5006 5012 5005 +f 5021 5023 5006 +f 5023 5012 5006 +f 5038 5037 5021 +f 5037 5033 5021 +f 5033 5023 5021 +f 5038 5045 5037 +f 5048 5047 5038 +f 5047 5045 5038 +f 5048 5051 5047 +f 5054 5052 5048 +f 5052 5051 5048 +f 5503 5449 5447 +f 5501 5451 5449 +f 5503 5501 5449 +f 5499 5453 5451 +f 5501 5499 5451 +f 5499 5455 5453 +f 5497 5457 5455 +f 5499 5497 5455 +f 5497 5459 5457 +f 5495 5461 5459 +f 5497 5495 5459 +f 5495 5463 5461 +f 5493 5465 5463 +f 5495 5493 5463 +f 5491 5467 5465 +f 5493 5491 5465 +f 5489 5469 5467 +f 5491 5489 5467 +f 5489 5471 5469 +f 5487 5473 5471 +f 5489 5487 5471 +f 5487 5475 5473 +f 5485 5477 5475 +f 5487 5485 5475 +f 5485 5479 5477 +f 5485 5483 5479 +f 5485 5511 5483 +f 5511 5509 5483 +f 5513 5511 5485 +f 5487 5513 5485 +f 5489 5517 5487 +f 5517 5513 5487 +f 5491 5519 5489 +f 5519 5517 5489 +f 5493 5521 5491 +f 5521 5519 5491 +f 5495 5523 5493 +f 5523 5521 5493 +f 5497 5525 5495 +f 5525 5523 5495 +f 5499 5527 5497 +f 5527 5525 5497 +f 5501 5529 5499 +f 5529 5527 5499 +f 5507 5529 5501 +f 5503 5507 5501 +f 5531 5529 5507 +f 5511 5537 5509 +f 5537 5535 5509 +f 5541 5537 5511 +f 5513 5541 5511 +f 5517 5543 5513 +f 5543 5541 5513 +f 5519 5547 5517 +f 5547 5543 5517 +f 5521 5549 5519 +f 5549 5547 5519 +f 5523 5551 5521 +f 5551 5549 5521 +f 5525 5553 5523 +f 5553 5551 5523 +f 5527 5555 5525 +f 5555 5553 5525 +f 5529 5557 5527 +f 5557 5555 5527 +f 5539 5557 5529 +f 5531 5539 5529 +f 5537 5565 5535 +f 5565 5563 5535 +f 5569 5565 5537 +f 5541 5569 5537 +f 5559 5557 5539 +f 5543 5571 5541 +f 5571 5569 5541 +f 5547 5573 5543 +f 5573 5571 5543 +f 5549 5579 5547 +f 5579 5573 5547 +f 5551 5581 5549 +f 5581 5579 5549 +f 5553 5583 5551 +f 5583 5581 5551 +f 5555 5585 5553 +f 5585 5583 5553 +f 5557 5587 5555 +f 5587 5585 5555 +f 5559 5587 5557 +f 5575 5587 5559 +f 5565 5637 5563 +f 5637 5634 5563 +f 5644 5637 5565 +f 5569 5644 5565 +f 5571 5647 5569 +f 5647 5644 5569 +f 5573 5654 5571 +f 5654 5647 5571 +f 5579 5656 5573 +f 5656 5654 5573 +f 5589 5587 5575 +f 5581 5661 5579 +f 5661 5656 5579 +f 5583 5665 5581 +f 5665 5661 5581 +f 5585 5669 5583 +f 5669 5665 5583 +f 5587 5672 5585 +f 5672 5669 5585 +f 5589 5672 5587 +f 5663 5672 5589 +f 5637 5680 5634 +f 5680 5678 5634 +f 5682 5680 5637 +f 5644 5682 5637 +f 5647 5684 5644 +f 5684 5682 5644 +f 5654 5686 5647 +f 5686 5684 5647 +f 5656 5688 5654 +f 5688 5686 5654 +f 5661 5690 5656 +f 5690 5688 5656 +f 5665 5692 5661 +f 5692 5690 5661 +f 5674 5672 5663 +f 5669 5696 5665 +f 5696 5692 5665 +f 5672 5698 5669 +f 5698 5696 5669 +f 5700 5698 5672 +f 5674 5700 5672 +f 5680 5704 5678 +f 5704 5694 5678 +f 5706 5704 5680 +f 5682 5706 5680 +f 5684 5708 5682 +f 5708 5706 5682 +f 5686 5710 5684 +f 5710 5708 5684 +f 5688 5714 5686 +f 5714 5710 5686 +f 5690 5718 5688 +f 5718 5714 5688 +f 5692 5720 5690 +f 5720 5718 5690 +f 5696 5724 5692 +f 5724 5720 5692 +f 5704 5716 5694 +f 5716 5712 5694 +f 5698 5726 5696 +f 5726 5724 5696 +f 5702 5726 5698 +f 5700 5702 5698 +f 5728 5726 5702 +f 5722 5716 5704 +f 5706 5722 5704 +f 5708 5732 5706 +f 5732 5722 5706 +f 5710 5738 5708 +f 5738 5732 5708 +f 5714 5740 5710 +f 5740 5738 5710 +f 5716 5736 5712 +f 5736 5734 5712 +f 5718 5748 5714 +f 5748 5740 5714 +f 5742 5736 5716 +f 5722 5742 5716 +f 5720 5828 5718 +f 5828 5748 5718 +f 5724 5833 5720 +f 5833 5828 5720 +f 5732 5830 5722 +f 5830 5742 5722 +f 5726 5836 5724 +f 5836 5833 5724 +f 5730 5836 5726 +f 5728 5730 5726 +f 5838 5836 5730 +f 5738 5842 5732 +f 5842 5830 5732 +f 5736 5826 5734 +f 5826 5744 5734 +f 5840 5826 5736 +f 5742 5840 5736 +f 5740 5849 5738 +f 5849 5842 5738 +f 5748 5855 5740 +f 5855 5849 5740 +f 5830 5851 5742 +f 5851 5840 5742 +f 5834 5746 5744 +f 5826 5834 5744 +f 5828 5860 5748 +f 5860 5855 5748 +f 5840 5834 5826 +f 5833 5865 5828 +f 5865 5860 5828 +f 5842 5858 5830 +f 5858 5851 5830 +f 5836 5868 5833 +f 5868 5865 5833 +f 5840 5843 5834 +f 5846 5868 5836 +f 5838 5846 5836 +f 5851 5847 5840 +f 5847 5843 5840 +f 5849 5872 5842 +f 5872 5858 5842 +f 5870 5868 5846 +f 5851 5852 5847 +f 5855 5879 5849 +f 5879 5872 5849 +f 5858 5856 5851 +f 5856 5852 5851 +f 5860 5883 5855 +f 5883 5879 5855 +f 5858 5862 5856 +f 5872 5866 5858 +f 5866 5862 5858 +f 5865 5886 5860 +f 5886 5883 5860 +f 5868 5892 5865 +f 5892 5886 5865 +f 5872 5874 5866 +f 5877 5892 5868 +f 5870 5877 5868 +f 5879 5875 5872 +f 5875 5874 5872 +f 5879 5884 5875 +f 5894 5892 5877 +f 5883 5884 5879 +f 5888 5884 5883 +f 5886 5890 5883 +f 5890 5888 5883 +f 5897 5890 5886 +f 5892 5898 5886 +f 5898 5897 5886 +f 5894 5931 5892 +f 5931 5900 5892 +f 5900 5898 5892 +f 4888 4903 4882 +f 4905 4903 4888 +f 4896 4905 4888 +f 4918 4905 4896 +f 4911 4918 4896 +f 4905 4926 4903 +f 4929 4926 4905 +f 4918 4929 4905 +f 4937 4918 4911 +f 4942 4937 4911 +f 4945 4929 4918 +f 4937 4945 4918 +f 4929 4961 4926 +f 4963 4961 4929 +f 4945 4963 4929 +f 4965 4945 4937 +f 4942 4967 4937 +f 4967 4965 4937 +f 4972 4967 4942 +f 4969 4963 4945 +f 4965 4969 4945 +f 4963 4975 4961 +f 4978 4975 4963 +f 4969 4978 4963 +f 4980 4969 4965 +f 4967 4982 4965 +f 4982 4980 4965 +f 4972 4986 4967 +f 4986 4982 4967 +f 4984 4978 4969 +f 4980 4984 4969 +f 5010 4986 4972 +f 4978 4990 4975 +f 4993 4990 4978 +f 4984 4993 4978 +f 4996 4984 4980 +f 4982 4998 4980 +f 4998 4996 4980 +f 4986 5002 4982 +f 5002 4998 4982 +f 5000 4993 4984 +f 4996 5000 4984 +f 5010 5028 4986 +f 5028 5002 4986 +f 4993 5006 4990 +f 5008 5006 4993 +f 5000 5008 4993 +f 5013 5000 4996 +f 4998 5015 4996 +f 5015 5013 4996 +f 5002 5026 4998 +f 5026 5015 4998 +f 5017 5008 5000 +f 5013 5017 5000 +f 5028 5086 5002 +f 5086 5026 5002 +f 5008 5021 5006 +f 5024 5021 5008 +f 5017 5024 5008 +f 5106 5028 5010 +f 5031 5017 5013 +f 5015 5040 5013 +f 5040 5031 5013 +f 5026 5082 5015 +f 5082 5040 5015 +f 5034 5024 5017 +f 5031 5034 5017 +f 5024 5038 5021 +f 5042 5038 5024 +f 5034 5042 5024 +f 5086 5104 5026 +f 5104 5082 5026 +f 5106 5118 5028 +f 5118 5086 5028 +f 5088 5034 5031 +f 5040 5092 5031 +f 5092 5088 5031 +f 5084 5042 5034 +f 5088 5084 5034 +f 5042 5048 5038 +f 5082 5102 5040 +f 5102 5092 5040 +f 5080 5048 5042 +f 5084 5080 5042 +f 5080 5054 5048 +f 5080 5090 5054 +f 5084 5094 5080 +f 5094 5090 5080 +f 5104 5120 5082 +f 5120 5102 5082 +f 5088 5100 5084 +f 5100 5094 5084 +f 5118 5130 5086 +f 5130 5104 5086 +f 5092 5110 5088 +f 5110 5100 5088 +f 5094 5096 5090 +f 5102 5116 5092 +f 5116 5110 5092 +f 5100 5108 5094 +f 5108 5096 5094 +f 5108 5112 5096 +f 5110 5114 5100 +f 5114 5108 5100 +f 5120 5132 5102 +f 5132 5116 5102 +f 5130 5140 5104 +f 5140 5120 5104 +f 5148 5118 5106 +f 5114 5122 5108 +f 5122 5112 5108 +f 5116 5126 5110 +f 5126 5114 5110 +f 5122 5124 5112 +f 5126 5134 5114 +f 5134 5122 5114 +f 5132 5142 5116 +f 5142 5126 5116 +f 5148 5158 5118 +f 5158 5130 5118 +f 5140 5146 5120 +f 5146 5132 5120 +f 5134 5136 5122 +f 5136 5124 5122 +f 5136 5138 5124 +f 5142 5144 5126 +f 5144 5134 5126 +f 5158 5162 5130 +f 5162 5140 5130 +f 5146 5156 5132 +f 5156 5142 5132 +f 5144 5150 5134 +f 5150 5136 5134 +f 5150 5152 5136 +f 5152 5138 5136 +f 5152 5154 5138 +f 5162 5168 5140 +f 5168 5146 5140 +f 5156 5160 5142 +f 5160 5144 5142 +f 5160 5166 5144 +f 5166 5150 5144 +f 5168 5176 5146 +f 5176 5156 5146 +f 5186 5158 5148 +f 5166 5170 5150 +f 5170 5152 5150 +f 5170 5172 5152 +f 5172 5154 5152 +f 5172 5174 5154 +f 5176 5178 5156 +f 5178 5160 5156 +f 5186 5192 5158 +f 5192 5162 5158 +f 5178 5180 5160 +f 5180 5166 5160 +f 5192 5194 5162 +f 5194 5168 5162 +f 5180 5182 5166 +f 5182 5170 5166 +f 5194 5196 5168 +f 5196 5176 5168 +f 5182 5184 5170 +f 5184 5172 5170 +f 5184 5188 5172 +f 5188 5174 5172 +f 5188 5190 5174 +f 5196 5198 5176 +f 5198 5178 5176 +f 5198 5200 5178 +f 5200 5180 5178 +f 5200 5202 5180 +f 5202 5182 5180 +f 5202 5204 5182 +f 5204 5184 5182 +f 5204 5206 5184 +f 5206 5188 5184 +f 5237 5192 5186 +f 5206 5208 5188 +f 5208 5190 5188 +f 5208 5212 5190 +f 5237 5235 5192 +f 5235 5194 5192 +f 5235 5233 5194 +f 5233 5196 5194 +f 5233 5231 5196 +f 5231 5198 5196 +f 5231 5229 5198 +f 5229 5200 5198 +f 5229 5227 5200 +f 5227 5202 5200 +f 5227 5225 5202 +f 5225 5204 5202 +f 5225 5223 5204 +f 5223 5206 5204 +f 5223 5221 5206 +f 5221 5208 5206 +f 5221 5219 5208 +f 5219 5212 5208 +f 5219 5217 5212 +f 5448 5446 5217 +f 5219 5448 5217 +f 5221 5452 5219 +f 5450 5448 5219 +f 5452 5450 5219 +f 5223 5456 5221 +f 5456 5454 5221 +f 5454 5452 5221 +f 5225 5458 5223 +f 5458 5456 5223 +f 5227 5460 5225 +f 5460 5458 5225 +f 5229 5462 5227 +f 5462 5460 5227 +f 5231 5464 5229 +f 5464 5462 5229 +f 5233 5468 5231 +f 5468 5466 5231 +f 5466 5464 5231 +f 5235 5472 5233 +f 5472 5470 5233 +f 5470 5468 5233 +f 5237 5476 5235 +f 5476 5474 5235 +f 5474 5472 5235 +f 5478 5476 5237 +f 5500 5502 5446 +f 5448 5500 5446 +f 5450 5500 5448 +f 5498 5500 5450 +f 5452 5498 5450 +f 5454 5498 5452 +f 5456 5496 5454 +f 5496 5498 5454 +f 5458 5496 5456 +f 5460 5494 5458 +f 5494 5496 5458 +f 5462 5492 5460 +f 5492 5494 5460 +f 5464 5490 5462 +f 5490 5492 5462 +f 5466 5490 5464 +f 5468 5488 5466 +f 5488 5490 5466 +f 5470 5488 5468 +f 5472 5486 5470 +f 5486 5488 5470 +f 5474 5486 5472 +f 5476 5484 5474 +f 5484 5486 5474 +f 5482 5484 5476 +f 5478 5482 5476 +f 5508 5484 5482 +f 5508 5510 5484 +f 5510 5486 5484 +f 5512 5488 5486 +f 5510 5512 5486 +f 5516 5490 5488 +f 5512 5516 5488 +f 5518 5492 5490 +f 5516 5518 5490 +f 5520 5494 5492 +f 5518 5520 5492 +f 5522 5496 5494 +f 5520 5522 5494 +f 5524 5498 5496 +f 5522 5524 5496 +f 5526 5500 5498 +f 5524 5526 5498 +f 5506 5502 5500 +f 5528 5506 5500 +f 5526 5528 5500 +f 5528 5530 5506 +f 5534 5510 5508 +f 5534 5536 5510 +f 5536 5512 5510 +f 5540 5516 5512 +f 5536 5540 5512 +f 5542 5518 5516 +f 5540 5542 5516 +f 5546 5520 5518 +f 5542 5546 5518 +f 5548 5522 5520 +f 5546 5548 5520 +f 5550 5524 5522 +f 5548 5550 5522 +f 5552 5526 5524 +f 5550 5552 5524 +f 5554 5528 5526 +f 5552 5554 5526 +f 5538 5530 5528 +f 5556 5538 5528 +f 5554 5556 5528 +f 5562 5536 5534 +f 5562 5564 5536 +f 5564 5540 5536 +f 5556 5558 5538 +f 5568 5542 5540 +f 5564 5568 5540 +f 5570 5546 5542 +f 5568 5570 5542 +f 5572 5548 5546 +f 5570 5572 5546 +f 5578 5550 5548 +f 5572 5578 5548 +f 5580 5552 5550 +f 5578 5580 5550 +f 5582 5554 5552 +f 5580 5582 5552 +f 5584 5556 5554 +f 5582 5584 5554 +f 5574 5558 5556 +f 5586 5574 5556 +f 5584 5586 5556 +f 5633 5564 5562 +f 5633 5636 5564 +f 5636 5568 5564 +f 5643 5570 5568 +f 5636 5643 5568 +f 5646 5572 5570 +f 5643 5646 5570 +f 5653 5578 5572 +f 5646 5653 5572 +f 5586 5588 5574 +f 5655 5580 5578 +f 5653 5655 5578 +f 5660 5582 5580 +f 5655 5660 5580 +f 5664 5584 5582 +f 5660 5664 5582 +f 5668 5586 5584 +f 5664 5668 5584 +f 5662 5588 5586 +f 5671 5662 5586 +f 5668 5671 5586 +f 5677 5636 5633 +f 5677 5679 5636 +f 5679 5643 5636 +f 5681 5646 5643 +f 5679 5681 5643 +f 5683 5653 5646 +f 5681 5683 5646 +f 5685 5655 5653 +f 5683 5685 5653 +f 5687 5660 5655 +f 5685 5687 5655 +f 5689 5664 5660 +f 5687 5689 5660 +f 5671 5673 5662 +f 5691 5668 5664 +f 5689 5691 5664 +f 5695 5671 5668 +f 5691 5695 5668 +f 5697 5673 5671 +f 5695 5697 5671 +f 5697 5699 5673 +f 5693 5679 5677 +f 5693 5703 5679 +f 5703 5681 5679 +f 5705 5683 5681 +f 5703 5705 5681 +f 5707 5685 5683 +f 5705 5707 5683 +f 5709 5687 5685 +f 5707 5709 5685 +f 5713 5689 5687 +f 5709 5713 5687 +f 5717 5691 5689 +f 5713 5717 5689 +f 5719 5695 5691 +f 5717 5719 5691 +f 5711 5703 5693 +f 5723 5697 5695 +f 5719 5723 5695 +f 5701 5699 5697 +f 5725 5701 5697 +f 5723 5725 5697 +f 5725 5727 5701 +f 5711 5715 5703 +f 5715 5705 5703 +f 5721 5707 5705 +f 5715 5721 5705 +f 5731 5709 5707 +f 5721 5731 5707 +f 5737 5713 5709 +f 5731 5737 5709 +f 5733 5715 5711 +f 5739 5717 5713 +f 5737 5739 5713 +f 5733 5735 5715 +f 5735 5721 5715 +f 5747 5719 5717 +f 5739 5747 5717 +f 5827 5723 5719 +f 5747 5827 5719 +f 5741 5731 5721 +f 5735 5741 5721 +f 5832 5725 5723 +f 5827 5832 5723 +f 5835 5837 5725 +f 5837 5729 5725 +f 5729 5727 5725 +f 5832 5835 5725 +f 5829 5737 5731 +f 5741 5829 5731 +f 5743 5735 5733 +f 5743 5825 5735 +f 5825 5741 5735 +f 5841 5739 5737 +f 5829 5841 5737 +f 5848 5747 5739 +f 5841 5848 5739 +f 5839 5829 5741 +f 5825 5839 5741 +f 5745 5825 5743 +f 5831 5825 5745 +f 5854 5827 5747 +f 5848 5854 5747 +f 5831 5844 5825 +f 5844 5839 5825 +f 5859 5832 5827 +f 5854 5859 5827 +f 5850 5841 5829 +f 5839 5850 5829 +f 5864 5835 5832 +f 5859 5864 5832 +f 5845 5837 5835 +f 5869 5845 5835 +f 5867 5869 5835 +f 5864 5867 5835 +f 5853 5850 5839 +f 5844 5853 5839 +f 5857 5848 5841 +f 5850 5857 5841 +f 5871 5854 5848 +f 5857 5871 5848 +f 5861 5857 5850 +f 5853 5861 5850 +f 5878 5859 5854 +f 5871 5878 5854 +f 5863 5873 5857 +f 5873 5871 5857 +f 5861 5863 5857 +f 5882 5864 5859 +f 5878 5882 5859 +f 5885 5867 5864 +f 5882 5885 5864 +f 5876 5869 5867 +f 5891 5876 5867 +f 5885 5891 5867 +f 5880 5878 5871 +f 5873 5880 5871 +f 5891 5893 5876 +f 5881 5887 5878 +f 5887 5882 5878 +f 5880 5881 5878 +f 5889 5895 5882 +f 5895 5885 5882 +f 5887 5889 5882 +f 5896 5899 5885 +f 5899 5891 5885 +f 5895 5896 5885 +f 5899 5893 5891 +f 5899 5930 5893 +f 5754 5942 5750 +f 5942 5936 5750 +f 5758 5946 5754 +f 5946 5942 5754 +f 5762 5952 5758 +f 5952 5946 5758 +f 5766 5958 5762 +f 5958 5952 5762 +f 5770 5964 5766 +f 5964 5958 5766 +f 5774 5972 5770 +f 5972 5964 5770 +f 5778 5976 5774 +f 5976 5972 5774 +f 5782 5980 5778 +f 5980 5976 5778 +f 5786 5984 5782 +f 5984 5980 5782 +f 5790 5988 5786 +f 5988 5984 5786 +f 5794 5992 5790 +f 5992 5988 5790 +f 5798 5996 5794 +f 5996 5992 5794 +f 5802 6000 5798 +f 6000 5996 5798 +f 5806 6004 5802 +f 6004 6000 5802 +f 5810 6008 5806 +f 6008 6004 5806 +f 5814 6012 5810 +f 6012 6008 5810 +f 5818 6016 5814 +f 6016 6012 5814 +f 5822 6020 5818 +f 6020 6016 5818 +f 5824 6022 5822 +f 6022 6020 5822 +f 5752 5940 5749 +f 5940 5935 5749 +f 5756 5944 5752 +f 5944 5940 5752 +f 5760 5950 5756 +f 5950 5944 5756 +f 5764 5956 5760 +f 5956 5950 5760 +f 5768 5962 5764 +f 5962 5956 5764 +f 5772 5970 5768 +f 5970 5962 5768 +f 5776 5974 5772 +f 5974 5970 5772 +f 5780 5978 5776 +f 5978 5974 5776 +f 5784 5982 5780 +f 5982 5978 5780 +f 5788 5986 5784 +f 5986 5982 5784 +f 5792 5990 5788 +f 5990 5986 5788 +f 5796 5994 5792 +f 5994 5990 5792 +f 5800 5998 5796 +f 5998 5994 5796 +f 5804 6002 5800 +f 6002 5998 5800 +f 5808 6006 5804 +f 6006 6002 5804 +f 5812 6010 5808 +f 6010 6006 5808 +f 5816 6014 5812 +f 6014 6010 5812 +f 5820 6018 5816 +f 6018 6014 5816 +f 5823 6021 5820 +f 6021 6018 5820 +f 5409 5411 4535 +f 5411 4537 4535 +f 5411 5413 4537 +f 5413 4539 4537 +f 5413 5415 4539 +f 5415 4541 4539 +f 5415 5417 4541 +f 5417 4543 4541 +f 5417 5419 4543 +f 5419 4545 4543 +f 4536 5408 4534 +f 4538 5410 4536 +f 5410 5408 4536 +f 4540 5412 4538 +f 5412 5410 4538 +f 4542 5414 4540 +f 5414 5412 4540 +f 4544 5416 4542 +f 5416 5414 4542 +f 5418 5416 4544 +f 6155 6159 6091 +f 6093 6155 6091 +f 6147 6155 6093 +f 6095 6147 6093 +f 6143 6147 6095 +f 6097 6143 6095 +f 6139 6143 6097 +f 6099 6139 6097 +f 6135 6139 6099 +f 6101 6135 6099 +f 6131 6135 6101 +f 6103 6131 6101 +f 6127 6131 6103 +f 6105 6127 6103 +f 6123 6127 6105 +f 6107 6123 6105 +f 6119 6123 6107 +f 6109 6119 6107 +f 6115 6119 6109 +f 6111 6115 6109 +f 6151 6119 6115 +f 6163 6123 6119 +f 6151 6163 6119 +f 6167 6127 6123 +f 6163 6167 6123 +f 6171 6131 6127 +f 6167 6171 6127 +f 6179 6135 6131 +f 6171 6179 6131 +f 6187 6139 6135 +f 6179 6187 6135 +f 6191 6143 6139 +f 6187 6191 6139 +f 6195 6147 6143 +f 6191 6195 6143 +f 6207 6155 6147 +f 6195 6207 6147 +f 6175 6163 6151 +f 6211 6159 6155 +f 6207 6211 6155 +f 6211 6215 6159 +f 6183 6167 6163 +f 6175 6183 6163 +f 6203 6171 6167 +f 6183 6203 6167 +f 6219 6179 6171 +f 6203 6219 6171 +f 6199 6183 6175 +f 6231 6187 6179 +f 6219 6231 6179 +f 6223 6203 6183 +f 6199 6223 6183 +f 6239 6191 6187 +f 6231 6239 6187 +f 6251 6195 6191 +f 6239 6251 6191 +f 6259 6207 6195 +f 6251 6259 6195 +f 6227 6223 6199 +f 6235 6219 6203 +f 6223 6235 6203 +f 6263 6211 6207 +f 6259 6263 6207 +f 6271 6215 6211 +f 6263 6271 6211 +f 6271 6275 6215 +f 6255 6231 6219 +f 6235 6255 6219 +f 6247 6235 6223 +f 6227 6247 6223 +f 6243 6247 6227 +f 6283 6239 6231 +f 6255 6283 6231 +f 6279 6255 6235 +f 6247 6279 6235 +f 6303 6251 6239 +f 6283 6303 6239 +f 6267 6287 6243 +f 6287 6247 6243 +f 6287 6279 6247 +f 6319 6259 6251 +f 6303 6319 6251 +f 6307 6283 6255 +f 6279 6307 6255 +f 6327 6263 6259 +f 6319 6327 6259 +f 6339 6271 6263 +f 6327 6339 6263 +f 6291 6311 6267 +f 6311 6287 6267 +f 6351 6275 6271 +f 6339 6351 6271 +f 6351 6355 6275 +f 6315 6307 6279 +f 6287 6315 6279 +f 6331 6303 6283 +f 6307 6331 6283 +f 6311 6315 6287 +f 6295 6323 6291 +f 6323 6311 6291 +f 6299 6335 6295 +f 6335 6323 6295 +f 6343 6335 6299 +f 6363 6319 6303 +f 6331 6363 6303 +f 6359 6331 6307 +f 6315 6359 6307 +f 6323 6347 6311 +f 6347 6315 6311 +f 6347 6359 6315 +f 6371 6327 6319 +f 6363 6371 6319 +f 6335 6367 6323 +f 6367 6347 6323 +f 6391 6339 6327 +f 6371 6391 6327 +f 6375 6363 6331 +f 6359 6375 6331 +f 6343 6379 6335 +f 6379 6367 6335 +f 6395 6351 6339 +f 6391 6395 6339 +f 6387 6379 6343 +f 6367 6383 6347 +f 6383 6359 6347 +f 6407 6355 6351 +f 6395 6407 6351 +f 6407 6411 6355 +f 6383 6375 6359 +f 6399 6371 6363 +f 6375 6399 6363 +f 6379 6403 6367 +f 6403 6383 6367 +f 6427 6391 6371 +f 6399 6427 6371 +f 6415 6399 6375 +f 6383 6415 6375 +f 6387 6419 6379 +f 6419 6403 6379 +f 6403 6415 6383 +f 6423 6419 6387 +f 6439 6395 6391 +f 6427 6439 6391 +f 6447 6407 6395 +f 6439 6447 6395 +f 6435 6427 6399 +f 6415 6435 6399 +f 6419 6431 6403 +f 6431 6415 6403 +f 6455 6411 6407 +f 6447 6455 6407 +f 6455 6463 6411 +f 6431 6435 6415 +f 6423 6443 6419 +f 6443 6431 6419 +f 6451 6443 6423 +f 6459 6439 6427 +f 6435 6459 6427 +f 6443 6467 6431 +f 6467 6435 6431 +f 6467 6459 6435 +f 6471 6447 6439 +f 6459 6471 6439 +f 6451 6475 6443 +f 6475 6467 6443 +f 6487 6455 6447 +f 6471 6487 6447 +f 6479 6475 6451 +f 6491 6463 6455 +f 6487 6491 6455 +f 6483 6471 6459 +f 6467 6483 6459 +f 6491 6495 6463 +f 6475 6483 6467 +f 6503 6487 6471 +f 6483 6503 6471 +f 6479 6499 6475 +f 6499 6483 6475 +f 6507 6499 6479 +f 6499 6503 6483 +f 6511 6491 6487 +f 6503 6511 6487 +f 6519 6495 6491 +f 6511 6519 6491 +f 6519 6527 6495 +f 6507 6515 6499 +f 6515 6503 6499 +f 6515 6511 6503 +f 6523 6515 6507 +f 6531 6519 6511 +f 6515 6531 6511 +f 6523 6531 6515 +f 6539 6527 6519 +f 6531 6539 6519 +f 6535 6531 6523 +f 6539 6543 6527 +f 6535 6539 6531 +f 6547 6539 6535 +f 6547 6543 6539 +f 6547 6551 6543 +f 4640 6091 4636 +f 6093 6091 4640 +f 4642 6093 4640 +f 6095 6093 4642 +f 4646 6095 4642 +f 6097 6095 4646 +f 4648 6097 4646 +f 6099 6097 4648 +f 4652 6099 4648 +f 6101 6099 4652 +f 4654 6101 4652 +f 6103 6101 4654 +f 4658 6103 4654 +f 6105 6103 4658 +f 4662 6105 4658 +f 6107 6105 4662 +f 4664 6107 4662 +f 6109 6107 4664 +f 4668 6109 4664 +f 6111 6109 4668 +f 6344 6343 6299 +f 6300 6344 6299 +f 6388 6387 6343 +f 6344 6388 6343 +f 6424 6423 6387 +f 6388 6424 6387 +f 6452 6451 6423 +f 6424 6452 6423 +f 6480 6479 6451 +f 6452 6480 6451 +f 6508 6507 6479 +f 6480 6508 6479 +f 6524 6523 6507 +f 6508 6524 6507 +f 6536 6535 6523 +f 6524 6536 6523 +f 6548 6547 6535 +f 6536 6548 6535 +f 6552 6551 6547 +f 6548 6552 6547 +f 6160 6094 6092 +f 6160 6156 6094 +f 6156 6096 6094 +f 6156 6148 6096 +f 6148 6098 6096 +f 6148 6144 6098 +f 6144 6100 6098 +f 6144 6140 6100 +f 6140 6102 6100 +f 6140 6136 6102 +f 6136 6104 6102 +f 6136 6132 6104 +f 6132 6106 6104 +f 6132 6128 6106 +f 6128 6108 6106 +f 6128 6124 6108 +f 6124 6110 6108 +f 6124 6120 6110 +f 6120 6112 6110 +f 6120 6116 6112 +f 6120 6164 6116 +f 6164 6152 6116 +f 6124 6168 6120 +f 6168 6164 6120 +f 6128 6172 6124 +f 6172 6168 6124 +f 6132 6180 6128 +f 6180 6172 6128 +f 6136 6188 6132 +f 6188 6180 6132 +f 6140 6192 6136 +f 6192 6188 6136 +f 6144 6196 6140 +f 6196 6192 6140 +f 6148 6208 6144 +f 6208 6196 6144 +f 6156 6212 6148 +f 6212 6208 6148 +f 6164 6184 6152 +f 6184 6176 6152 +f 6160 6216 6156 +f 6216 6212 6156 +f 6168 6204 6164 +f 6204 6184 6164 +f 6172 6220 6168 +f 6220 6204 6168 +f 6180 6232 6172 +f 6232 6220 6172 +f 6184 6224 6176 +f 6224 6200 6176 +f 6188 6240 6180 +f 6240 6232 6180 +f 6204 6236 6184 +f 6236 6224 6184 +f 6192 6252 6188 +f 6252 6240 6188 +f 6196 6260 6192 +f 6260 6252 6192 +f 6208 6264 6196 +f 6264 6260 6196 +f 6224 6248 6200 +f 6248 6228 6200 +f 6220 6256 6204 +f 6256 6236 6204 +f 6212 6272 6208 +f 6272 6264 6208 +f 6216 6276 6212 +f 6276 6272 6212 +f 6232 6284 6220 +f 6284 6256 6220 +f 6236 6280 6224 +f 6280 6248 6224 +f 6248 6288 6228 +f 6288 6244 6228 +f 6240 6304 6232 +f 6304 6284 6232 +f 6256 6308 6236 +f 6308 6280 6236 +f 6252 6320 6240 +f 6320 6304 6240 +f 6288 6312 6244 +f 6312 6268 6244 +f 6280 6316 6248 +f 6316 6288 6248 +f 6260 6328 6252 +f 6328 6320 6252 +f 6284 6332 6256 +f 6332 6308 6256 +f 6264 6340 6260 +f 6340 6328 6260 +f 6272 6352 6264 +f 6352 6340 6264 +f 6312 6324 6268 +f 6324 6292 6268 +f 6276 6356 6272 +f 6356 6352 6272 +f 6308 6360 6280 +f 6360 6316 6280 +f 6304 6364 6284 +f 6364 6332 6284 +f 6316 6348 6288 +f 6348 6312 6288 +f 6324 6336 6292 +f 6336 6296 6292 +f 6336 6344 6296 +f 6344 6300 6296 +f 6320 6372 6304 +f 6372 6364 6304 +f 6332 6376 6308 +f 6376 6360 6308 +f 6348 6368 6312 +f 6368 6324 6312 +f 6360 6384 6316 +f 6384 6348 6316 +f 6328 6392 6320 +f 6392 6372 6320 +f 6368 6380 6324 +f 6380 6336 6324 +f 6340 6396 6328 +f 6396 6392 6328 +f 6364 6400 6332 +f 6400 6376 6332 +f 6380 6388 6336 +f 6388 6344 6336 +f 6352 6408 6340 +f 6408 6396 6340 +f 6384 6404 6348 +f 6404 6368 6348 +f 6356 6412 6352 +f 6412 6408 6352 +f 6376 6416 6360 +f 6416 6384 6360 +f 6372 6428 6364 +f 6428 6400 6364 +f 6404 6420 6368 +f 6420 6380 6368 +f 6392 6440 6372 +f 6440 6428 6372 +f 6400 6436 6376 +f 6436 6416 6376 +f 6420 6424 6380 +f 6424 6388 6380 +f 6416 6432 6384 +f 6432 6404 6384 +f 6396 6448 6392 +f 6448 6440 6392 +f 6408 6456 6396 +f 6456 6448 6396 +f 6428 6460 6400 +f 6460 6436 6400 +f 6432 6444 6404 +f 6444 6420 6404 +f 6412 6464 6408 +f 6464 6456 6408 +f 6436 6468 6416 +f 6468 6432 6416 +f 6444 6452 6420 +f 6452 6424 6420 +f 6440 6472 6428 +f 6472 6460 6428 +f 6468 6476 6432 +f 6476 6444 6432 +f 6460 6484 6436 +f 6484 6468 6436 +f 6448 6488 6440 +f 6488 6472 6440 +f 6476 6480 6444 +f 6480 6452 6444 +f 6456 6492 6448 +f 6492 6488 6448 +f 6464 6496 6456 +f 6496 6492 6456 +f 6472 6504 6460 +f 6504 6484 6460 +f 6484 6500 6468 +f 6500 6476 6468 +f 6488 6512 6472 +f 6512 6504 6472 +f 6500 6508 6476 +f 6508 6480 6476 +f 6504 6516 6484 +f 6516 6500 6484 +f 6492 6520 6488 +f 6520 6512 6488 +f 6496 6528 6492 +f 6528 6520 6492 +f 6516 6524 6500 +f 6524 6508 6500 +f 6512 6532 6504 +f 6532 6516 6504 +f 6520 6540 6512 +f 6540 6532 6512 +f 6532 6536 6516 +f 6536 6524 6516 +f 6528 6544 6520 +f 6544 6540 6520 +f 6540 6548 6532 +f 6548 6536 6532 +f 6544 6552 6540 +f 6552 6548 6540 +f 6092 6094 4637 +f 6094 4641 4637 +f 6094 6096 4641 +f 6096 4643 4641 +f 6096 6098 4643 +f 6098 4647 4643 +f 6098 6100 4647 +f 6100 4649 4647 +f 6100 6102 4649 +f 6102 4653 4649 +f 6102 6104 4653 +f 6104 4655 4653 +f 6104 6106 4655 +f 6106 4659 4655 +f 6106 6108 4659 +f 6108 4663 4659 +f 6108 6110 4663 +f 6110 4665 4663 +f 6110 6112 4665 +f 6112 4671 4665 +f 6114 6072 6070 +f 6118 6074 6072 +f 6114 6118 6072 +f 6122 6076 6074 +f 6118 6122 6074 +f 6126 6078 6076 +f 6122 6126 6076 +f 6130 6080 6078 +f 6126 6130 6078 +f 6134 6082 6080 +f 6130 6134 6080 +f 6138 6084 6082 +f 6134 6138 6082 +f 6142 6086 6084 +f 6138 6142 6084 +f 6146 6088 6086 +f 6142 6146 6086 +f 6154 6090 6088 +f 6146 6154 6088 +f 6154 6158 6090 +f 6150 6118 6114 +f 6162 6122 6118 +f 6150 6162 6118 +f 6166 6126 6122 +f 6162 6166 6122 +f 6170 6130 6126 +f 6166 6170 6126 +f 6178 6134 6130 +f 6170 6178 6130 +f 6186 6138 6134 +f 6178 6186 6134 +f 6190 6142 6138 +f 6186 6190 6138 +f 6194 6146 6142 +f 6190 6194 6142 +f 6206 6154 6146 +f 6194 6206 6146 +f 6174 6162 6150 +f 6210 6158 6154 +f 6206 6210 6154 +f 6210 6214 6158 +f 6182 6166 6162 +f 6174 6182 6162 +f 6202 6170 6166 +f 6182 6202 6166 +f 6218 6178 6170 +f 6202 6218 6170 +f 6198 6182 6174 +f 6230 6186 6178 +f 6218 6230 6178 +f 6222 6202 6182 +f 6198 6222 6182 +f 6238 6190 6186 +f 6230 6238 6186 +f 6250 6194 6190 +f 6238 6250 6190 +f 6258 6206 6194 +f 6250 6258 6194 +f 6226 6222 6198 +f 6234 6218 6202 +f 6222 6234 6202 +f 6262 6210 6206 +f 6258 6262 6206 +f 6270 6214 6210 +f 6262 6270 6210 +f 6270 6274 6214 +f 6254 6230 6218 +f 6234 6254 6218 +f 6246 6234 6222 +f 6226 6246 6222 +f 6242 6246 6226 +f 6282 6238 6230 +f 6254 6282 6230 +f 6278 6254 6234 +f 6246 6278 6234 +f 6302 6250 6238 +f 6282 6302 6238 +f 6266 6286 6242 +f 6286 6246 6242 +f 6286 6278 6246 +f 6318 6258 6250 +f 6302 6318 6250 +f 6306 6282 6254 +f 6278 6306 6254 +f 6326 6262 6258 +f 6318 6326 6258 +f 6338 6270 6262 +f 6326 6338 6262 +f 6290 6310 6266 +f 6310 6286 6266 +f 6350 6274 6270 +f 6338 6350 6270 +f 6350 6354 6274 +f 6314 6306 6278 +f 6286 6314 6278 +f 6330 6302 6282 +f 6306 6330 6282 +f 6310 6314 6286 +f 6294 6322 6290 +f 6322 6310 6290 +f 6298 6334 6294 +f 6334 6322 6294 +f 6342 6334 6298 +f 6362 6318 6302 +f 6330 6362 6302 +f 6358 6330 6306 +f 6314 6358 6306 +f 6322 6346 6310 +f 6346 6314 6310 +f 6346 6358 6314 +f 6370 6326 6318 +f 6362 6370 6318 +f 6334 6366 6322 +f 6366 6346 6322 +f 6390 6338 6326 +f 6370 6390 6326 +f 6374 6362 6330 +f 6358 6374 6330 +f 6342 6378 6334 +f 6378 6366 6334 +f 6394 6350 6338 +f 6390 6394 6338 +f 6386 6378 6342 +f 6366 6382 6346 +f 6382 6358 6346 +f 6406 6354 6350 +f 6394 6406 6350 +f 6406 6410 6354 +f 6382 6374 6358 +f 6398 6370 6362 +f 6374 6398 6362 +f 6378 6402 6366 +f 6402 6382 6366 +f 6426 6390 6370 +f 6398 6426 6370 +f 6414 6398 6374 +f 6382 6414 6374 +f 6386 6418 6378 +f 6418 6402 6378 +f 6402 6414 6382 +f 6422 6418 6386 +f 6438 6394 6390 +f 6426 6438 6390 +f 6446 6406 6394 +f 6438 6446 6394 +f 6434 6426 6398 +f 6414 6434 6398 +f 6418 6430 6402 +f 6430 6414 6402 +f 6454 6410 6406 +f 6446 6454 6406 +f 6454 6462 6410 +f 6430 6434 6414 +f 6422 6442 6418 +f 6442 6430 6418 +f 6450 6442 6422 +f 6458 6438 6426 +f 6434 6458 6426 +f 6442 6466 6430 +f 6466 6434 6430 +f 6466 6458 6434 +f 6470 6446 6438 +f 6458 6470 6438 +f 6450 6474 6442 +f 6474 6466 6442 +f 6486 6454 6446 +f 6470 6486 6446 +f 6478 6474 6450 +f 6490 6462 6454 +f 6486 6490 6454 +f 6482 6470 6458 +f 6466 6482 6458 +f 6490 6494 6462 +f 6474 6482 6466 +f 6502 6486 6470 +f 6482 6502 6470 +f 6478 6498 6474 +f 6498 6482 6474 +f 6506 6498 6478 +f 6498 6502 6482 +f 6510 6490 6486 +f 6502 6510 6486 +f 6518 6494 6490 +f 6510 6518 6490 +f 6518 6526 6494 +f 6506 6514 6498 +f 6514 6502 6498 +f 6514 6510 6502 +f 6522 6514 6506 +f 6530 6518 6510 +f 6514 6530 6510 +f 6522 6530 6514 +f 6538 6526 6518 +f 6530 6538 6518 +f 6534 6530 6522 +f 6538 6542 6526 +f 6534 6538 6530 +f 6546 6538 6534 +f 6546 6542 6538 +f 6546 6550 6542 +f 6072 6050 6048 +f 6070 6072 6048 +f 6074 6052 6050 +f 6072 6074 6050 +f 6076 6054 6052 +f 6074 6076 6052 +f 6078 6056 6054 +f 6076 6078 6054 +f 6080 6058 6056 +f 6078 6080 6056 +f 6082 6060 6058 +f 6080 6082 6058 +f 6084 6062 6060 +f 6082 6084 6060 +f 6086 6064 6062 +f 6084 6086 6062 +f 6088 6066 6064 +f 6086 6088 6064 +f 6090 6068 6066 +f 6088 6090 6066 +f 6341 6298 6297 +f 6341 6342 6298 +f 6385 6342 6341 +f 6385 6386 6342 +f 6421 6386 6385 +f 6421 6422 6386 +f 6449 6422 6421 +f 6449 6450 6422 +f 6477 6450 6449 +f 6477 6478 6450 +f 6505 6478 6477 +f 6505 6506 6478 +f 6521 6506 6505 +f 6521 6522 6506 +f 6533 6522 6521 +f 6533 6534 6522 +f 6545 6534 6533 +f 6545 6546 6534 +f 6549 6546 6545 +f 6549 6550 6546 +f 6071 6117 6069 +f 6117 6113 6069 +f 6073 6121 6071 +f 6121 6117 6071 +f 6075 6125 6073 +f 6125 6121 6073 +f 6077 6129 6075 +f 6129 6125 6075 +f 6079 6133 6077 +f 6133 6129 6077 +f 6081 6137 6079 +f 6137 6133 6079 +f 6083 6141 6081 +f 6141 6137 6081 +f 6085 6145 6083 +f 6145 6141 6083 +f 6087 6153 6085 +f 6153 6145 6085 +f 6089 6157 6087 +f 6157 6153 6087 +f 6117 6161 6113 +f 6161 6149 6113 +f 6121 6165 6117 +f 6165 6161 6117 +f 6125 6169 6121 +f 6169 6165 6121 +f 6129 6177 6125 +f 6177 6169 6125 +f 6133 6185 6129 +f 6185 6177 6129 +f 6137 6189 6133 +f 6189 6185 6133 +f 6141 6193 6137 +f 6193 6189 6137 +f 6145 6205 6141 +f 6205 6193 6141 +f 6153 6209 6145 +f 6209 6205 6145 +f 6161 6181 6149 +f 6181 6173 6149 +f 6157 6213 6153 +f 6213 6209 6153 +f 6165 6201 6161 +f 6201 6181 6161 +f 6169 6217 6165 +f 6217 6201 6165 +f 6177 6229 6169 +f 6229 6217 6169 +f 6181 6221 6173 +f 6221 6197 6173 +f 6185 6237 6177 +f 6237 6229 6177 +f 6201 6233 6181 +f 6233 6221 6181 +f 6189 6249 6185 +f 6249 6237 6185 +f 6193 6257 6189 +f 6257 6249 6189 +f 6205 6261 6193 +f 6261 6257 6193 +f 6221 6245 6197 +f 6245 6225 6197 +f 6217 6253 6201 +f 6253 6233 6201 +f 6209 6269 6205 +f 6269 6261 6205 +f 6213 6273 6209 +f 6273 6269 6209 +f 6229 6281 6217 +f 6281 6253 6217 +f 6233 6277 6221 +f 6277 6245 6221 +f 6245 6285 6225 +f 6285 6241 6225 +f 6237 6301 6229 +f 6301 6281 6229 +f 6253 6305 6233 +f 6305 6277 6233 +f 6249 6317 6237 +f 6317 6301 6237 +f 6285 6309 6241 +f 6309 6265 6241 +f 6277 6313 6245 +f 6313 6285 6245 +f 6257 6325 6249 +f 6325 6317 6249 +f 6281 6329 6253 +f 6329 6305 6253 +f 6261 6337 6257 +f 6337 6325 6257 +f 6269 6349 6261 +f 6349 6337 6261 +f 6309 6321 6265 +f 6321 6289 6265 +f 6273 6353 6269 +f 6353 6349 6269 +f 6305 6357 6277 +f 6357 6313 6277 +f 6301 6361 6281 +f 6361 6329 6281 +f 6313 6345 6285 +f 6345 6309 6285 +f 6321 6333 6289 +f 6333 6293 6289 +f 6333 6341 6293 +f 6341 6297 6293 +f 6317 6369 6301 +f 6369 6361 6301 +f 6329 6373 6305 +f 6373 6357 6305 +f 6345 6365 6309 +f 6365 6321 6309 +f 6357 6381 6313 +f 6381 6345 6313 +f 6325 6389 6317 +f 6389 6369 6317 +f 6365 6377 6321 +f 6377 6333 6321 +f 6337 6393 6325 +f 6393 6389 6325 +f 6361 6397 6329 +f 6397 6373 6329 +f 6377 6385 6333 +f 6385 6341 6333 +f 6349 6405 6337 +f 6405 6393 6337 +f 6381 6401 6345 +f 6401 6365 6345 +f 6353 6409 6349 +f 6409 6405 6349 +f 6373 6413 6357 +f 6413 6381 6357 +f 6369 6425 6361 +f 6425 6397 6361 +f 6401 6417 6365 +f 6417 6377 6365 +f 6389 6437 6369 +f 6437 6425 6369 +f 6397 6433 6373 +f 6433 6413 6373 +f 6417 6421 6377 +f 6421 6385 6377 +f 6413 6429 6381 +f 6429 6401 6381 +f 6393 6445 6389 +f 6445 6437 6389 +f 6405 6453 6393 +f 6453 6445 6393 +f 6425 6457 6397 +f 6457 6433 6397 +f 6429 6441 6401 +f 6441 6417 6401 +f 6409 6461 6405 +f 6461 6453 6405 +f 6433 6465 6413 +f 6465 6429 6413 +f 6441 6449 6417 +f 6449 6421 6417 +f 6437 6469 6425 +f 6469 6457 6425 +f 6465 6473 6429 +f 6473 6441 6429 +f 6457 6481 6433 +f 6481 6465 6433 +f 6445 6485 6437 +f 6485 6469 6437 +f 6473 6477 6441 +f 6477 6449 6441 +f 6453 6489 6445 +f 6489 6485 6445 +f 6461 6493 6453 +f 6493 6489 6453 +f 6469 6501 6457 +f 6501 6481 6457 +f 6481 6497 6465 +f 6497 6473 6465 +f 6485 6509 6469 +f 6509 6501 6469 +f 6497 6505 6473 +f 6505 6477 6473 +f 6501 6513 6481 +f 6513 6497 6481 +f 6489 6517 6485 +f 6517 6509 6485 +f 6493 6525 6489 +f 6525 6517 6489 +f 6513 6521 6497 +f 6521 6505 6497 +f 6509 6529 6501 +f 6529 6513 6501 +f 6517 6537 6509 +f 6537 6529 6509 +f 6529 6533 6513 +f 6533 6521 6513 +f 6525 6541 6517 +f 6541 6537 6517 +f 6537 6545 6529 +f 6545 6533 6529 +f 6541 6549 6537 +f 6549 6545 6537 +f 6049 6069 6047 +f 6051 6071 6049 +f 6071 6069 6049 +f 6053 6073 6051 +f 6073 6071 6051 +f 6055 6075 6053 +f 6075 6073 6053 +f 6057 6077 6055 +f 6077 6075 6055 +f 6059 6079 6057 +f 6079 6077 6057 +f 6061 6081 6059 +f 6081 6079 6059 +f 6063 6083 6061 +f 6083 6081 6061 +f 6065 6085 6063 +f 6085 6083 6063 +f 6067 6087 6065 +f 6087 6085 6065 +f 6089 6087 6067 +f 4770 4673 4672 +f 4770 4771 4673 +f 4786 4787 4770 +f 4787 4771 4770 +f 4804 4805 4786 +f 4805 4787 4786 +f 4819 4820 4804 +f 4820 4805 4804 +f 4822 4823 4819 +f 4823 4820 4819 +f 4838 4839 4822 +f 4839 4823 4822 +f 4840 4841 4838 +f 4841 4839 4838 +f 4859 4860 4840 +f 4860 4841 4840 +f 3154 3157 3109 +f 3157 3112 3109 +f 3157 3159 3112 +f 3159 3114 3112 +f 3159 3161 3114 +f 3161 3116 3114 +f 3161 3163 3116 +f 3163 3118 3116 +f 3163 3165 3118 +f 3165 3120 3118 +f 3165 3167 3120 +f 3167 3122 3120 +f 3167 3169 3122 +f 3169 3124 3122 +f 3169 3171 3124 +f 3171 3126 3124 +f 3171 3173 3126 +f 3173 3128 3126 +f 3173 3175 3128 +f 3175 3130 3128 +f 3175 3177 3130 +f 3177 3132 3130 +f 3177 3179 3132 +f 3179 3134 3132 +f 3179 3181 3134 +f 3181 3136 3134 +f 3181 3183 3136 +f 3183 3138 3136 +f 3183 3185 3138 +f 3185 3140 3138 +f 3226 3157 3154 +f 3226 3262 3157 +f 3262 3264 3157 +f 3264 3159 3157 +f 3264 3266 3159 +f 3266 3161 3159 +f 3266 3268 3161 +f 3268 3163 3161 +f 3268 3270 3163 +f 3270 3165 3163 +f 3270 3272 3165 +f 3272 3167 3165 +f 3272 3274 3167 +f 3274 3169 3167 +f 3274 3276 3169 +f 3276 3171 3169 +f 3276 3278 3171 +f 3278 3173 3171 +f 3278 3280 3173 +f 3280 3175 3173 +f 3280 3282 3175 +f 3282 3177 3175 +f 3282 3284 3177 +f 3284 3179 3177 +f 3284 3286 3179 +f 3286 3181 3179 +f 3286 3288 3181 +f 3288 3183 3181 +f 3288 3256 3183 +f 3256 3185 3183 +f 3259 3262 3226 +f 3288 3257 3256 +f 3288 3290 3257 +f 3290 3291 3257 +f 3333 3262 3259 +f 3333 3381 3262 +f 3381 3383 3262 +f 3383 3264 3262 +f 3383 3385 3264 +f 3385 3266 3264 +f 3385 3387 3266 +f 3387 3268 3266 +f 3387 3389 3268 +f 3389 3270 3268 +f 3389 3391 3270 +f 3391 3272 3270 +f 3391 3393 3272 +f 3393 3274 3272 +f 3393 3395 3274 +f 3395 3276 3274 +f 3395 3397 3276 +f 3397 3278 3276 +f 3397 3399 3278 +f 3399 3280 3278 +f 3399 3401 3280 +f 3401 3282 3280 +f 3401 3403 3282 +f 3403 3284 3282 +f 3403 3405 3284 +f 3405 3286 3284 +f 3405 3407 3286 +f 3407 3288 3286 +f 3407 3409 3288 +f 3409 3290 3288 +f 3409 3291 3290 +f 3409 3411 3291 +f 3378 3381 3333 +f 3453 3381 3378 +f 3453 3512 3381 +f 3512 3514 3381 +f 3514 3383 3381 +f 3514 3516 3383 +f 3516 3385 3383 +f 3516 3518 3385 +f 3518 3387 3385 +f 3518 3520 3387 +f 3520 3389 3387 +f 3520 3522 3389 +f 3522 3391 3389 +f 3522 3524 3391 +f 3524 3393 3391 +f 3524 3526 3393 +f 3526 3395 3393 +f 3526 3528 3395 +f 3528 3397 3395 +f 3528 3530 3397 +f 3530 3399 3397 +f 3530 3532 3399 +f 3532 3401 3399 +f 3532 3534 3401 +f 3534 3403 3401 +f 3534 3536 3403 +f 3536 3405 3403 +f 3536 3538 3405 +f 3538 3407 3405 +f 3538 3540 3407 +f 3540 3409 3407 +f 3540 3476 3409 +f 3476 3411 3409 +f 3509 3512 3453 +f 3540 3543 3476 +f 3584 3512 3509 +f 3584 3650 3512 +f 3650 3652 3512 +f 3652 3514 3512 +f 3652 3654 3514 +f 3654 3516 3514 +f 3654 3656 3516 +f 3656 3518 3516 +f 3656 3658 3518 +f 3658 3520 3518 +f 3658 3660 3520 +f 3660 3522 3520 +f 3660 3662 3522 +f 3662 3524 3522 +f 3662 3664 3524 +f 3664 3526 3524 +f 3664 3666 3526 +f 3666 3528 3526 +f 3666 3668 3528 +f 3668 3530 3528 +f 3668 3670 3530 +f 3670 3532 3530 +f 3670 3672 3532 +f 3672 3534 3532 +f 3672 3674 3534 +f 3674 3536 3534 +f 3674 3676 3536 +f 3676 3538 3536 +f 3676 3678 3538 +f 3678 3540 3538 +f 3678 3543 3540 +f 3680 3589 3543 +f 3678 3680 3543 +f 3647 3650 3584 +f 3680 3695 3589 +f 3785 3794 3647 +f 3794 3650 3647 +f 3794 3796 3650 +f 3796 3652 3650 +f 3796 3798 3652 +f 3798 3654 3652 +f 3798 3800 3654 +f 3800 3656 3654 +f 3800 3802 3656 +f 3802 3658 3656 +f 3802 3804 3658 +f 3804 3660 3658 +f 3804 3806 3660 +f 3806 3662 3660 +f 3806 3808 3662 +f 3808 3664 3662 +f 3808 3810 3664 +f 3810 3666 3664 +f 3810 3812 3666 +f 3812 3668 3666 +f 3812 3814 3668 +f 3814 3670 3668 +f 3814 3816 3670 +f 3816 3672 3670 +f 3816 3818 3672 +f 3818 3674 3672 +f 3818 3820 3674 +f 3820 3676 3674 +f 3820 3822 3676 +f 3822 3678 3676 +f 3822 3824 3678 +f 3824 3680 3678 +f 3824 3787 3680 +f 3787 3695 3680 +f 3791 3794 3785 +f 3824 3826 3787 +f 3919 3936 3791 +f 3936 3794 3791 +f 3936 3938 3794 +f 3938 3796 3794 +f 3938 3940 3796 +f 3940 3798 3796 +f 3940 3942 3798 +f 3942 3800 3798 +f 3942 3944 3800 +f 3944 3802 3800 +f 3944 3946 3802 +f 3946 3804 3802 +f 3946 3948 3804 +f 3948 3806 3804 +f 3948 3950 3806 +f 3950 3808 3806 +f 3950 3952 3808 +f 3952 3810 3808 +f 3952 3954 3810 +f 3954 3812 3810 +f 3954 3956 3812 +f 3956 3814 3812 +f 3956 3958 3814 +f 3958 3816 3814 +f 3958 3960 3816 +f 3960 3818 3816 +f 3960 3962 3818 +f 3962 3820 3818 +f 3962 3964 3820 +f 3964 3822 3820 +f 3964 3966 3822 +f 3966 3824 3822 +f 3966 3826 3824 +f 3968 3844 3826 +f 3966 3968 3826 +f 3968 3970 3844 +f 3933 3936 3919 +f 4058 4080 3933 +f 4080 3936 3933 +f 4080 4082 3936 +f 4082 3938 3936 +f 4082 4084 3938 +f 4084 3940 3938 +f 4084 4086 3940 +f 4086 3942 3940 +f 4086 4088 3942 +f 4088 3944 3942 +f 4088 4090 3944 +f 4090 3946 3944 +f 4090 4092 3946 +f 4092 3948 3946 +f 4092 4094 3948 +f 4094 3950 3948 +f 4094 4096 3950 +f 4096 3952 3950 +f 4096 4098 3952 +f 4098 3954 3952 +f 4098 4100 3954 +f 4100 3956 3954 +f 4100 4102 3956 +f 4102 3958 3956 +f 4102 4104 3958 +f 4104 3960 3958 +f 4104 4106 3960 +f 4106 3962 3960 +f 4106 4108 3962 +f 4108 3964 3962 +f 4108 4110 3964 +f 4110 3966 3964 +f 4110 4112 3966 +f 4112 3968 3966 +f 4112 3970 3968 +f 4112 4076 3970 +f 4077 4080 4058 +f 4197 4115 4076 +f 4195 4197 4076 +f 4112 4195 4076 +f 4158 4163 4077 +f 4163 4080 4077 +f 4163 4165 4080 +f 4165 4082 4080 +f 4165 4167 4082 +f 4167 4084 4082 +f 4167 4169 4084 +f 4169 4086 4084 +f 4169 4171 4086 +f 4171 4088 4086 +f 4171 4173 4088 +f 4173 4090 4088 +f 4173 4175 4090 +f 4175 4092 4090 +f 4175 4177 4092 +f 4177 4094 4092 +f 4177 4179 4094 +f 4179 4096 4094 +f 4179 4181 4096 +f 4181 4098 4096 +f 4181 4183 4098 +f 4183 4100 4098 +f 4183 4185 4100 +f 4185 4102 4100 +f 4185 4187 4102 +f 4187 4104 4102 +f 4187 4189 4104 +f 4189 4106 4104 +f 4189 4191 4106 +f 4191 4108 4106 +f 4191 4193 4108 +f 4193 4110 4108 +f 4193 4195 4110 +f 4195 4112 4110 +f 4197 4198 4115 +f 4160 4163 4158 +f 4269 4272 4160 +f 4272 4163 4160 +f 4272 4165 4163 +f 4272 4273 4165 +f 4273 4276 4165 +f 4276 4167 4165 +f 4280 4169 4167 +f 4276 4277 4167 +f 4277 4280 4167 +f 4280 4281 4169 +f 4281 4284 4169 +f 4284 4171 4169 +f 4288 4173 4171 +f 4284 4285 4171 +f 4285 4288 4171 +f 4288 4289 4173 +f 4289 4292 4173 +f 4292 4175 4173 +f 4296 4177 4175 +f 4292 4293 4175 +f 4293 4296 4175 +f 4296 4297 4177 +f 4297 4300 4177 +f 4300 4179 4177 +f 4305 4181 4179 +f 4304 4305 4179 +f 4300 4301 4179 +f 4301 4304 4179 +f 4309 4183 4181 +f 4308 4309 4181 +f 4305 4308 4181 +f 4313 4185 4183 +f 4312 4313 4183 +f 4309 4312 4183 +f 4317 4187 4185 +f 4316 4317 4185 +f 4313 4316 4185 +f 4321 4189 4187 +f 4320 4321 4187 +f 4317 4320 4187 +f 4325 4191 4189 +f 4324 4325 4189 +f 4321 4324 4189 +f 4329 4193 4191 +f 4328 4329 4191 +f 4325 4328 4191 +f 4333 4195 4193 +f 4332 4333 4193 +f 4329 4332 4193 +f 4333 4336 4195 +f 4337 4197 4195 +f 4336 4337 4195 +f 4337 4340 4197 +f 4340 4227 4197 +f 4227 4198 4197 +f 4340 4343 4227 +f 3110 3154 3109 +f 3155 3154 3110 +f 3155 3226 3154 +f 3227 3226 3155 +f 3227 3259 3226 +f 3260 3259 3227 +f 3260 3333 3259 +f 3334 3333 3260 +f 3334 3378 3333 +f 3379 3378 3334 +f 3379 3453 3378 +f 3454 3453 3379 +f 3454 3509 3453 +f 3510 3509 3454 +f 3510 3584 3509 +f 3585 3584 3510 +f 3648 3647 3584 +f 3585 3648 3584 +f 3648 3786 3647 +f 3786 3785 3647 +f 3786 3791 3785 +f 3792 3791 3786 +f 3792 3919 3791 +f 3920 3919 3792 +f 3920 3933 3919 +f 3934 3933 3920 +f 3934 4058 3933 +f 4059 4058 3934 +f 4059 4077 4058 +f 4078 4077 4059 +f 4078 4158 4077 +f 4159 4158 4078 +f 4159 4160 4158 +f 4161 4160 4159 +f 4161 4269 4160 +f 4270 4269 4161 +f 3111 3155 3110 +f 3113 3156 3111 +f 3156 3155 3111 +f 3115 3158 3113 +f 3158 3156 3113 +f 3117 3160 3115 +f 3160 3158 3115 +f 3119 3162 3117 +f 3162 3160 3117 +f 3121 3164 3119 +f 3164 3162 3119 +f 3123 3166 3121 +f 3166 3164 3121 +f 3125 3168 3123 +f 3168 3166 3123 +f 3127 3170 3125 +f 3170 3168 3125 +f 3129 3172 3127 +f 3172 3170 3127 +f 3131 3174 3129 +f 3174 3172 3129 +f 3133 3176 3131 +f 3176 3174 3131 +f 3135 3178 3133 +f 3178 3176 3133 +f 3137 3180 3135 +f 3180 3178 3135 +f 3182 3180 3137 +f 3141 3182 3137 +f 3184 3182 3141 +f 3156 3227 3155 +f 3158 3261 3156 +f 3261 3260 3156 +f 3260 3227 3156 +f 3160 3263 3158 +f 3263 3261 3158 +f 3162 3265 3160 +f 3265 3263 3160 +f 3164 3267 3162 +f 3267 3265 3162 +f 3166 3269 3164 +f 3269 3267 3164 +f 3168 3271 3166 +f 3271 3269 3166 +f 3170 3273 3168 +f 3273 3271 3168 +f 3172 3275 3170 +f 3275 3273 3170 +f 3174 3277 3172 +f 3277 3275 3172 +f 3176 3279 3174 +f 3279 3277 3174 +f 3178 3281 3176 +f 3281 3279 3176 +f 3180 3283 3178 +f 3283 3281 3178 +f 3182 3285 3180 +f 3285 3283 3180 +f 3184 3289 3182 +f 3289 3287 3182 +f 3287 3285 3182 +f 3258 3289 3184 +f 3410 3289 3258 +f 3261 3334 3260 +f 3379 3334 3261 +f 3380 3379 3261 +f 3263 3380 3261 +f 3382 3380 3263 +f 3265 3382 3263 +f 3384 3382 3265 +f 3267 3384 3265 +f 3386 3384 3267 +f 3269 3386 3267 +f 3388 3386 3269 +f 3271 3388 3269 +f 3390 3388 3271 +f 3273 3390 3271 +f 3392 3390 3273 +f 3275 3392 3273 +f 3394 3392 3275 +f 3277 3394 3275 +f 3396 3394 3277 +f 3279 3396 3277 +f 3398 3396 3279 +f 3281 3398 3279 +f 3400 3398 3281 +f 3283 3400 3281 +f 3402 3400 3283 +f 3285 3402 3283 +f 3404 3402 3285 +f 3287 3404 3285 +f 3406 3404 3287 +f 3289 3406 3287 +f 3410 3408 3289 +f 3408 3406 3289 +f 3380 3454 3379 +f 3510 3454 3380 +f 3511 3510 3380 +f 3382 3511 3380 +f 3513 3511 3382 +f 3384 3513 3382 +f 3515 3513 3384 +f 3386 3515 3384 +f 3517 3515 3386 +f 3388 3517 3386 +f 3519 3517 3388 +f 3390 3519 3388 +f 3521 3519 3390 +f 3392 3521 3390 +f 3523 3521 3392 +f 3394 3523 3392 +f 3525 3523 3394 +f 3396 3525 3394 +f 3527 3525 3396 +f 3398 3527 3396 +f 3529 3527 3398 +f 3400 3529 3398 +f 3531 3529 3400 +f 3402 3531 3400 +f 3533 3531 3402 +f 3404 3533 3402 +f 3535 3533 3404 +f 3406 3535 3404 +f 3537 3535 3406 +f 3408 3537 3406 +f 3410 3539 3408 +f 3539 3537 3408 +f 3477 3539 3410 +f 3541 3539 3477 +f 3511 3585 3510 +f 3648 3585 3511 +f 3649 3648 3511 +f 3513 3649 3511 +f 3651 3649 3513 +f 3515 3651 3513 +f 3653 3651 3515 +f 3517 3653 3515 +f 3655 3653 3517 +f 3519 3655 3517 +f 3657 3655 3519 +f 3521 3657 3519 +f 3659 3657 3521 +f 3523 3659 3521 +f 3661 3659 3523 +f 3525 3661 3523 +f 3663 3661 3525 +f 3527 3663 3525 +f 3665 3663 3527 +f 3529 3665 3527 +f 3667 3665 3529 +f 3531 3667 3529 +f 3669 3667 3531 +f 3533 3669 3531 +f 3671 3669 3533 +f 3535 3671 3533 +f 3673 3671 3535 +f 3537 3673 3535 +f 3675 3673 3537 +f 3539 3675 3537 +f 3541 3677 3539 +f 3677 3675 3539 +f 3586 3679 3541 +f 3679 3677 3541 +f 3696 3679 3586 +f 3649 3786 3648 +f 3651 3793 3649 +f 3793 3786 3649 +f 3653 3795 3651 +f 3795 3793 3651 +f 3655 3797 3653 +f 3797 3795 3653 +f 3657 3799 3655 +f 3799 3797 3655 +f 3659 3801 3657 +f 3801 3799 3657 +f 3661 3803 3659 +f 3803 3801 3659 +f 3663 3805 3661 +f 3805 3803 3661 +f 3665 3807 3663 +f 3807 3805 3663 +f 3667 3809 3665 +f 3809 3807 3665 +f 3669 3811 3667 +f 3811 3809 3667 +f 3671 3813 3669 +f 3813 3811 3669 +f 3673 3815 3671 +f 3815 3813 3671 +f 3675 3817 3673 +f 3817 3815 3673 +f 3677 3819 3675 +f 3819 3817 3675 +f 3679 3821 3677 +f 3821 3819 3677 +f 3696 3825 3679 +f 3825 3823 3679 +f 3823 3821 3679 +f 3793 3792 3786 +f 3793 3920 3792 +f 3795 3935 3793 +f 3935 3920 3793 +f 3797 3937 3795 +f 3937 3935 3795 +f 3799 3939 3797 +f 3939 3937 3797 +f 3801 3941 3799 +f 3941 3939 3799 +f 3803 3943 3801 +f 3943 3941 3801 +f 3805 3945 3803 +f 3945 3943 3803 +f 3807 3947 3805 +f 3947 3945 3805 +f 3809 3949 3807 +f 3949 3947 3807 +f 3811 3951 3809 +f 3951 3949 3809 +f 3813 3953 3811 +f 3953 3951 3811 +f 3815 3955 3813 +f 3955 3953 3813 +f 3817 3957 3815 +f 3957 3955 3815 +f 3819 3959 3817 +f 3959 3957 3817 +f 3821 3961 3819 +f 3961 3959 3819 +f 3823 3963 3821 +f 3963 3961 3821 +f 3825 3965 3823 +f 3965 3963 3823 +f 3828 3965 3825 +f 3830 3967 3828 +f 3967 3965 3828 +f 3969 3967 3830 +f 3935 3934 3920 +f 3935 4059 3934 +f 3937 4079 3935 +f 4079 4059 3935 +f 3939 4081 3937 +f 4081 4079 3937 +f 3941 4083 3939 +f 4083 4081 3939 +f 3943 4085 3941 +f 4085 4083 3941 +f 3945 4087 3943 +f 4087 4085 3943 +f 3947 4089 3945 +f 4089 4087 3945 +f 3949 4091 3947 +f 4091 4089 3947 +f 3951 4093 3949 +f 4093 4091 3949 +f 3953 4095 3951 +f 4095 4093 3951 +f 3955 4097 3953 +f 4097 4095 3953 +f 3957 4099 3955 +f 4099 4097 3955 +f 3959 4101 3957 +f 4101 4099 3957 +f 3961 4103 3959 +f 4103 4101 3959 +f 3963 4105 3961 +f 4105 4103 3961 +f 3965 4107 3963 +f 4107 4105 3963 +f 3967 4109 3965 +f 4109 4107 3965 +f 3969 4111 3967 +f 4111 4109 3967 +f 4061 4113 3969 +f 4113 4111 3969 +f 4079 4078 4059 +f 4114 4113 4061 +f 4079 4159 4078 +f 4081 4162 4079 +f 4162 4159 4079 +f 4083 4164 4081 +f 4164 4162 4081 +f 4085 4166 4083 +f 4166 4164 4083 +f 4087 4168 4085 +f 4168 4166 4085 +f 4089 4170 4087 +f 4170 4168 4087 +f 4091 4172 4089 +f 4172 4170 4089 +f 4093 4174 4091 +f 4174 4172 4091 +f 4095 4176 4093 +f 4176 4174 4093 +f 4097 4178 4095 +f 4178 4176 4095 +f 4099 4180 4097 +f 4180 4178 4097 +f 4101 4182 4099 +f 4182 4180 4099 +f 4103 4184 4101 +f 4184 4182 4101 +f 4105 4186 4103 +f 4186 4184 4103 +f 4107 4188 4105 +f 4188 4186 4105 +f 4109 4190 4107 +f 4190 4188 4107 +f 4111 4192 4109 +f 4192 4190 4109 +f 4113 4194 4111 +f 4194 4192 4111 +f 4114 4199 4113 +f 4199 4196 4113 +f 4196 4194 4113 +f 4162 4161 4159 +f 4162 4270 4161 +f 4271 4270 4162 +f 4274 4271 4162 +f 4164 4274 4162 +f 4275 4274 4164 +f 4278 4275 4164 +f 4166 4278 4164 +f 4279 4278 4166 +f 4282 4279 4166 +f 4168 4282 4166 +f 4283 4282 4168 +f 4286 4283 4168 +f 4170 4286 4168 +f 4287 4286 4170 +f 4290 4287 4170 +f 4172 4290 4170 +f 4291 4290 4172 +f 4294 4291 4172 +f 4174 4294 4172 +f 4295 4294 4174 +f 4298 4295 4174 +f 4176 4298 4174 +f 4299 4298 4176 +f 4302 4299 4176 +f 4178 4302 4176 +f 4303 4302 4178 +f 4306 4303 4178 +f 4180 4306 4178 +f 4307 4306 4180 +f 4182 4311 4180 +f 4311 4310 4180 +f 4310 4307 4180 +f 4184 4315 4182 +f 4315 4314 4182 +f 4314 4311 4182 +f 4186 4319 4184 +f 4319 4318 4184 +f 4318 4315 4184 +f 4188 4323 4186 +f 4323 4322 4186 +f 4322 4319 4186 +f 4190 4327 4188 +f 4327 4326 4188 +f 4326 4323 4188 +f 4192 4331 4190 +f 4331 4330 4190 +f 4330 4327 4190 +f 4194 4335 4192 +f 4335 4334 4192 +f 4334 4331 4192 +f 4196 4339 4194 +f 4339 4338 4194 +f 4338 4335 4194 +f 4341 4339 4196 +f 4199 4341 4196 +f 4226 4342 4199 +f 4342 4341 4199 +f 4344 4342 4226 +f 3188 3071 3069 +f 3186 3188 3069 +f 3190 3073 3071 +f 3188 3190 3071 +f 3192 3075 3073 +f 3190 3192 3073 +f 3194 3077 3075 +f 3192 3194 3075 +f 3196 3079 3077 +f 3194 3196 3077 +f 3198 3081 3079 +f 3196 3198 3079 +f 3200 3083 3081 +f 3198 3200 3081 +f 3202 3085 3083 +f 3200 3202 3083 +f 3204 3087 3085 +f 3202 3204 3085 +f 3206 3089 3087 +f 3204 3206 3087 +f 3208 3091 3089 +f 3206 3208 3089 +f 3210 3093 3091 +f 3208 3210 3091 +f 3212 3095 3093 +f 3210 3212 3093 +f 3214 3097 3095 +f 3212 3214 3095 +f 3216 3099 3097 +f 3214 3216 3097 +f 3218 3101 3099 +f 3216 3218 3099 +f 3220 3103 3101 +f 3218 3220 3101 +f 3222 3105 3103 +f 3220 3222 3103 +f 3224 3107 3105 +f 3222 3224 3105 +f 3295 3188 3186 +f 3293 3295 3186 +f 3297 3190 3188 +f 3295 3297 3188 +f 3299 3192 3190 +f 3297 3299 3190 +f 3301 3194 3192 +f 3299 3301 3192 +f 3303 3196 3194 +f 3301 3303 3194 +f 3305 3198 3196 +f 3303 3305 3196 +f 3307 3200 3198 +f 3305 3307 3198 +f 3309 3202 3200 +f 3307 3309 3200 +f 3311 3204 3202 +f 3309 3311 3202 +f 3313 3206 3204 +f 3311 3313 3204 +f 3315 3208 3206 +f 3313 3315 3206 +f 3317 3210 3208 +f 3315 3317 3208 +f 3319 3212 3210 +f 3317 3319 3210 +f 3321 3214 3212 +f 3319 3321 3212 +f 3323 3216 3214 +f 3321 3323 3214 +f 3325 3218 3216 +f 3323 3325 3216 +f 3327 3220 3218 +f 3325 3327 3218 +f 3329 3222 3220 +f 3327 3329 3220 +f 3331 3224 3222 +f 3329 3331 3222 +f 3415 3295 3293 +f 3413 3415 3293 +f 3417 3297 3295 +f 3415 3417 3295 +f 3419 3299 3297 +f 3417 3419 3297 +f 3421 3301 3299 +f 3419 3421 3299 +f 3423 3303 3301 +f 3421 3423 3301 +f 3425 3305 3303 +f 3423 3425 3303 +f 3427 3307 3305 +f 3425 3427 3305 +f 3429 3309 3307 +f 3427 3429 3307 +f 3431 3311 3309 +f 3429 3431 3309 +f 3433 3313 3311 +f 3431 3433 3311 +f 3435 3315 3313 +f 3433 3435 3313 +f 3437 3317 3315 +f 3435 3437 3315 +f 3439 3319 3317 +f 3437 3439 3317 +f 3441 3321 3319 +f 3439 3441 3319 +f 3443 3323 3321 +f 3441 3443 3321 +f 3445 3325 3323 +f 3443 3445 3323 +f 3447 3327 3325 +f 3445 3447 3325 +f 3449 3329 3327 +f 3447 3449 3327 +f 3451 3331 3329 +f 3449 3451 3329 +f 3546 3415 3413 +f 3544 3546 3413 +f 3548 3417 3415 +f 3546 3548 3415 +f 3550 3419 3417 +f 3548 3550 3417 +f 3552 3421 3419 +f 3550 3552 3419 +f 3554 3423 3421 +f 3552 3554 3421 +f 3556 3425 3423 +f 3554 3556 3423 +f 3558 3427 3425 +f 3556 3558 3425 +f 3560 3429 3427 +f 3558 3560 3427 +f 3562 3431 3429 +f 3560 3562 3429 +f 3564 3433 3431 +f 3562 3564 3431 +f 3566 3435 3433 +f 3564 3566 3433 +f 3568 3437 3435 +f 3566 3568 3435 +f 3570 3439 3437 +f 3568 3570 3437 +f 3572 3441 3439 +f 3570 3572 3439 +f 3574 3443 3441 +f 3572 3574 3441 +f 3576 3445 3443 +f 3574 3576 3443 +f 3578 3447 3445 +f 3576 3578 3445 +f 3580 3449 3447 +f 3578 3580 3447 +f 3582 3451 3449 +f 3580 3582 3449 +f 3609 3546 3544 +f 3607 3609 3544 +f 3611 3548 3546 +f 3609 3611 3546 +f 3613 3550 3548 +f 3611 3613 3548 +f 3615 3552 3550 +f 3613 3615 3550 +f 3617 3554 3552 +f 3615 3617 3552 +f 3619 3556 3554 +f 3617 3619 3554 +f 3621 3558 3556 +f 3619 3621 3556 +f 3623 3560 3558 +f 3621 3623 3558 +f 3625 3562 3560 +f 3623 3625 3560 +f 3627 3564 3562 +f 3625 3627 3562 +f 3629 3566 3564 +f 3627 3629 3564 +f 3631 3568 3566 +f 3629 3631 3566 +f 3633 3570 3568 +f 3631 3633 3568 +f 3635 3572 3570 +f 3633 3635 3570 +f 3637 3574 3572 +f 3635 3637 3572 +f 3639 3576 3574 +f 3637 3639 3574 +f 3641 3578 3576 +f 3639 3641 3576 +f 3643 3580 3578 +f 3641 3643 3578 +f 3645 3582 3580 +f 3643 3645 3580 +f 3747 3609 3607 +f 3745 3747 3607 +f 3749 3611 3609 +f 3747 3749 3609 +f 3751 3613 3611 +f 3749 3751 3611 +f 3753 3615 3613 +f 3751 3753 3613 +f 3755 3617 3615 +f 3753 3755 3615 +f 3757 3619 3617 +f 3755 3757 3617 +f 3759 3621 3619 +f 3757 3759 3619 +f 3761 3623 3621 +f 3759 3761 3621 +f 3763 3625 3623 +f 3761 3763 3623 +f 3765 3627 3625 +f 3763 3765 3625 +f 3767 3629 3627 +f 3765 3767 3627 +f 3769 3631 3629 +f 3767 3769 3629 +f 3771 3633 3631 +f 3769 3771 3631 +f 3773 3635 3633 +f 3771 3773 3633 +f 3775 3637 3635 +f 3773 3775 3635 +f 3777 3639 3637 +f 3775 3777 3637 +f 3779 3641 3639 +f 3777 3779 3639 +f 3781 3643 3641 +f 3779 3781 3641 +f 3783 3645 3643 +f 3781 3783 3643 +f 3881 3747 3745 +f 3879 3881 3745 +f 3883 3749 3747 +f 3881 3883 3747 +f 3885 3751 3749 +f 3883 3885 3749 +f 3887 3753 3751 +f 3885 3887 3751 +f 3889 3755 3753 +f 3887 3889 3753 +f 3891 3757 3755 +f 3889 3891 3755 +f 3893 3759 3757 +f 3891 3893 3757 +f 3895 3761 3759 +f 3893 3895 3759 +f 3897 3763 3761 +f 3895 3897 3761 +f 3899 3765 3763 +f 3897 3899 3763 +f 3901 3767 3765 +f 3899 3901 3765 +f 3903 3769 3767 +f 3901 3903 3767 +f 3905 3771 3769 +f 3903 3905 3769 +f 3907 3773 3771 +f 3905 3907 3771 +f 3909 3775 3773 +f 3907 3909 3773 +f 3911 3777 3775 +f 3909 3911 3775 +f 3913 3779 3777 +f 3911 3913 3777 +f 3915 3781 3779 +f 3913 3915 3779 +f 3917 3783 3781 +f 3915 3917 3781 +f 4020 3881 3879 +f 4018 4020 3879 +f 4022 3883 3881 +f 4020 4022 3881 +f 4024 3885 3883 +f 4022 4024 3883 +f 4026 3887 3885 +f 4024 4026 3885 +f 4028 3889 3887 +f 4026 4028 3887 +f 4030 3891 3889 +f 4028 4030 3889 +f 4032 3893 3891 +f 4030 4032 3891 +f 4034 3895 3893 +f 4032 4034 3893 +f 4036 3897 3895 +f 4034 4036 3895 +f 4038 3899 3897 +f 4036 4038 3897 +f 4040 3901 3899 +f 4038 4040 3899 +f 4042 3903 3901 +f 4040 4042 3901 +f 4044 3905 3903 +f 4042 4044 3903 +f 4046 3907 3905 +f 4044 4046 3905 +f 4048 3909 3907 +f 4046 4048 3907 +f 4050 3911 3909 +f 4048 4050 3909 +f 4052 3913 3911 +f 4050 4052 3911 +f 4054 3915 3913 +f 4052 4054 3913 +f 4056 3917 3915 +f 4054 4056 3915 +f 4120 4020 4018 +f 4118 4120 4018 +f 4122 4022 4020 +f 4120 4122 4020 +f 4124 4024 4022 +f 4122 4124 4022 +f 4126 4026 4024 +f 4124 4126 4024 +f 4128 4028 4026 +f 4126 4128 4026 +f 4130 4030 4028 +f 4128 4130 4028 +f 4132 4032 4030 +f 4130 4132 4030 +f 4134 4034 4032 +f 4132 4134 4032 +f 4136 4036 4034 +f 4134 4136 4034 +f 4138 4038 4036 +f 4136 4138 4036 +f 4140 4040 4038 +f 4138 4140 4038 +f 4142 4042 4040 +f 4140 4142 4040 +f 4144 4044 4042 +f 4142 4144 4042 +f 4146 4046 4044 +f 4144 4146 4044 +f 4148 4048 4046 +f 4146 4148 4046 +f 4150 4050 4048 +f 4148 4150 4048 +f 4152 4052 4050 +f 4150 4152 4050 +f 4154 4054 4052 +f 4152 4154 4052 +f 4156 4056 4054 +f 4154 4156 4054 +f 4231 4120 4118 +f 4229 4231 4118 +f 4233 4122 4120 +f 4231 4233 4120 +f 4235 4124 4122 +f 4233 4235 4122 +f 4237 4126 4124 +f 4235 4237 4124 +f 4239 4128 4126 +f 4237 4239 4126 +f 4241 4130 4128 +f 4239 4241 4128 +f 4243 4132 4130 +f 4241 4243 4130 +f 4245 4134 4132 +f 4243 4245 4132 +f 4247 4136 4134 +f 4245 4247 4134 +f 4249 4138 4136 +f 4247 4249 4136 +f 4251 4140 4138 +f 4249 4251 4138 +f 4253 4142 4140 +f 4251 4253 4140 +f 4255 4144 4142 +f 4253 4255 4142 +f 4257 4146 4144 +f 4255 4257 4144 +f 4259 4148 4146 +f 4257 4259 4146 +f 4261 4150 4148 +f 4259 4261 4148 +f 4263 4152 4150 +f 4261 4263 4150 +f 4265 4154 4152 +f 4263 4265 4152 +f 4267 4156 4154 +f 4265 4267 4154 +f 3070 3187 3069 +f 3187 3186 3069 +f 3187 3294 3186 +f 3294 3293 3186 +f 3294 3414 3293 +f 3414 3413 3293 +f 3414 3545 3413 +f 3545 3544 3413 +f 3545 3608 3544 +f 3608 3607 3544 +f 3608 3746 3607 +f 3746 3745 3607 +f 3746 3880 3745 +f 3880 3879 3745 +f 3880 4019 3879 +f 4019 4018 3879 +f 4019 4119 4018 +f 4119 4118 4018 +f 4119 4230 4118 +f 4230 4229 4118 +f 3224 3108 3107 +f 3224 3225 3108 +f 3331 3225 3224 +f 3331 3332 3225 +f 3451 3332 3331 +f 3451 3452 3332 +f 3582 3452 3451 +f 3582 3583 3452 +f 3645 3583 3582 +f 3645 3646 3583 +f 3783 3646 3645 +f 3783 3784 3646 +f 3917 3784 3783 +f 3917 3918 3784 +f 4056 3918 3917 +f 4056 4057 3918 +f 4156 4057 4056 +f 4156 4157 4057 +f 4267 4157 4156 +f 4267 4268 4157 +f 3072 3187 3070 +f 3189 3187 3072 +f 3074 3189 3072 +f 3191 3189 3074 +f 3076 3191 3074 +f 3193 3191 3076 +f 3078 3193 3076 +f 3195 3193 3078 +f 3080 3195 3078 +f 3197 3195 3080 +f 3082 3197 3080 +f 3199 3197 3082 +f 3084 3199 3082 +f 3201 3199 3084 +f 3086 3201 3084 +f 3203 3201 3086 +f 3088 3203 3086 +f 3205 3203 3088 +f 3090 3205 3088 +f 3207 3205 3090 +f 3092 3207 3090 +f 3209 3207 3092 +f 3094 3209 3092 +f 3211 3209 3094 +f 3096 3211 3094 +f 3213 3211 3096 +f 3098 3213 3096 +f 3215 3213 3098 +f 3100 3215 3098 +f 3217 3215 3100 +f 3102 3217 3100 +f 3219 3217 3102 +f 3104 3219 3102 +f 3221 3219 3104 +f 3106 3221 3104 +f 3223 3221 3106 +f 3108 3223 3106 +f 3225 3223 3108 +f 3189 3294 3187 +f 3296 3294 3189 +f 3191 3296 3189 +f 3298 3296 3191 +f 3193 3298 3191 +f 3300 3298 3193 +f 3195 3300 3193 +f 3302 3300 3195 +f 3197 3302 3195 +f 3304 3302 3197 +f 3199 3304 3197 +f 3306 3304 3199 +f 3201 3306 3199 +f 3308 3306 3201 +f 3203 3308 3201 +f 3310 3308 3203 +f 3205 3310 3203 +f 3312 3310 3205 +f 3207 3312 3205 +f 3314 3312 3207 +f 3209 3314 3207 +f 3316 3314 3209 +f 3211 3316 3209 +f 3318 3316 3211 +f 3213 3318 3211 +f 3320 3318 3213 +f 3215 3320 3213 +f 3322 3320 3215 +f 3217 3322 3215 +f 3324 3322 3217 +f 3219 3324 3217 +f 3326 3324 3219 +f 3221 3326 3219 +f 3328 3326 3221 +f 3223 3328 3221 +f 3330 3328 3223 +f 3225 3330 3223 +f 3332 3330 3225 +f 3296 3414 3294 +f 3416 3414 3296 +f 3298 3416 3296 +f 3418 3416 3298 +f 3300 3418 3298 +f 3420 3418 3300 +f 3302 3420 3300 +f 3422 3420 3302 +f 3304 3422 3302 +f 3424 3422 3304 +f 3306 3424 3304 +f 3426 3424 3306 +f 3308 3426 3306 +f 3428 3426 3308 +f 3310 3428 3308 +f 3430 3428 3310 +f 3312 3430 3310 +f 3432 3430 3312 +f 3314 3432 3312 +f 3434 3432 3314 +f 3316 3434 3314 +f 3436 3434 3316 +f 3318 3436 3316 +f 3438 3436 3318 +f 3320 3438 3318 +f 3440 3438 3320 +f 3322 3440 3320 +f 3442 3440 3322 +f 3324 3442 3322 +f 3444 3442 3324 +f 3326 3444 3324 +f 3446 3444 3326 +f 3328 3446 3326 +f 3448 3446 3328 +f 3330 3448 3328 +f 3450 3448 3330 +f 3332 3450 3330 +f 3452 3450 3332 +f 3416 3545 3414 +f 3547 3545 3416 +f 3418 3547 3416 +f 3549 3547 3418 +f 3420 3549 3418 +f 3551 3549 3420 +f 3422 3551 3420 +f 3553 3551 3422 +f 3424 3553 3422 +f 3555 3553 3424 +f 3426 3555 3424 +f 3557 3555 3426 +f 3428 3557 3426 +f 3559 3557 3428 +f 3430 3559 3428 +f 3561 3559 3430 +f 3432 3561 3430 +f 3563 3561 3432 +f 3434 3563 3432 +f 3565 3563 3434 +f 3436 3565 3434 +f 3567 3565 3436 +f 3438 3567 3436 +f 3569 3567 3438 +f 3440 3569 3438 +f 3571 3569 3440 +f 3442 3571 3440 +f 3573 3571 3442 +f 3444 3573 3442 +f 3575 3573 3444 +f 3446 3575 3444 +f 3577 3575 3446 +f 3448 3577 3446 +f 3579 3577 3448 +f 3450 3579 3448 +f 3581 3579 3450 +f 3452 3581 3450 +f 3583 3581 3452 +f 3547 3608 3545 +f 3610 3608 3547 +f 3549 3610 3547 +f 3612 3610 3549 +f 3551 3612 3549 +f 3614 3612 3551 +f 3553 3614 3551 +f 3616 3614 3553 +f 3555 3616 3553 +f 3618 3616 3555 +f 3557 3618 3555 +f 3620 3618 3557 +f 3559 3620 3557 +f 3622 3620 3559 +f 3561 3622 3559 +f 3624 3622 3561 +f 3563 3624 3561 +f 3626 3624 3563 +f 3565 3626 3563 +f 3628 3626 3565 +f 3567 3628 3565 +f 3630 3628 3567 +f 3569 3630 3567 +f 3632 3630 3569 +f 3571 3632 3569 +f 3634 3632 3571 +f 3573 3634 3571 +f 3636 3634 3573 +f 3575 3636 3573 +f 3638 3636 3575 +f 3577 3638 3575 +f 3640 3638 3577 +f 3579 3640 3577 +f 3642 3640 3579 +f 3581 3642 3579 +f 3644 3642 3581 +f 3583 3644 3581 +f 3646 3644 3583 +f 3610 3746 3608 +f 3748 3746 3610 +f 3612 3748 3610 +f 3750 3748 3612 +f 3614 3750 3612 +f 3752 3750 3614 +f 3616 3752 3614 +f 3754 3752 3616 +f 3618 3754 3616 +f 3756 3754 3618 +f 3620 3756 3618 +f 3758 3756 3620 +f 3622 3758 3620 +f 3760 3758 3622 +f 3624 3760 3622 +f 3762 3760 3624 +f 3626 3762 3624 +f 3764 3762 3626 +f 3628 3764 3626 +f 3766 3764 3628 +f 3630 3766 3628 +f 3768 3766 3630 +f 3632 3768 3630 +f 3770 3768 3632 +f 3634 3770 3632 +f 3772 3770 3634 +f 3636 3772 3634 +f 3774 3772 3636 +f 3638 3774 3636 +f 3776 3774 3638 +f 3640 3776 3638 +f 3778 3776 3640 +f 3642 3778 3640 +f 3780 3778 3642 +f 3644 3780 3642 +f 3782 3780 3644 +f 3646 3782 3644 +f 3784 3782 3646 +f 3748 3880 3746 +f 3882 3880 3748 +f 3750 3882 3748 +f 3884 3882 3750 +f 3752 3884 3750 +f 3886 3884 3752 +f 3754 3886 3752 +f 3888 3886 3754 +f 3756 3888 3754 +f 3890 3888 3756 +f 3758 3890 3756 +f 3892 3890 3758 +f 3760 3892 3758 +f 3894 3892 3760 +f 3762 3894 3760 +f 3896 3894 3762 +f 3764 3896 3762 +f 3898 3896 3764 +f 3766 3898 3764 +f 3900 3898 3766 +f 3768 3900 3766 +f 3902 3900 3768 +f 3770 3902 3768 +f 3904 3902 3770 +f 3772 3904 3770 +f 3906 3904 3772 +f 3774 3906 3772 +f 3908 3906 3774 +f 3776 3908 3774 +f 3910 3908 3776 +f 3778 3910 3776 +f 3912 3910 3778 +f 3780 3912 3778 +f 3914 3912 3780 +f 3782 3914 3780 +f 3916 3914 3782 +f 3784 3916 3782 +f 3918 3916 3784 +f 3882 4019 3880 +f 4021 4019 3882 +f 3884 4021 3882 +f 4023 4021 3884 +f 3886 4023 3884 +f 4025 4023 3886 +f 3888 4025 3886 +f 4027 4025 3888 +f 3890 4027 3888 +f 4029 4027 3890 +f 3892 4029 3890 +f 4031 4029 3892 +f 3894 4031 3892 +f 4033 4031 3894 +f 3896 4033 3894 +f 4035 4033 3896 +f 3898 4035 3896 +f 4037 4035 3898 +f 3900 4037 3898 +f 4039 4037 3900 +f 3902 4039 3900 +f 4041 4039 3902 +f 3904 4041 3902 +f 4043 4041 3904 +f 3906 4043 3904 +f 4045 4043 3906 +f 3908 4045 3906 +f 4047 4045 3908 +f 3910 4047 3908 +f 4049 4047 3910 +f 3912 4049 3910 +f 4051 4049 3912 +f 3914 4051 3912 +f 4053 4051 3914 +f 3916 4053 3914 +f 4055 4053 3916 +f 3918 4055 3916 +f 4057 4055 3918 +f 4021 4119 4019 +f 4121 4119 4021 +f 4023 4121 4021 +f 4123 4121 4023 +f 4025 4123 4023 +f 4125 4123 4025 +f 4027 4125 4025 +f 4127 4125 4027 +f 4029 4127 4027 +f 4129 4127 4029 +f 4031 4129 4029 +f 4131 4129 4031 +f 4033 4131 4031 +f 4133 4131 4033 +f 4035 4133 4033 +f 4135 4133 4035 +f 4037 4135 4035 +f 4137 4135 4037 +f 4039 4137 4037 +f 4139 4137 4039 +f 4041 4139 4039 +f 4141 4139 4041 +f 4043 4141 4041 +f 4143 4141 4043 +f 4045 4143 4043 +f 4145 4143 4045 +f 4047 4145 4045 +f 4147 4145 4047 +f 4049 4147 4047 +f 4149 4147 4049 +f 4051 4149 4049 +f 4151 4149 4051 +f 4053 4151 4051 +f 4153 4151 4053 +f 4055 4153 4053 +f 4155 4153 4055 +f 4057 4155 4055 +f 4157 4155 4057 +f 4121 4230 4119 +f 4232 4230 4121 +f 4123 4232 4121 +f 4234 4232 4123 +f 4125 4234 4123 +f 4236 4234 4125 +f 4127 4236 4125 +f 4238 4236 4127 +f 4129 4238 4127 +f 4240 4238 4129 +f 4131 4240 4129 +f 4242 4240 4131 +f 4133 4242 4131 +f 4244 4242 4133 +f 4135 4244 4133 +f 4246 4244 4135 +f 4137 4246 4135 +f 4248 4246 4137 +f 4139 4248 4137 +f 4250 4248 4139 +f 4141 4250 4139 +f 4252 4250 4141 +f 4143 4252 4141 +f 4254 4252 4143 +f 4145 4254 4143 +f 4256 4254 4145 +f 4147 4256 4145 +f 4258 4256 4147 +f 4149 4258 4147 +f 4260 4258 4149 +f 4151 4260 4149 +f 4262 4260 4151 +f 4153 4262 4151 +f 4264 4262 4153 +f 4155 4264 4153 +f 4266 4264 4155 +f 4157 4266 4155 +f 4268 4266 4157 +f 2595 2657 2593 +f 2663 2657 2595 +f 2597 2663 2595 +f 2665 2663 2597 +f 2599 2665 2597 +f 2667 2665 2599 +f 2601 2667 2599 +f 2669 2667 2601 +f 2603 2669 2601 +f 2671 2669 2603 +f 2605 2671 2603 +f 2673 2671 2605 +f 2607 2673 2605 +f 2675 2673 2607 +f 2609 2675 2607 +f 2677 2675 2609 +f 2611 2677 2609 +f 2635 2679 2611 +f 2613 2635 2611 +f 2679 2677 2611 +f 2681 2679 2635 +f 2663 2661 2657 +f 2663 2705 2661 +f 2711 2705 2663 +f 2665 2711 2663 +f 2713 2711 2665 +f 2667 2713 2665 +f 2715 2713 2667 +f 2669 2715 2667 +f 2717 2715 2669 +f 2671 2717 2669 +f 2719 2717 2671 +f 2673 2719 2671 +f 2721 2719 2673 +f 2675 2721 2673 +f 2723 2721 2675 +f 2677 2723 2675 +f 2725 2723 2677 +f 2679 2725 2677 +f 2683 2727 2679 +f 2681 2683 2679 +f 2727 2725 2679 +f 2729 2727 2683 +f 2711 2709 2705 +f 2711 2753 2709 +f 2759 2753 2711 +f 2713 2759 2711 +f 2761 2759 2713 +f 2715 2761 2713 +f 2763 2761 2715 +f 2717 2763 2715 +f 2765 2763 2717 +f 2719 2765 2717 +f 2767 2765 2719 +f 2721 2767 2719 +f 2769 2767 2721 +f 2723 2769 2721 +f 2771 2769 2723 +f 2725 2771 2723 +f 2773 2771 2725 +f 2727 2773 2725 +f 2731 2775 2727 +f 2729 2731 2727 +f 2775 2773 2727 +f 2777 2775 2731 +f 2759 2757 2753 +f 2759 2801 2757 +f 2807 2801 2759 +f 2761 2807 2759 +f 2809 2807 2761 +f 2763 2809 2761 +f 2811 2809 2763 +f 2765 2811 2763 +f 2813 2811 2765 +f 2767 2813 2765 +f 2815 2813 2767 +f 2769 2815 2767 +f 2817 2815 2769 +f 2771 2817 2769 +f 2819 2817 2771 +f 2773 2819 2771 +f 2821 2819 2773 +f 2775 2821 2773 +f 2779 2823 2775 +f 2777 2779 2775 +f 2823 2821 2775 +f 2825 2823 2779 +f 2807 2805 2801 +f 2807 2849 2805 +f 2855 2849 2807 +f 2809 2855 2807 +f 2857 2855 2809 +f 2811 2857 2809 +f 2859 2857 2811 +f 2813 2859 2811 +f 2861 2859 2813 +f 2815 2861 2813 +f 2863 2861 2815 +f 2817 2863 2815 +f 2865 2863 2817 +f 2819 2865 2817 +f 2867 2865 2819 +f 2821 2867 2819 +f 2869 2867 2821 +f 2823 2869 2821 +f 2827 2871 2823 +f 2825 2827 2823 +f 2871 2869 2823 +f 2873 2871 2827 +f 2855 2853 2849 +f 2855 2897 2853 +f 2903 2897 2855 +f 2857 2903 2855 +f 2905 2903 2857 +f 2859 2905 2857 +f 2907 2905 2859 +f 2861 2907 2859 +f 2909 2907 2861 +f 2863 2909 2861 +f 2911 2909 2863 +f 2865 2911 2863 +f 2913 2911 2865 +f 2867 2913 2865 +f 2915 2913 2867 +f 2869 2915 2867 +f 2917 2915 2869 +f 2871 2917 2869 +f 2873 2919 2871 +f 2919 2917 2871 +f 2875 2919 2873 +f 2921 2919 2875 +f 2903 2901 2897 +f 2903 2923 2901 +f 2949 2923 2903 +f 2905 2949 2903 +f 2951 2949 2905 +f 2907 2951 2905 +f 2953 2951 2907 +f 2909 2953 2907 +f 2955 2953 2909 +f 2911 2955 2909 +f 2957 2955 2911 +f 2913 2957 2911 +f 2959 2957 2913 +f 2915 2959 2913 +f 2961 2959 2915 +f 2917 2961 2915 +f 2963 2961 2917 +f 2919 2963 2917 +f 2921 2927 2919 +f 2927 2965 2919 +f 2965 2963 2919 +f 2949 2947 2923 +f 2967 2965 2927 +f 2949 2969 2947 +f 2997 2969 2949 +f 2951 2997 2949 +f 2999 2997 2951 +f 2953 2999 2951 +f 3001 2999 2953 +f 2955 3001 2953 +f 3003 3001 2955 +f 2957 3003 2955 +f 3005 3003 2957 +f 2959 3005 2957 +f 3007 3005 2959 +f 2961 3007 2959 +f 3009 3007 2961 +f 2963 3009 2961 +f 3011 3009 2963 +f 2965 3011 2963 +f 2973 3013 2965 +f 2967 2973 2965 +f 3013 3011 2965 +f 2997 2995 2969 +f 3015 3013 2973 +f 2997 3017 2995 +f 3045 3017 2997 +f 2999 3045 2997 +f 3047 3045 2999 +f 3001 3047 2999 +f 3049 3047 3001 +f 3003 3049 3001 +f 3051 3049 3003 +f 3005 3051 3003 +f 3053 3051 3005 +f 3007 3053 3005 +f 3055 3053 3007 +f 3009 3055 3007 +f 3057 3055 3009 +f 3011 3057 3009 +f 3059 3057 3011 +f 3013 3059 3011 +f 3021 3061 3013 +f 3015 3021 3013 +f 3061 3059 3013 +f 3045 3043 3017 +f 3063 3061 3021 +f 3045 3153 3043 +f 3153 3139 3043 +f 3254 3153 3045 +f 3047 3254 3045 +f 3455 3352 3047 +f 3352 3254 3047 +f 3049 3455 3047 +f 3456 3455 3049 +f 3051 3456 3049 +f 3458 3456 3051 +f 3053 3458 3051 +f 3460 3458 3053 +f 3055 3460 3053 +f 3462 3460 3055 +f 3057 3462 3055 +f 3464 3462 3057 +f 3059 3464 3057 +f 3466 3464 3059 +f 3061 3466 3059 +f 3336 3468 3061 +f 3063 3336 3061 +f 3468 3466 3061 +f 3470 3468 3336 +f 3456 3481 3455 +f 3542 3481 3456 +f 3458 3542 3456 +f 3682 3605 3458 +f 3605 3603 3458 +f 3603 3542 3458 +f 3460 3682 3458 +f 3683 3682 3460 +f 3462 3683 3460 +f 3685 3683 3462 +f 3464 3685 3462 +f 3687 3685 3464 +f 3466 3687 3464 +f 3689 3687 3466 +f 3468 3689 3466 +f 3592 3691 3468 +f 3470 3592 3468 +f 3691 3689 3468 +f 3693 3691 3592 +f 3683 3701 3682 +f 3842 3789 3683 +f 3789 3732 3683 +f 3732 3701 3683 +f 3685 3842 3683 +f 3831 3842 3685 +f 3687 3831 3685 +f 3833 3831 3687 +f 3689 3833 3687 +f 3835 3833 3689 +f 3691 3835 3689 +f 3736 3837 3691 +f 3693 3736 3691 +f 3837 3835 3691 +f 3839 3837 3736 +f 3979 3931 3831 +f 3931 3877 3831 +f 3877 3868 3831 +f 3845 3842 3831 +f 3868 3845 3831 +f 3833 3979 3831 +f 3971 3979 3833 +f 3835 3971 3833 +f 3973 3971 3835 +f 3837 3973 3835 +f 3921 3975 3837 +f 3839 3921 3837 +f 3975 3973 3837 +f 3977 3975 3921 +f 3981 3979 3971 +f 3973 3981 3971 +f 4060 3991 3973 +f 4066 4060 3973 +f 3991 3981 3973 +f 3975 4066 3973 +f 3977 4066 3975 +f 3988 4066 3977 +f 4071 4066 3988 +f 4074 4071 3988 +f 2657 2594 2593 +f 2657 2658 2594 +f 2661 2662 2657 +f 2662 2658 2657 +f 2705 2706 2661 +f 2706 2662 2661 +f 2709 2710 2705 +f 2710 2706 2705 +f 2753 2754 2709 +f 2754 2710 2709 +f 2757 2758 2753 +f 2758 2754 2753 +f 2801 2802 2757 +f 2802 2758 2757 +f 2805 2806 2801 +f 2806 2802 2801 +f 2849 2850 2805 +f 2850 2806 2805 +f 2853 2854 2849 +f 2854 2850 2849 +f 2897 2898 2853 +f 2898 2854 2853 +f 2901 2902 2897 +f 2902 2898 2897 +f 2923 2924 2901 +f 2924 2902 2901 +f 2947 2948 2923 +f 2948 2924 2923 +f 2969 2970 2947 +f 2970 2948 2947 +f 2995 2996 2969 +f 2996 2970 2969 +f 3017 3018 2995 +f 3018 2996 2995 +f 3043 3044 3017 +f 3044 3018 3017 +f 3139 3140 3043 +f 3140 3044 3043 +f 3141 3142 3044 +f 3140 3141 3044 +f 2615 2635 2613 +f 2637 2635 2615 +f 2617 2637 2615 +f 2619 2639 2617 +f 2639 2637 2617 +f 2621 2641 2619 +f 2641 2639 2619 +f 2623 2643 2621 +f 2643 2641 2621 +f 2625 2645 2623 +f 2645 2643 2623 +f 2647 2645 2625 +f 2627 2647 2625 +f 2649 2647 2627 +f 2629 2649 2627 +f 2651 2649 2629 +f 2631 2651 2629 +f 2633 2653 2631 +f 2653 2651 2631 +f 2655 2653 2633 +f 2637 2681 2635 +f 2685 2681 2637 +f 2639 2685 2637 +f 2641 2687 2639 +f 2687 2685 2639 +f 2643 2689 2641 +f 2689 2687 2641 +f 2645 2691 2643 +f 2691 2689 2643 +f 2647 2693 2645 +f 2693 2691 2645 +f 2695 2693 2647 +f 2649 2695 2647 +f 2697 2695 2649 +f 2651 2697 2649 +f 2699 2697 2651 +f 2653 2699 2651 +f 2655 2659 2653 +f 2659 2701 2653 +f 2701 2699 2653 +f 2703 2701 2659 +f 2685 2683 2681 +f 2685 2729 2683 +f 2733 2729 2685 +f 2687 2733 2685 +f 2689 2735 2687 +f 2735 2733 2687 +f 2691 2737 2689 +f 2737 2735 2689 +f 2693 2739 2691 +f 2739 2737 2691 +f 2695 2741 2693 +f 2741 2739 2693 +f 2743 2741 2695 +f 2697 2743 2695 +f 2745 2743 2697 +f 2699 2745 2697 +f 2747 2745 2699 +f 2701 2747 2699 +f 2707 2749 2701 +f 2703 2707 2701 +f 2749 2747 2701 +f 2751 2749 2707 +f 2733 2731 2729 +f 2733 2777 2731 +f 2781 2777 2733 +f 2735 2781 2733 +f 2737 2783 2735 +f 2783 2781 2735 +f 2739 2785 2737 +f 2785 2783 2737 +f 2741 2787 2739 +f 2787 2785 2739 +f 2743 2789 2741 +f 2789 2787 2741 +f 2791 2789 2743 +f 2745 2791 2743 +f 2793 2791 2745 +f 2747 2793 2745 +f 2795 2793 2747 +f 2749 2795 2747 +f 2755 2797 2749 +f 2751 2755 2749 +f 2797 2795 2749 +f 2799 2797 2755 +f 2781 2779 2777 +f 2781 2825 2779 +f 2829 2825 2781 +f 2783 2829 2781 +f 2785 2831 2783 +f 2831 2829 2783 +f 2787 2833 2785 +f 2833 2831 2785 +f 2789 2835 2787 +f 2835 2833 2787 +f 2791 2837 2789 +f 2837 2835 2789 +f 2839 2837 2791 +f 2793 2839 2791 +f 2841 2839 2793 +f 2795 2841 2793 +f 2843 2841 2795 +f 2797 2843 2795 +f 2803 2845 2797 +f 2799 2803 2797 +f 2845 2843 2797 +f 2847 2845 2803 +f 2829 2827 2825 +f 2829 2873 2827 +f 2877 2873 2829 +f 2831 2877 2829 +f 2833 2879 2831 +f 2879 2877 2831 +f 2835 2881 2833 +f 2881 2879 2833 +f 2837 2883 2835 +f 2883 2881 2835 +f 2839 2885 2837 +f 2885 2883 2837 +f 2887 2885 2839 +f 2841 2887 2839 +f 2889 2887 2841 +f 2843 2889 2841 +f 2891 2889 2843 +f 2845 2891 2843 +f 2851 2893 2845 +f 2847 2851 2845 +f 2893 2891 2845 +f 2895 2893 2851 +f 2877 2875 2873 +f 2877 2921 2875 +f 2929 2921 2877 +f 2879 2929 2877 +f 2881 2931 2879 +f 2931 2929 2879 +f 2883 2933 2881 +f 2933 2931 2881 +f 2885 2935 2883 +f 2935 2933 2883 +f 2887 2937 2885 +f 2937 2935 2885 +f 2939 2937 2887 +f 2889 2939 2887 +f 2941 2939 2889 +f 2891 2941 2889 +f 2943 2941 2891 +f 2893 2943 2891 +f 2899 2945 2893 +f 2895 2899 2893 +f 2945 2943 2893 +f 2925 2945 2899 +f 2929 2927 2921 +f 2929 2967 2927 +f 2975 2967 2929 +f 2931 2975 2929 +f 2933 2977 2931 +f 2977 2975 2931 +f 2935 2979 2933 +f 2979 2977 2933 +f 2937 2981 2935 +f 2981 2979 2935 +f 2939 2983 2937 +f 2983 2981 2937 +f 2985 2983 2939 +f 2941 2985 2939 +f 2987 2985 2941 +f 2943 2987 2941 +f 2989 2987 2943 +f 2945 2989 2943 +f 2971 2991 2945 +f 2925 2971 2945 +f 2991 2989 2945 +f 2975 2973 2967 +f 2993 2991 2971 +f 2975 3015 2973 +f 3023 3015 2975 +f 2977 3023 2975 +f 2979 3025 2977 +f 3025 3023 2977 +f 2981 3027 2979 +f 3027 3025 2979 +f 2983 3029 2981 +f 3029 3027 2981 +f 2985 3031 2983 +f 3031 3029 2983 +f 3033 3031 2985 +f 2987 3033 2985 +f 3035 3033 2987 +f 2989 3035 2987 +f 3037 3035 2989 +f 2991 3037 2989 +f 3019 3039 2991 +f 2993 3019 2991 +f 3039 3037 2991 +f 3023 3021 3015 +f 3041 3039 3019 +f 3023 3063 3021 +f 3338 3063 3023 +f 3025 3338 3023 +f 3027 3340 3025 +f 3340 3338 3025 +f 3029 3342 3027 +f 3342 3340 3027 +f 3031 3344 3029 +f 3344 3342 3029 +f 3033 3346 3031 +f 3346 3344 3031 +f 3143 3253 3033 +f 3145 3143 3033 +f 3253 3346 3033 +f 3035 3145 3033 +f 3037 3145 3035 +f 3147 3145 3037 +f 3039 3147 3037 +f 3041 3149 3039 +f 3149 3147 3039 +f 3151 3149 3041 +f 3338 3336 3063 +f 3255 3346 3253 +f 3348 3346 3255 +f 3353 3346 3348 +f 3338 3470 3336 +f 3594 3470 3338 +f 3340 3594 3338 +f 3342 3596 3340 +f 3596 3594 3340 +f 3344 3598 3342 +f 3598 3596 3342 +f 3591 3600 3344 +f 3486 3591 3344 +f 3346 3486 3344 +f 3600 3598 3344 +f 3353 3473 3346 +f 3473 3486 3346 +f 3594 3592 3470 +f 3698 3600 3591 +f 3594 3693 3592 +f 3738 3693 3594 +f 3596 3738 3594 +f 3598 3740 3596 +f 3740 3738 3596 +f 3735 3742 3598 +f 3600 3735 3598 +f 3742 3740 3598 +f 3698 3728 3600 +f 3728 3735 3600 +f 3738 3736 3693 +f 3827 3742 3735 +f 3738 3839 3736 +f 3923 3839 3738 +f 3740 3923 3738 +f 3927 3925 3740 +f 3742 3927 3740 +f 3925 3923 3740 +f 3827 3873 3742 +f 3873 3875 3742 +f 3875 3927 3742 +f 3923 3921 3839 +f 3923 3977 3921 +f 3984 3988 3923 +f 3988 3977 3923 +f 3985 3984 3923 +f 3925 3985 3923 +f 3927 3930 3925 +f 3930 3983 3925 +f 3983 3985 3925 +f 3985 4068 3984 +f 4068 3988 3984 +f 4068 4074 3988 +f 2658 2596 2594 +f 2658 2664 2596 +f 2666 2598 2596 +f 2664 2666 2596 +f 2668 2600 2598 +f 2666 2668 2598 +f 2670 2602 2600 +f 2668 2670 2600 +f 2672 2604 2602 +f 2670 2672 2602 +f 2674 2606 2604 +f 2672 2674 2604 +f 2676 2608 2606 +f 2674 2676 2606 +f 2678 2610 2608 +f 2676 2678 2608 +f 2680 2612 2610 +f 2678 2680 2610 +f 2680 2682 2612 +f 2682 2636 2612 +f 2636 2614 2612 +f 2662 2664 2658 +f 2706 2664 2662 +f 2706 2712 2664 +f 2714 2666 2664 +f 2712 2714 2664 +f 2716 2668 2666 +f 2714 2716 2666 +f 2718 2670 2668 +f 2716 2718 2668 +f 2720 2672 2670 +f 2718 2720 2670 +f 2722 2674 2672 +f 2720 2722 2672 +f 2724 2676 2674 +f 2722 2724 2674 +f 2726 2678 2676 +f 2724 2726 2676 +f 2728 2680 2678 +f 2726 2728 2678 +f 2728 2730 2680 +f 2730 2684 2680 +f 2684 2682 2680 +f 2710 2712 2706 +f 2754 2712 2710 +f 2754 2760 2712 +f 2762 2714 2712 +f 2760 2762 2712 +f 2764 2716 2714 +f 2762 2764 2714 +f 2766 2718 2716 +f 2764 2766 2716 +f 2768 2720 2718 +f 2766 2768 2718 +f 2770 2722 2720 +f 2768 2770 2720 +f 2772 2724 2722 +f 2770 2772 2722 +f 2774 2726 2724 +f 2772 2774 2724 +f 2776 2728 2726 +f 2774 2776 2726 +f 2776 2778 2728 +f 2778 2732 2728 +f 2732 2730 2728 +f 2758 2760 2754 +f 2802 2760 2758 +f 2802 2808 2760 +f 2810 2762 2760 +f 2808 2810 2760 +f 2812 2764 2762 +f 2810 2812 2762 +f 2814 2766 2764 +f 2812 2814 2764 +f 2816 2768 2766 +f 2814 2816 2766 +f 2818 2770 2768 +f 2816 2818 2768 +f 2820 2772 2770 +f 2818 2820 2770 +f 2822 2774 2772 +f 2820 2822 2772 +f 2824 2776 2774 +f 2822 2824 2774 +f 2824 2826 2776 +f 2826 2780 2776 +f 2780 2778 2776 +f 2806 2808 2802 +f 2850 2808 2806 +f 2850 2856 2808 +f 2858 2810 2808 +f 2856 2858 2808 +f 2860 2812 2810 +f 2858 2860 2810 +f 2862 2814 2812 +f 2860 2862 2812 +f 2864 2816 2814 +f 2862 2864 2814 +f 2866 2818 2816 +f 2864 2866 2816 +f 2868 2820 2818 +f 2866 2868 2818 +f 2870 2822 2820 +f 2868 2870 2820 +f 2872 2824 2822 +f 2870 2872 2822 +f 2872 2874 2824 +f 2874 2828 2824 +f 2828 2826 2824 +f 2854 2856 2850 +f 2898 2856 2854 +f 2898 2904 2856 +f 2906 2858 2856 +f 2904 2906 2856 +f 2908 2860 2858 +f 2906 2908 2858 +f 2910 2862 2860 +f 2908 2910 2860 +f 2912 2864 2862 +f 2910 2912 2862 +f 2914 2866 2864 +f 2912 2914 2864 +f 2916 2868 2866 +f 2914 2916 2866 +f 2918 2870 2868 +f 2916 2918 2868 +f 2920 2872 2870 +f 2918 2920 2870 +f 2920 2876 2872 +f 2876 2874 2872 +f 2920 2922 2876 +f 2902 2904 2898 +f 2924 2904 2902 +f 2924 2950 2904 +f 2952 2906 2904 +f 2950 2952 2904 +f 2954 2908 2906 +f 2952 2954 2906 +f 2956 2910 2908 +f 2954 2956 2908 +f 2958 2912 2910 +f 2956 2958 2910 +f 2960 2914 2912 +f 2958 2960 2912 +f 2962 2916 2914 +f 2960 2962 2914 +f 2964 2918 2916 +f 2962 2964 2916 +f 2966 2920 2918 +f 2964 2966 2918 +f 2966 2928 2920 +f 2928 2922 2920 +f 2948 2950 2924 +f 2966 2968 2928 +f 2970 2950 2948 +f 2970 2998 2950 +f 3000 2952 2950 +f 2998 3000 2950 +f 3002 2954 2952 +f 3000 3002 2952 +f 3004 2956 2954 +f 3002 3004 2954 +f 3006 2958 2956 +f 3004 3006 2956 +f 3008 2960 2958 +f 3006 3008 2958 +f 3010 2962 2960 +f 3008 3010 2960 +f 3012 2964 2962 +f 3010 3012 2962 +f 3014 2966 2964 +f 3012 3014 2964 +f 3014 2974 2966 +f 2974 2968 2966 +f 2996 2998 2970 +f 3014 3016 2974 +f 3018 2998 2996 +f 3018 3046 2998 +f 3048 3000 2998 +f 3046 3048 2998 +f 3050 3002 3000 +f 3048 3050 3000 +f 3052 3004 3002 +f 3050 3052 3002 +f 3054 3006 3004 +f 3052 3054 3004 +f 3056 3008 3006 +f 3054 3056 3006 +f 3058 3010 3008 +f 3056 3058 3008 +f 3060 3012 3010 +f 3058 3060 3010 +f 3062 3014 3012 +f 3060 3062 3012 +f 3062 3022 3014 +f 3022 3016 3014 +f 3044 3046 3018 +f 3062 3064 3022 +f 3228 3046 3044 +f 3142 3228 3044 +f 3228 3048 3046 +f 3228 3292 3048 +f 3292 3351 3048 +f 3412 3050 3048 +f 3351 3412 3048 +f 3412 3457 3050 +f 3459 3052 3050 +f 3457 3459 3050 +f 3461 3054 3052 +f 3459 3461 3052 +f 3463 3056 3054 +f 3461 3463 3054 +f 3465 3058 3056 +f 3463 3465 3056 +f 3467 3060 3058 +f 3465 3467 3058 +f 3469 3062 3060 +f 3467 3469 3060 +f 3469 3337 3062 +f 3337 3064 3062 +f 3469 3471 3337 +f 3480 3457 3412 +f 3480 3459 3457 +f 3480 3485 3459 +f 3485 3602 3459 +f 3602 3606 3459 +f 3681 3461 3459 +f 3606 3681 3459 +f 3681 3684 3461 +f 3686 3463 3461 +f 3684 3686 3461 +f 3688 3465 3463 +f 3686 3688 3463 +f 3690 3467 3465 +f 3688 3690 3465 +f 3692 3469 3467 +f 3690 3692 3467 +f 3692 3593 3469 +f 3593 3471 3469 +f 3692 3694 3593 +f 3703 3684 3681 +f 3703 3731 3684 +f 3731 3790 3684 +f 3841 3686 3684 +f 3790 3841 3684 +f 3841 3832 3686 +f 3834 3688 3686 +f 3832 3834 3686 +f 3836 3690 3688 +f 3834 3836 3688 +f 3838 3692 3690 +f 3836 3838 3690 +f 3838 3737 3692 +f 3737 3694 3692 +f 3838 3840 3737 +f 3841 3843 3832 +f 3843 3870 3832 +f 3929 3834 3832 +f 3870 3929 3832 +f 3929 3972 3834 +f 3974 3836 3834 +f 3972 3974 3834 +f 3976 3838 3836 +f 3974 3976 3836 +f 3976 3922 3838 +f 3922 3840 3838 +f 3976 3978 3922 +f 3980 3972 3929 +f 3992 3974 3972 +f 3980 3992 3972 +f 4016 3976 3974 +f 3992 4016 3974 +f 4067 3989 3976 +f 4016 4067 3976 +f 3989 3978 3976 +f 4073 4075 3989 +f 4070 4073 3989 +f 4067 4070 3989 +f 2634 2655 2633 +f 2656 2655 2634 +f 2656 2659 2655 +f 2660 2659 2656 +f 2660 2703 2659 +f 2704 2703 2660 +f 2704 2707 2703 +f 2708 2707 2704 +f 2708 2751 2707 +f 2752 2751 2708 +f 2752 2755 2751 +f 2756 2755 2752 +f 2756 2799 2755 +f 2800 2799 2756 +f 2800 2803 2799 +f 2804 2803 2800 +f 2804 2847 2803 +f 2848 2847 2804 +f 2848 2851 2847 +f 2852 2851 2848 +f 2852 2895 2851 +f 2896 2895 2852 +f 2896 2899 2895 +f 2900 2899 2896 +f 2926 2925 2899 +f 2900 2926 2899 +f 2926 2971 2925 +f 2972 2971 2926 +f 2972 2993 2971 +f 2994 2993 2972 +f 2994 3019 2993 +f 3020 3019 2994 +f 3020 3041 3019 +f 3042 3041 3020 +f 3042 3151 3041 +f 3152 3151 3042 +f 2638 2616 2614 +f 2636 2638 2614 +f 2640 2618 2616 +f 2638 2640 2616 +f 2642 2620 2618 +f 2640 2642 2618 +f 2644 2622 2620 +f 2642 2644 2620 +f 2646 2624 2622 +f 2644 2646 2622 +f 2648 2626 2624 +f 2646 2648 2624 +f 2650 2628 2626 +f 2648 2650 2626 +f 2652 2630 2628 +f 2650 2652 2628 +f 2654 2632 2630 +f 2652 2654 2630 +f 2656 2634 2632 +f 2654 2656 2632 +f 2682 2638 2636 +f 2682 2686 2638 +f 2688 2640 2638 +f 2686 2688 2638 +f 2690 2642 2640 +f 2688 2690 2640 +f 2692 2644 2642 +f 2690 2692 2642 +f 2694 2646 2644 +f 2692 2694 2644 +f 2696 2648 2646 +f 2694 2696 2646 +f 2698 2650 2648 +f 2696 2698 2648 +f 2700 2652 2650 +f 2698 2700 2650 +f 2702 2654 2652 +f 2700 2702 2652 +f 2660 2656 2654 +f 2702 2660 2654 +f 2702 2704 2660 +f 2684 2686 2682 +f 2730 2686 2684 +f 2730 2734 2686 +f 2736 2688 2686 +f 2734 2736 2686 +f 2738 2690 2688 +f 2736 2738 2688 +f 2740 2692 2690 +f 2738 2740 2690 +f 2742 2694 2692 +f 2740 2742 2692 +f 2744 2696 2694 +f 2742 2744 2694 +f 2746 2698 2696 +f 2744 2746 2696 +f 2748 2700 2698 +f 2746 2748 2698 +f 2750 2702 2700 +f 2748 2750 2700 +f 2708 2704 2702 +f 2750 2708 2702 +f 2750 2752 2708 +f 2732 2734 2730 +f 2778 2734 2732 +f 2778 2782 2734 +f 2784 2736 2734 +f 2782 2784 2734 +f 2786 2738 2736 +f 2784 2786 2736 +f 2788 2740 2738 +f 2786 2788 2738 +f 2790 2742 2740 +f 2788 2790 2740 +f 2792 2744 2742 +f 2790 2792 2742 +f 2794 2746 2744 +f 2792 2794 2744 +f 2796 2748 2746 +f 2794 2796 2746 +f 2798 2750 2748 +f 2796 2798 2748 +f 2756 2752 2750 +f 2798 2756 2750 +f 2798 2800 2756 +f 2780 2782 2778 +f 2826 2782 2780 +f 2826 2830 2782 +f 2832 2784 2782 +f 2830 2832 2782 +f 2834 2786 2784 +f 2832 2834 2784 +f 2836 2788 2786 +f 2834 2836 2786 +f 2838 2790 2788 +f 2836 2838 2788 +f 2840 2792 2790 +f 2838 2840 2790 +f 2842 2794 2792 +f 2840 2842 2792 +f 2844 2796 2794 +f 2842 2844 2794 +f 2846 2798 2796 +f 2844 2846 2796 +f 2804 2800 2798 +f 2846 2804 2798 +f 2846 2848 2804 +f 2828 2830 2826 +f 2874 2830 2828 +f 2874 2878 2830 +f 2880 2832 2830 +f 2878 2880 2830 +f 2882 2834 2832 +f 2880 2882 2832 +f 2884 2836 2834 +f 2882 2884 2834 +f 2886 2838 2836 +f 2884 2886 2836 +f 2888 2840 2838 +f 2886 2888 2838 +f 2890 2842 2840 +f 2888 2890 2840 +f 2892 2844 2842 +f 2890 2892 2842 +f 2894 2846 2844 +f 2892 2894 2844 +f 2852 2848 2846 +f 2894 2852 2846 +f 2894 2896 2852 +f 2876 2878 2874 +f 2922 2878 2876 +f 2922 2930 2878 +f 2932 2880 2878 +f 2930 2932 2878 +f 2934 2882 2880 +f 2932 2934 2880 +f 2936 2884 2882 +f 2934 2936 2882 +f 2938 2886 2884 +f 2936 2938 2884 +f 2940 2888 2886 +f 2938 2940 2886 +f 2942 2890 2888 +f 2940 2942 2888 +f 2944 2892 2890 +f 2942 2944 2890 +f 2946 2894 2892 +f 2944 2946 2892 +f 2900 2896 2894 +f 2946 2900 2894 +f 2946 2926 2900 +f 2928 2930 2922 +f 2968 2930 2928 +f 2968 2976 2930 +f 2978 2932 2930 +f 2976 2978 2930 +f 2980 2934 2932 +f 2978 2980 2932 +f 2982 2936 2934 +f 2980 2982 2934 +f 2984 2938 2936 +f 2982 2984 2936 +f 2986 2940 2938 +f 2984 2986 2938 +f 2988 2942 2940 +f 2986 2988 2940 +f 2990 2944 2942 +f 2988 2990 2942 +f 2992 2946 2944 +f 2990 2992 2944 +f 2992 2972 2946 +f 2972 2926 2946 +f 2974 2976 2968 +f 2992 2994 2972 +f 3016 2976 2974 +f 3016 3024 2976 +f 3026 2978 2976 +f 3024 3026 2976 +f 3028 2980 2978 +f 3026 3028 2978 +f 3030 2982 2980 +f 3028 3030 2980 +f 3032 2984 2982 +f 3030 3032 2982 +f 3034 2986 2984 +f 3032 3034 2984 +f 3036 2988 2986 +f 3034 3036 2986 +f 3038 2990 2988 +f 3036 3038 2988 +f 3040 2992 2990 +f 3038 3040 2990 +f 3040 3020 2992 +f 3020 2994 2992 +f 3022 3024 3016 +f 3040 3042 3020 +f 3064 3024 3022 +f 3064 3339 3024 +f 3341 3026 3024 +f 3339 3341 3024 +f 3343 3028 3026 +f 3341 3343 3026 +f 3345 3030 3028 +f 3343 3345 3028 +f 3347 3032 3030 +f 3345 3347 3030 +f 3347 3034 3032 +f 3231 3229 3034 +f 3347 3335 3034 +f 3335 3231 3034 +f 3144 3036 3034 +f 3229 3144 3034 +f 3144 3146 3036 +f 3148 3038 3036 +f 3146 3148 3036 +f 3150 3040 3038 +f 3148 3150 3038 +f 3150 3152 3040 +f 3152 3042 3040 +f 3337 3339 3064 +f 3347 3354 3335 +f 3471 3339 3337 +f 3471 3595 3339 +f 3597 3341 3339 +f 3595 3597 3339 +f 3599 3343 3341 +f 3597 3599 3341 +f 3601 3345 3343 +f 3599 3601 3343 +f 3590 3347 3345 +f 3601 3590 3345 +f 3590 3484 3347 +f 3484 3354 3347 +f 3593 3595 3471 +f 3601 3604 3590 +f 3694 3595 3593 +f 3694 3739 3595 +f 3741 3597 3595 +f 3739 3741 3595 +f 3743 3599 3597 +f 3741 3743 3597 +f 3743 3601 3599 +f 3743 3744 3601 +f 3744 3729 3601 +f 3729 3705 3601 +f 3705 3604 3601 +f 3737 3739 3694 +f 3840 3739 3737 +f 3840 3924 3739 +f 3926 3741 3739 +f 3924 3926 3739 +f 3928 3743 3741 +f 3926 3928 3741 +f 3928 3874 3743 +f 3874 3872 3743 +f 3872 3829 3743 +f 3829 3744 3743 +f 3922 3924 3840 +f 3978 3924 3922 +f 3990 3926 3924 +f 3978 3990 3924 +f 3986 3982 3926 +f 3990 3986 3926 +f 3932 3928 3926 +f 3982 3932 3926 +f 3989 3990 3978 +f 3990 4062 3986 +f 4072 3990 3989 +f 4075 4072 3989 +f 4072 4062 3990 +f 5602 4630 4624 +f 5600 5602 4624 +f 5604 4632 4630 +f 5602 5604 4630 +f 5606 4634 4632 +f 5604 5606 4632 +f 5606 4638 4634 +f 5606 5608 4638 +f 5608 5612 4638 +f 5612 4644 4638 +f 5616 5618 4644 +f 5618 5620 4644 +f 5620 4650 4644 +f 5612 5614 4644 +f 5614 5616 4644 +f 5624 5627 4650 +f 5627 5628 4650 +f 5628 4656 4650 +f 5620 5622 4650 +f 5622 5624 4650 +f 5632 5638 4656 +f 5638 5639 4656 +f 5639 4660 4656 +f 5628 5630 4656 +f 5630 5632 4656 +f 5648 5650 4660 +f 5650 5651 4660 +f 5651 4666 4660 +f 5639 5641 4660 +f 5641 5648 4660 +f 5666 4669 4666 +f 5651 5658 4666 +f 5658 5666 4666 +f 5666 5667 4669 +f 5667 5675 4669 +f 4631 5601 4627 +f 4633 5603 4631 +f 5603 5601 4631 +f 4635 5605 4633 +f 5605 5603 4633 +f 4639 5609 4635 +f 5609 5607 4635 +f 5607 5605 4635 +f 5613 5611 4639 +f 5611 5610 4639 +f 5610 5609 4639 +f 4645 5617 4639 +f 5617 5615 4639 +f 5615 5613 4639 +f 5619 5617 4645 +f 4651 5623 4645 +f 5623 5621 4645 +f 5621 5619 4645 +f 5629 5626 4651 +f 5626 5625 4651 +f 5625 5623 4651 +f 4657 5635 4651 +f 5635 5631 4651 +f 5631 5629 4651 +f 5640 5635 4657 +f 5642 5640 4657 +f 4661 5642 4657 +f 5645 5642 4661 +f 5657 5652 4661 +f 5652 5649 4661 +f 5649 5645 4661 +f 5659 5657 4661 +f 4667 5659 4661 +f 5670 5659 4667 +f 4670 5670 4667 +f 5676 5670 4670 +f 5073 3146 3144 +f 3229 5073 3144 +f 5075 3148 3146 +f 5073 5075 3146 +f 5077 3150 3148 +f 5075 5077 3148 +f 5079 3152 3150 +f 5077 5079 3150 +f 5071 5073 3229 +f 3231 5071 3229 +f 5069 5071 3231 +f 3335 5069 3231 +f 3354 5069 3335 +f 3377 5069 3354 +f 3474 5069 3377 +f 3482 5069 3474 +f 3588 5069 3482 +f 3704 5069 3588 +f 5067 5069 3704 +f 3733 5067 3704 +f 3788 5067 3733 +f 3871 5067 3788 +f 3987 5067 3871 +f 5065 5067 3987 +f 4015 5065 3987 +f 4065 5065 4015 +f 4224 5065 4065 +f 4345 5065 4224 +f 5063 5065 4345 +f 4346 5063 4345 +f 4373 5063 4346 +f 5061 5063 4373 +f 4398 5061 4373 +f 4399 5061 4398 +f 4626 5059 4399 +f 5059 5061 4399 +f 5072 3253 3143 +f 3145 5072 3143 +f 3147 5072 3145 +f 5074 5072 3147 +f 3149 5074 3147 +f 5076 5074 3149 +f 3151 5076 3149 +f 5078 5076 3151 +f 5070 3255 3253 +f 5072 5070 3253 +f 5070 3348 3255 +f 5070 3353 3348 +f 5070 3472 3353 +f 5070 3475 3472 +f 5068 3483 3475 +f 5070 5068 3475 +f 5068 3697 3483 +f 5068 3702 3697 +f 5068 3734 3702 +f 5066 3869 3734 +f 5068 5066 3734 +f 5066 3876 3869 +f 5066 5064 3876 +f 5064 4017 3876 +f 5064 4069 4017 +f 5064 4117 4069 +f 5064 4225 4117 +f 5064 4347 4225 +f 5064 5062 4347 +f 5062 4372 4347 +f 5062 4375 4372 +f 5060 4401 4375 +f 5062 5060 4375 +f 5060 4625 4401 +f 5060 5058 4625 +f 6091 6159 6089 +f 6159 6157 6089 +f 6159 6215 6157 +f 6215 6213 6157 +f 6215 6275 6213 +f 6275 6273 6213 +f 6275 6355 6273 +f 6355 6353 6273 +f 6355 6411 6353 +f 6411 6409 6353 +f 6411 6463 6409 +f 6463 6461 6409 +f 6463 6495 6461 +f 6495 6493 6461 +f 6495 6527 6493 +f 6527 6525 6493 +f 6527 6543 6525 +f 6543 6541 6525 +f 6543 6551 6541 +f 6551 6549 6541 +f 6158 6092 6090 +f 6158 6160 6092 +f 6214 6160 6158 +f 6214 6216 6160 +f 6274 6216 6214 +f 6274 6276 6216 +f 6354 6276 6274 +f 6354 6356 6276 +f 6410 6356 6354 +f 6410 6412 6356 +f 6462 6412 6410 +f 6462 6464 6412 +f 6494 6464 6462 +f 6494 6496 6464 +f 6526 6496 6494 +f 6526 6528 6496 +f 6542 6528 6526 +f 6542 6544 6528 +f 6550 6544 6542 +f 6550 6552 6544 +f 4420 4686 4416 +f 4818 4686 4420 +f 4818 4833 4686 +f 4833 4853 4686 +f 4853 4858 4686 +f 4858 4861 4686 +f 4687 4846 4417 +f 4846 4418 4417 +f 4957 4860 4859 +f 4957 4958 4860 +f 5283 4958 4957 +f 5283 5284 4958 +f 2594 2634 2593 +f 2634 2633 2593 +f 2613 2595 2593 +f 2615 2613 2593 +f 2633 2631 2593 +f 2631 2629 2593 +f 2629 2627 2593 +f 2627 2625 2593 +f 2625 2623 2593 +f 2623 2621 2593 +f 2621 2619 2593 +f 2619 2617 2593 +f 2617 2615 2593 +f 2614 2616 2594 +f 2596 2614 2594 +f 2616 2618 2594 +f 2618 2620 2594 +f 2620 2622 2594 +f 2622 2624 2594 +f 2624 2626 2594 +f 2626 2628 2594 +f 2628 2630 2594 +f 2630 2632 2594 +f 2632 2634 2594 +f 2613 2611 2595 +f 2611 2597 2595 +f 2612 2614 2596 +f 2610 2612 2596 +f 2608 2610 2596 +f 2598 2608 2596 +f 2611 2599 2597 +f 2600 2608 2598 +f 2611 2601 2599 +f 2602 2608 2600 +f 2611 2603 2601 +f 2604 2608 2602 +f 2611 2605 2603 +f 2606 2608 2604 +f 2611 2607 2605 +f 2611 2609 2607 +f 5401 5400 5324 +f 5325 5401 5324 +f 5400 5328 5324 +f 5329 5401 5325 +f 5400 5332 5328 +f 5333 5401 5329 +f 5400 5336 5332 +f 5337 5401 5333 +f 5400 5340 5336 +f 5341 5401 5337 +f 5400 5344 5340 +f 5345 5401 5341 +f 5400 5348 5344 +f 5349 5401 5345 +f 5400 5352 5348 +f 5353 5401 5349 +f 5400 5356 5352 +f 5357 5401 5353 +f 5400 5360 5356 +f 5361 5401 5357 +f 5400 5364 5360 +f 5365 5401 5361 +f 5400 5368 5364 +f 5369 5401 5365 +f 5400 5372 5368 +f 5373 5401 5369 +f 5400 5376 5372 +f 5377 5401 5373 +f 5396 5380 5376 +f 5400 5396 5376 +f 5381 5401 5377 +f 5396 5384 5380 +f 5389 5393 5381 +f 5385 5389 5381 +f 5397 5401 5381 +f 5393 5397 5381 +f 5392 5388 5384 +f 5396 5392 5384 +f 5400 5401 4628 +f 5401 4629 4628 +f 5324 4552 4548 +f 5328 4556 4552 +f 5324 5328 4552 +f 5332 4560 4556 +f 5328 5332 4556 +f 5336 4564 4560 +f 5332 5336 4560 +f 5340 4568 4564 +f 5336 5340 4564 +f 5344 4572 4568 +f 5340 5344 4568 +f 5348 4576 4572 +f 5344 5348 4572 +f 5352 4580 4576 +f 5348 5352 4576 +f 5356 4584 4580 +f 5352 5356 4580 +f 5360 4588 4584 +f 5356 5360 4584 +f 5364 4592 4588 +f 5360 5364 4588 +f 5368 4596 4592 +f 5364 5368 4592 +f 5372 4600 4596 +f 5368 5372 4596 +f 5376 4604 4600 +f 5372 5376 4600 +f 5380 4608 4604 +f 5376 5380 4604 +f 5384 4612 4608 +f 5380 5384 4608 +f 5388 4616 4612 +f 5384 5388 4612 +f 5392 4620 4616 +f 5388 5392 4616 +f 5396 4628 4620 +f 5392 5396 4620 +f 5396 5400 4628 +f 4549 5324 4548 +f 5325 5324 4549 +f 5329 5325 4549 +f 4553 5329 4549 +f 5333 5329 4553 +f 4557 5333 4553 +f 5337 5333 4557 +f 4561 5337 4557 +f 5341 5337 4561 +f 4565 5341 4561 +f 5345 5341 4565 +f 4569 5345 4565 +f 5349 5345 4569 +f 4573 5349 4569 +f 5353 5349 4573 +f 4577 5353 4573 +f 5357 5353 4577 +f 4581 5357 4577 +f 5361 5357 4581 +f 4585 5361 4581 +f 5365 5361 4585 +f 4589 5365 4585 +f 5369 5365 4589 +f 4593 5369 4589 +f 5373 5369 4593 +f 4597 5373 4593 +f 5377 5373 4597 +f 4601 5377 4597 +f 5381 5377 4601 +f 4605 5381 4601 +f 5385 5381 4605 +f 4609 5385 4605 +f 5389 5385 4609 +f 4613 5389 4609 +f 5393 5389 4613 +f 4617 5393 4613 +f 5397 5393 4617 +f 4621 5397 4617 +f 5401 5397 4621 +f 4629 5401 4621 +f 5323 5399 5322 +f 5399 5398 5322 +f 5398 5394 5322 +f 5366 5362 5322 +f 5382 5378 5322 +f 5394 5390 5322 +f 5390 5386 5322 +f 5386 5382 5322 +f 5378 5374 5322 +f 5374 5370 5322 +f 5370 5366 5322 +f 5362 5358 5322 +f 5358 5354 5322 +f 5354 5350 5322 +f 5350 5346 5322 +f 5346 5342 5322 +f 5342 5326 5322 +f 5327 5399 5323 +f 5342 5330 5326 +f 5331 5399 5327 +f 5342 5334 5330 +f 5335 5399 5331 +f 5342 5338 5334 +f 5339 5399 5335 +f 5343 5399 5339 +f 5347 5399 5343 +f 5351 5399 5347 +f 5355 5399 5351 +f 5359 5399 5355 +f 5363 5399 5359 +f 5367 5399 5363 +f 5371 5399 5367 +f 5375 5399 5371 +f 5379 5399 5375 +f 5383 5387 5379 +f 5387 5391 5379 +f 5391 5395 5379 +f 5395 5399 5379 +f 4547 5322 4546 +f 5323 5322 4547 +f 5327 5323 4547 +f 4551 5327 4547 +f 5331 5327 4551 +f 4555 5331 4551 +f 5335 5331 4555 +f 4559 5335 4555 +f 5339 5335 4559 +f 4563 5339 4559 +f 5343 5339 4563 +f 4567 5343 4563 +f 5347 5343 4567 +f 4571 5347 4567 +f 5351 5347 4571 +f 4575 5351 4571 +f 5355 5351 4575 +f 4579 5355 4575 +f 5359 5355 4579 +f 4583 5359 4579 +f 5363 5359 4583 +f 4587 5363 4583 +f 5367 5363 4587 +f 4591 5367 4587 +f 5371 5367 4591 +f 4595 5371 4591 +f 5375 5371 4595 +f 4599 5375 4595 +f 5379 5375 4599 +f 4603 5379 4599 +f 5383 5379 4603 +f 4607 5383 4603 +f 5387 5383 4607 +f 4611 5387 4607 +f 5391 5387 4611 +f 4615 5391 4611 +f 5395 5391 4615 +f 4619 5395 4615 +f 5399 5395 4619 +f 4623 5399 4619 +f 5398 5399 4622 +f 5399 4623 4622 +f 5322 4550 4546 +f 5326 4554 4550 +f 5322 5326 4550 +f 5330 4558 4554 +f 5326 5330 4554 +f 5334 4562 4558 +f 5330 5334 4558 +f 5338 4566 4562 +f 5334 5338 4562 +f 5342 4570 4566 +f 5338 5342 4566 +f 5346 4574 4570 +f 5342 5346 4570 +f 5350 4578 4574 +f 5346 5350 4574 +f 5354 4582 4578 +f 5350 5354 4578 +f 5358 4586 4582 +f 5354 5358 4582 +f 5362 4590 4586 +f 5358 5362 4586 +f 5366 4594 4590 +f 5362 5366 4590 +f 5370 4598 4594 +f 5366 5370 4594 +f 5374 4602 4598 +f 5370 5374 4598 +f 5378 4606 4602 +f 5374 5378 4602 +f 5382 4610 4606 +f 5378 5382 4606 +f 5386 4614 4610 +f 5382 5386 4610 +f 5390 4618 4614 +f 5386 5390 4614 +f 5394 4622 4618 +f 5390 5394 4618 +f 5394 5398 4622 +f 5903 4426 4424 +f 5901 5903 4424 +f 4428 5901 4424 +f 5907 4430 4426 +f 5903 5907 4426 +f 5905 5901 4428 +f 4432 5905 4428 +f 5911 4434 4430 +f 5907 5911 4430 +f 5909 5905 4432 +f 4436 5909 4432 +f 5915 4438 4434 +f 5911 5915 4434 +f 5913 5909 4436 +f 5917 4440 4438 +f 5915 5917 4438 +f 5919 4442 4440 +f 5917 5919 4440 +f 5921 4444 4442 +f 5919 5921 4442 +f 5923 4446 4444 +f 5921 5923 4444 +f 5925 4448 4446 +f 5923 5925 4446 +f 5594 4452 4448 +f 5925 5594 4448 +f 5594 5598 4452 +f 5925 5929 5594 +f 4427 5902 4425 +f 5902 5906 4425 +f 5906 4429 4425 +f 4431 5904 4427 +f 5904 5902 4427 +f 5906 5910 4429 +f 5910 4433 4429 +f 4435 5908 4431 +f 5908 5904 4431 +f 5910 5914 4433 +f 5914 4437 4433 +f 4439 5912 4435 +f 5912 5908 4435 +f 4441 5916 4439 +f 5916 5912 4439 +f 4443 5918 4441 +f 5918 5916 4441 +f 4445 5920 4443 +f 5920 5918 4443 +f 4447 5922 4445 +f 5922 5920 4445 +f 4449 5924 4447 +f 5924 5922 4447 +f 4453 5599 4449 +f 5599 5597 4449 +f 5597 5926 4449 +f 5926 5924 4449 +f 5932 5926 5597 +f 5419 4637 4545 +f 6068 6092 4637 +f 5443 6068 4637 +f 5419 5443 4637 +f 6046 6068 5443 +f 6090 6092 6068 +f 5442 5418 4544 +f 4636 5442 4544 +f 6067 5442 4636 +f 6091 6067 4636 +f 6067 6045 5442 +f 6091 6089 6067 +f 4728 4692 4690 +f 4729 4728 4690 +f 4691 4729 4690 +f 4693 4729 4691 +f 4728 4694 4692 +f 4695 4729 4693 +f 4728 4696 4694 +f 4697 4729 4695 +f 4728 4698 4696 +f 4699 4729 4697 +f 4728 4700 4698 +f 4701 4729 4699 +f 4728 4702 4700 +f 4703 4729 4701 +f 4728 4704 4702 +f 4727 4729 4703 +f 4705 4717 4703 +f 4717 4719 4703 +f 4719 4721 4703 +f 4721 4723 4703 +f 4723 4725 4703 +f 4725 4727 4703 +f 4728 4706 4704 +f 4707 4717 4705 +f 4728 4708 4706 +f 4709 4713 4707 +f 4713 4715 4707 +f 4715 4717 4707 +f 4728 4710 4708 +f 4711 4713 4709 +f 4722 4720 4710 +f 4724 4722 4710 +f 4728 4726 4710 +f 4726 4724 4710 +f 4720 4718 4710 +f 4718 4716 4710 +f 4716 4712 4710 +f 4716 4714 4712 +f 4230 4691 4229 +f 4691 4690 4229 +f 4693 4691 4230 +f 4232 4693 4230 +f 4695 4693 4232 +f 4234 4695 4232 +f 4697 4695 4234 +f 4236 4697 4234 +f 4699 4697 4236 +f 4238 4699 4236 +f 4701 4699 4238 +f 4240 4701 4238 +f 4703 4701 4240 +f 4242 4703 4240 +f 4705 4703 4242 +f 4244 4705 4242 +f 4707 4705 4244 +f 4246 4707 4244 +f 4709 4707 4246 +f 4248 4709 4246 +f 4711 4709 4248 +f 4250 4711 4248 +f 4713 4711 4250 +f 4252 4713 4250 +f 4715 4713 4252 +f 4254 4715 4252 +f 4717 4715 4254 +f 4256 4717 4254 +f 4719 4717 4256 +f 4258 4719 4256 +f 4721 4719 4258 +f 4260 4721 4258 +f 4723 4721 4260 +f 4262 4723 4260 +f 4725 4723 4262 +f 4264 4725 4262 +f 4727 4725 4264 +f 4266 4727 4264 +f 4729 4727 4266 +f 4268 4729 4266 +f 4728 4268 4267 +f 4728 4729 4268 +f 4690 4231 4229 +f 4692 4233 4231 +f 4690 4692 4231 +f 4694 4235 4233 +f 4692 4694 4233 +f 4696 4237 4235 +f 4694 4696 4235 +f 4698 4239 4237 +f 4696 4698 4237 +f 4700 4241 4239 +f 4698 4700 4239 +f 4702 4243 4241 +f 4700 4702 4241 +f 4704 4245 4243 +f 4702 4704 4243 +f 4706 4247 4245 +f 4704 4706 4245 +f 4708 4249 4247 +f 4706 4708 4247 +f 4710 4251 4249 +f 4708 4710 4249 +f 4712 4253 4251 +f 4710 4712 4251 +f 4714 4255 4253 +f 4712 4714 4253 +f 4716 4257 4255 +f 4714 4716 4255 +f 4718 4259 4257 +f 4716 4718 4257 +f 4720 4261 4259 +f 4718 4720 4259 +f 4722 4263 4261 +f 4720 4722 4261 +f 4724 4265 4263 +f 4722 4724 4263 +f 4726 4267 4265 +f 4724 4726 4265 +f 4726 4728 4267 +f 4760 4732 4730 +f 4731 4769 4730 +f 4769 4768 4730 +f 4768 4766 4730 +f 4766 4764 4730 +f 4764 4762 4730 +f 4762 4760 4730 +f 4733 4769 4731 +f 4760 4734 4732 +f 4735 4769 4733 +f 4750 4748 4734 +f 4760 4758 4734 +f 4758 4756 4734 +f 4748 4746 4734 +f 4746 4744 4734 +f 4744 4742 4734 +f 4742 4740 4734 +f 4740 4738 4734 +f 4738 4736 4734 +f 4756 4754 4734 +f 4754 4752 4734 +f 4752 4750 4734 +f 4737 4769 4735 +f 4739 4769 4737 +f 4741 4769 4739 +f 4743 4769 4741 +f 4767 4769 4743 +f 4745 4757 4743 +f 4757 4759 4743 +f 4759 4761 4743 +f 4761 4763 4743 +f 4763 4765 4743 +f 4765 4767 4743 +f 4747 4757 4745 +f 4749 4753 4747 +f 4753 4755 4747 +f 4755 4757 4747 +f 4751 4753 4749 +f 4270 4731 4269 +f 4731 4730 4269 +f 4271 4731 4270 +f 4733 4731 4271 +f 4274 4733 4271 +f 4275 4733 4274 +f 4735 4733 4275 +f 4278 4735 4275 +f 4279 4735 4278 +f 4737 4735 4279 +f 4282 4737 4279 +f 4283 4737 4282 +f 4739 4737 4283 +f 4286 4739 4283 +f 4287 4739 4286 +f 4741 4739 4287 +f 4290 4741 4287 +f 4291 4741 4290 +f 4743 4741 4291 +f 4294 4743 4291 +f 4295 4743 4294 +f 4745 4743 4295 +f 4298 4745 4295 +f 4299 4745 4298 +f 4747 4745 4299 +f 4302 4747 4299 +f 4303 4747 4302 +f 4749 4747 4303 +f 4306 4749 4303 +f 4307 4749 4306 +f 4751 4749 4307 +f 4310 4751 4307 +f 4311 4751 4310 +f 4753 4751 4311 +f 4314 4753 4311 +f 4315 4753 4314 +f 4755 4753 4315 +f 4318 4755 4315 +f 4319 4755 4318 +f 4757 4755 4319 +f 4322 4757 4319 +f 4323 4757 4322 +f 4759 4757 4323 +f 4326 4759 4323 +f 4327 4759 4326 +f 4761 4759 4327 +f 4330 4761 4327 +f 4331 4761 4330 +f 4763 4761 4331 +f 4334 4763 4331 +f 4335 4763 4334 +f 4765 4763 4335 +f 4338 4765 4335 +f 4339 4765 4338 +f 4767 4765 4339 +f 4341 4767 4339 +f 4342 4767 4341 +f 4344 4769 4342 +f 4769 4767 4342 +f 3184 3141 3140 +f 3410 3258 3140 +f 3258 3184 3140 +f 3696 3586 3140 +f 3969 3830 3140 +f 3586 3541 3140 +f 3541 3477 3140 +f 3477 3410 3140 +f 4199 4114 3140 +f 4114 4061 3140 +f 4061 3969 3140 +f 3830 3828 3140 +f 3828 3825 3140 +f 3825 3696 3140 +f 3185 4344 3140 +f 4344 4226 3140 +f 4226 4199 3140 +f 3256 4344 3185 +f 3257 4344 3256 +f 3291 4344 3257 +f 3411 4344 3291 +f 3476 4344 3411 +f 3543 4344 3476 +f 3589 4344 3543 +f 3695 4344 3589 +f 3787 4344 3695 +f 3826 4344 3787 +f 3844 4344 3826 +f 3970 4344 3844 +f 4076 4344 3970 +f 4115 4344 4076 +f 4198 4344 4115 +f 4227 4344 4198 +f 4343 4344 4227 +f 4768 4769 4343 +f 4769 4344 4343 +f 4730 4272 4269 +f 4730 4732 4272 +f 4732 4273 4272 +f 4732 4276 4273 +f 4734 4277 4276 +f 4732 4734 4276 +f 4734 4280 4277 +f 4736 4281 4280 +f 4734 4736 4280 +f 4736 4284 4281 +f 4738 4285 4284 +f 4736 4738 4284 +f 4738 4288 4285 +f 4740 4289 4288 +f 4738 4740 4288 +f 4740 4292 4289 +f 4742 4293 4292 +f 4740 4742 4292 +f 4742 4296 4293 +f 4744 4297 4296 +f 4742 4744 4296 +f 4744 4300 4297 +f 4746 4301 4300 +f 4744 4746 4300 +f 4746 4304 4301 +f 4748 4305 4304 +f 4746 4748 4304 +f 4748 4308 4305 +f 4750 4309 4308 +f 4748 4750 4308 +f 4750 4312 4309 +f 4752 4313 4312 +f 4750 4752 4312 +f 4752 4316 4313 +f 4754 4317 4316 +f 4752 4754 4316 +f 4754 4320 4317 +f 4756 4321 4320 +f 4754 4756 4320 +f 4756 4324 4321 +f 4758 4325 4324 +f 4756 4758 4324 +f 4758 4328 4325 +f 4760 4329 4328 +f 4758 4760 4328 +f 4760 4332 4329 +f 4762 4333 4332 +f 4760 4762 4332 +f 4762 4336 4333 +f 4764 4337 4336 +f 4762 4764 4336 +f 4766 4340 4337 +f 4764 4766 4337 +f 4768 4343 4340 +f 4766 4768 4340 +f 6551 6550 6549 +f 6551 6552 6550 +f 6297 6048 6047 +f 6069 6297 6047 +f 6298 6070 6048 +f 6297 6298 6048 +f 6265 6289 6069 +f 6293 6297 6069 +f 6289 6293 6069 +f 6241 6265 6069 +f 6113 6241 6069 +f 6298 6114 6070 +f 6149 6241 6113 +f 6298 6150 6114 +f 6173 6241 6149 +f 6298 6174 6150 +f 6197 6241 6173 +f 6298 6198 6174 +f 6225 6241 6197 +f 6298 6294 6198 +f 6294 6290 6198 +f 6290 6266 6198 +f 6266 6242 6198 +f 6242 6226 6198 +f 5053 5318 5052 +f 5319 5318 5053 +f 5318 5284 5283 +f 5286 5318 5283 +f 5319 5285 5284 +f 5318 5319 5284 +f 5319 5287 5285 +f 5288 5318 5286 +f 5319 5289 5287 +f 5290 5318 5288 +f 5319 5291 5289 +f 5292 5318 5290 +f 5319 5293 5291 +f 5294 5318 5292 +f 5319 5295 5293 +f 5296 5318 5294 +f 5319 5297 5295 +f 5299 5318 5296 +f 5319 5298 5297 +f 5319 5300 5298 +f 5301 5318 5299 +f 5319 5302 5300 +f 5303 5318 5301 +f 5319 5304 5302 +f 5305 5318 5303 +f 5309 5307 5304 +f 5319 5317 5304 +f 5317 5315 5304 +f 5315 5313 5304 +f 5313 5311 5304 +f 5311 5309 5304 +f 5316 5318 5305 +f 5306 5308 5305 +f 5308 5310 5305 +f 5310 5312 5305 +f 5312 5314 5305 +f 5314 5316 5305 +f 5090 5091 5054 +f 5091 5055 5054 +f 5096 5097 5090 +f 5097 5091 5090 +f 5112 5113 5096 +f 5113 5097 5096 +f 5124 5125 5112 +f 5125 5113 5112 +f 5138 5139 5124 +f 5139 5125 5124 +f 5154 5155 5138 +f 5155 5139 5138 +f 5174 5175 5154 +f 5175 5155 5154 +f 5190 5191 5174 +f 5191 5175 5174 +f 5212 5213 5190 +f 5213 5191 5190 +f 5217 5218 5212 +f 5218 5213 5212 +f 5446 5447 5217 +f 5447 5218 5217 +f 5928 4451 4437 +f 5914 5928 4437 +f 5934 5215 4451 +f 5215 4469 4451 +f 5928 5934 4451 +f 5215 5247 4469 +f 5247 5264 4469 +f 5264 4503 4469 +f 5407 4535 4503 +f 5321 5407 4503 +f 5264 5275 4503 +f 5275 5321 4503 +f 5407 5409 4535 +f 5754 5750 4455 +f 4459 5754 4455 +f 5758 5754 4459 +f 4463 5758 4459 +f 5762 5758 4463 +f 4467 5762 4463 +f 5766 5762 4467 +f 4473 5766 4467 +f 5770 5766 4473 +f 4477 5770 4473 +f 5774 5770 4477 +f 4481 5774 4477 +f 5778 5774 4481 +f 4485 5778 4481 +f 5782 5778 4485 +f 4489 5782 4485 +f 5786 5782 4489 +f 4493 5786 4489 +f 5790 5786 4493 +f 4497 5790 4493 +f 5794 5790 4497 +f 4501 5794 4497 +f 5798 5794 4501 +f 4507 5798 4501 +f 5802 5798 4507 +f 4511 5802 4507 +f 5806 5802 4511 +f 4515 5806 4511 +f 5810 5806 4515 +f 4519 5810 4515 +f 5814 5810 4519 +f 4523 5814 4519 +f 5818 5814 4523 +f 4527 5818 4523 +f 5822 5818 4527 +f 4531 5822 4527 +f 5824 5822 4531 +f 4533 5824 4531 +f 4458 4462 4425 +f 4429 4458 4425 +f 4462 4427 4425 +f 4462 4431 4427 +f 4433 4458 4429 +f 4466 4435 4431 +f 4462 4466 4431 +f 4437 4455 4433 +f 4455 4458 4433 +f 4466 4439 4435 +f 4451 4463 4437 +f 4463 4459 4437 +f 4459 4455 4437 +f 4466 4441 4439 +f 4466 4472 4441 +f 4472 4443 4441 +f 4472 4445 4443 +f 4472 4447 4445 +f 4472 4449 4447 +f 4476 4453 4449 +f 4472 4476 4449 +f 4473 4467 4451 +f 4467 4463 4451 +f 4469 4481 4451 +f 4481 4477 4451 +f 4477 4473 4451 +f 4480 4484 4453 +f 4576 4627 4453 +f 4484 4488 4453 +f 4488 4492 4453 +f 4492 4496 4453 +f 4564 4568 4453 +f 4568 4572 4453 +f 4572 4576 4453 +f 4476 4480 4453 +f 4496 4500 4453 +f 4500 4506 4453 +f 4506 4564 4453 +f 4493 4489 4469 +f 4503 4493 4469 +f 4489 4485 4469 +f 4485 4481 4469 +f 4503 4497 4493 +f 4503 4501 4497 +f 4503 4507 4501 +f 4549 4507 4503 +f 4553 4549 4503 +f 4557 4553 4503 +f 4535 4565 4503 +f 4565 4561 4503 +f 4561 4557 4503 +f 4510 4564 4506 +f 4549 4511 4507 +f 4514 4564 4510 +f 4549 4515 4511 +f 4518 4564 4514 +f 4549 4519 4515 +f 4560 4564 4518 +f 4556 4560 4518 +f 4522 4556 4518 +f 4549 4523 4519 +f 4526 4556 4522 +f 4549 4527 4523 +f 4552 4556 4526 +f 4530 4552 4526 +f 4548 4531 4527 +f 4549 4548 4527 +f 4548 4552 4530 +f 4533 4548 4530 +f 4548 4533 4531 +f 4537 4573 4535 +f 4573 4569 4535 +f 4569 4565 4535 +f 4539 4573 4537 +f 4541 4573 4539 +f 4543 4573 4541 +f 4545 4577 4543 +f 4577 4573 4543 +f 4637 4589 4545 +f 4589 4585 4545 +f 4585 4581 4545 +f 4581 4577 4545 +f 4580 4627 4576 +f 4584 4627 4580 +f 4588 4627 4584 +f 4592 4627 4588 +f 4637 4593 4589 +f 4631 4627 4592 +f 4596 4631 4592 +f 4637 4597 4593 +f 4633 4631 4596 +f 4635 4633 4596 +f 4600 4645 4596 +f 4645 4639 4596 +f 4639 4635 4596 +f 4637 4601 4597 +f 4604 4651 4600 +f 4651 4645 4600 +f 4637 4605 4601 +f 4661 4657 4604 +f 4657 4651 4604 +f 4608 4670 4604 +f 4670 4667 4604 +f 4667 4661 4604 +f 4655 4659 4605 +f 4643 4647 4605 +f 4665 4609 4605 +f 4663 4665 4605 +f 4659 4663 4605 +f 4637 4641 4605 +f 4641 4643 4605 +f 4647 4649 4605 +f 4649 4653 4605 +f 4653 4655 4605 +f 4612 4670 4608 +f 4671 4613 4609 +f 4665 4671 4609 +f 4616 4670 4612 +f 4671 4617 4613 +f 4620 4670 4616 +f 4671 4621 4617 +f 4628 4670 4620 +f 4671 4629 4621 +f 4671 4670 4628 +f 4629 4671 4628 +f 4627 5599 4453 +f 5601 5599 4627 +f 5752 5749 4454 +f 4457 5752 4454 +f 5756 5752 4457 +f 4461 5756 4457 +f 5760 5756 4461 +f 4465 5760 4461 +f 5764 5760 4465 +f 4471 5764 4465 +f 5768 5764 4471 +f 4475 5768 4471 +f 5772 5768 4475 +f 4479 5772 4475 +f 5776 5772 4479 +f 4483 5776 4479 +f 5780 5776 4483 +f 4487 5780 4483 +f 5784 5780 4487 +f 4491 5784 4487 +f 5788 5784 4491 +f 4495 5788 4491 +f 5792 5788 4495 +f 4499 5792 4495 +f 5796 5792 4499 +f 4505 5796 4499 +f 5800 5796 4505 +f 4509 5800 4505 +f 5804 5800 4509 +f 4513 5804 4509 +f 5808 5804 4513 +f 4517 5808 4513 +f 5812 5808 4517 +f 4521 5812 4517 +f 5816 5812 4521 +f 4525 5816 4521 +f 5820 5816 4525 +f 4529 5820 4525 +f 5823 5820 4529 +f 4532 5823 4529 +f 4426 4461 4424 +f 4461 4457 4424 +f 4457 4428 4424 +f 4430 4461 4426 +f 4457 4432 4428 +f 4434 4465 4430 +f 4465 4461 4430 +f 4457 4436 4432 +f 4438 4465 4434 +f 4456 4450 4436 +f 4454 4456 4436 +f 4457 4454 4436 +f 4440 4465 4438 +f 4442 4471 4440 +f 4471 4465 4440 +f 4444 4471 4442 +f 4446 4471 4444 +f 4448 4475 4446 +f 4475 4471 4446 +f 4452 4479 4448 +f 4479 4475 4448 +f 4460 4464 4450 +f 4456 4460 4450 +f 4464 4470 4450 +f 4470 4474 4450 +f 4474 4468 4450 +f 4579 4575 4452 +f 4624 4579 4452 +f 4491 4487 4452 +f 4495 4491 4452 +f 4575 4571 4452 +f 4571 4567 4452 +f 4567 4563 4452 +f 4487 4483 4452 +f 4483 4479 4452 +f 4563 4505 4452 +f 4505 4499 4452 +f 4499 4495 4452 +f 4474 4478 4468 +f 4478 4482 4468 +f 4482 4486 4468 +f 4486 4502 4468 +f 4490 4502 4486 +f 4494 4502 4490 +f 4498 4502 4494 +f 4546 4502 4498 +f 4504 4546 4498 +f 4546 4550 4502 +f 4550 4554 4502 +f 4554 4558 4502 +f 4558 4534 4502 +f 4508 4546 4504 +f 4563 4509 4505 +f 4512 4546 4508 +f 4563 4513 4509 +f 4516 4546 4512 +f 4563 4517 4513 +f 4520 4546 4516 +f 4563 4521 4517 +f 4547 4546 4520 +f 4524 4547 4520 +f 4563 4525 4521 +f 4528 4547 4524 +f 4563 4529 4525 +f 4532 4547 4528 +f 4555 4551 4529 +f 4551 4532 4529 +f 4563 4559 4529 +f 4559 4555 4529 +f 4551 4547 4532 +f 4558 4562 4534 +f 4562 4566 4534 +f 4566 4536 4534 +f 4566 4570 4536 +f 4570 4538 4536 +f 4570 4540 4538 +f 4570 4542 4540 +f 4570 4544 4542 +f 4574 4578 4544 +f 4578 4582 4544 +f 4582 4636 4544 +f 4570 4574 4544 +f 4624 4583 4579 +f 4586 4636 4582 +f 4624 4587 4583 +f 4590 4636 4586 +f 4624 4591 4587 +f 4594 4636 4590 +f 4630 4595 4591 +f 4624 4630 4591 +f 4598 4636 4594 +f 4630 4632 4595 +f 4632 4634 4595 +f 4634 4638 4595 +f 4638 4599 4595 +f 4640 4636 4598 +f 4602 4640 4598 +f 4638 4644 4599 +f 4644 4650 4599 +f 4650 4603 4599 +f 4648 4646 4602 +f 4652 4648 4602 +f 4642 4640 4602 +f 4646 4642 4602 +f 4662 4658 4602 +f 4658 4654 4602 +f 4654 4652 4602 +f 4606 4668 4602 +f 4668 4664 4602 +f 4664 4662 4602 +f 4666 4607 4603 +f 4660 4666 4603 +f 4650 4656 4603 +f 4656 4660 4603 +f 4610 4668 4606 +f 4669 4611 4607 +f 4666 4669 4607 +f 4614 4668 4610 +f 4669 4615 4611 +f 4618 4668 4614 +f 4669 4619 4615 +f 4622 4668 4618 +f 4669 4623 4619 +f 4669 4668 4622 +f 4623 4669 4622 +f 5923 5903 5901 +f 5905 5923 5901 +f 5945 5941 5902 +f 5904 5945 5902 +f 5941 5906 5902 +f 5923 5907 5903 +f 5908 5945 5904 +f 5909 5923 5905 +f 5941 5910 5906 +f 5923 5911 5907 +f 5951 5945 5908 +f 5912 5951 5908 +f 5913 5939 5909 +f 5925 5923 5909 +f 5939 5925 5909 +f 5941 5914 5910 +f 5923 5921 5911 +f 5921 5919 5911 +f 5919 5917 5911 +f 5917 5915 5911 +f 5916 5951 5912 +f 5927 5943 5913 +f 5943 5939 5913 +f 5941 5936 5914 +f 5936 5942 5914 +f 5942 5928 5914 +f 5918 5951 5916 +f 5920 5957 5918 +f 5957 5951 5918 +f 5922 5957 5920 +f 5924 5957 5922 +f 5963 5957 5924 +f 5926 5963 5924 +f 5939 5929 5925 +f 5971 5963 5926 +f 5932 5971 5926 +f 5961 5955 5927 +f 5933 5961 5927 +f 5955 5949 5927 +f 5949 5943 5927 +f 5942 5946 5928 +f 5946 5952 5928 +f 5952 5958 5928 +f 5958 5934 5928 +f 5940 5944 5929 +f 5944 5950 5929 +f 5950 5956 5929 +f 5956 5962 5929 +f 5962 5970 5929 +f 5970 5930 5929 +f 5939 5935 5929 +f 5935 5940 5929 +f 5978 5931 5930 +f 5974 5978 5930 +f 5970 5974 5930 +f 5975 5932 5931 +f 5979 5975 5931 +f 5978 5982 5931 +f 5983 5979 5931 +f 5982 5983 5931 +f 5975 5971 5932 +f 5937 5961 5933 +f 5958 5964 5934 +f 5964 5938 5934 +f 5947 5969 5937 +f 5969 5961 5937 +f 5964 5972 5938 +f 5972 5948 5938 +f 5953 5969 5947 +f 5972 5954 5948 +f 5959 5969 5953 +f 5972 5960 5954 +f 5965 5973 5959 +f 5973 5969 5959 +f 5972 5976 5960 +f 5976 5966 5960 +f 5967 5977 5965 +f 5977 5973 5965 +f 5976 5968 5966 +f 5989 5985 5967 +f 6024 5989 5967 +f 5985 5981 5967 +f 5981 5977 5967 +f 5976 5980 5968 +f 5980 5984 5968 +f 5984 5988 5968 +f 5988 6025 5968 +f 5987 5983 5982 +f 5986 5987 5982 +f 5991 5987 5986 +f 5990 5991 5986 +f 5992 6025 5988 +f 6024 5993 5989 +f 5994 5991 5990 +f 6024 5995 5991 +f 5994 5998 5991 +f 5998 6002 5991 +f 6002 6006 5991 +f 6006 6010 5991 +f 6010 6014 5991 +f 6014 6024 5991 +f 5996 6025 5992 +f 6024 5997 5993 +f 6024 5999 5995 +f 6000 6025 5996 +f 6024 6001 5997 +f 6024 6003 5999 +f 6004 6025 6000 +f 6024 6005 6001 +f 6024 6007 6003 +f 6008 6025 6004 +f 6024 6009 6005 +f 6024 6011 6007 +f 6012 6025 6008 +f 6024 6013 6009 +f 6024 6015 6011 +f 6016 6025 6012 +f 6024 6017 6013 +f 6018 6024 6014 +f 6024 6019 6015 +f 6020 6025 6016 +f 6024 6021 6017 +f 6021 6024 6018 +f 6025 6022 6019 +f 6024 6025 6019 +f 6022 6025 6020 +f 6027 6047 6023 +f 6047 6024 6023 +f 6046 6025 6024 +f 6047 6048 6024 +f 6048 6046 6024 +f 6046 6026 6025 +f 6044 6042 6026 +f 6042 6040 6026 +f 6040 6038 6026 +f 6038 6028 6026 +f 6046 6044 6026 +f 6029 6049 6027 +f 6049 6047 6027 +f 6038 6030 6028 +f 6031 6049 6029 +f 6038 6032 6030 +f 6033 6051 6031 +f 6051 6049 6031 +f 6038 6034 6032 +f 6035 6051 6033 +f 6038 6036 6034 +f 6037 6051 6035 +f 6053 6051 6037 +f 6039 6053 6037 +f 6041 6053 6039 +f 6043 6055 6041 +f 6055 6053 6041 +f 6045 6057 6043 +f 6057 6055 6043 +f 6067 6065 6045 +f 6065 6063 6045 +f 6063 6061 6045 +f 6061 6059 6045 +f 6059 6057 6045 +f 6066 6068 6046 +f 6058 6060 6046 +f 6060 6062 6046 +f 6062 6064 6046 +f 6064 6066 6046 +f 6052 6054 6046 +f 6054 6056 6046 +f 6056 6058 6046 +f 6048 6050 6046 +f 6050 6052 6046 +f 5600 4624 4452 +f 5598 5600 4452 +f 4669 6111 4668 +f 5675 6111 4669 +f 4671 5676 4670 +f 6112 5676 4671 +f 5676 6300 5675 +f 6300 6299 5675 +f 6299 6295 5675 +f 6175 6151 5675 +f 6151 6115 5675 +f 6115 6111 5675 +f 6295 6291 5675 +f 6291 6267 5675 +f 6267 6243 5675 +f 6243 6227 5675 +f 6227 6199 5675 +f 6199 6175 5675 +f 6268 6292 5676 +f 6292 6296 5676 +f 6296 6300 5676 +f 6112 6116 5676 +f 6116 6152 5676 +f 6152 6176 5676 +f 6176 6200 5676 +f 6200 6228 5676 +f 6228 6244 5676 +f 6244 6268 5676 +f 5593 5595 5592 +f 5596 5595 5593 +f 5595 5598 5594 +f 5607 5609 5595 +f 5605 5607 5595 +f 5609 5602 5595 +f 5602 5600 5595 +f 5600 5598 5595 +f 5596 5601 5595 +f 5601 5603 5595 +f 5603 5605 5595 +f 5597 5599 5596 +f 5599 5601 5596 +f 5609 5604 5602 +f 5609 5606 5604 +f 5609 5608 5606 +f 5932 5597 5596 +f 5746 5932 5596 +f 5834 5932 5746 +f 5843 5932 5834 +f 5847 5932 5843 +f 5852 5932 5847 +f 5856 5932 5852 +f 5862 5932 5856 +f 5866 5932 5862 +f 5874 5932 5866 +f 5875 5932 5874 +f 5884 5932 5875 +f 5888 5932 5884 +f 5890 5932 5888 +f 5897 5932 5890 +f 5898 5932 5897 +f 5900 5932 5898 +f 5931 5932 5900 +f 4673 4403 4402 +f 4672 4673 4402 +f 4884 4818 4420 +f 4882 4884 4420 +f 4625 4882 4420 +f 5058 5056 4625 +f 4888 4882 4625 +f 5056 4888 4625 +f 4884 5257 4818 +f 5128 4896 4888 +f 5098 5128 4888 +f 5056 5098 4888 +f 5128 5164 4896 +f 5164 5210 4896 +f 5210 4911 4896 +f 5210 5251 4911 +f 5251 4942 4911 +f 5251 4972 4942 +f 5251 5010 4972 +f 5251 5106 5010 +f 5251 5269 5106 +f 5269 5148 5106 +f 5269 5186 5148 +f 5269 5237 5186 +f 5402 5478 5237 +f 5279 5402 5237 +f 5269 5279 5237 +f 5444 5478 5402 +f 5480 5482 5444 +f 5482 5478 5444 +f 5504 5508 5480 +f 5508 5482 5480 +f 5514 5534 5504 +f 5534 5508 5504 +f 5532 5562 5514 +f 5562 5534 5514 +f 5544 5633 5532 +f 5633 5562 5532 +f 5560 5677 5544 +f 5677 5633 5544 +f 5566 5693 5560 +f 5693 5677 5560 +f 5576 5711 5566 +f 5711 5693 5566 +f 5590 5733 5576 +f 5733 5711 5576 +f 5592 5743 5590 +f 5743 5733 5590 +f 5595 5745 5592 +f 5745 5743 5592 +f 4852 5258 4423 +f 5258 4885 4423 +f 4885 4883 4423 +f 4883 4626 4423 +f 5057 5059 4626 +f 4883 4889 4626 +f 4889 5057 4626 +f 5129 5099 4889 +f 4897 5129 4889 +f 5099 5057 4889 +f 5165 5129 4897 +f 5211 5165 4897 +f 4912 5211 4897 +f 5252 5211 4912 +f 4943 5252 4912 +f 4973 5252 4943 +f 5011 5252 4973 +f 5107 5270 5011 +f 5270 5252 5011 +f 5149 5270 5107 +f 5187 5270 5149 +f 5238 5280 5187 +f 5280 5270 5187 +f 5479 5445 5238 +f 5445 5403 5238 +f 5403 5280 5238 +f 5479 5481 5445 +f 5483 5481 5479 +f 5483 5505 5481 +f 5509 5505 5483 +f 5509 5515 5505 +f 5535 5515 5509 +f 5535 5533 5515 +f 5563 5545 5533 +f 5535 5563 5533 +f 5634 5561 5545 +f 5563 5634 5545 +f 5678 5567 5561 +f 5634 5678 5561 +f 5694 5577 5567 +f 5678 5694 5567 +f 5712 5591 5577 +f 5694 5712 5577 +f 5734 5593 5591 +f 5712 5734 5591 +f 5744 5596 5593 +f 5734 5744 5593 +f 5744 5746 5596 +f 3152 5079 3151 +f 5079 5078 3151 +f 5078 5057 5056 +f 5058 5078 5056 +f 5078 5079 5057 +f 5079 5059 5057 +f 5060 5078 5058 +f 5079 5061 5059 +f 5076 5078 5060 +f 5062 5076 5060 +f 5077 5063 5061 +f 5079 5077 5061 +f 5064 5076 5062 +f 5077 5065 5063 +f 5066 5076 5064 +f 5077 5067 5065 +f 5074 5076 5066 +f 5068 5074 5066 +f 5077 5069 5067 +f 5072 5074 5068 +f 5070 5072 5068 +f 5073 5071 5069 +f 5075 5073 5069 +f 5077 5075 5069 +f 5057 5098 5056 +f 5099 5098 5057 +f 5099 5128 5098 +f 5129 5128 5099 +f 5129 5164 5128 +f 5165 5164 5129 +f 5165 5210 5164 +f 5211 5210 5165 +f 5211 5251 5210 +f 5252 5251 5211 +f 5252 5269 5251 +f 5270 5269 5252 +f 5270 5279 5269 +f 5280 5279 5270 +f 5280 5402 5279 +f 5403 5402 5280 +f 5403 5444 5402 +f 5445 5444 5403 +f 5445 5480 5444 +f 5481 5480 5445 +f 5481 5504 5480 +f 5505 5504 5481 +f 5505 5514 5504 +f 5515 5514 5505 +f 5515 5532 5514 +f 5533 5532 5515 +f 5533 5544 5532 +f 5545 5544 5533 +f 5545 5560 5544 +f 5561 5560 5545 +f 5561 5566 5560 +f 5567 5566 5561 +f 5567 5576 5566 +f 5577 5576 5567 +f 5577 5590 5576 +f 5591 5590 5577 +f 5591 5592 5590 +f 5593 5592 5591 +f 5745 5595 5594 +f 5929 5745 5594 +f 5929 5831 5745 +f 5929 5844 5831 +f 5929 5853 5844 +f 5929 5861 5853 +f 5929 5863 5861 +f 5929 5873 5863 +f 5929 5880 5873 +f 5929 5881 5880 +f 5929 5887 5881 +f 5929 5889 5887 +f 5929 5895 5889 +f 5929 5896 5895 +f 5929 5899 5896 +f 5929 5930 5899 +f 5502 5503 5446 +f 5503 5447 5446 +f 5506 5507 5502 +f 5507 5503 5502 +f 5530 5531 5506 +f 5531 5507 5506 +f 5538 5539 5530 +f 5539 5531 5530 +f 5558 5559 5538 +f 5559 5539 5538 +f 5574 5575 5558 +f 5575 5559 5558 +f 5588 5589 5574 +f 5589 5575 5574 +f 5662 5663 5588 +f 5663 5589 5588 +f 5673 5674 5662 +f 5674 5663 5662 +f 5699 5700 5673 +f 5700 5674 5673 +f 5701 5702 5699 +f 5702 5700 5699 +f 5727 5728 5701 +f 5728 5702 5701 +f 5729 5730 5727 +f 5730 5728 5727 +f 5837 5838 5729 +f 5838 5730 5729 +f 5845 5846 5837 +f 5846 5838 5837 +f 5869 5870 5845 +f 5870 5846 5845 +f 5876 5877 5869 +f 5877 5870 5869 +f 5893 5894 5876 +f 5894 5877 5876 +f 5930 5931 5893 +f 5931 5894 5893 +f 5055 5053 5052 +f 5054 5055 5052 +f 3066 3070 3065 +f 3070 3069 3065 +f 3069 3067 3065 +f 3068 3072 3066 +f 3072 3070 3066 +f 3073 3075 3067 +f 3075 3077 3067 +f 3077 3079 3067 +f 3079 3081 3067 +f 3081 3083 3067 +f 3083 3085 3067 +f 3085 3087 3067 +f 3087 3089 3067 +f 3089 3124 3067 +f 3124 3139 3067 +f 3069 3071 3067 +f 3071 3073 3067 +f 3127 3125 3068 +f 3142 3127 3068 +f 3084 3082 3068 +f 3086 3084 3068 +f 3082 3080 3068 +f 3080 3078 3068 +f 3078 3076 3068 +f 3125 3090 3068 +f 3090 3088 3068 +f 3088 3086 3068 +f 3076 3074 3068 +f 3074 3072 3068 +f 3122 3124 3089 +f 3091 3122 3089 +f 3125 3123 3090 +f 3123 3121 3090 +f 3121 3092 3090 +f 3120 3122 3091 +f 3118 3120 3091 +f 3093 3118 3091 +f 3117 3094 3092 +f 3121 3119 3092 +f 3119 3117 3092 +f 3116 3118 3093 +f 3095 3116 3093 +f 3117 3115 3094 +f 3115 3096 3094 +f 3097 3116 3095 +f 3115 3098 3096 +f 3099 3116 3097 +f 3115 3100 3098 +f 3101 3116 3099 +f 3115 3102 3100 +f 3114 3116 3101 +f 3103 3114 3101 +f 3115 3104 3102 +f 3105 3114 3103 +f 3113 3106 3104 +f 3115 3113 3104 +f 3112 3114 3105 +f 3107 3112 3105 +f 3113 3108 3106 +f 3108 3110 3107 +f 3110 3109 3107 +f 3109 3112 3107 +f 3113 3111 3108 +f 3111 3110 3108 +f 3126 3139 3124 +f 3128 3139 3126 +f 3142 3129 3127 +f 3130 3139 3128 +f 3142 3131 3129 +f 3132 3139 3130 +f 3142 3133 3131 +f 3134 3139 3132 +f 3142 3135 3133 +f 3136 3139 3134 +f 3142 3137 3135 +f 3138 3139 3136 +f 3142 3141 3137 +f 3140 3139 3138 +f 5420 5405 5404 +f 5424 5420 5404 +f 5408 5424 5404 +f 5420 5421 5405 +f 5410 5424 5408 +f 5412 5424 5410 +f 5414 5424 5412 +f 5416 5426 5414 +f 5426 5424 5414 +f 5418 5428 5416 +f 5428 5426 5416 +f 5440 5438 5418 +f 5442 5440 5418 +f 5438 5436 5418 +f 5436 5434 5418 +f 5434 5432 5418 +f 5432 5430 5418 +f 5430 5428 5418 +f 4450 5913 4436 +f 5246 5214 4450 +f 4468 5246 4450 +f 5214 5927 4450 +f 5927 5913 4450 +f 4502 5274 4468 +f 5274 5263 4468 +f 5263 5246 4468 +f 4534 5404 4502 +f 5404 5320 4502 +f 5320 5274 4502 +f 5408 5404 4534 +f 5933 5927 5214 +f 5749 4456 4454 +f 5751 4460 4456 +f 5749 5751 4456 +f 5755 4464 4460 +f 5751 5755 4460 +f 5759 4470 4464 +f 5755 5759 4464 +f 5763 4474 4470 +f 5759 5763 4470 +f 5767 4478 4474 +f 5763 5767 4474 +f 5771 4482 4478 +f 5767 5771 4478 +f 5775 4486 4482 +f 5771 5775 4482 +f 5779 4490 4486 +f 5775 5779 4486 +f 5783 4494 4490 +f 5779 5783 4490 +f 5787 4498 4494 +f 5783 5787 4494 +f 5791 4504 4498 +f 5787 5791 4498 +f 5795 4508 4504 +f 5791 5795 4504 +f 5799 4512 4508 +f 5795 5799 4508 +f 5803 4516 4512 +f 5799 5803 4512 +f 5807 4520 4516 +f 5803 5807 4516 +f 5811 4524 4520 +f 5807 5811 4520 +f 5815 4528 4524 +f 5811 5815 4524 +f 5819 4532 4528 +f 5815 5819 4528 +f 5819 5823 4532 +f 5750 4458 4455 +f 5753 4462 4458 +f 5750 5753 4458 +f 5757 4466 4462 +f 5753 5757 4462 +f 5761 4472 4466 +f 5757 5761 4466 +f 5765 4476 4472 +f 5761 5765 4472 +f 5769 4480 4476 +f 5765 5769 4476 +f 5773 4484 4480 +f 5769 5773 4480 +f 5777 4488 4484 +f 5773 5777 4484 +f 5781 4492 4488 +f 5777 5781 4488 +f 5785 4496 4492 +f 5781 5785 4492 +f 5789 4500 4496 +f 5785 5789 4496 +f 5793 4506 4500 +f 5789 5793 4500 +f 5797 4510 4506 +f 5793 5797 4506 +f 5801 4514 4510 +f 5797 5801 4510 +f 5805 4518 4514 +f 5801 5805 4514 +f 5809 4522 4518 +f 5805 5809 4518 +f 5813 4526 4522 +f 5809 5813 4522 +f 5817 4530 4526 +f 5813 5817 4526 +f 5821 4533 4530 +f 5817 5821 4530 +f 5821 5824 4533 +f 5935 5751 5749 +f 5935 5939 5751 +f 5939 5755 5751 +f 5939 5943 5755 +f 5943 5759 5755 +f 5943 5949 5759 +f 5949 5763 5759 +f 5949 5955 5763 +f 5955 5767 5763 +f 5955 5961 5767 +f 5961 5771 5767 +f 5961 5969 5771 +f 5969 5775 5771 +f 5969 5973 5775 +f 5973 5779 5775 +f 5973 5977 5779 +f 5977 5783 5779 +f 5977 5981 5783 +f 5981 5787 5783 +f 5981 5985 5787 +f 5985 5791 5787 +f 5985 5989 5791 +f 5989 5795 5791 +f 5989 5993 5795 +f 5993 5799 5795 +f 5993 5997 5799 +f 5997 5803 5799 +f 5997 6001 5803 +f 6001 5807 5803 +f 6001 6005 5807 +f 6005 5811 5807 +f 6005 6009 5811 +f 6009 5815 5811 +f 6009 6013 5815 +f 6013 5819 5815 +f 6013 6017 5819 +f 6017 5823 5819 +f 6017 6021 5823 +f 5936 5753 5750 +f 5936 5941 5753 +f 5941 5757 5753 +f 5941 5945 5757 +f 5945 5761 5757 +f 5945 5951 5761 +f 5951 5765 5761 +f 5951 5957 5765 +f 5957 5769 5765 +f 5957 5963 5769 +f 5963 5773 5769 +f 5963 5971 5773 +f 5971 5777 5773 +f 5971 5975 5777 +f 5975 5781 5777 +f 5975 5979 5781 +f 5979 5785 5781 +f 5979 5983 5785 +f 5983 5789 5785 +f 5983 5987 5789 +f 5987 5793 5789 +f 5987 5991 5793 +f 5991 5797 5793 +f 5991 5995 5797 +f 5995 5801 5797 +f 5995 5999 5801 +f 5999 5805 5801 +f 5999 6003 5805 +f 6003 5809 5805 +f 6003 6007 5809 +f 6007 5813 5809 +f 6007 6011 5813 +f 6011 5817 5813 +f 6011 6015 5817 +f 6015 5821 5817 +f 6015 6019 5821 +f 6019 5824 5821 +f 6019 6022 5824 + + +o Object.4 +v -13.499999 -86.275032 0.538066 +v -13.499999 -86.267517 0.367704 +v -13.499999 -86.267517 0.708427 +v -13.724097 -86.264969 0.538066 +v -13.275901 -86.264969 0.538066 +v -13.723424 -86.257477 0.367704 +v -13.276574 -86.257477 0.367704 +v -13.723424 -86.257484 0.708427 +v -13.276574 -86.257484 0.708427 +v -13.499999 -86.245026 0.198666 +v -13.499999 -86.245033 0.877466 +v -13.499999 -86.240723 0.894557 +v -13.721408 -86.235085 0.877466 +v -13.278590 -86.235085 0.877466 +v -13.946391 -86.234856 0.538066 +v -13.053607 -86.234856 0.538066 +v -13.724608 -86.234795 0.198666 +v -13.275390 -86.234795 0.198666 +v -13.499999 -86.234055 0.910872 +v -13.724216 -86.230507 0.894557 +v -13.275782 -86.230507 0.894557 +v -13.945049 -86.227463 0.367704 +v -13.054949 -86.227463 0.367704 +v -13.945049 -86.227463 0.708427 +v -13.054949 -86.227463 0.708427 +v -13.499999 -86.225159 0.926087 +v -13.723610 -86.223869 0.910872 +v -13.276388 -86.223869 0.910872 +v -13.499999 -86.218842 0.101599 +v -13.722801 -86.215004 0.926087 +v -13.277197 -86.215004 0.926087 +v -13.499999 -86.214211 0.939900 +v -13.722227 -86.208717 0.101599 +v -13.277771 -86.208717 0.101599 +v -13.941034 -86.205338 0.877466 +v -13.058964 -86.205338 0.877466 +v -13.947356 -86.204178 0.198666 +v -13.052642 -86.204178 0.198666 +v -13.721806 -86.204102 0.939900 +v -13.278193 -86.204102 0.939900 +v -13.499999 -86.201424 0.952035 +v -13.946576 -86.199944 0.894557 +v -13.053422 -86.199944 0.894557 +v -13.610435 -86.198914 0.952035 +v -13.389563 -86.198914 0.952035 +v -13.945368 -86.193390 0.910872 +v -13.054630 -86.193390 0.910872 +v -13.720643 -86.191376 0.952035 +v -13.279355 -86.191376 0.952035 +v -14.165092 -86.184937 0.538066 +v -12.834907 -86.184937 0.538066 +v -13.943757 -86.184639 0.926087 +v -13.056241 -86.184639 0.926087 +v -13.830393 -86.178825 0.952035 +v -13.169605 -86.178825 0.952035 +v -13.942614 -86.178429 0.101599 +v -13.057384 -86.178429 0.101599 +v -14.163092 -86.177689 0.367704 +v -12.836906 -86.177689 0.367704 +v -14.163092 -86.177696 0.708427 +v -12.836906 -86.177696 0.708427 +v -13.499999 -86.176224 0.010544 +v -13.941773 -86.173866 0.939900 +v -13.058225 -86.173866 0.939900 +v -13.718351 -86.166275 0.010544 +v -13.281647 -86.166275 0.010544 +v -13.939459 -86.161301 0.952035 +v -13.060539 -86.161301 0.952035 +v -14.157110 -86.156021 0.877466 +v -12.842888 -86.156021 0.877466 +v -14.166397 -86.153435 0.198666 +v -12.833601 -86.153435 0.198666 +v -14.165235 -86.149292 0.894557 +v -12.834764 -86.149292 0.894557 +v -14.163436 -86.142868 0.910872 +v -12.836562 -86.142868 0.910872 +v -14.047613 -86.138824 0.952035 +v -12.952385 -86.138824 0.952035 +v -13.934895 -86.136513 0.010544 +v -13.065104 -86.136513 0.010544 +v -14.161036 -86.134300 0.926087 +v -12.838963 -86.134300 0.926087 +v -14.159333 -86.128220 0.101599 +v -12.840665 -86.128220 0.101599 +v -14.158081 -86.123756 0.939900 +v -12.841917 -86.123756 0.939900 +v -13.499999 -86.118454 -0.071739 +v -14.378436 -86.115616 0.538066 +v -12.621562 -86.115616 0.538066 +v -14.154633 -86.111450 0.952035 +v -12.845366 -86.111450 0.952035 +v -13.713099 -86.108749 -0.071739 +v -13.286900 -86.108749 -0.071739 +v -14.375795 -86.108582 0.367704 +v -12.624203 -86.108582 0.367704 +v -14.375795 -86.108582 0.708427 +v -12.624203 -86.108582 0.708427 +v -14.367895 -86.087532 0.877466 +v -12.632103 -86.087532 0.877466 +v -14.147834 -86.087181 0.010544 +v -12.852164 -86.087181 0.010544 +v -14.379916 -86.082985 0.198666 +v -12.620082 -86.082985 0.198666 +v -13.924432 -86.079704 -0.071739 +v -13.075566 -86.079704 -0.071739 +v -14.260296 -86.079231 0.952035 +v -12.739702 -86.079231 0.952035 +v -14.378382 -86.078957 0.894557 +v -12.621616 -86.078957 0.894557 +v -14.376006 -86.072731 0.910872 +v -12.623992 -86.072731 0.910872 +v -14.372836 -86.064415 0.926087 +v -12.627162 -86.064415 0.926087 +v -14.370588 -86.058517 0.101599 +v -12.629410 -86.058517 0.101599 +v -14.368937 -86.054184 0.939900 +v -12.631062 -86.054184 0.939900 +v -13.499999 -86.047295 -0.142757 +v -14.364383 -86.042244 0.952035 +v -12.635615 -86.042244 0.952035 +v -13.706627 -86.037880 -0.142757 +v -13.293371 -86.037880 -0.142757 +v -14.132249 -86.031555 -0.071739 +v -12.867749 -86.031555 -0.071739 +v -14.584708 -86.027451 0.538066 +v -12.415290 -86.027451 0.538066 +v -14.581448 -86.020683 0.367704 +v -12.418550 -86.020683 0.367704 +v -14.581448 -86.020683 0.708427 +v -12.418550 -86.020683 0.708427 +v -14.355405 -86.018692 0.010544 +v -12.644593 -86.018692 0.010544 +v -13.911544 -86.009720 -0.142756 +v -13.088454 -86.009720 -0.142756 +v -14.466678 -86.000549 0.952036 +v -12.533320 -86.000549 0.952036 +v -14.571692 -86.000427 0.877467 +v -12.428307 -86.000427 0.877467 +v -13.601152 -85.995163 1.108758 +v -13.398846 -85.995163 1.108758 +v -14.586144 -85.993401 0.198666 +v -12.413854 -85.993401 0.198666 +v -14.584250 -85.989540 0.894558 +v -12.415748 -85.989540 0.894558 +v -14.581317 -85.983551 0.910873 +v -12.418681 -85.983551 0.910873 +v -13.802621 -85.976768 1.108758 +v -13.197377 -85.976768 1.108758 +v -14.577405 -85.975555 0.926088 +v -12.422593 -85.975555 0.926088 +v -14.574630 -85.969887 0.101599 +v -12.425368 -85.969887 0.101599 +v -14.572591 -85.965721 0.939901 +v -12.427407 -85.965721 0.939901 +v -13.499999 -85.964897 -0.200356 +v -14.334826 -85.964714 -0.071738 +v -12.665172 -85.964714 -0.071738 +v -14.113050 -85.963036 -0.142756 +v -12.886949 -85.963036 -0.142756 +v -13.699135 -85.955826 -0.200356 +v -13.300863 -85.955826 -0.200356 +v -14.566970 -85.954247 0.952036 +v -12.433028 -85.954247 0.952036 +v -14.001581 -85.940125 1.108758 +v -12.998417 -85.940125 1.108758 +v -14.555888 -85.931610 0.010545 +v -12.444110 -85.931610 0.010545 +v -13.896620 -85.928680 -0.200356 +v -13.103378 -85.928680 -0.200356 +v -14.782248 -85.921150 0.538067 +v -12.217751 -85.921150 0.538067 +v -14.778393 -85.914703 0.367705 +v -12.221605 -85.914703 0.367705 +v -14.778393 -85.914703 0.708428 +v -12.221605 -85.914703 0.708428 +v -14.665051 -85.903419 0.952036 +v -12.334948 -85.903419 0.952036 +v -14.309476 -85.898224 -0.142756 +v -12.690522 -85.898224 -0.142756 +v -14.766860 -85.895401 0.877467 +v -12.233138 -85.895401 0.877467 +v -14.196386 -85.885544 1.108758 +v -12.803612 -85.885544 1.108758 +v -14.783371 -85.885445 0.198667 +v -12.216627 -85.885445 0.198667 +v -14.090818 -85.883690 -0.200356 +v -12.909180 -85.883690 -0.200356 +v -14.781133 -85.881767 0.894558 +v -12.218865 -85.881767 0.894558 +v -14.530486 -85.879730 -0.071738 +v -12.469512 -85.879730 -0.071738 +v -14.777668 -85.876068 0.910873 +v -12.222330 -85.876068 0.910873 +v -13.499999 -85.873756 -0.242794 +v -14.773046 -85.868469 0.926088 +v -12.226952 -85.868469 0.926088 +v -13.690846 -85.865059 -0.242794 +v -13.309152 -85.865059 -0.242794 +v -14.769767 -85.863075 0.101600 +v -12.230231 -85.863075 0.101600 +v -14.767357 -85.859108 0.939901 +v -12.232641 -85.859108 0.939901 +v -14.760715 -85.848190 0.952036 +v -12.239283 -85.848190 0.952036 +v -13.880113 -85.839043 -0.242794 +v -13.119885 -85.839043 -0.242794 +v -14.747622 -85.826660 0.010545 +v -12.252377 -85.826660 0.010545 +v -14.280121 -85.821228 -0.200356 +v -12.719877 -85.821228 -0.200356 +v -14.499194 -85.815819 -0.142756 +v -12.500804 -85.815819 -0.142756 +v -14.385420 -85.813477 1.108758 +v -12.614578 -85.813477 1.108758 +v -14.969462 -85.797569 0.538067 +v -12.030536 -85.797569 0.538067 +v -14.066229 -85.795929 -0.242794 +v -12.933769 -85.795929 -0.242794 +v -14.965045 -85.791489 0.367705 +v -12.034953 -85.791489 0.367705 +v -14.965045 -85.791496 0.708428 +v -12.034953 -85.791496 0.708428 +v -14.853768 -85.788658 0.952036 +v -12.146230 -85.788658 0.952036 +v -13.591410 -85.781334 1.251387 +v -13.408588 -85.781334 1.251387 +v -14.717607 -85.777298 -0.071738 +v -12.282391 -85.777298 -0.071738 +v -13.499999 -85.776634 -0.268782 +v -14.951829 -85.773300 0.877467 +v -12.048169 -85.773300 0.877467 +v -13.682015 -85.768341 -0.268782 +v -13.317983 -85.768341 -0.268782 +v -13.773474 -85.764709 1.251387 +v -13.226524 -85.764709 1.251387 +v -14.969965 -85.759995 0.198667 +v -12.030033 -85.759995 0.198667 +v -14.967402 -85.756538 0.894558 +v -12.032597 -85.756538 0.894558 +v -14.963433 -85.751175 0.910873 +v -12.036565 -85.751175 0.910873 +v -14.958138 -85.744026 0.926088 +v -12.041861 -85.744026 0.926088 +v -13.862523 -85.743530 -0.268782 +v -13.137475 -85.743530 -0.268782 +v -14.462960 -85.741806 -0.200356 +v -12.537038 -85.741806 -0.200356 +v -14.954382 -85.738953 0.101600 +v -12.045616 -85.738953 0.101600 +v -14.247653 -85.736069 -0.242794 +v -12.752345 -85.736069 -0.242794 +v -14.951622 -85.735229 0.939901 +v -12.048376 -85.735229 0.939901 +v -13.953272 -85.731598 1.251387 +v -13.046726 -85.731598 1.251387 +v -14.944016 -85.724960 0.952036 +v -12.055983 -85.724960 0.952036 +v -14.567117 -85.724510 1.108758 +v -12.432881 -85.724510 1.108758 +v -14.680634 -85.716499 -0.142756 +v -12.319365 -85.716499 -0.142756 +v -14.929017 -85.704704 0.010545 +v -12.070981 -85.704704 0.010545 +v -14.040027 -85.702408 -0.268782 +v -12.959971 -85.702408 -0.268782 +v -14.129314 -85.682274 1.251387 +v -12.870684 -85.682274 1.251387 +v -13.499999 -85.676483 -0.277533 +v -13.672908 -85.668602 -0.277533 +v -13.327090 -85.668602 -0.277533 +v -14.422882 -85.659950 -0.242794 +v -12.577116 -85.659950 -0.242794 +v -14.894638 -85.658279 -0.071738 +v -12.105360 -85.658279 -0.071738 +v -15.144846 -85.657707 0.538067 +v -11.855152 -85.657707 0.538067 +v -15.031268 -85.657211 0.952036 +v -11.968730 -85.657211 0.952036 +v -15.139902 -85.652046 0.367705 +v -11.860096 -85.652046 0.367705 +v -15.139902 -85.652054 0.708428 +v -11.860096 -85.652054 0.708428 +v -14.637819 -85.646095 -0.200356 +v -12.362179 -85.646095 -0.200356 +v -14.213056 -85.645317 -0.268782 +v -12.786942 -85.645317 -0.268782 +v -13.844383 -85.645035 -0.277533 +v -13.155615 -85.645035 -0.277533 +v -15.125108 -85.635117 0.877467 +v -11.874890 -85.635117 0.877467 +v -14.739972 -85.619400 1.108758 +v -12.260026 -85.619400 1.108758 +v -15.144377 -85.618103 0.198667 +v -11.855621 -85.618103 0.198667 +v -14.300141 -85.617142 1.251387 +v -12.699857 -85.617142 1.251387 +v -15.141509 -85.614891 0.894559 +v -11.858489 -85.614891 0.894559 +v -15.137070 -85.609917 0.910874 +v -11.862928 -85.609917 0.910874 +v -14.013005 -85.605972 -0.277533 +v -12.986993 -85.605972 -0.277533 +v -15.131147 -85.603279 0.926089 +v -11.868851 -85.603279 0.926089 +v -14.852288 -85.601097 -0.142756 +v -12.147710 -85.601097 -0.142756 +v -15.126946 -85.598564 0.101600 +v -11.873052 -85.598564 0.101600 +v -15.123858 -85.595108 0.939902 +v -11.876140 -85.595108 0.939902 +v -15.115348 -85.585564 0.952037 +v -11.884650 -85.585564 0.952037 +v -14.380176 -85.572731 -0.268782 +v -12.619823 -85.572731 -0.268782 +v -14.590464 -85.568222 -0.242794 +v -12.409534 -85.568222 -0.242794 +v -15.098571 -85.566765 0.010545 +v -11.901427 -85.566765 0.010545 +v -13.581252 -85.558395 1.379279 +v -13.418746 -85.558395 1.379279 +v -14.177377 -85.551735 -0.277533 +v -12.822621 -85.551735 -0.277533 +v -13.743086 -85.543617 1.379279 +v -13.256912 -85.543617 1.379279 +v -14.464338 -85.536751 1.251388 +v -12.535660 -85.536751 1.251388 +v -14.803250 -85.534874 -0.200356 +v -12.196748 -85.534874 -0.200356 +v -15.060114 -85.523659 -0.071738 +v -11.939884 -85.523659 -0.071738 +v -13.902905 -85.514183 1.379279 +v -13.097094 -85.514183 1.379279 +v -15.196080 -85.510170 0.952037 +v -11.803918 -85.510170 0.952037 +v -15.306986 -85.502686 0.538068 +v -11.693012 -85.502686 0.538068 +v -14.902552 -85.499001 1.108759 +v -12.097446 -85.499001 1.108759 +v -15.301555 -85.497490 0.367706 +v -11.698443 -85.497490 0.367706 +v -15.301555 -85.497490 0.708429 +v -11.698443 -85.497490 0.708429 +v -14.540003 -85.485245 -0.268781 +v -12.459995 -85.485245 -0.268781 +v -14.336134 -85.482780 -0.277532 +v -12.663864 -85.482780 -0.277532 +v -15.285302 -85.481956 0.877468 +v -11.714696 -85.481956 0.877468 +v -15.012739 -85.470558 -0.142755 +v -11.987259 -85.470558 -0.142755 +v -14.059384 -85.470337 1.379279 +v -12.940614 -85.470337 1.379279 +v -14.749010 -85.461632 -0.242793 +v -12.250988 -85.461632 -0.242793 +v -15.305164 -85.460938 0.198668 +v -11.694834 -85.460938 0.198668 +v -15.302016 -85.457993 0.894559 +v -11.697982 -85.457993 0.894559 +v -15.297142 -85.453445 0.910874 +v -11.702856 -85.453445 0.910874 +v -15.290640 -85.447372 0.926089 +v -11.709358 -85.447372 0.926089 +v -15.286028 -85.443062 0.101601 +v -11.713970 -85.443062 0.101601 +v -14.620545 -85.441757 1.251388 +v -12.379453 -85.441757 1.251388 +v -15.282639 -85.439896 0.939902 +v -11.717360 -85.439896 0.939902 +v -15.273297 -85.431175 0.952037 +v -11.726701 -85.431175 0.952037 +v -15.254879 -85.413971 0.010546 +v -11.745119 -85.413971 0.010546 +v -14.211229 -85.412445 1.379279 +v -12.788769 -85.412445 1.379279 +v -14.957882 -85.409073 -0.200355 +v -12.042116 -85.409073 -0.200355 +v -14.487964 -85.399666 -0.277532 +v -12.512034 -85.399666 -0.277532 +v -14.691212 -85.383583 -0.268781 +v -12.308786 -85.383583 -0.268781 +v -15.212661 -85.374542 -0.071737 +v -11.787337 -85.374542 -0.071737 +v -15.053509 -85.364319 1.108759 +v -11.946489 -85.364319 1.108759 +v -15.346838 -85.348747 0.952037 +v -11.653160 -85.348747 0.952037 +v -14.897206 -85.341064 -0.242793 +v -12.102792 -85.341064 -0.242793 +v -14.357182 -85.340988 1.379279 +v -12.642817 -85.340988 1.379279 +v -15.454578 -85.333755 0.538068 +v -11.545420 -85.333755 0.538068 +v -14.767466 -85.332954 1.251388 +v -12.232533 -85.332954 1.251388 +v -15.448703 -85.329071 0.367706 +v -11.551295 -85.329071 0.367706 +v -15.448703 -85.329071 0.708429 +v -11.551295 -85.329071 0.708429 +v -13.570725 -85.327354 1.491848 +v -13.429273 -85.327354 1.491848 +v -15.160654 -85.325974 -0.142755 +v -11.839344 -85.325974 -0.142755 +v -15.431123 -85.315048 0.877468 +v -11.568875 -85.315048 0.877468 +v -13.711593 -85.314491 1.491848 +v -13.288405 -85.314491 1.491848 +v -14.631607 -85.303093 -0.277532 +v -12.368391 -85.303093 -0.277532 +v -15.450992 -85.289795 0.198668 +v -11.549006 -85.289795 0.198668 +v -13.850707 -85.288872 1.491848 +v -13.149291 -85.288872 1.491848 +v -15.447590 -85.287155 0.894559 +v -11.552408 -85.287155 0.894559 +v -15.442323 -85.283066 0.910874 +v -11.557675 -85.283066 0.910874 +v -15.435295 -85.277611 0.926089 +v -11.564703 -85.277611 0.926089 +v -15.430311 -85.273743 0.101601 +v -11.569687 -85.273743 0.101601 +v -15.426647 -85.270897 0.939902 +v -11.573351 -85.270897 0.939902 +v -15.100433 -85.269730 -0.200355 +v -11.899565 -85.269730 -0.200355 +v -14.832550 -85.268593 -0.268781 +v -12.167448 -85.268593 -0.268781 +v -15.416551 -85.263062 0.952037 +v -11.583447 -85.263062 0.952037 +v -14.496030 -85.256554 1.379280 +v -12.503968 -85.256554 1.379280 +v -13.986915 -85.250710 1.491848 +v -13.013083 -85.250710 1.491848 +v -15.396645 -85.247604 0.010546 +v -11.603354 -85.247604 0.010546 +v -15.191594 -85.216461 1.108760 +v -11.808404 -85.216461 1.108760 +v -15.351017 -85.212173 -0.071737 +v -11.648981 -85.212173 -0.071737 +v -14.903884 -85.211243 1.251389 +v -12.096114 -85.211243 1.251389 +v -15.033825 -85.207520 -0.242793 +v -11.966173 -85.207520 -0.242793 +v -14.119088 -85.200317 1.491849 +v -12.880910 -85.200317 1.491849 +v -14.765873 -85.193863 -0.277532 +v -12.234125 -85.193863 -0.277532 +v -15.482292 -85.174286 0.952038 +v -11.517706 -85.174286 0.952038 +v -15.294808 -85.168533 -0.142755 +v -11.705190 -85.168533 -0.142755 +v -14.626625 -85.159843 1.379280 +v -12.373373 -85.159843 1.379280 +v -15.586432 -85.152275 0.538069 +v -11.413567 -85.152275 0.538069 +v -15.580161 -85.148132 0.367707 +v -11.419837 -85.148132 0.367707 +v -15.580161 -85.148132 0.708430 +v -11.419837 -85.148132 0.708430 +v -14.962846 -85.141235 -0.268781 +v -12.037152 -85.141235 -0.268781 +v -14.246131 -85.138115 1.491849 +v -12.753867 -85.138115 1.491849 +v -15.561395 -85.135742 0.198668 +v -11.438603 -85.135742 0.198668 +v -15.561395 -85.135750 0.877469 +v -11.438603 -85.135750 0.877469 +v -15.229723 -85.118004 -0.200355 +v -11.770275 -85.118004 -0.200355 +v -15.580654 -85.106110 0.198668 +v -11.419344 -85.106110 0.198668 +v -15.577026 -85.103790 0.894560 +v -11.422972 -85.103790 0.894560 +v -15.571409 -85.100197 0.910875 +v -11.428589 -85.100197 0.910875 +v -13.499999 -85.100082 1.585103 +v -13.560308 -85.098709 1.585103 +v -13.439690 -85.098709 1.585103 +v -15.563914 -85.095398 0.926090 +v -11.436084 -85.095398 0.926090 +v -15.558598 -85.091995 0.101602 +v -11.441401 -85.091995 0.101602 +v -15.554692 -85.089500 0.939903 +v -11.445306 -85.089500 0.939903 +v -13.673035 -85.088737 1.585103 +v -13.326963 -85.088737 1.585103 +v -13.324393 -85.088310 1.585135 +v -13.678731 -85.087540 1.585263 +v -13.321264 -85.087540 1.585263 +v -13.318958 -85.086784 1.585423 +v -13.315807 -85.085480 1.585739 +v -13.684750 -85.085213 1.585808 +v -13.313684 -85.084412 1.586021 +v -15.543924 -85.082611 0.952038 +v -11.456074 -85.082611 0.952038 +v -13.689826 -85.082245 1.586628 +v -13.307914 -85.080551 1.587125 +v -13.306154 -85.079033 1.587583 +v -13.694639 -85.078285 1.587813 +v -15.028670 -85.077629 1.251389 +v -11.971328 -85.077629 1.251389 +v -13.303662 -85.076523 1.588361 +v -13.697796 -85.074806 1.588904 +v -14.889650 -85.072868 -0.277531 +v -12.110348 -85.072868 -0.277531 +v -13.299616 -85.071129 1.590090 +v -13.701029 -85.070038 1.590448 +v -15.522696 -85.069031 0.010547 +v -11.477303 -85.069031 0.010547 +v -13.352046 -85.067169 1.352269 +v -13.647952 -85.067169 1.352268 +v -13.346333 -85.065987 1.351779 +v -13.653666 -85.065987 1.351778 +v -13.296939 -85.065880 1.591832 +v -13.703461 -85.064865 1.592177 +v -14.366992 -85.064621 1.491849 +v -12.633006 -85.064621 1.491849 +v -13.340874 -85.063904 1.351400 +v -13.659124 -85.063904 1.351399 +v -13.704086 -85.063057 1.592792 +v -15.157733 -85.062111 -0.242792 +v -11.842265 -85.062111 -0.242792 +v -13.664188 -85.060982 1.351141 +v -13.335810 -85.060982 1.351142 +v -13.295011 -85.059608 1.593976 +v -13.705029 -85.059402 1.594045 +v -13.331270 -85.057289 1.351011 +v -13.668728 -85.057289 1.351011 +v -13.705454 -85.056808 1.594950 +v -13.796917 -85.056686 1.588587 +v -13.203081 -85.056686 1.588587 +v -15.315662 -85.056664 1.108760 +v -11.684336 -85.056664 1.108760 +v -13.705697 -85.053802 1.596008 +v -13.294301 -85.053802 1.596008 +v -13.327374 -85.052917 1.351011 +v -13.672625 -85.052917 1.351011 +v -14.747885 -85.051651 1.379280 +v -12.252113 -85.051651 1.379280 +v -13.499999 -85.050537 1.113719 +v -13.324219 -85.047989 1.351142 +v -13.675779 -85.047989 1.351141 +v -13.622230 -85.044670 1.113719 +v -13.377769 -85.044670 1.113719 +v -13.372064 -85.043655 1.113719 +v -13.628085 -85.043617 1.113719 +v -13.321889 -85.042625 1.351400 +v -13.678109 -85.042625 1.351399 +v -13.366681 -85.041794 1.113719 +v -13.633683 -85.041634 1.113719 +v -13.638626 -85.038925 1.113719 +v -13.361122 -85.038765 1.113719 +v -15.474035 -85.037903 -0.071736 +v -11.525963 -85.037903 -0.071736 +v -13.320443 -85.036964 1.351779 +v -13.679555 -85.036964 1.351778 +v -13.356539 -85.035149 1.113719 +v -13.643526 -85.035088 1.113719 +v -13.319920 -85.031151 1.352269 +v -13.680079 -85.031151 1.352268 +v -13.352488 -85.030701 1.113719 +v -13.647563 -85.030632 1.113719 +v -13.650639 -85.025871 1.113719 +v -13.349135 -85.025452 1.113719 +v -13.499999 -85.025017 -5.996283 +v -13.499999 -85.025024 -0.277531 +v -13.912234 -85.024376 1.588587 +v -13.087764 -85.024376 1.588587 +v -13.652966 -85.020607 1.113719 +v -13.346916 -85.020271 1.113719 +v -13.345476 -85.014511 1.113719 +v -13.654547 -85.014359 1.113719 +v -13.655006 -85.008583 1.113719 +v -13.344992 -85.008583 1.113719 +v -13.711250 -85.007034 -5.996283 +v -13.288748 -85.007034 -5.996283 +v -13.711250 -85.007050 -0.277531 +v -13.288748 -85.007050 -0.277531 +v -15.081021 -85.002548 -0.268780 +v -11.918977 -85.002548 -0.268780 +v -15.414090 -84.999550 -0.142754 +v -11.585908 -84.999550 -0.142754 +v -15.601320 -84.988228 0.952038 +v -11.398678 -84.988228 0.952038 +v -14.024136 -84.981712 1.588587 +v -12.975863 -84.981712 1.588587 +v -14.480668 -84.980438 1.491849 +v -12.519330 -84.980438 1.491849 +v -15.701488 -84.959702 0.538069 +v -11.298510 -84.959702 0.538069 +v -15.694870 -84.956139 0.367707 +v -11.305128 -84.956139 0.367707 +v -15.694870 -84.956139 0.708430 +v -11.305128 -84.956139 0.708430 +v -15.344680 -84.955147 -0.200354 +v -11.655318 -84.955147 -0.200354 +v -13.916424 -84.953613 -5.996283 +v -13.083574 -84.953613 -5.996283 +v -13.916424 -84.953629 -0.277531 +v -13.083574 -84.953629 -0.277531 +v -15.675070 -84.945488 0.198669 +v -11.324928 -84.945488 0.198669 +v -15.675070 -84.945488 0.877469 +v -11.324928 -84.945488 0.877469 +v -15.001912 -84.941124 -0.277531 +v -11.998086 -84.941124 -0.277531 +v -15.140788 -84.933228 1.251389 +v -11.859210 -84.933228 1.251389 +v -14.858804 -84.932884 1.379280 +v -12.141194 -84.932884 1.379280 +v -14.131694 -84.929054 1.588587 +v -12.868304 -84.929054 1.588587 +v -15.693076 -84.911392 0.198669 +v -11.306922 -84.911392 0.198669 +v -15.689251 -84.909409 0.894560 +v -11.310747 -84.909409 0.894560 +v -15.683331 -84.906342 0.910875 +v -11.316668 -84.906342 0.910875 +v -15.267905 -84.906029 -0.242792 +v -11.732093 -84.906029 -0.242792 +v -15.675431 -84.902245 0.926090 +v -11.324567 -84.902245 0.926090 +v -15.669827 -84.899345 0.101602 +v -11.330172 -84.899345 0.101602 +v -15.665709 -84.897209 0.939903 +v -11.334290 -84.897209 0.939903 +v -15.654360 -84.891327 0.952038 +v -11.345638 -84.891327 0.952038 +v -14.586218 -84.886261 1.491849 +v -12.413780 -84.886261 1.491849 +v -15.424685 -84.886246 1.108760 +v -11.575314 -84.886246 1.108760 +v -15.631985 -84.879738 0.010547 +v -11.368013 -84.879738 0.010547 +v -14.234017 -84.866829 1.588588 +v -12.765981 -84.866829 1.588588 +v -14.109618 -84.866287 -5.996283 +v -12.890380 -84.866287 -5.996283 +v -14.109618 -84.866295 -0.277531 +v -12.890380 -84.866295 -0.277531 +v -15.186095 -84.853691 -0.268780 +v -11.813903 -84.853691 -0.268780 +v -15.580695 -84.853157 -0.071736 +v -11.419303 -84.853157 -0.071736 +v -13.712679 -84.847809 1.662441 +v -13.287319 -84.847809 1.662441 +v -15.517512 -84.820419 -0.142754 +v -11.482486 -84.820419 -0.142754 +v -13.741779 -84.818680 1.669055 +v -13.258219 -84.818680 1.669055 +v -14.958464 -84.804527 1.379281 +v -12.041534 -84.804527 1.379281 +v -15.101728 -84.799721 -0.277531 +v -11.898270 -84.799721 -0.277531 +v -14.330258 -84.795555 1.588588 +v -12.669740 -84.795555 1.588588 +v -13.835682 -84.792374 1.669055 +v -13.164316 -84.792374 1.669055 +v -15.702936 -84.792122 0.952039 +v -11.297062 -84.792122 0.952039 +v -14.682768 -84.782883 1.491850 +v -12.317230 -84.782883 1.491850 +v -15.444350 -84.782509 -0.200354 +v -11.555648 -84.782509 -0.200354 +v -15.239311 -84.779221 1.251390 +v -11.760687 -84.779221 1.251390 +v -13.926803 -84.757629 1.669055 +v -13.073195 -84.757629 1.669055 +v -15.798819 -84.757591 0.538069 +v -11.201180 -84.757591 0.538069 +v -15.791909 -84.754639 0.367707 +v -11.208089 -84.754639 0.367707 +v -15.791909 -84.754639 0.708431 +v -11.208089 -84.754639 0.708431 +v -14.285275 -84.747566 -5.996282 +v -12.714724 -84.747566 -5.996282 +v -14.285275 -84.747574 -0.277531 +v -12.714724 -84.747574 -0.277531 +v -15.771233 -84.745804 0.198669 +v -11.228765 -84.745804 0.198669 +v -15.771233 -84.745804 0.877470 +v -11.228765 -84.745804 0.877470 +v -13.499999 -84.743767 -6.277533 +v -15.363428 -84.740578 -0.242792 +v -11.636570 -84.740578 -0.242792 +v -13.663718 -84.729836 -6.277533 +v -13.336280 -84.729836 -6.277533 +v -14.419620 -84.715828 1.588588 +v -12.580379 -84.715828 1.588588 +v -14.014387 -84.714752 1.669055 +v -12.985611 -84.714752 1.669055 +v -15.787324 -84.707253 0.198669 +v -11.212674 -84.707253 0.198669 +v -15.787324 -84.707253 0.877470 +v -11.212674 -84.707253 0.877470 +v -15.517759 -84.706627 1.108761 +v -11.482239 -84.706627 1.108761 +v -15.783335 -84.705627 0.894561 +v -11.216663 -84.705627 0.894561 +v -15.777160 -84.703110 0.910876 +v -11.222838 -84.703110 0.910876 +v -15.768921 -84.699753 0.926091 +v -11.231077 -84.699753 0.926091 +v -15.763077 -84.697372 0.101603 +v -11.236921 -84.697372 0.101603 +v -15.277198 -84.695900 -0.268780 +v -11.722800 -84.695900 -0.268780 +v -15.758782 -84.695625 0.939904 +v -11.241216 -84.695625 0.939904 +v -15.746945 -84.690796 0.952039 +v -11.253053 -84.690796 0.952039 +v -13.822728 -84.688431 -6.277533 +v -13.177270 -84.688431 -6.277533 +v -15.723608 -84.681282 0.010548 +v -11.276390 -84.681282 0.010548 +v -14.769517 -84.671158 1.491850 +v -12.230481 -84.671158 1.491850 +v -15.046038 -84.667641 1.379281 +v -11.953960 -84.667641 1.379281 +v -14.097710 -84.664078 1.669055 +v -12.902288 -84.664078 1.669055 +v -15.670115 -84.659485 -0.071735 +v -11.329884 -84.659485 -0.071735 +v -15.188272 -84.649818 -0.277530 +v -11.811726 -84.649818 -0.277530 +v -13.718429 -84.638351 1.717138 +v -13.281569 -84.638351 1.717138 +v -15.604216 -84.632629 -0.142753 +v -11.395782 -84.632629 -0.142753 +v -14.501361 -84.628304 1.588588 +v -12.498637 -84.628304 1.588588 +v -13.655006 -84.625740 1.113720 +v -13.344992 -84.625740 1.113720 +v -13.972453 -84.620750 -6.277532 +v -13.027545 -84.620750 -6.277532 +v -15.323420 -84.616898 1.251390 +v -11.676579 -84.616898 1.251390 +v -13.721231 -84.606956 1.724135 +v -13.278768 -84.606956 1.724135 +v -14.176079 -84.606041 1.669055 +v -12.823919 -84.606041 1.669055 +v -15.527910 -84.601524 -0.200353 +v -11.472088 -84.601524 -0.200353 +v -14.438339 -84.600861 -5.996282 +v -12.561659 -84.600861 -5.996282 +v -14.438339 -84.600868 -0.277530 +v -12.561659 -84.600868 -0.277530 +v -13.657074 -84.594193 1.113720 +v -13.342924 -84.594193 1.113720 +v -15.786297 -84.587578 0.952039 +v -11.213701 -84.587578 0.952039 +v -13.728066 -84.576088 1.730495 +v -13.271932 -84.576088 1.730495 +v -15.443510 -84.567131 -0.242791 +v -11.556488 -84.567131 -0.242791 +v -13.663240 -84.563187 1.113720 +v -13.336758 -84.563187 1.113720 +v -13.757606 -84.555748 1.732886 +v -13.242393 -84.555748 1.732886 +v -14.845746 -84.552002 1.491850 +v -12.154252 -84.552002 1.491850 +v -15.877640 -84.547569 0.538070 +v -11.122358 -84.547569 0.538070 +v -13.738818 -84.546265 1.736109 +v -13.261180 -84.546265 1.736109 +v -15.870493 -84.545250 0.367708 +v -11.129505 -84.545250 0.367708 +v -15.870493 -84.545250 0.708431 +v -11.129505 -84.545250 0.708431 +v -14.248845 -84.541122 1.669055 +v -12.751153 -84.541122 1.669055 +v -15.849109 -84.538300 0.198670 +v -11.150889 -84.538300 0.198670 +v -15.849109 -84.538300 0.877470 +v -11.150889 -84.538300 0.877470 +v -14.574805 -84.533714 1.588588 +v -12.425193 -84.533714 1.588588 +v -13.673403 -84.533257 1.113720 +v -13.326595 -84.533257 1.113720 +v -15.353574 -84.530472 -0.268779 +v -11.646424 -84.530472 -0.268779 +v -13.827532 -84.529091 1.732886 +v -13.172466 -84.529091 1.732886 +v -14.108587 -84.528740 -6.277532 +v -12.891411 -84.528740 -6.277532 +v -15.120802 -84.523354 1.379281 +v -11.879196 -84.523354 1.379281 +v -15.594114 -84.519279 1.108761 +v -11.405884 -84.519279 1.108761 +v -13.894745 -84.496178 1.732887 +v -13.105253 -84.496178 1.732887 +v -15.862619 -84.495392 0.198670 +v -11.137379 -84.495392 0.198670 +v -15.862619 -84.495392 0.877470 +v -11.137379 -84.495392 0.877470 +v -15.858500 -84.494141 0.894561 +v -11.141499 -84.494141 0.894561 +v -15.260826 -84.492676 -0.277530 +v -11.739172 -84.492676 -0.277530 +v -15.852120 -84.492195 0.910876 +v -11.147878 -84.492195 0.910876 +v -15.843610 -84.489601 0.926091 +v -11.156388 -84.489601 0.926091 +v -15.837574 -84.487755 0.101603 +v -11.162424 -84.487755 0.101603 +v -15.833138 -84.486404 0.939904 +v -11.166861 -84.486404 0.939904 +v -15.820911 -84.482681 0.952039 +v -11.179087 -84.482681 0.952039 +v -15.796806 -84.475327 0.010548 +v -11.203192 -84.475327 0.010548 +v -14.315407 -84.469849 1.669055 +v -12.684591 -84.469849 1.669055 +v -15.741550 -84.458481 -0.071735 +v -11.258448 -84.458481 -0.071735 +v -13.958688 -84.457298 1.732887 +v -13.041310 -84.457298 1.732887 +v -15.392421 -84.447601 1.251390 +v -11.607577 -84.447601 1.251390 +v -15.673483 -84.437729 -0.142753 +v -11.326515 -84.437729 -0.142753 +v -14.639342 -84.432831 1.588588 +v -12.360656 -84.432831 1.588588 +v -14.564410 -84.430405 -5.996282 +v -12.435588 -84.430405 -5.996282 +v -14.564410 -84.430412 -0.277530 +v -12.435588 -84.430412 -0.277530 +v -14.910823 -84.426407 1.491850 +v -12.089175 -84.426407 1.491850 +v -14.227213 -84.415047 -6.277532 +v -12.772785 -84.415047 -6.277532 +v -15.594666 -84.413696 -0.200353 +v -11.405333 -84.413696 -0.200353 +v -14.018828 -84.412758 1.732887 +v -12.981170 -84.412758 1.732887 +v -13.799301 -84.406265 1.757999 +v -13.200697 -84.406265 1.757999 +v -14.375213 -84.392822 1.669056 +v -12.624785 -84.392822 1.669056 +v -15.507487 -84.387115 -0.242791 +v -11.492511 -84.387115 -0.242791 +v -15.850714 -84.376312 0.952039 +v -11.149284 -84.376312 0.952039 +v -15.182135 -84.372864 1.379282 +v -11.817863 -84.372864 1.379282 +v -14.074671 -84.362938 1.732887 +v -12.925327 -84.362938 1.732887 +v -15.414590 -84.358788 -0.268779 +v -11.585408 -84.358788 -0.268779 +v -15.937319 -84.331329 0.538070 +v -11.062679 -84.331329 0.538070 +v -15.929993 -84.329659 0.367708 +v -11.070005 -84.329659 0.367708 +v -15.929993 -84.329659 0.708431 +v -11.070005 -84.329659 0.708431 +v -15.318790 -84.329582 -0.277530 +v -11.681208 -84.329582 -0.277530 +v -14.694439 -84.326500 1.588589 +v -12.305559 -84.326500 1.588589 +v -15.653115 -84.325768 1.108762 +v -11.346883 -84.325768 1.108762 +v -15.908072 -84.324654 0.198670 +v -11.091927 -84.324654 0.198670 +v -15.908072 -84.324654 0.877470 +v -11.091927 -84.324654 0.877470 +v -14.427765 -84.310677 1.669056 +v -12.572233 -84.310677 1.669056 +v -14.125751 -84.308243 1.732887 +v -12.874248 -84.308243 1.732887 +v -14.964211 -84.295410 1.491851 +v -12.035788 -84.295410 1.491851 +v -14.324918 -84.282944 -6.277532 +v -12.675080 -84.282944 -6.277532 +v -15.918337 -84.277565 0.198670 +v -11.081661 -84.277565 0.198670 +v -15.918337 -84.277565 0.877471 +v -11.081661 -84.277565 0.877471 +v -15.914119 -84.276688 0.894562 +v -11.085879 -84.276688 0.894562 +v -15.907590 -84.275330 0.910877 +v -11.092408 -84.275330 0.910877 +v -15.898880 -84.273521 0.926092 +v -11.101118 -84.273521 0.926092 +v -15.445740 -84.272720 1.251391 +v -11.554258 -84.272720 1.251391 +v -15.892701 -84.272240 0.101604 +v -11.107297 -84.272240 0.101604 +v -15.888160 -84.271294 0.939905 +v -11.111838 -84.271294 0.939905 +v -15.875645 -84.268692 0.952040 +v -11.124353 -84.268692 0.952040 +v -13.859480 -84.265305 1.773747 +v -13.140518 -84.265305 1.773747 +v -15.850971 -84.263565 0.010549 +v -11.149027 -84.263565 0.010549 +v -15.794413 -84.251816 -0.071734 +v -11.205585 -84.251816 -0.071734 +v -14.171646 -84.249130 1.732887 +v -12.828352 -84.249130 1.732887 +v -14.659860 -84.241089 -5.996281 +v -12.340138 -84.241089 -5.996281 +v -14.659860 -84.241096 -0.277529 +v -12.340138 -84.241096 -0.277529 +v -15.724740 -84.237335 -0.142752 +v -11.275258 -84.237335 -0.142752 +v -13.876902 -84.231705 1.776266 +v -13.123096 -84.231705 1.776266 +v -14.472630 -84.224091 1.669056 +v -12.527369 -84.224091 1.669056 +v -15.644064 -84.220573 -0.200352 +v -11.355934 -84.220573 -0.200352 +v -15.229529 -84.217422 1.379282 +v -11.770469 -84.217422 1.379282 +v -14.739638 -84.215599 1.588589 +v -12.260360 -84.215599 1.588589 +v -13.806385 -84.212204 1.113721 +v -13.193613 -84.212204 1.113721 +v -15.554831 -84.202026 -0.242790 +v -11.445168 -84.202026 -0.242790 +v -13.899289 -84.201126 1.777540 +v -13.100709 -84.201126 1.777540 +v -14.211975 -84.186089 1.732887 +v -12.788023 -84.186089 1.732887 +v -15.459742 -84.182266 -0.268778 +v -11.540257 -84.182266 -0.268778 +v -13.823605 -84.178406 1.113721 +v -13.176394 -84.178406 1.113721 +v -13.926096 -84.174324 1.777540 +v -13.073902 -84.174324 1.777540 +v -15.361682 -84.161888 -0.277529 +v -11.638316 -84.161888 -0.277529 +v -15.005465 -84.160110 1.491851 +v -11.994534 -84.160110 1.491851 +v -15.895652 -84.160057 0.952040 +v -11.104346 -84.160057 0.952040 +v -13.956671 -84.151932 1.776266 +v -13.043327 -84.151932 1.776266 +v -13.845889 -84.147728 1.113721 +v -13.154109 -84.147728 1.113721 +v -14.398891 -84.136223 -6.277531 +v -12.601107 -84.136223 -6.277531 +v -13.990270 -84.134514 1.773747 +v -13.009728 -84.134514 1.773747 +v -14.509436 -84.133781 1.669056 +v -12.490562 -84.133781 1.669056 +v -15.694276 -84.127693 1.108762 +v -11.305722 -84.127693 1.108762 +v -13.872696 -84.120918 1.113721 +v -13.127302 -84.120918 1.113721 +v -14.246405 -84.119644 1.732888 +v -12.753593 -84.119644 1.732888 +v -15.977373 -84.110611 0.538071 +v -11.022625 -84.110611 0.538071 +v -15.969927 -84.109604 0.367709 +v -11.030071 -84.109604 0.367709 +v -15.969927 -84.109604 0.708432 +v -11.030071 -84.109604 0.708432 +v -15.947645 -84.106583 0.198671 +v -11.052353 -84.106583 0.198671 +v -15.947645 -84.106583 0.877471 +v -11.052353 -84.106583 0.877471 +v -14.774565 -84.101044 1.588589 +v -12.225433 -84.101044 1.588589 +v -13.903374 -84.098633 1.113721 +v -13.096624 -84.098633 1.113721 +v -15.482936 -84.093727 1.251391 +v -11.517062 -84.093727 1.251391 +v -13.937175 -84.081413 1.113721 +v -13.062823 -84.081413 1.113721 +v -14.131229 -84.074333 1.757999 +v -12.868769 -84.074333 1.757999 +v -15.262592 -84.058311 1.379282 +v -11.737406 -84.058311 1.379282 +v -15.954015 -84.055573 0.198671 +v -11.045983 -84.055573 0.198671 +v -15.954015 -84.055573 0.877471 +v -11.045983 -84.055573 0.877471 +v -15.949736 -84.055084 0.894562 +v -11.050262 -84.055084 0.894562 +v -15.943110 -84.054329 0.910877 +v -11.056889 -84.054329 0.910877 +v -15.934271 -84.053314 0.926092 +v -11.065727 -84.053314 0.926092 +v -15.928001 -84.052597 0.101604 +v -11.071997 -84.052597 0.101604 +v -15.923393 -84.052071 0.939905 +v -11.076605 -84.052071 0.939905 +v -15.910694 -84.050621 0.952040 +v -11.089304 -84.050621 0.952040 +v -14.274650 -84.050339 1.732888 +v -12.725348 -84.050339 1.732888 +v -15.885656 -84.047760 0.010549 +v -11.114342 -84.047760 0.010549 +v -15.828263 -84.041199 -0.071734 +v -11.171735 -84.041199 -0.071734 +v -14.537877 -84.040504 1.669056 +v -12.462121 -84.040504 1.669056 +v -14.721943 -84.038368 -5.996281 +v -12.278055 -84.038368 -5.996281 +v -14.721943 -84.038376 -0.277529 +v -12.278055 -84.038376 -0.277529 +v -15.757563 -84.033112 -0.142752 +v -11.242435 -84.033112 -0.142752 +v -15.675696 -84.023750 -0.200352 +v -11.324302 -84.023750 -0.200352 +v -15.034245 -84.021614 1.491852 +v -11.965754 -84.021614 1.491852 +v -14.271235 -84.013847 1.736111 +v -12.728763 -84.013847 1.736111 +v -15.585145 -84.013405 -0.242790 +v -11.414853 -84.013405 -0.242790 +v -14.301053 -84.003098 1.730497 +v -12.698945 -84.003098 1.730497 +v -15.488655 -84.002373 -0.268778 +v -11.511343 -84.002373 -0.268778 +v -14.331923 -83.996262 1.724137 +v -12.668076 -83.996262 1.724137 +v -14.363321 -83.993462 1.717140 +v -12.636677 -83.993462 1.717140 +v -15.389148 -83.990997 -0.277529 +v -11.610850 -83.990997 -0.277529 +v -14.572775 -83.987709 1.662444 +v -12.427223 -83.987709 1.662444 +v -14.798930 -83.983795 1.588590 +v -12.201068 -83.983795 1.588590 +v -14.778769 -83.980728 1.596011 +v -12.221230 -83.980728 1.596011 +v -12.218222 -83.980484 1.594953 +v -12.215624 -83.980064 1.594048 +v -14.784576 -83.980019 1.593979 +v -14.447005 -83.979111 -6.277531 +v -12.552993 -83.979111 -6.277531 +v -12.211976 -83.979118 1.592795 +v -12.210166 -83.978493 1.592180 +v -14.790851 -83.978088 1.591835 +v -12.206507 -83.976875 1.590953 +v -14.796099 -83.975410 1.590093 +v -12.201215 -83.973595 1.589223 +v -14.801490 -83.971367 1.588364 +v -12.196748 -83.969673 1.587816 +v -14.804000 -83.968880 1.587586 +v -14.805517 -83.967117 1.587128 +v -12.192787 -83.964859 1.586631 +v -14.808797 -83.962372 1.586182 +v -12.189816 -83.959785 1.585811 +v -14.810448 -83.959221 1.585742 +v -14.811751 -83.956070 1.585426 +v -14.756121 -83.955109 1.352272 +v -12.243877 -83.955109 1.352271 +v -14.761931 -83.954590 1.351782 +v -12.238067 -83.954590 1.351781 +v -14.812504 -83.953766 1.585266 +v -12.187493 -83.953766 1.585266 +v -14.767591 -83.953140 1.351403 +v -12.232407 -83.953140 1.351402 +v -14.772956 -83.950813 1.351145 +v -12.227043 -83.950813 1.351144 +v -14.813275 -83.950638 1.585138 +v -14.258224 -83.948433 1.113721 +v -12.741775 -83.948433 1.113721 +v -14.813704 -83.948067 1.585106 +v -12.186295 -83.948067 1.585106 +v -14.777886 -83.947655 1.351014 +v -12.222112 -83.947655 1.351014 +v -14.782254 -83.943756 1.351014 +v -12.217744 -83.943756 1.351014 +v -15.920739 -83.940613 0.952040 +v -11.079259 -83.940613 0.952040 +v -14.785949 -83.939217 1.351145 +v -12.214049 -83.939217 1.351144 +v -14.288158 -83.938271 1.113721 +v -12.711840 -83.938271 1.113721 +v -14.788874 -83.934158 1.351403 +v -12.211124 -83.934158 1.351402 +v -14.319160 -83.932106 1.113721 +v -12.680838 -83.932106 1.113721 +v -14.733553 -83.930038 1.113721 +v -14.350706 -83.930038 1.113721 +v -12.649292 -83.930038 1.113721 +v -12.266445 -83.930038 1.113721 +v -12.260670 -83.929581 1.113721 +v -14.739481 -83.929550 1.113721 +v -14.790954 -83.928696 1.351782 +v -12.209044 -83.928696 1.351781 +v -12.255135 -83.928238 1.113721 +v -14.745242 -83.928116 1.113721 +v -15.717255 -83.926697 1.108763 +v -11.282743 -83.926697 1.108763 +v -14.750424 -83.925896 1.113721 +v -12.249155 -83.925667 1.113721 +v -14.792136 -83.922981 1.352272 +v -12.207862 -83.922981 1.352271 +v -12.244401 -83.922592 1.113722 +v -14.755666 -83.922539 1.113722 +v -12.239945 -83.918556 1.113722 +v -14.760115 -83.918488 1.113722 +v -14.763632 -83.914055 1.113722 +v -12.236104 -83.913658 1.113722 +v -15.503701 -83.912086 1.251392 +v -11.496297 -83.912086 1.251392 +v -14.766453 -83.909035 1.113722 +v -12.233399 -83.908714 1.113722 +v -14.768586 -83.903114 1.113722 +v -12.231412 -83.903114 1.113722 +v -14.769636 -83.897263 1.113722 +v -12.230362 -83.897263 1.113722 +v -15.281050 -83.896858 1.379283 +v -11.718948 -83.896858 1.379283 +v -15.997482 -83.887192 0.538072 +v -11.002516 -83.887192 0.538072 +v -15.989975 -83.886856 0.367710 +v -11.010023 -83.886856 0.367710 +v -15.989975 -83.886856 0.708433 +v -11.010023 -83.886856 0.708433 +v -15.967512 -83.885841 0.198671 +v -11.032486 -83.885841 0.198671 +v -15.967512 -83.885849 0.877472 +v -11.032486 -83.885849 0.877472 +v -15.050311 -83.881073 1.491852 +v -11.949687 -83.881073 1.491852 +v -14.821962 -83.865456 1.585106 +v -12.178036 -83.865456 1.585106 +v -15.969359 -83.831253 0.198671 +v -11.030639 -83.831253 0.198671 +v -15.969359 -83.831253 0.877472 +v -11.030639 -83.831253 0.877472 +v -15.965054 -83.831154 0.894563 +v -11.034945 -83.831154 0.894563 +v -15.958385 -83.831009 0.910878 +v -11.041613 -83.831009 0.910878 +v -15.949492 -83.830803 0.926093 +v -11.050507 -83.830803 0.926093 +v -15.943182 -83.830658 0.101604 +v -11.056816 -83.830658 0.101604 +v -15.938546 -83.830551 0.939906 +v -11.061452 -83.830551 0.939906 +v -15.925766 -83.830261 0.952041 +v -11.074232 -83.830261 0.952041 +v -15.900572 -83.829689 0.010550 +v -11.099426 -83.829689 0.010550 +v -15.842821 -83.828369 -0.071733 +v -11.157177 -83.828369 -0.071733 +v -14.748873 -83.828072 -5.996280 +v -12.251125 -83.828072 -5.996280 +v -14.748873 -83.828079 -0.277528 +v -12.251125 -83.828079 -0.277528 +v -15.771678 -83.826752 -0.142751 +v -11.228320 -83.826752 -0.142751 +v -15.689301 -83.824875 -0.200351 +v -11.310698 -83.824875 -0.200351 +v -15.598183 -83.822800 -0.242790 +v -11.401815 -83.822800 -0.242790 +v -15.501089 -83.820587 -0.268777 +v -11.498909 -83.820587 -0.268777 +v -15.400960 -83.818314 -0.277528 +v -11.599038 -83.818314 -0.277528 +v -14.467876 -83.816132 -6.277530 +v -12.532122 -83.816132 -6.277530 +v -12.224492 -83.775032 1.113722 +v -13.499999 -83.775017 -6.277530 +v -14.775506 -83.775032 1.113722 +v -14.824707 -83.744865 1.585106 +v -12.175291 -83.744865 1.585106 +v -15.053531 -83.739655 1.491852 +v -11.946467 -83.739655 1.491852 +v -15.284749 -83.734390 1.379283 +v -11.715249 -83.734390 1.379283 +v -15.507863 -83.729317 1.251392 +v -11.492135 -83.729317 1.251392 +v -15.721859 -83.724442 1.108763 +v -11.278139 -83.724442 1.108763 +v -15.925766 -83.719795 0.952041 +v -11.074232 -83.719795 0.952041 +v -15.967512 -83.664215 0.198672 +v -11.032486 -83.664215 0.198672 +v -15.967512 -83.664215 0.877472 +v -11.032486 -83.664215 0.877472 +v -15.989975 -83.663200 0.367710 +v -11.010023 -83.663200 0.367710 +v -15.989975 -83.663208 0.708433 +v -11.010023 -83.663208 0.708433 +v -15.997482 -83.662865 0.538072 +v -11.002516 -83.662865 0.538072 +v -14.769636 -83.652802 1.113722 +v -12.230362 -83.652802 1.113722 +v -14.460902 -83.651970 -6.277530 +v -12.539096 -83.651970 -6.277530 +v -14.768911 -83.648270 1.113722 +v -12.231373 -83.647095 1.113722 +v -15.397020 -83.645271 -0.277528 +v -11.602978 -83.645271 -0.277528 +v -14.766964 -83.642189 1.113722 +v -12.233236 -83.641716 1.113722 +v -15.496941 -83.638435 -0.268777 +v -11.503057 -83.638435 -0.268777 +v -14.764311 -83.637054 1.113722 +v -12.236268 -83.636154 1.113722 +v -14.760435 -83.631920 1.113722 +v -15.593834 -83.631805 -0.242789 +v -11.406164 -83.631805 -0.242789 +v -12.240455 -83.630966 1.113722 +v -14.756251 -83.627975 1.113722 +v -12.244779 -83.627182 1.113722 +v -14.792136 -83.627075 1.352271 +v -12.207862 -83.627075 1.352271 +v -15.684762 -83.625587 -0.200351 +v -11.315236 -83.625587 -0.200351 +v -14.816476 -83.624535 1.585107 +v -12.183522 -83.624535 1.585107 +v -14.750843 -83.624390 1.113722 +v -12.250264 -83.623817 1.113722 +v -14.745579 -83.622063 1.113722 +v -12.255624 -83.621666 1.113722 +v -14.790954 -83.621361 1.351782 +v -12.209044 -83.621361 1.351782 +v -14.739328 -83.620483 1.113722 +v -12.261870 -83.620308 1.113722 +v -14.733553 -83.620026 1.113722 +v -14.350706 -83.620026 1.113722 +v -12.649292 -83.620026 1.113722 +v -12.266445 -83.620026 1.113722 +v -15.766969 -83.619965 -0.142751 +v -11.233029 -83.619965 -0.142751 +v -14.319160 -83.617958 1.113722 +v -12.680838 -83.617958 1.113722 +v -14.739875 -83.616249 -5.996279 +v -12.260123 -83.616249 -5.996279 +v -14.739875 -83.616257 -0.277528 +v -12.260123 -83.616257 -0.277528 +v -14.788874 -83.615906 1.351403 +v -12.211124 -83.615906 1.351403 +v -15.837965 -83.615105 -0.071733 +v -11.162033 -83.615105 -0.071733 +v -14.288158 -83.611786 1.113722 +v -12.711840 -83.611786 1.113722 +v -15.895596 -83.611168 0.010550 +v -11.104403 -83.611168 0.010550 +v -14.785949 -83.610840 1.351145 +v -12.214049 -83.610840 1.351145 +v -15.920739 -83.609444 0.952041 +v -11.079259 -83.609444 0.952041 +v -15.933491 -83.608574 0.939906 +v -11.066507 -83.608574 0.939906 +v -15.938118 -83.608253 0.101605 +v -11.061880 -83.608253 0.101605 +v -15.944414 -83.607826 0.926093 +v -11.055584 -83.607826 0.926093 +v -15.953291 -83.607224 0.910878 +v -11.046707 -83.607224 0.910878 +v -15.959943 -83.606766 0.894563 +v -11.040055 -83.606766 0.894563 +v -15.964241 -83.606468 0.198672 +v -11.035757 -83.606468 0.198672 +v -15.964241 -83.606468 0.877472 +v -11.035757 -83.606468 0.877472 +v -14.782254 -83.606300 1.351015 +v -12.217744 -83.606300 1.351015 +v -14.777886 -83.602402 1.351015 +v -12.222112 -83.602402 1.351015 +v -14.813704 -83.601997 1.585107 +v -12.186295 -83.601997 1.585107 +v -14.258224 -83.601624 1.113722 +v -12.741775 -83.601624 1.113722 +v -12.186723 -83.599426 1.585139 +v -14.772955 -83.599251 1.351145 +v -12.227043 -83.599251 1.351145 +v -15.043879 -83.598534 1.491853 +v -11.956120 -83.598534 1.491853 +v -14.767591 -83.596924 1.351403 +v -12.232407 -83.596924 1.351403 +v -14.812522 -83.596359 1.585263 +v -12.187494 -83.596298 1.585267 +v -14.761931 -83.595474 1.351782 +v -12.238067 -83.595474 1.351782 +v -14.756121 -83.594948 1.352272 +v -12.243877 -83.594948 1.352272 +v -12.188247 -83.593987 1.585427 +v -14.810534 -83.591026 1.585721 +v -12.189550 -83.590836 1.585743 +v -12.190621 -83.588715 1.586025 +v -14.807591 -83.585762 1.586523 +v -12.194481 -83.582947 1.587129 +v -14.804001 -83.581184 1.587587 +v -12.195998 -83.581184 1.587587 +v -12.199194 -83.578087 1.588580 +v -14.799771 -83.577232 1.588908 +v -12.204990 -83.573997 1.590452 +v -14.795008 -83.573997 1.590452 +v -15.273659 -83.572266 1.379284 +v -11.726339 -83.572266 1.379284 +v -12.209859 -83.571686 1.592077 +v -14.789832 -83.571571 1.592181 +v -14.788022 -83.570946 1.592796 +v -12.215422 -83.570045 1.593980 +v -14.784374 -83.570000 1.594049 +v -14.781776 -83.569580 1.594954 +v -14.778769 -83.569336 1.596012 +v -12.221230 -83.569336 1.596012 +v -14.572775 -83.562347 1.662445 +v -12.427223 -83.562347 1.662445 +v -14.548884 -83.557068 1.669058 +v -12.451114 -83.557068 1.669058 +v -14.363321 -83.556602 1.717141 +v -12.636677 -83.556602 1.717141 +v -14.331923 -83.553802 1.724138 +v -12.668076 -83.553802 1.724138 +v -14.301053 -83.546967 1.730498 +v -12.698945 -83.546967 1.730498 +v -15.495386 -83.546921 1.251392 +v -11.504612 -83.546921 1.251392 +v -14.271235 -83.536209 1.736112 +v -12.728763 -83.536209 1.736112 +v -14.286378 -83.535263 1.732889 +v -12.713620 -83.535263 1.732889 +v -15.708054 -83.522606 1.108764 +v -11.291945 -83.522606 1.108764 +v -14.788082 -83.507362 1.588591 +v -12.211916 -83.507362 1.588591 +v -15.910694 -83.499443 0.952042 +v -11.089304 -83.499443 0.952042 +v -14.426286 -83.491348 -6.277530 +v -12.573712 -83.491348 -6.277530 +v -14.131229 -83.475731 1.758001 +v -12.868769 -83.475731 1.758001 +v -15.377361 -83.473297 -0.277528 +v -11.622637 -83.473297 -0.277528 +v -13.937175 -83.468643 1.113723 +v -13.062823 -83.468643 1.113723 +v -14.261316 -83.464745 1.732889 +v -12.738682 -83.464745 1.732889 +v -14.524718 -83.462593 1.669058 +v -12.475280 -83.462593 1.669058 +v -15.021431 -83.458870 1.491853 +v -11.978567 -83.458870 1.491853 +v -15.476246 -83.457405 -0.268777 +v -11.523752 -83.457405 -0.268777 +v -13.903374 -83.451424 1.113723 +v -13.096624 -83.451424 1.113723 +v -15.947645 -83.443474 0.198672 +v -11.052353 -83.443474 0.198672 +v -15.947645 -83.443474 0.877473 +v -11.052353 -83.443474 0.877473 +v -15.572135 -83.441994 -0.242789 +v -11.427863 -83.441994 -0.242789 +v -15.969927 -83.440453 0.367711 +v -11.030071 -83.440453 0.367711 +v -15.969927 -83.440453 0.708434 +v -11.030071 -83.440453 0.708434 +v -15.977373 -83.439445 0.538073 +v -11.022625 -83.439445 0.538073 +v -13.872696 -83.429138 1.113723 +v -13.127302 -83.429138 1.113723 +v -15.662121 -83.427536 -0.200351 +v -11.337877 -83.427536 -0.200351 +v -13.990270 -83.415550 1.773749 +v -13.009728 -83.415550 1.773749 +v -15.743476 -83.414459 -0.142750 +v -11.256522 -83.414459 -0.142750 +v -15.247872 -83.411819 1.379284 +v -11.752126 -83.411819 1.379284 +v -14.695207 -83.408989 -5.996279 +v -12.304791 -83.408989 -5.996279 +v -14.695207 -83.408997 -0.277527 +v -12.304791 -83.408997 -0.277527 +v -15.813736 -83.403168 -0.071732 +v -11.186262 -83.403168 -0.071732 +v -13.845889 -83.402336 1.113723 +v -13.154109 -83.402336 1.113723 +v -13.956671 -83.398132 1.776268 +v -13.043327 -83.398132 1.776268 +v -14.229946 -83.396805 1.732889 +v -12.770052 -83.396805 1.732889 +v -15.870770 -83.393997 0.010551 +v -11.129229 -83.393997 0.010551 +v -14.758405 -83.391342 1.588591 +v -12.241593 -83.391342 1.588591 +v -15.895652 -83.389999 0.952042 +v -11.104346 -83.389999 0.952042 +v -15.908272 -83.387978 0.939907 +v -11.091726 -83.387978 0.939907 +v -15.912851 -83.387238 0.101606 +v -11.087147 -83.387238 0.101606 +v -15.919083 -83.386238 0.926094 +v -11.080915 -83.386238 0.926094 +v -15.927866 -83.384827 0.910879 +v -11.072132 -83.384827 0.910879 +v -15.934450 -83.383766 0.894564 +v -11.065548 -83.383766 0.894564 +v -15.938704 -83.383080 0.198673 +v -11.061295 -83.383080 0.198673 +v -15.938704 -83.383087 0.877473 +v -11.061295 -83.383087 0.877473 +v -13.926096 -83.375740 1.777542 +v -13.073902 -83.375740 1.777542 +v -13.823605 -83.371658 1.113723 +v -13.176394 -83.371658 1.113723 +v -14.492061 -83.370705 1.669058 +v -12.507937 -83.370705 1.669058 +v -15.466376 -83.366409 1.251393 +v -11.533622 -83.366409 1.251393 +v -13.899289 -83.348930 1.777542 +v -13.100709 -83.348930 1.777542 +v -14.365021 -83.338882 -6.277529 +v -12.634977 -83.338882 -6.277529 +v -13.806385 -83.337852 1.113723 +v -13.193613 -83.337852 1.113723 +v -14.192528 -83.331993 1.732889 +v -12.807470 -83.331993 1.732889 +v -15.675951 -83.322861 1.108764 +v -11.324047 -83.322861 1.108764 +v -14.986378 -83.321831 1.491853 +v -12.013620 -83.321831 1.491853 +v -13.876902 -83.318359 1.776268 +v -13.123096 -83.318359 1.776268 +v -15.342145 -83.303833 -0.277527 +v -11.657853 -83.303833 -0.277527 +v -13.859480 -83.284760 1.773749 +v -13.140518 -83.284760 1.773749 +v -14.451183 -83.282166 1.669058 +v -12.548815 -83.282166 1.669058 +v -15.875645 -83.281364 0.952042 +v -11.124353 -83.281364 0.952042 +v -15.439177 -83.279015 -0.268776 +v -11.560822 -83.279015 -0.268776 +v -14.718301 -83.278496 1.588591 +v -12.281697 -83.278496 1.588591 +v -14.149371 -83.270851 1.732889 +v -12.850627 -83.270851 1.732889 +v -15.533266 -83.254944 -0.242788 +v -11.466732 -83.254944 -0.242788 +v -15.207602 -83.254379 1.379284 +v -11.792397 -83.254379 1.379284 +v -15.621563 -83.232361 -0.200350 +v -11.378435 -83.232361 -0.200350 +v -15.908072 -83.225403 0.198673 +v -11.091927 -83.225403 0.198673 +v -15.908072 -83.225403 0.877473 +v -11.091927 -83.225403 0.877473 +v -15.929993 -83.220398 0.367711 +v -11.070005 -83.220398 0.367711 +v -15.929993 -83.220398 0.708434 +v -11.070005 -83.220398 0.708434 +v -15.937319 -83.218727 0.538073 +v -11.062679 -83.218727 0.538073 +v -14.100833 -83.213890 1.732890 +v -12.899165 -83.213890 1.732890 +v -14.616156 -83.212265 -5.996278 +v -12.383842 -83.212265 -5.996278 +v -14.616156 -83.212273 -0.277527 +v -12.383842 -83.212273 -0.277527 +v -15.701393 -83.211945 -0.142750 +v -11.298605 -83.211945 -0.142750 +v -14.278872 -83.198967 -6.277529 +v -12.721127 -83.198967 -6.277529 +v -14.402424 -83.197716 1.669059 +v -12.597574 -83.197716 1.669059 +v -15.770335 -83.194305 -0.071732 +v -11.229663 -83.194305 -0.071732 +v -15.421071 -83.189293 1.251393 +v -11.578927 -83.189293 1.251393 +v -14.939008 -83.188545 1.491853 +v -12.060990 -83.188545 1.491853 +v -15.826299 -83.179993 0.010551 +v -11.173699 -83.179993 0.010551 +v -15.850714 -83.173752 0.952042 +v -11.149284 -83.173752 0.952042 +v -15.863098 -83.170586 0.939907 +v -11.136900 -83.170586 0.939907 +v -14.668101 -83.169769 1.588592 +v -12.331897 -83.169769 1.588592 +v -15.867591 -83.169434 0.101606 +v -11.132407 -83.169434 0.101606 +v -15.873705 -83.167870 0.926094 +v -11.126293 -83.167870 0.926094 +v -15.882324 -83.165665 0.910879 +v -11.117674 -83.165665 0.910879 +v -15.888785 -83.164009 0.894564 +v -11.111213 -83.164009 0.894564 +v -15.892958 -83.162941 0.198673 +v -11.107040 -83.162941 0.198673 +v -15.892958 -83.162941 0.877473 +v -11.107040 -83.162941 0.877473 +v -14.047317 -83.161575 1.732890 +v -12.952682 -83.161575 1.732890 +v -13.799301 -83.143799 1.758002 +v -13.200697 -83.143799 1.758002 +v -15.291665 -83.138268 -0.277527 +v -11.708333 -83.138268 -0.277527 +v -15.625817 -83.126869 1.108765 +v -11.374181 -83.126869 1.108765 +v -14.346187 -83.118042 1.669059 +v -12.653811 -83.118042 1.669059 +v -13.989264 -83.114349 1.732890 +v -13.010734 -83.114349 1.732890 +v -15.386036 -83.104729 -0.268776 +v -11.613962 -83.104729 -0.268776 +v -15.153182 -83.101257 1.379285 +v -11.846816 -83.101257 1.379285 +v -14.170315 -83.075623 -6.277528 +v -12.829683 -83.075623 -6.277528 +v -13.927159 -83.072594 1.732890 +v -13.072839 -83.072594 1.732890 +v -15.477548 -83.072205 -0.242788 +v -11.522450 -83.072205 -0.242788 +v -15.820911 -83.067383 0.952043 +v -11.179087 -83.067383 0.952043 +v -14.608222 -83.066055 1.588592 +v -12.391776 -83.066055 1.588592 +v -14.879714 -83.060120 1.491854 +v -12.120284 -83.060120 1.491854 +v -14.282938 -83.043816 1.669059 +v -12.717060 -83.043816 1.669059 +v -15.563426 -83.041687 -0.200350 +v -11.436572 -83.041687 -0.200350 +v -13.861513 -83.036667 1.732890 +v -13.138485 -83.036667 1.732890 +v -14.504995 -83.031723 -5.996278 +v -12.495003 -83.031723 -5.996278 +v -14.504995 -83.031738 -0.277526 +v -12.495003 -83.031738 -0.277526 +v -15.359848 -83.017029 1.251394 +v -11.640150 -83.017029 1.251394 +v -13.673403 -83.016808 1.113724 +v -13.326595 -83.016808 1.113724 +v -15.641068 -83.014091 -0.142749 +v -11.358931 -83.014091 -0.142749 +v -15.849109 -83.011757 0.198673 +v -11.150889 -83.011757 0.198673 +v -15.849109 -83.011757 0.877474 +v -11.150889 -83.011757 0.877474 +v -13.792872 -83.006851 1.732890 +v -13.207126 -83.006851 1.732890 +v -15.870493 -83.004807 0.367712 +v -11.129505 -83.004807 0.367712 +v -15.870493 -83.004807 0.708435 +v -11.129505 -83.004807 0.708435 +v -13.738818 -83.003792 1.736113 +v -13.261180 -83.003792 1.736113 +v -15.877640 -83.002487 0.538074 +v -11.122358 -83.002487 0.538074 +v -15.708120 -82.990265 -0.071731 +v -11.291878 -82.990265 -0.071731 +v -13.663240 -82.986870 1.113724 +v -13.336758 -82.986870 1.113724 +v -15.226338 -82.977982 -0.277526 +v -11.773660 -82.977982 -0.277526 +v -14.213202 -82.975647 1.669059 +v -12.786797 -82.975647 1.669059 +v -13.728066 -82.973976 1.730499 +v -13.271932 -82.973976 1.730499 +v -14.042475 -82.972397 -6.277528 +v -12.957523 -82.972397 -6.277528 +v -15.762551 -82.970917 0.010552 +v -11.237447 -82.970917 0.010552 +v -14.539160 -82.968216 1.588592 +v -12.460838 -82.968216 1.588592 +v -15.786297 -82.962479 0.952043 +v -11.213701 -82.962479 0.952043 +v -15.798342 -82.958199 0.939908 +v -11.201656 -82.958199 0.939908 +v -15.802711 -82.956642 0.101607 +v -11.197287 -82.956642 0.101607 +v -13.657074 -82.955872 1.113724 +v -13.342924 -82.955872 1.113724 +v -15.808659 -82.954529 0.926095 +v -11.191339 -82.954529 0.926095 +v -15.085063 -82.953720 1.379285 +v -11.914935 -82.953720 1.379285 +v -15.817041 -82.951553 0.910880 +v -11.182957 -82.951553 0.910880 +v -15.823325 -82.949318 0.894565 +v -11.176673 -82.949318 0.894565 +v -15.827383 -82.947876 0.198673 +v -11.172615 -82.947876 0.198673 +v -15.827383 -82.947876 0.877474 +v -11.172615 -82.947876 0.877474 +v -13.721231 -82.943108 1.724139 +v -13.278768 -82.943108 1.724139 +v -14.808989 -82.937614 1.491854 +v -12.191010 -82.937614 1.491854 +v -15.558069 -82.936241 1.108765 +v -11.441929 -82.936241 1.108765 +v -15.317269 -82.935997 -0.268775 +v -11.682729 -82.935997 -0.268775 +v -13.655006 -82.924324 1.113724 +v -13.344992 -82.924324 1.113724 +v -14.137554 -82.914108 1.669059 +v -12.862444 -82.914108 1.669059 +v -13.718429 -82.911713 1.717142 +v -13.281569 -82.911713 1.717142 +v -15.405444 -82.895287 -0.242787 +v -11.594554 -82.895287 -0.242787 +v -13.899029 -82.892265 -6.277528 +v -13.100969 -82.892265 -6.277528 +v -14.461487 -82.877068 1.588592 +v -12.538511 -82.877068 1.588592 +v -14.364923 -82.872574 -5.996278 +v -12.635076 -82.872574 -5.996278 +v -14.364923 -82.872581 -0.277526 +v -12.635076 -82.872581 -0.277526 +v -14.056625 -82.859695 1.669059 +v -12.943373 -82.859695 1.669059 +v -15.746945 -82.859261 0.952043 +v -11.253053 -82.859261 0.952043 +v -15.488191 -82.857086 -0.200349 +v -11.511807 -82.857086 -0.200349 +v -15.283215 -82.851044 1.251394 +v -11.716784 -82.851044 1.251394 +v -13.744102 -82.837524 -6.277528 +v -13.255896 -82.837524 -6.277528 +v -15.146708 -82.824303 -0.277526 +v -11.853291 -82.824303 -0.277526 +v -15.563002 -82.822548 -0.142749 +v -11.436996 -82.822548 -0.142749 +v -14.727414 -82.822052 1.491854 +v -12.272584 -82.822052 1.491854 +v -15.003810 -82.812981 1.379286 +v -11.996188 -82.812981 1.379286 +v -13.971084 -82.812874 1.669060 +v -13.028914 -82.812874 1.669060 +v -13.582155 -82.809753 -6.277528 +v -13.417843 -82.809753 -6.277528 +v -15.771233 -82.804260 0.198674 +v -11.228765 -82.804260 0.198674 +v -15.771233 -82.804260 0.877474 +v -11.228765 -82.804260 0.877474 +v -15.791909 -82.795418 0.367712 +v -11.208089 -82.795418 0.367712 +v -15.791909 -82.795418 0.708435 +v -11.208089 -82.795418 0.708435 +v -14.375847 -82.793350 1.588593 +v -12.624151 -82.793350 1.588593 +v -15.627609 -82.792717 -0.071731 +v -11.372389 -82.792717 -0.071731 +v -15.798819 -82.792465 0.538074 +v -11.201180 -82.792465 0.538074 +v -15.233443 -82.774223 -0.268775 +v -11.766555 -82.774223 -0.268775 +v -13.881638 -82.774025 1.669060 +v -13.118361 -82.774025 1.669060 +v -15.680056 -82.768501 0.010552 +v -11.319942 -82.768501 0.010552 +v -15.702936 -82.757942 0.952043 +v -11.297062 -82.757942 0.952043 +v -15.714540 -82.752586 0.939908 +v -11.285458 -82.752586 0.939908 +v -15.473267 -82.752563 1.108765 +v -11.526731 -82.752563 1.108765 +v -15.718751 -82.750641 0.101607 +v -11.281247 -82.750641 0.101607 +v -15.724482 -82.747993 0.926095 +v -11.275517 -82.747993 0.926095 +v -15.732559 -82.744263 0.910880 +v -11.267439 -82.744263 0.910880 +v -13.789030 -82.743462 1.669060 +v -13.210968 -82.743462 1.669060 +v -15.738613 -82.741470 0.894565 +v -11.261385 -82.741470 0.894565 +v -15.742524 -82.739662 0.198674 +v -11.257474 -82.739662 0.198674 +v -15.742524 -82.739662 0.877474 +v -11.257474 -82.739662 0.877474 +v -14.199967 -82.739380 -5.996277 +v -12.800031 -82.739380 -5.996277 +v -14.199967 -82.739388 -0.277526 +v -12.800031 -82.739388 -0.277526 +v -15.317550 -82.725662 -0.242787 +v -11.682448 -82.725662 -0.242787 +v -14.282949 -82.717773 1.588593 +v -12.717049 -82.717773 1.588593 +v -14.635670 -82.714386 1.491855 +v -12.364328 -82.714386 1.491855 +v -13.712679 -82.702255 1.662447 +v -13.287319 -82.702255 1.662447 +v -15.191803 -82.692719 1.251395 +v -11.808195 -82.692719 1.251395 +v -14.910095 -82.680222 1.379286 +v -12.089903 -82.680222 1.379286 +v -15.396481 -82.680092 -0.200349 +v -11.603518 -82.680092 -0.200349 +v -15.053431 -82.678497 -0.277526 +v -11.946568 -82.678497 -0.277526 +v -15.654360 -82.658730 0.952044 +v -11.345638 -82.658730 0.952044 +v -14.183564 -82.650955 1.588593 +v -12.816434 -82.650955 1.588593 +v -15.467841 -82.638893 -0.142749 +v -11.532157 -82.638893 -0.142749 +v -14.014875 -82.635979 -5.996277 +v -12.985123 -82.635979 -5.996277 +v -14.014875 -82.635994 -0.277526 +v -12.985123 -82.635994 -0.277526 +v -15.135253 -82.620743 -0.268775 +v -11.864745 -82.620743 -0.268775 +v -14.534515 -82.615509 1.491855 +v -12.465483 -82.615509 1.491855 +v -15.675070 -82.604568 0.198674 +v -11.324928 -82.604568 0.198674 +v -15.675070 -82.604576 0.877475 +v -11.324928 -82.604576 0.877475 +v -15.529469 -82.603317 -0.071730 +v -11.470530 -82.603317 -0.071730 +v -15.694870 -82.593918 0.367713 +v -11.305128 -82.593918 0.367713 +v -15.694870 -82.593918 0.708436 +v -11.305128 -82.593918 0.708436 +v -14.078514 -82.593452 1.588593 +v -12.921484 -82.593452 1.588593 +v -15.701488 -82.590355 0.538075 +v -11.298510 -82.590355 0.538075 +v -15.372114 -82.577362 1.108766 +v -11.627884 -82.577362 1.108766 +v -15.579494 -82.574432 0.010553 +v -11.420504 -82.574432 0.010553 +v -13.814972 -82.565353 -5.996277 +v -13.185026 -82.565353 -5.996277 +v -13.814972 -82.565361 -0.277525 +v -13.185026 -82.565361 -0.277525 +v -15.214596 -82.564735 -0.242787 +v -11.785402 -82.564735 -0.242787 +v -15.601320 -82.561829 0.952044 +v -11.398678 -82.561829 0.952044 +v -14.804697 -82.556526 1.379286 +v -12.195301 -82.556526 1.379286 +v -15.612391 -82.555443 0.939909 +v -11.387608 -82.555443 0.939909 +v -15.616405 -82.553123 0.101608 +v -11.383593 -82.553123 0.101608 +v -15.621871 -82.549965 0.926096 +v -11.378127 -82.549965 0.926096 +v -13.968671 -82.545738 1.588593 +v -13.031327 -82.545738 1.588593 +v -15.629576 -82.545517 0.910881 +v -11.370422 -82.545517 0.910881 +v -15.086373 -82.543358 1.251395 +v -11.913625 -82.543358 1.251395 +v -15.635351 -82.542183 0.894566 +v -11.364647 -82.542183 0.894566 +v -14.947281 -82.541779 -0.277525 +v -12.052717 -82.541779 -0.277525 +v -13.655006 -82.541473 1.113725 +v -13.344992 -82.541473 1.113725 +v -15.639082 -82.540031 0.198674 +v -11.360916 -82.540031 0.198674 +v -15.639082 -82.540031 0.877475 +v -11.360916 -82.540031 0.877475 +v -13.654718 -82.536903 1.113725 +v -13.345451 -82.535698 1.113725 +v -13.653364 -82.530655 1.113725 +v -13.346790 -82.530167 1.113725 +v -13.606007 -82.529518 -5.996277 +v -13.393991 -82.529518 -5.996277 +v -13.606007 -82.529533 -0.277525 +v -13.393991 -82.529533 -0.277525 +v -14.424788 -82.526237 1.491855 +v -12.575210 -82.526237 1.491855 +v -13.651215 -82.525291 1.113725 +v -13.349360 -82.524185 1.113725 +v -13.647848 -82.519806 1.113725 +v -13.680079 -82.518906 1.352274 +v -13.319920 -82.518906 1.352274 +v -13.352946 -82.518776 1.113725 +v -13.644061 -82.515488 1.113725 +v -13.356888 -82.514595 1.113725 +v -13.679555 -82.513100 1.351784 +v -13.320443 -82.513100 1.351784 +v -15.289055 -82.512177 -0.200348 +v -11.710943 -82.512177 -0.200348 +v -13.639022 -82.511398 1.113725 +v -13.362024 -82.510719 1.113725 +v -13.634006 -82.508575 1.113725 +v -13.854944 -82.508217 1.588593 +v -13.145054 -82.508217 1.588593 +v -13.367154 -82.508064 1.113725 +v -13.678109 -82.507439 1.351405 +v -13.321889 -82.507439 1.351405 +v -13.628086 -82.506439 1.113725 +v -13.373241 -82.506119 1.113725 +v -13.622230 -82.505394 1.113725 +v -13.377769 -82.505394 1.113725 +v -13.675779 -82.502075 1.351147 +v -13.324219 -82.502075 1.351147 +v -13.499999 -82.499519 1.113725 +v -13.672625 -82.497147 1.351017 +v -13.327374 -82.497147 1.351017 +v -13.705697 -82.496262 1.596014 +v -13.294301 -82.496262 1.596014 +v -13.294544 -82.493256 1.594956 +v -13.668728 -82.492775 1.351017 +v -13.331270 -82.492775 1.351017 +v -13.294969 -82.490654 1.594051 +v -13.704988 -82.490456 1.593982 +v -13.664188 -82.489082 1.351147 +v -13.335810 -82.489082 1.351147 +v -13.295912 -82.487007 1.592798 +v -13.659124 -82.486153 1.351405 +v -13.340874 -82.486153 1.351405 +v -13.296537 -82.485199 1.592183 +v -13.703343 -82.484894 1.592079 +v -13.653666 -82.484077 1.351784 +v -13.346333 -82.484077 1.351784 +v -13.647952 -82.482895 1.352274 +v -13.352046 -82.482895 1.352274 +v -13.298151 -82.481537 1.590956 +v -13.738276 -82.481186 1.588593 +v -13.261723 -82.481186 1.588593 +v -13.701029 -82.480019 1.590454 +v -15.023513 -82.476822 -0.268774 +v -11.976485 -82.476822 -0.268774 +v -13.302202 -82.475258 1.588910 +v -13.696939 -82.474228 1.588582 +v -13.693844 -82.471031 1.587589 +v -13.306155 -82.471031 1.587589 +v -13.692084 -82.469513 1.587131 +v -15.543924 -82.467445 0.952044 +v -11.456074 -82.467445 0.952044 +v -13.310730 -82.467438 1.586525 +v -13.687340 -82.466232 1.586185 +v -15.356373 -82.464653 -0.142748 +v -11.643625 -82.464653 -0.142748 +v -13.684191 -82.464584 1.585745 +v -13.315991 -82.464493 1.585723 +v -13.681040 -82.463280 1.585429 +v -13.678734 -82.462524 1.585269 +v -13.321327 -82.462509 1.585265 +v -13.675605 -82.461754 1.585141 +v -13.673035 -82.461327 1.585109 +v -13.326963 -82.461327 1.585109 +v -13.620492 -82.455467 1.585109 +v -13.379506 -82.455467 1.585109 +v -13.499999 -82.449982 1.585109 +v -14.307398 -82.447319 1.491855 +v -12.692600 -82.447319 1.491855 +v -14.688487 -82.442932 1.379286 +v -12.311511 -82.442932 1.379286 +v -15.414510 -82.423622 -0.071730 +v -11.585488 -82.423622 -0.071730 +v -14.829139 -82.415283 -0.277525 +v -12.170859 -82.415283 -0.277525 +v -15.561395 -82.414314 0.198675 +v -11.438603 -82.414314 0.198675 +v -15.561395 -82.414314 0.877475 +v -11.438603 -82.414314 0.877475 +v -15.097434 -82.413834 -0.242786 +v -11.902564 -82.413834 -0.242786 +v -15.255448 -82.412086 1.108766 +v -11.744550 -82.412086 1.108766 +v -14.967798 -82.404198 1.251395 +v -12.032200 -82.404198 1.251395 +v -15.580161 -82.401924 0.367713 +v -11.419837 -82.401924 0.367713 +v -15.580161 -82.401924 0.708436 +v -11.419837 -82.401924 0.708436 +v -15.586432 -82.397789 0.538075 +v -11.413567 -82.397789 0.538075 +v -15.461703 -82.390305 0.010553 +v -11.538295 -82.390305 0.010553 +v -14.183318 -82.379402 1.491855 +v -12.816680 -82.379402 1.491855 +v -15.482292 -82.375778 0.952044 +v -11.517706 -82.375778 0.952044 +v -15.492735 -82.368401 0.939909 +v -11.507263 -82.368401 0.939909 +v -15.496523 -82.365730 0.101608 +v -11.503475 -82.365730 0.101608 +v -15.501678 -82.362091 0.926096 +v -11.498320 -82.362091 0.926096 +v -15.508948 -82.356956 0.910881 +v -11.491050 -82.356956 0.910881 +v -15.166806 -82.354721 -0.200348 +v -11.833192 -82.354721 -0.200348 +v -15.514396 -82.353111 0.894566 +v -11.485602 -82.353111 0.894566 +v -15.517915 -82.350632 0.198675 +v -11.482083 -82.350632 0.198675 +v -15.517915 -82.350632 0.877475 +v -11.482083 -82.350632 0.877475 +v -14.899148 -82.343658 -0.268774 +v -12.100850 -82.343658 -0.268774 +v -14.562428 -82.340378 1.379287 +v -12.437571 -82.340378 1.379287 +v -14.053576 -82.323044 1.491856 +v -12.946423 -82.323044 1.491856 +v -15.229523 -82.301277 -0.142748 +v -11.770475 -82.301277 -0.142748 +v -14.699984 -82.300049 -0.277525 +v -12.300014 -82.300049 -0.277525 +v -15.416551 -82.287003 0.952044 +v -11.583447 -82.287003 0.952044 +v -13.919246 -82.278717 1.491856 +v -13.080752 -82.278717 1.491856 +v -14.837061 -82.276405 1.251395 +v -12.162937 -82.276405 1.251395 +v -14.967036 -82.274208 -0.242786 +v -12.032962 -82.274208 -0.242786 +v -15.124235 -82.258102 1.108767 +v -11.875763 -82.258102 1.108767 +v -15.283687 -82.255119 -0.071730 +v -11.716311 -82.255119 -0.071730 +v -14.427567 -82.249710 1.379287 +v -12.572432 -82.249710 1.379287 +v -13.781442 -82.246796 1.491856 +v -13.218556 -82.246796 1.491856 +v -15.431123 -82.235008 0.198675 +v -11.568875 -82.235008 0.198675 +v -15.431123 -82.235008 0.877476 +v -11.568875 -82.235008 0.877476 +v -13.641306 -82.227531 1.491856 +v -13.358692 -82.227531 1.491856 +v -14.763190 -82.222359 -0.268774 +v -12.236808 -82.222359 -0.268774 +v -13.499999 -82.221100 1.491856 +v -15.448703 -82.220993 0.367714 +v -11.551295 -82.220993 0.367714 +v -15.448703 -82.220993 0.708437 +v -11.551295 -82.220993 0.708437 +v -15.327656 -82.217659 0.010554 +v -11.672342 -82.217659 0.010554 +v -15.454578 -82.216301 0.538076 +v -11.545420 -82.216301 0.538076 +v -15.030745 -82.209030 -0.200347 +v -11.969254 -82.209030 -0.200347 +v -15.346838 -82.201309 0.952045 +v -11.653160 -82.201309 0.952045 +v -14.560885 -82.197037 -0.277524 +v -12.439113 -82.197037 -0.277524 +v -15.356567 -82.193024 0.939910 +v -11.643431 -82.193024 0.939910 +v -15.360097 -82.190010 0.101609 +v -11.639901 -82.190010 0.101609 +v -15.364900 -82.185921 0.926097 +v -11.635098 -82.185921 0.926097 +v -15.371672 -82.180153 0.910882 +v -11.628326 -82.180153 0.910882 +v -15.376748 -82.175827 0.894567 +v -11.623250 -82.175827 0.894567 +v -15.380026 -82.173027 0.198675 +v -11.619972 -82.173027 0.198675 +v -15.380026 -82.173035 0.877476 +v -11.619972 -82.173035 0.877476 +v -14.285019 -82.171684 1.379287 +v -12.714979 -82.171684 1.379287 +v -14.695244 -82.161034 1.251396 +v -12.304754 -82.161034 1.251396 +v -15.088342 -82.150108 -0.142747 +v -11.911656 -82.150108 -0.142747 +v -14.824481 -82.147018 -0.242785 +v -12.175517 -82.147018 -0.242785 +v -15.273297 -82.118889 0.952045 +v -11.726701 -82.118889 0.952045 +v -14.979564 -82.116684 1.108767 +v -12.020434 -82.116684 1.108767 +v -14.616764 -82.113922 -0.268773 +v -12.383234 -82.113922 -0.268773 +v -14.412995 -82.107109 -0.277524 +v -12.587003 -82.107109 -0.277524 +v -14.135966 -82.106941 1.379287 +v -12.864032 -82.106941 1.379287 +v -15.138085 -82.099220 -0.071729 +v -11.861913 -82.099220 -0.071729 +v -14.881998 -82.076324 -0.200347 +v -12.118000 -82.076324 -0.200347 +v -15.285302 -82.068100 0.198676 +v -11.714696 -82.068100 0.198676 +v -15.285302 -82.068108 0.877476 +v -11.714696 -82.068108 0.877476 +v -14.543523 -82.059029 1.251396 +v -12.456475 -82.059029 1.251396 +v -15.178464 -82.057907 0.010554 +v -11.821534 -82.057907 0.010554 +v -13.981644 -82.056015 1.379287 +v -13.018354 -82.056015 1.379287 +v -15.301555 -82.052567 0.367714 +v -11.698443 -82.052567 0.367714 +v -15.301555 -82.052567 0.708437 +v -11.698443 -82.052567 0.708437 +v -15.306986 -82.047371 0.538076 +v -11.693012 -82.047371 0.538076 +v -15.196080 -82.039894 0.952045 +v -11.803918 -82.039894 0.952045 +v -14.670951 -82.033325 -0.242785 +v -12.329047 -82.033325 -0.242785 +v -14.257541 -82.030991 -0.277524 +v -12.742457 -82.030991 -0.277524 +v -15.205015 -82.030746 0.939910 +v -11.794983 -82.030746 0.939910 +v -15.208257 -82.027435 0.101609 +v -11.791741 -82.027435 0.101609 +v -15.212668 -82.022919 0.926097 +v -11.787330 -82.022919 0.926097 +v -13.823330 -82.019341 1.379287 +v -13.176668 -82.019341 1.379287 +v -14.461085 -82.019249 -0.268773 +v -12.538913 -82.019249 -0.268773 +v -15.218888 -82.016556 0.910882 +v -11.781110 -82.016556 0.910882 +v -14.934000 -82.012405 -0.142747 +v -12.065998 -82.012405 -0.142747 +v -15.223549 -82.011787 0.894567 +v -11.776449 -82.011787 0.894567 +v -15.226560 -82.008705 0.198676 +v -11.773438 -82.008705 0.198676 +v -15.226560 -82.008713 0.877476 +v -11.773438 -82.008713 0.877476 +v -13.662337 -81.997215 1.379287 +v -13.337661 -81.997215 1.379287 +v -13.499999 -81.989815 1.379287 +v -14.822632 -81.989014 1.108767 +v -12.177366 -81.989014 1.108767 +v -14.383155 -81.971245 1.251396 +v -12.616843 -81.971245 1.251396 +v -14.095808 -81.969330 -0.277524 +v -12.904190 -81.969330 -0.277524 +v -15.115348 -81.964493 0.952045 +v -11.884650 -81.964493 0.952045 +v -14.721801 -81.957687 -0.200347 +v -12.278197 -81.957687 -0.200347 +v -14.978909 -81.957207 -0.071729 +v -12.021090 -81.957207 -0.071729 +v -14.297442 -81.939133 -0.268773 +v -12.702556 -81.939133 -0.268773 +v -14.507718 -81.934059 -0.242785 +v -12.492280 -81.934059 -0.242785 +v -13.929139 -81.922630 -0.277524 +v -13.070859 -81.922630 -0.277524 +v -15.125108 -81.914940 0.198676 +v -11.874890 -81.914940 0.198676 +v -15.125108 -81.914940 0.877476 +v -11.874890 -81.914940 0.877476 +v -15.015364 -81.912392 0.010554 +v -11.984634 -81.912392 0.010554 +v -14.215469 -81.898407 1.251396 +v -12.784529 -81.898407 1.251396 +v -15.139902 -81.898010 0.367714 +v -11.860096 -81.898010 0.367714 +v -15.139902 -81.898010 0.708437 +v -11.860096 -81.898010 0.708437 +v -15.031268 -81.892845 0.952045 +v -11.968730 -81.892845 0.952045 +v -15.144846 -81.892349 0.538076 +v -11.855152 -81.892349 0.538076 +v -13.758914 -81.891281 -0.277524 +v -13.241084 -81.891281 -0.277524 +v -14.767775 -81.889305 -0.142747 +v -12.232224 -81.889305 -0.142747 +v -15.039335 -81.882935 0.939910 +v -11.960663 -81.882935 0.939910 +v -15.042262 -81.879333 0.101609 +v -11.957736 -81.879333 0.101609 +v -14.654741 -81.876137 1.108768 +v -12.345257 -81.876137 1.108768 +v -13.586543 -81.875542 -0.277524 +v -13.413455 -81.875542 -0.277524 +v -15.046246 -81.874435 0.926097 +v -11.953753 -81.874435 0.926097 +v -14.127192 -81.874222 -0.268773 +v -12.872807 -81.874222 -0.268773 +v -15.051859 -81.867538 0.910882 +v -11.948139 -81.867538 0.910882 +v -15.056068 -81.862366 0.894567 +v -11.943930 -81.862366 0.894567 +v -15.058786 -81.859024 0.198676 +v -11.941212 -81.859024 0.198676 +v -15.058786 -81.859024 0.877476 +v -11.941212 -81.859024 0.877476 +v -14.551479 -81.854111 -0.200347 +v -12.448519 -81.854111 -0.200347 +v -14.336134 -81.850052 -0.242785 +v -12.663864 -81.850052 -0.242785 +v -14.041855 -81.841125 1.251396 +v -12.958143 -81.841125 1.251396 +v -14.807478 -81.830254 -0.071728 +v -12.192520 -81.830254 -0.071728 +v -14.944016 -81.825104 0.952046 +v -12.055983 -81.825104 0.952046 +v -13.951743 -81.825066 -0.268773 +v -13.048255 -81.825066 -0.268773 +v -13.863750 -81.799858 1.251397 +v -13.136249 -81.799858 1.251397 +v -13.772552 -81.792061 -0.268773 +v -13.227447 -81.792061 -0.268773 +v -14.839708 -81.782310 0.010555 +v -12.160290 -81.782310 0.010555 +v -14.157622 -81.781990 -0.242785 +v -12.842376 -81.781990 -0.242785 +v -14.591044 -81.781830 -0.142746 +v -12.408954 -81.781830 -0.142746 +v -14.477282 -81.778999 1.108768 +v -12.522717 -81.778999 1.108768 +v -14.951829 -81.776756 0.198676 +v -12.048169 -81.776756 0.198676 +v -14.951829 -81.776756 0.877477 +v -12.048169 -81.776756 0.877477 +v -13.591102 -81.775490 -0.268773 +v -13.408896 -81.775490 -0.268773 +v -13.682631 -81.774963 1.251397 +v -13.317367 -81.774963 1.251397 +v -13.499999 -81.766647 1.251397 +v -14.372445 -81.766457 -0.200346 +v -12.627553 -81.766457 -0.200346 +v -14.853768 -81.761398 0.952046 +v -12.146230 -81.761398 0.952046 +v -14.965045 -81.758568 0.367715 +v -12.034953 -81.758568 0.367715 +v -14.965045 -81.758568 0.708438 +v -12.034953 -81.758568 0.708438 +v -14.969462 -81.752487 0.538077 +v -12.030536 -81.752487 0.538077 +v -14.860900 -81.750793 0.939911 +v -12.139098 -81.750793 0.939911 +v -14.863487 -81.746941 0.101609 +v -12.136511 -81.746941 0.101609 +v -14.867008 -81.741707 0.926098 +v -12.132990 -81.741707 0.926098 +v -14.871972 -81.734322 0.910883 +v -12.128026 -81.734322 0.910883 +v -13.973661 -81.730446 -0.242785 +v -13.026337 -81.730446 -0.242785 +v -14.875693 -81.728790 0.894568 +v -12.124305 -81.728790 0.894568 +v -14.878096 -81.725212 0.198677 +v -12.121902 -81.725212 0.198677 +v -14.878096 -81.725212 0.877477 +v -12.121902 -81.725212 0.877477 +v -14.625213 -81.719414 -0.071728 +v -12.374785 -81.719414 -0.071728 +v -14.760715 -81.701866 0.952046 +v -12.239283 -81.701866 0.952046 +v -14.291723 -81.698395 1.108768 +v -12.708275 -81.698395 1.108768 +v -13.785776 -81.695847 -0.242784 +v -13.214222 -81.695847 -0.242784 +v -14.186181 -81.695442 -0.200346 +v -12.813817 -81.695442 -0.200346 +v -14.405273 -81.690880 -0.142746 +v -12.594725 -81.690880 -0.142746 +v -13.595522 -81.678474 -0.242784 +v -13.404476 -81.678474 -0.242784 +v -14.652950 -81.668739 0.010555 +v -12.347048 -81.668739 0.010555 +v -14.766860 -81.654663 0.198677 +v -12.233138 -81.654663 0.198677 +v -14.766860 -81.654663 0.877477 +v -12.233138 -81.654663 0.877477 +v -14.665051 -81.646637 0.952046 +v -12.334948 -81.646637 0.952046 +v -13.994231 -81.641663 -0.200346 +v -13.005767 -81.641663 -0.200346 +v -14.671188 -81.635422 0.939911 +v -12.328810 -81.635422 0.939911 +v -14.778393 -81.635361 0.367715 +v -12.221605 -81.635361 0.367715 +v -14.778393 -81.635361 0.708438 +v -12.221605 -81.635361 0.708438 +v -14.099606 -81.635010 1.108768 +v -12.900393 -81.635010 1.108768 +v -14.673414 -81.631355 0.101610 +v -12.326584 -81.631355 0.101610 +v -14.782248 -81.628906 0.538077 +v -12.217751 -81.628906 0.538077 +v -14.676444 -81.625824 0.926098 +v -12.323554 -81.625824 0.926098 +v -14.433623 -81.625610 -0.071728 +v -12.566375 -81.625610 -0.071728 +v -14.680716 -81.618019 0.910883 +v -12.319283 -81.618019 0.910883 +v -14.212000 -81.617195 -0.142746 +v -12.787998 -81.617195 -0.142746 +v -14.683918 -81.612167 0.894568 +v -12.316080 -81.612167 0.894568 +v -14.685987 -81.608391 0.198677 +v -12.314011 -81.608391 0.198677 +v -14.685987 -81.608391 0.877477 +v -12.314011 -81.608391 0.877477 +v -13.798186 -81.605553 -0.200346 +v -13.201812 -81.605553 -0.200346 +v -14.566970 -81.595818 0.952046 +v -12.433028 -81.595818 0.952046 +v -13.902518 -81.589348 1.108768 +v -13.097480 -81.589348 1.108768 +v -13.599670 -81.587425 -0.200346 +v -13.400328 -81.587425 -0.200346 +v -14.456638 -81.572624 0.010555 +v -12.543360 -81.572624 0.010555 +v -13.702096 -81.561798 1.108768 +v -13.297902 -81.561798 1.108768 +v -14.012828 -81.561386 -0.142746 +v -12.987170 -81.561386 -0.142746 +v -13.499999 -81.552597 1.108768 +v -14.571692 -81.549637 0.198677 +v -12.428307 -81.549637 0.198677 +v -14.571692 -81.549637 0.877477 +v -12.428307 -81.549637 0.877477 +v -14.234299 -81.549614 -0.071728 +v -12.765699 -81.549614 -0.071728 +v -14.466678 -81.549515 0.952046 +v -12.533320 -81.549515 0.952046 +v -14.471770 -81.537788 0.939911 +v -12.528228 -81.537788 0.939911 +v -14.473618 -81.533531 0.101610 +v -12.526381 -81.533531 0.101610 +v -14.581448 -81.529373 0.367715 +v -12.418550 -81.529373 0.367715 +v -14.581448 -81.529373 0.708438 +v -12.418550 -81.529373 0.708438 +v -14.476132 -81.527748 0.926098 +v -12.523866 -81.527748 0.926098 +v -13.809406 -81.523926 -0.142746 +v -13.190592 -81.523926 -0.142746 +v -14.584708 -81.522606 0.538077 +v -12.415290 -81.522606 0.538077 +v -14.479677 -81.519585 0.910883 +v -12.520321 -81.519585 0.910883 +v -14.482334 -81.513466 0.894568 +v -12.517664 -81.513466 0.894568 +v -14.484050 -81.509514 0.198677 +v -12.515948 -81.509514 0.198677 +v -14.484050 -81.509514 0.877477 +v -12.515948 -81.509514 0.877477 +v -14.364383 -81.507820 0.952046 +v -12.635615 -81.507820 0.952046 +v -13.603420 -81.505112 -0.142746 +v -13.396578 -81.505112 -0.142746 +v -14.252399 -81.494759 0.010555 +v -12.747599 -81.494759 0.010555 +v -14.028889 -81.492065 -0.071728 +v -12.971109 -81.492065 -0.071728 +v -14.260296 -81.470825 0.952046 +v -12.739702 -81.470825 0.952046 +v -14.367895 -81.462524 0.198677 +v -12.632103 -81.462524 0.198677 +v -14.367895 -81.462532 0.877477 +v -12.632103 -81.462532 0.877477 +v -14.264301 -81.458687 0.939911 +v -12.735697 -81.458687 0.939911 +v -14.265754 -81.454285 0.101610 +v -12.734244 -81.454285 0.101610 +v -13.819096 -81.453423 -0.071728 +v -13.180902 -81.453423 -0.071728 +v -14.267732 -81.448288 0.926098 +v -12.732266 -81.448288 0.926098 +v -14.375795 -81.441475 0.367715 +v -12.624203 -81.441475 0.367715 +v -14.375795 -81.441475 0.708438 +v -12.624203 -81.441475 0.708438 +v -14.270519 -81.439842 0.910883 +v -12.729479 -81.439842 0.910883 +v -14.154633 -81.438614 0.952046 +v -12.845366 -81.438614 0.952046 +v -14.041925 -81.435783 0.010556 +v -12.958073 -81.435783 0.010556 +v -14.378436 -81.434441 0.538078 +v -12.621562 -81.434441 0.538078 +v -13.606659 -81.434029 -0.071728 +v -13.393339 -81.434029 -0.071728 +v -14.272609 -81.433510 0.894569 +v -12.727389 -81.433510 0.894569 +v -14.273958 -81.429420 0.198677 +v -12.726040 -81.429420 0.198677 +v -14.273958 -81.429420 0.877478 +v -12.726040 -81.429420 0.877478 +v -14.047613 -81.411240 0.952047 +v -12.952385 -81.411240 0.952047 +v -14.050498 -81.398781 0.939912 +v -12.949500 -81.398781 0.939912 +v -13.826962 -81.396194 0.010556 +v -13.173037 -81.396194 0.010556 +v -14.051545 -81.394264 0.101610 +v -12.948453 -81.394264 0.101610 +v -14.157110 -81.394043 0.198677 +v -12.842888 -81.394043 0.198677 +v -14.157110 -81.394043 0.877478 +v -12.842888 -81.394043 0.877478 +v -13.939459 -81.388763 0.952047 +v -13.060539 -81.388763 0.952047 +v -14.052969 -81.388115 0.926099 +v -12.947029 -81.388115 0.926099 +v -14.054977 -81.379448 0.910884 +v -12.945021 -81.379448 0.910884 +v -13.609288 -81.376320 0.010556 +v -13.390710 -81.376320 0.010556 +v -14.056482 -81.372955 0.894569 +v -12.943516 -81.372955 0.894569 +v -14.163092 -81.372368 0.367716 +v -12.836906 -81.372368 0.367716 +v -14.163092 -81.372368 0.708439 +v -12.836906 -81.372368 0.708439 +v -13.830393 -81.371231 0.952047 +v -13.169605 -81.371231 0.952047 +v -14.057454 -81.368759 0.198677 +v -12.942544 -81.368759 0.198677 +v -14.057454 -81.368759 0.877478 +v -12.942544 -81.368759 0.877478 +v -14.165092 -81.365120 0.538078 +v -12.834907 -81.365120 0.538078 +v -13.720643 -81.358688 0.952047 +v -13.279355 -81.358688 0.952047 +v -13.832134 -81.358566 0.939912 +v -13.167864 -81.358566 0.939912 +v -13.832766 -81.353973 0.101610 +v -13.167233 -81.353973 0.101610 +v -13.610435 -81.351151 0.952047 +v -13.389563 -81.351151 0.952047 +v -13.499999 -81.348633 0.952047 +v -13.833625 -81.347725 0.926099 +v -13.166373 -81.347725 0.926099 +v -13.941034 -81.344719 0.198677 +v -13.058964 -81.344719 0.198677 +v -13.941034 -81.344727 0.877478 +v -13.058964 -81.344727 0.877478 +v -13.834836 -81.338905 0.910884 +v -13.165162 -81.338905 0.910884 +v -13.611017 -81.338379 0.939912 +v -13.388981 -81.338379 0.939912 +v -13.611228 -81.333740 0.101611 +v -13.388770 -81.333740 0.101611 +v -13.835744 -81.332306 0.894569 +v -13.164254 -81.332306 0.894569 +v -13.836330 -81.328033 0.198678 +v -13.163668 -81.328033 0.198678 +v -13.836330 -81.328033 0.877478 +v -13.163668 -81.328033 0.877478 +v -13.611516 -81.327438 0.926099 +v -13.388482 -81.327438 0.926099 +v -13.945049 -81.322601 0.367716 +v -13.054949 -81.322601 0.367716 +v -13.945049 -81.322601 0.708439 +v -13.054949 -81.322601 0.708439 +v -13.611920 -81.318550 0.910884 +v -13.388078 -81.318550 0.910884 +v -13.946391 -81.315201 0.538078 +v -13.053607 -81.315201 0.538078 +v -13.721408 -81.314972 0.198678 +v -13.278590 -81.314972 0.198678 +v -13.721408 -81.314972 0.877478 +v -13.278590 -81.314972 0.877478 +v -13.612224 -81.311890 0.894569 +v -13.387774 -81.311890 0.894569 +v -13.612420 -81.307587 0.198678 +v -13.387578 -81.307587 0.198678 +v -13.612420 -81.307587 0.877478 +v -13.387578 -81.307587 0.877478 +v -13.499999 -81.305031 0.198678 +v -13.499999 -81.305031 0.877478 +v -13.723424 -81.292580 0.367716 +v -13.276574 -81.292580 0.367716 +v -13.723424 -81.292580 0.708439 +v -13.276574 -81.292580 0.708439 +v -13.724097 -81.285095 0.538078 +v -13.275901 -81.285095 0.538078 +v -13.499999 -81.282547 0.367716 +v -13.499999 -81.282547 0.708439 +v -13.499999 -81.275032 0.538078 + +f 6557 6555 6553 +f 6555 6560 6553 +f 6560 6556 6553 +f 6559 6557 6553 +f 6554 6559 6553 +f 6556 6554 6553 +f 6556 6558 6554 +f 6558 6569 6554 +f 6569 6562 6554 +f 6562 6559 6554 +f 6565 6560 6555 +f 6563 6565 6555 +f 6561 6563 6555 +f 6557 6561 6555 +f 6560 6576 6556 +f 6576 6567 6556 +f 6567 6558 6556 +f 6568 6561 6557 +f 6575 6568 6557 +f 6559 6575 6557 +f 6567 6574 6558 +f 6574 6589 6558 +f 6589 6569 6558 +f 6562 6570 6559 +f 6570 6575 6559 +f 6587 6576 6560 +f 6565 6587 6560 +f 6566 6563 6561 +f 6577 6566 6561 +f 6568 6577 6561 +f 6577 6588 6566 +f 6576 6612 6567 +f 6612 6602 6567 +f 6602 6574 6567 +f 6603 6577 6568 +f 6611 6603 6568 +f 6575 6611 6568 +f 6590 6575 6570 +f 6602 6610 6574 +f 6610 6623 6574 +f 6623 6589 6574 +f 6590 6611 6575 +f 6621 6612 6576 +f 6587 6621 6576 +f 6613 6588 6577 +f 6603 6613 6577 +f 6613 6622 6588 +f 6624 6611 6590 +f 6612 6648 6602 +f 6648 6640 6602 +f 6640 6610 6602 +f 6641 6613 6603 +f 6647 6641 6603 +f 6611 6647 6603 +f 6640 6646 6610 +f 6646 6654 6610 +f 6654 6623 6610 +f 6624 6647 6611 +f 6650 6648 6612 +f 6621 6650 6612 +f 6649 6622 6613 +f 6641 6649 6613 +f 6649 6651 6622 +f 6655 6647 6624 +f 6648 6681 6640 +f 6681 6677 6640 +f 6677 6646 6640 +f 6678 6649 6641 +f 6680 6678 6641 +f 6647 6680 6641 +f 6677 6679 6646 +f 6679 6693 6646 +f 6693 6654 6646 +f 6655 6680 6647 +f 6689 6681 6648 +f 6650 6689 6648 +f 6682 6651 6649 +f 6678 6682 6649 +f 6682 6690 6651 +f 6694 6680 6655 +f 6681 6726 6677 +f 6726 6722 6677 +f 6722 6679 6677 +f 6723 6682 6678 +f 6725 6723 6678 +f 6680 6725 6678 +f 6722 6724 6679 +f 6724 6736 6679 +f 6736 6693 6679 +f 6694 6725 6680 +f 6732 6726 6681 +f 6689 6732 6681 +f 6727 6690 6682 +f 6723 6727 6682 +f 6727 6733 6690 +f 6737 6725 6694 +f 6726 6773 6722 +f 6773 6767 6722 +f 6767 6724 6722 +f 6768 6727 6723 +f 6772 6768 6723 +f 6725 6772 6723 +f 6767 6771 6724 +f 6771 6788 6724 +f 6788 6736 6724 +f 6737 6772 6725 +f 6782 6773 6726 +f 6732 6782 6726 +f 6774 6733 6727 +f 6768 6774 6727 +f 6774 6783 6733 +f 6789 6772 6737 +f 6773 6833 6767 +f 6833 6827 6767 +f 6827 6771 6767 +f 6828 6774 6768 +f 6832 6828 6768 +f 6772 6832 6768 +f 6827 6831 6771 +f 6831 6845 6771 +f 6845 6788 6771 +f 6789 6832 6772 +f 6841 6833 6773 +f 6782 6841 6773 +f 6834 6783 6774 +f 6828 6834 6774 +f 6834 6842 6783 +f 6846 6832 6789 +f 6833 6893 6827 +f 6893 6887 6827 +f 6887 6831 6827 +f 6888 6834 6828 +f 6892 6888 6828 +f 6832 6892 6828 +f 6887 6891 6831 +f 6891 6907 6831 +f 6907 6845 6831 +f 6846 6892 6832 +f 6899 6893 6833 +f 6841 6899 6833 +f 6894 6842 6834 +f 6888 6894 6834 +f 6894 6900 6842 +f 6908 6892 6846 +f 6893 6949 6887 +f 6949 6943 6887 +f 6943 6891 6887 +f 6944 6894 6888 +f 6948 6944 6888 +f 6892 6948 6888 +f 6943 6947 6891 +f 6947 6961 6891 +f 6961 6907 6891 +f 6908 6948 6892 +f 6955 6949 6893 +f 6899 6955 6893 +f 6950 6900 6894 +f 6944 6950 6894 +f 6950 6956 6900 +f 6962 6948 6908 +f 6949 7009 6943 +f 7009 7005 6943 +f 7005 6947 6943 +f 6948 7008 6944 +f 7006 6950 6944 +f 7008 7006 6944 +f 7005 7007 6947 +f 7007 7015 6947 +f 7015 6961 6947 +f 6962 7008 6948 +f 7017 7009 6949 +f 6955 7017 6949 +f 7010 6956 6950 +f 7006 7010 6950 +f 7010 7018 6956 +f 7016 7008 6962 +f 7140 7007 7005 +f 7144 7140 7005 +f 7009 7144 7005 +f 7141 7010 7006 +f 7143 7141 7006 +f 7008 7143 7006 +f 7142 7152 7007 +f 7140 7142 7007 +f 7152 7021 7007 +f 7021 7015 7007 +f 7022 7143 7008 +f 7016 7022 7008 +f 7154 7144 7009 +f 7017 7154 7009 +f 7145 7018 7010 +f 7141 7145 7010 +f 7145 7155 7018 +f 7153 7143 7022 +f 7144 7224 7140 +f 7224 7220 7140 +f 7220 7142 7140 +f 7221 7145 7141 +f 7223 7221 7141 +f 7143 7223 7141 +f 7164 7152 7142 +f 7220 7222 7142 +f 7222 7230 7142 +f 7230 7164 7142 +f 7153 7165 7143 +f 7165 7223 7143 +f 7154 7232 7144 +f 7232 7224 7144 +f 7225 7155 7145 +f 7221 7225 7145 +f 7225 7233 7155 +f 7231 7223 7165 +f 7224 7319 7220 +f 7319 7313 7220 +f 7313 7222 7220 +f 7314 7225 7221 +f 7318 7314 7221 +f 7223 7318 7221 +f 7243 7230 7222 +f 7313 7317 7222 +f 7317 7323 7222 +f 7323 7243 7222 +f 7231 7244 7223 +f 7244 7318 7223 +f 7232 7245 7224 +f 7245 7319 7224 +f 7326 7246 7225 +f 7246 7233 7225 +f 7320 7326 7225 +f 7314 7320 7225 +f 7324 7318 7244 +f 7325 7319 7245 +f 7319 7405 7313 +f 7405 7401 7313 +f 7401 7317 7313 +f 7402 7320 7314 +f 7404 7402 7314 +f 7318 7404 7314 +f 7343 7323 7317 +f 7401 7403 7317 +f 7403 7413 7317 +f 7413 7343 7317 +f 7324 7344 7318 +f 7344 7404 7318 +f 7325 7345 7319 +f 7345 7405 7319 +f 7346 7326 7320 +f 7416 7346 7320 +f 7406 7416 7320 +f 7402 7406 7320 +f 7414 7404 7344 +f 7415 7405 7345 +f 7405 7507 7401 +f 7507 7503 7401 +f 7503 7403 7401 +f 7504 7406 7402 +f 7506 7504 7402 +f 7404 7506 7402 +f 7425 7413 7403 +f 7503 7505 7403 +f 7505 7509 7403 +f 7509 7425 7403 +f 7414 7426 7404 +f 7426 7506 7404 +f 7415 7427 7405 +f 7427 7507 7405 +f 7428 7416 7406 +f 7512 7428 7406 +f 7508 7512 7406 +f 7504 7508 7406 +f 7510 7506 7426 +f 7511 7507 7427 +f 7507 7664 7503 +f 7664 7660 7503 +f 7660 7505 7503 +f 7661 7508 7504 +f 7663 7661 7504 +f 7506 7663 7504 +f 7525 7509 7505 +f 7660 7662 7505 +f 7662 7666 7505 +f 7666 7525 7505 +f 7510 7526 7506 +f 7526 7663 7506 +f 7511 7527 7507 +f 7527 7664 7507 +f 7528 7512 7508 +f 7669 7528 7508 +f 7665 7669 7508 +f 7661 7665 7508 +f 7667 7663 7526 +f 7668 7664 7527 +f 7664 7731 7660 +f 7731 7733 7660 +f 7733 7662 7660 +f 7734 7665 7661 +f 7730 7734 7661 +f 7663 7730 7661 +f 7674 7666 7662 +f 7733 7729 7662 +f 7729 7725 7662 +f 7725 7674 7662 +f 7667 7675 7663 +f 7675 7730 7663 +f 7668 7676 7664 +f 7676 7731 7664 +f 7677 7669 7665 +f 7728 7677 7665 +f 7732 7728 7665 +f 7734 7732 7665 +f 7726 7730 7675 +f 7727 7731 7676 +f 7729 7803 7725 +f 7804 7730 7726 +f 7805 7731 7727 +f 7732 7806 7728 +f 7733 7900 7729 +f 7900 7896 7729 +f 7896 7890 7729 +f 7890 7803 7729 +f 7897 7734 7730 +f 7804 7897 7730 +f 7805 7898 7731 +f 7898 7733 7731 +f 7893 7806 7732 +f 7899 7893 7732 +f 7901 7899 7732 +f 7734 7901 7732 +f 7898 7900 7733 +f 7897 7901 7734 +f 7891 7897 7804 +f 7892 7898 7805 +f 7896 7940 7890 +f 7941 7897 7891 +f 7942 7898 7892 +f 7899 7943 7893 +f 7900 7994 7896 +f 7994 7990 7896 +f 7990 7986 7896 +f 7986 7940 7896 +f 7991 7901 7897 +f 7941 7991 7897 +f 7942 7992 7898 +f 7992 7900 7898 +f 7989 7943 7899 +f 7993 7989 7899 +f 7995 7993 7899 +f 7901 7995 7899 +f 7992 7994 7900 +f 7991 7995 7901 +f 7987 7991 7941 +f 7988 7992 7942 +f 7990 8030 7986 +f 8031 7991 7987 +f 8032 7992 7988 +f 7993 8033 7989 +f 7994 8090 7990 +f 8090 8084 7990 +f 8084 8078 7990 +f 8078 8030 7990 +f 8085 7995 7991 +f 8031 8085 7991 +f 8032 8086 7992 +f 8086 7994 7992 +f 8081 8033 7993 +f 8087 8081 7993 +f 8091 8087 7993 +f 7995 8091 7993 +f 8086 8090 7994 +f 8085 8091 7995 +f 8079 8085 8031 +f 8080 8086 8032 +f 8084 8124 8078 +f 8125 8085 8079 +f 8126 8086 8080 +f 8087 8127 8081 +f 8090 8186 8084 +f 8186 8178 8084 +f 8178 8174 8084 +f 8174 8124 8084 +f 8179 8091 8085 +f 8125 8179 8085 +f 8126 8180 8086 +f 8180 8090 8086 +f 8177 8127 8087 +f 8181 8177 8087 +f 8187 8181 8087 +f 8091 8187 8087 +f 8180 8186 8090 +f 8179 8187 8091 +f 8175 8179 8125 +f 8176 8180 8126 +f 8178 8210 8174 +f 8211 8179 8175 +f 8212 8180 8176 +f 8181 8213 8177 +f 8186 8260 8178 +f 8260 8254 8178 +f 8254 8248 8178 +f 8248 8210 8178 +f 8255 8187 8179 +f 8211 8255 8179 +f 8212 8256 8180 +f 8256 8186 8180 +f 8251 8213 8181 +f 8257 8251 8181 +f 8261 8257 8181 +f 8187 8261 8181 +f 8256 8260 8186 +f 8255 8261 8187 +f 8249 8255 8211 +f 8250 8256 8212 +f 8254 8294 8248 +f 8295 8255 8249 +f 8296 8256 8250 +f 8257 8297 8251 +f 8260 8405 8254 +f 8405 8401 8254 +f 8401 8391 8254 +f 8391 8294 8254 +f 8402 8261 8255 +f 8295 8402 8255 +f 8296 8403 8256 +f 8403 8260 8256 +f 8394 8297 8257 +f 8404 8394 8257 +f 8406 8404 8257 +f 8261 8406 8257 +f 8403 8405 8260 +f 8402 8406 8261 +f 8392 8402 8295 +f 8393 8403 8296 +f 8401 8425 8391 +f 8426 8402 8392 +f 8427 8403 8393 +f 8404 8428 8394 +f 8405 8470 8401 +f 8470 8464 8401 +f 8464 8455 8401 +f 8455 8425 8401 +f 8465 8406 8402 +f 8426 8465 8402 +f 8427 8466 8403 +f 8466 8405 8403 +f 8458 8428 8404 +f 8467 8458 8404 +f 8471 8467 8404 +f 8406 8471 8404 +f 8466 8470 8405 +f 8465 8471 8406 +f 8456 8465 8426 +f 8457 8466 8427 +f 8464 8488 8455 +f 8489 8465 8456 +f 8490 8466 8457 +f 8467 8491 8458 +f 8470 8528 8464 +f 8528 8524 8464 +f 8524 8514 8464 +f 8514 8488 8464 +f 8525 8471 8465 +f 8489 8525 8465 +f 8490 8526 8466 +f 8526 8470 8466 +f 8517 8491 8467 +f 8527 8517 8467 +f 8529 8527 8467 +f 8471 8529 8467 +f 8526 8528 8470 +f 8525 8529 8471 +f 8515 8525 8489 +f 8516 8526 8490 +f 8524 8552 8514 +f 8553 8525 8515 +f 8554 8526 8516 +f 8527 8555 8517 +f 8528 8591 8524 +f 8591 8585 8524 +f 8585 8577 8524 +f 8577 8552 8524 +f 8586 8529 8525 +f 8553 8586 8525 +f 8554 8587 8526 +f 8587 8528 8526 +f 8580 8555 8527 +f 8588 8580 8527 +f 8592 8588 8527 +f 8529 8592 8527 +f 8587 8591 8528 +f 8586 8592 8529 +f 8578 8586 8553 +f 8579 8587 8554 +f 8585 8613 8577 +f 8614 8586 8578 +f 8615 8587 8579 +f 8588 8616 8580 +f 8591 8658 8585 +f 8658 8654 8585 +f 8654 8641 8585 +f 8641 8613 8585 +f 8655 8592 8586 +f 8614 8655 8586 +f 8615 8656 8587 +f 8656 8591 8587 +f 8644 8616 8588 +f 8657 8644 8588 +f 8659 8657 8588 +f 8592 8659 8588 +f 8656 8658 8591 +f 8655 8659 8592 +f 8642 8655 8614 +f 8643 8656 8615 +f 8654 8672 8641 +f 8673 8655 8642 +f 8674 8656 8643 +f 8657 8675 8644 +f 8658 8710 8654 +f 8710 8702 8654 +f 8702 8692 8654 +f 8692 8672 8654 +f 8703 8659 8655 +f 8673 8703 8655 +f 8674 8704 8656 +f 8704 8658 8656 +f 8695 8675 8657 +f 8705 8695 8657 +f 8711 8705 8657 +f 8659 8711 8657 +f 8704 8710 8658 +f 8703 8711 8659 +f 8693 8703 8673 +f 8694 8704 8674 +f 8702 8722 8692 +f 8723 8703 8693 +f 8724 8704 8694 +f 8705 8725 8695 +f 8710 8761 8702 +f 8761 8753 8702 +f 8753 8741 8702 +f 8741 8722 8702 +f 8754 8711 8703 +f 8723 8754 8703 +f 8724 8755 8704 +f 8755 8710 8704 +f 8744 8725 8705 +f 8756 8744 8705 +f 8762 8756 8705 +f 8711 8762 8705 +f 8755 8761 8710 +f 8754 8762 8711 +f 8742 8754 8723 +f 8743 8755 8724 +f 8753 8767 8741 +f 8768 8754 8742 +f 8769 8755 8743 +f 8756 8770 8744 +f 8761 8803 8753 +f 8803 8793 8753 +f 8793 8781 8753 +f 8781 8767 8753 +f 8794 8762 8754 +f 8768 8794 8754 +f 8769 8795 8755 +f 8795 8761 8755 +f 8784 8770 8756 +f 8796 8784 8756 +f 8804 8796 8756 +f 8762 8804 8756 +f 8795 8803 8761 +f 8794 8804 8762 +f 8782 8794 8768 +f 8783 8795 8769 +f 8793 8809 8781 +f 8810 8794 8782 +f 8811 8795 8783 +f 8796 8812 8784 +f 8803 8845 8793 +f 8845 8835 8793 +f 8835 8821 8793 +f 8821 8809 8793 +f 8836 8804 8794 +f 8810 8836 8794 +f 8811 8837 8795 +f 8837 8803 8795 +f 8824 8812 8796 +f 8838 8824 8796 +f 8846 8838 8796 +f 8804 8846 8796 +f 8837 8845 8803 +f 8836 8846 8804 +f 8822 8836 8810 +f 8823 8837 8811 +f 8835 8841 8821 +f 8842 8836 8822 +f 8843 8837 8823 +f 8838 8844 8824 +f 8845 8882 8835 +f 8882 8876 8835 +f 8876 8858 8835 +f 8858 8841 8835 +f 8877 8846 8836 +f 8842 8877 8836 +f 8843 8878 8837 +f 8878 8845 8837 +f 8861 8844 8838 +f 8879 8861 8838 +f 8883 8879 8838 +f 8846 8883 8838 +f 8859 8877 8842 +f 8860 8878 8843 +f 8878 8882 8845 +f 8877 8883 8846 +f 8876 8870 8858 +f 8871 8877 8859 +f 8872 8878 8860 +f 8879 8873 8861 +f 8876 8884 8870 +f 8897 8877 8871 +f 8885 8897 8871 +f 8886 8898 8872 +f 8898 8878 8872 +f 8879 8887 8873 +f 8882 8900 8876 +f 8900 8896 8876 +f 8896 8884 8876 +f 8897 8883 8877 +f 8898 8882 8878 +f 8899 8887 8879 +f 8901 8899 8879 +f 8883 8901 8879 +f 8898 8900 8882 +f 8897 8901 8883 +f 8896 8890 8884 +f 8891 8897 8885 +f 8892 8898 8886 +f 8899 8893 8887 +f 8896 8894 8890 +f 8902 8897 8891 +f 8894 8902 8891 +f 8895 8903 8892 +f 8903 8898 8892 +f 8899 8895 8893 +f 8896 8902 8894 +f 8899 8903 8895 +f 8900 8904 8896 +f 8904 8902 8896 +f 8902 8901 8897 +f 8903 8900 8898 +f 8904 8903 8899 +f 8901 8904 8899 +f 8903 8904 8900 +f 8902 8904 8901 +f 6586 6570 6562 +f 6581 6586 6562 +f 6569 6581 6562 +f 6585 6581 6569 +f 6589 6585 6569 +f 6609 6590 6570 +f 6586 6609 6570 +f 6618 6586 6581 +f 6585 6614 6581 +f 6614 6618 6581 +f 6589 6608 6585 +f 6608 6617 6585 +f 6617 6614 6585 +f 6618 6632 6586 +f 6632 6609 6586 +f 6623 6608 6589 +f 6636 6624 6590 +f 6609 6636 6590 +f 6623 6635 6608 +f 6635 6631 6608 +f 6631 6617 6608 +f 6632 6653 6609 +f 6653 6636 6609 +f 6645 6618 6614 +f 6617 6639 6614 +f 6639 6645 6614 +f 6631 6644 6617 +f 6644 6639 6617 +f 6645 6657 6618 +f 6657 6632 6618 +f 6654 6635 6623 +f 6667 6655 6624 +f 6636 6667 6624 +f 6635 6652 6631 +f 6652 6656 6631 +f 6656 6644 6631 +f 6657 6676 6632 +f 6676 6653 6632 +f 6654 6666 6635 +f 6666 6652 6635 +f 6653 6684 6636 +f 6684 6667 6636 +f 6674 6645 6639 +f 6644 6670 6639 +f 6670 6674 6639 +f 6656 6673 6644 +f 6673 6670 6644 +f 6674 6686 6645 +f 6686 6657 6645 +f 6666 6683 6652 +f 6683 6675 6652 +f 6675 6656 6652 +f 6676 6709 6653 +f 6709 6684 6653 +f 6693 6666 6654 +f 6704 6694 6655 +f 6667 6704 6655 +f 6675 6685 6656 +f 6685 6673 6656 +f 6686 6711 6657 +f 6711 6676 6657 +f 6693 6703 6666 +f 6703 6683 6666 +f 6684 6719 6667 +f 6719 6704 6667 +f 6713 6674 6670 +f 6673 6707 6670 +f 6707 6713 6670 +f 6685 6712 6673 +f 6712 6707 6673 +f 6713 6721 6674 +f 6721 6686 6674 +f 6683 6708 6675 +f 6708 6710 6675 +f 6710 6685 6675 +f 6711 6731 6676 +f 6731 6709 6676 +f 6703 6718 6683 +f 6718 6708 6683 +f 6709 6743 6684 +f 6743 6719 6684 +f 6710 6720 6685 +f 6720 6712 6685 +f 6721 6739 6686 +f 6739 6711 6686 +f 6736 6703 6693 +f 6752 6737 6694 +f 6704 6752 6694 +f 6736 6751 6703 +f 6751 6718 6703 +f 6719 6760 6704 +f 6760 6752 6704 +f 6750 6713 6707 +f 6712 6746 6707 +f 6746 6750 6707 +f 6718 6742 6708 +f 6742 6730 6708 +f 6730 6710 6708 +f 6731 6764 6709 +f 6764 6743 6709 +f 6730 6738 6710 +f 6738 6720 6710 +f 6739 6762 6711 +f 6762 6731 6711 +f 6720 6749 6712 +f 6749 6746 6712 +f 6750 6758 6713 +f 6758 6721 6713 +f 6751 6759 6718 +f 6759 6742 6718 +f 6743 6780 6719 +f 6780 6760 6719 +f 6738 6757 6720 +f 6757 6749 6720 +f 6758 6770 6721 +f 6770 6739 6721 +f 6742 6763 6730 +f 6763 6761 6730 +f 6761 6738 6730 +f 6762 6799 6731 +f 6799 6764 6731 +f 6788 6751 6736 +f 6801 6789 6737 +f 6752 6801 6737 +f 6761 6769 6738 +f 6769 6757 6738 +f 6770 6803 6739 +f 6803 6762 6739 +f 6759 6779 6742 +f 6779 6763 6742 +f 6764 6813 6743 +f 6813 6780 6743 +f 6785 6750 6746 +f 6749 6781 6746 +f 6781 6785 6746 +f 6757 6784 6749 +f 6784 6781 6749 +f 6785 6797 6750 +f 6797 6758 6750 +f 6788 6800 6751 +f 6800 6759 6751 +f 6760 6815 6752 +f 6815 6801 6752 +f 6769 6796 6757 +f 6796 6784 6757 +f 6797 6817 6758 +f 6817 6770 6758 +f 6800 6814 6759 +f 6814 6779 6759 +f 6780 6826 6760 +f 6826 6815 6760 +f 6763 6798 6761 +f 6798 6802 6761 +f 6802 6769 6761 +f 6803 6824 6762 +f 6824 6799 6762 +f 6779 6812 6763 +f 6812 6798 6763 +f 6799 6836 6764 +f 6836 6813 6764 +f 6802 6816 6769 +f 6816 6796 6769 +f 6817 6838 6770 +f 6838 6803 6770 +f 6814 6825 6779 +f 6825 6812 6779 +f 6813 6858 6780 +f 6858 6826 6780 +f 6822 6785 6781 +f 6784 6820 6781 +f 6820 6822 6781 +f 6796 6821 6784 +f 6821 6820 6784 +f 6822 6840 6785 +f 6840 6797 6785 +f 6845 6800 6788 +f 6860 6846 6789 +f 6801 6860 6789 +f 6816 6839 6796 +f 6839 6821 6796 +f 6840 6854 6797 +f 6854 6817 6797 +f 6812 6835 6798 +f 6835 6823 6798 +f 6823 6802 6798 +f 6824 6868 6799 +f 6868 6836 6799 +f 6845 6859 6800 +f 6859 6814 6800 +f 6815 6870 6801 +f 6870 6860 6801 +f 6823 6837 6802 +f 6837 6816 6802 +f 6838 6866 6803 +f 6866 6824 6803 +f 6825 6857 6812 +f 6857 6835 6812 +f 6836 6880 6813 +f 6880 6858 6813 +f 6859 6869 6814 +f 6869 6825 6814 +f 6826 6882 6815 +f 6882 6870 6815 +f 6837 6853 6816 +f 6853 6839 6816 +f 6854 6874 6817 +f 6874 6838 6817 +f 6835 6867 6823 +f 6867 6865 6823 +f 6865 6837 6823 +f 6866 6896 6824 +f 6896 6868 6824 +f 6869 6881 6825 +f 6881 6857 6825 +f 6858 6902 6826 +f 6902 6882 6826 +f 6857 6879 6835 +f 6879 6867 6835 +f 6868 6906 6836 +f 6906 6880 6836 +f 6865 6873 6837 +f 6873 6853 6837 +f 6874 6898 6838 +f 6898 6866 6838 +f 6907 6859 6845 +f 6916 6908 6846 +f 6860 6916 6846 +f 6881 6901 6857 +f 6901 6879 6857 +f 6880 6928 6858 +f 6928 6902 6858 +f 6907 6915 6859 +f 6915 6869 6859 +f 6870 6924 6860 +f 6924 6916 6860 +f 6867 6895 6865 +f 6895 6897 6865 +f 6897 6873 6865 +f 6898 6930 6866 +f 6930 6896 6866 +f 6879 6905 6867 +f 6905 6895 6867 +f 6896 6932 6868 +f 6932 6906 6868 +f 6915 6923 6869 +f 6923 6881 6869 +f 6882 6934 6870 +f 6934 6924 6870 +f 6901 6927 6879 +f 6927 6905 6879 +f 6906 6940 6880 +f 6940 6928 6880 +f 6923 6933 6881 +f 6933 6901 6881 +f 6902 6954 6882 +f 6954 6934 6882 +f 6905 6931 6895 +f 6931 6929 6895 +f 6929 6897 6895 +f 6930 6960 6896 +f 6960 6932 6896 +f 6933 6953 6901 +f 6953 6927 6901 +f 6928 6976 6902 +f 6976 6954 6902 +f 6927 6939 6905 +f 6939 6931 6905 +f 6932 6978 6906 +f 6978 6940 6906 +f 6961 6915 6907 +f 6972 6962 6908 +f 6916 6972 6908 +f 6961 6971 6915 +f 6971 6923 6915 +f 6924 6986 6916 +f 6986 6972 6916 +f 6971 6985 6923 +f 6985 6933 6923 +f 6934 6990 6924 +f 6990 6986 6924 +f 6953 6975 6927 +f 6975 6939 6927 +f 6940 6994 6928 +f 6994 6976 6928 +f 6931 6959 6929 +f 6939 6977 6931 +f 6977 6959 6931 +f 6960 6998 6932 +f 6998 6978 6932 +f 6985 6989 6933 +f 6989 6953 6933 +f 6954 7002 6934 +f 7002 6990 6934 +f 6975 6993 6939 +f 6993 6977 6939 +f 6978 7012 6940 +f 7012 6994 6940 +f 6989 7001 6953 +f 7001 6975 6953 +f 6976 7020 6954 +f 7020 7002 6954 +f 6977 6997 6959 +f 7015 6971 6961 +f 6972 7016 6962 +f 7015 7032 6971 +f 7032 6985 6971 +f 7033 7016 6972 +f 6986 7060 6972 +f 7060 7033 6972 +f 7001 7019 6975 +f 7019 6993 6975 +f 6994 7073 6976 +f 7073 7020 6976 +f 6993 7011 6977 +f 7011 6997 6977 +f 6998 7056 6978 +f 7056 7012 6978 +f 7032 7059 6985 +f 7059 6989 6985 +f 6990 7105 6986 +f 7105 7060 6986 +f 7059 7104 6989 +f 7104 7001 6989 +f 7002 7133 6990 +f 7133 7105 6990 +f 7019 7072 6993 +f 7072 7011 6993 +f 7012 7131 6994 +f 7131 7073 6994 +f 7011 7055 6997 +f 7104 7132 7001 +f 7132 7019 7001 +f 7020 7147 7002 +f 7147 7133 7002 +f 7072 7130 7011 +f 7130 7055 7011 +f 7056 7157 7012 +f 7157 7131 7012 +f 7021 7032 7015 +f 7033 7022 7016 +f 7132 7146 7019 +f 7146 7072 7019 +f 7073 7171 7020 +f 7171 7147 7020 +f 7152 7032 7021 +f 7033 7153 7022 +f 7152 7174 7032 +f 7174 7059 7032 +f 7175 7153 7033 +f 7060 7185 7033 +f 7185 7175 7033 +f 7130 7156 7055 +f 7174 7184 7059 +f 7184 7104 7059 +f 7105 7195 7060 +f 7195 7185 7060 +f 7146 7170 7072 +f 7170 7130 7072 +f 7131 7193 7073 +f 7193 7171 7073 +f 7184 7194 7104 +f 7194 7132 7104 +f 7133 7199 7105 +f 7199 7195 7105 +f 7170 7192 7130 +f 7192 7156 7130 +f 7157 7205 7131 +f 7205 7193 7131 +f 7194 7198 7132 +f 7198 7146 7132 +f 7147 7215 7133 +f 7215 7199 7133 +f 7198 7214 7146 +f 7214 7170 7146 +f 7171 7236 7147 +f 7236 7215 7147 +f 7164 7174 7152 +f 7175 7165 7153 +f 7192 7204 7156 +f 7230 7174 7164 +f 7175 7231 7165 +f 7214 7235 7170 +f 7235 7192 7170 +f 7193 7258 7171 +f 7258 7236 7171 +f 7230 7255 7174 +f 7255 7184 7174 +f 7256 7231 7175 +f 7185 7266 7175 +f 7266 7256 7175 +f 7255 7265 7184 +f 7265 7194 7184 +f 7195 7274 7185 +f 7274 7266 7185 +f 7235 7257 7192 +f 7257 7204 7192 +f 7205 7276 7193 +f 7276 7258 7193 +f 7265 7273 7194 +f 7273 7198 7194 +f 7199 7280 7195 +f 7280 7274 7195 +f 7273 7279 7198 +f 7279 7214 7198 +f 7215 7294 7199 +f 7294 7280 7199 +f 7257 7275 7204 +f 7279 7293 7214 +f 7293 7235 7214 +f 7236 7306 7215 +f 7306 7294 7215 +f 7243 7255 7230 +f 7256 7244 7231 +f 7293 7305 7235 +f 7305 7257 7235 +f 7258 7332 7236 +f 7332 7306 7236 +f 7323 7255 7243 +f 7256 7324 7244 +f 7323 7355 7255 +f 7355 7265 7255 +f 7356 7324 7256 +f 7266 7362 7256 +f 7362 7356 7256 +f 7305 7331 7257 +f 7331 7275 7257 +f 7276 7350 7258 +f 7350 7332 7258 +f 7355 7361 7265 +f 7361 7273 7265 +f 7274 7366 7266 +f 7366 7362 7266 +f 7361 7365 7273 +f 7365 7279 7273 +f 7280 7372 7274 +f 7372 7366 7274 +f 7331 7349 7275 +f 7365 7371 7279 +f 7371 7293 7279 +f 7294 7384 7280 +f 7384 7372 7280 +f 7371 7383 7293 +f 7383 7305 7293 +f 7306 7392 7294 +f 7392 7384 7294 +f 7383 7391 7305 +f 7391 7331 7305 +f 7332 7400 7306 +f 7400 7392 7306 +f 7343 7355 7323 +f 7356 7344 7324 +f 7391 7399 7331 +f 7399 7349 7331 +f 7350 7408 7332 +f 7408 7400 7332 +f 7413 7355 7343 +f 7356 7414 7344 +f 7399 7407 7349 +f 7413 7437 7355 +f 7437 7361 7355 +f 7438 7414 7356 +f 7362 7446 7356 +f 7446 7438 7356 +f 7437 7445 7361 +f 7445 7365 7361 +f 7366 7448 7362 +f 7448 7446 7362 +f 7445 7447 7365 +f 7447 7371 7365 +f 7372 7456 7366 +f 7456 7448 7366 +f 7447 7455 7371 +f 7455 7383 7371 +f 7384 7462 7372 +f 7462 7456 7372 +f 7455 7461 7383 +f 7461 7391 7383 +f 7392 7470 7384 +f 7470 7462 7384 +f 7461 7469 7391 +f 7469 7399 7391 +f 7400 7476 7392 +f 7476 7470 7392 +f 7469 7475 7399 +f 7475 7407 7399 +f 7408 7482 7400 +f 7482 7476 7400 +f 7475 7481 7407 +f 7425 7437 7413 +f 7438 7426 7414 +f 7509 7437 7425 +f 7438 7510 7426 +f 7509 7535 7437 +f 7535 7445 7437 +f 7536 7510 7438 +f 7446 7544 7438 +f 7544 7536 7438 +f 7535 7543 7445 +f 7543 7447 7445 +f 7448 7546 7446 +f 7546 7544 7446 +f 7543 7545 7447 +f 7545 7455 7447 +f 7456 7554 7448 +f 7554 7546 7448 +f 7545 7553 7455 +f 7553 7461 7455 +f 7462 7556 7456 +f 7556 7554 7456 +f 7553 7555 7461 +f 7555 7469 7461 +f 7470 7562 7462 +f 7562 7556 7462 +f 7555 7561 7469 +f 7561 7475 7469 +f 7476 7566 7470 +f 7566 7562 7470 +f 7561 7565 7475 +f 7565 7481 7475 +f 7482 7572 7476 +f 7572 7566 7476 +f 7565 7571 7481 +f 7525 7535 7509 +f 7536 7526 7510 +f 7666 7535 7525 +f 7536 7667 7526 +f 7666 7684 7535 +f 7684 7543 7535 +f 7685 7667 7536 +f 7544 7691 7536 +f 7691 7685 7536 +f 7684 7690 7543 +f 7690 7545 7543 +f 7546 7693 7544 +f 7693 7691 7544 +f 7690 7692 7545 +f 7692 7553 7545 +f 7554 7699 7546 +f 7699 7693 7546 +f 7692 7698 7553 +f 7698 7555 7553 +f 7556 7701 7554 +f 7701 7699 7554 +f 7698 7700 7555 +f 7700 7561 7555 +f 7562 7703 7556 +f 7703 7701 7556 +f 7700 7702 7561 +f 7702 7565 7561 +f 7566 7705 7562 +f 7705 7703 7562 +f 7702 7704 7565 +f 7704 7571 7565 +f 7572 7707 7566 +f 7707 7705 7566 +f 7704 7706 7571 +f 7674 7684 7666 +f 7685 7675 7667 +f 7725 7684 7674 +f 7685 7726 7675 +f 7725 7795 7684 +f 7795 7690 7684 +f 7796 7726 7685 +f 7691 7788 7685 +f 7788 7796 7685 +f 7795 7787 7690 +f 7787 7692 7690 +f 7693 7784 7691 +f 7784 7788 7691 +f 7787 7783 7692 +f 7783 7698 7692 +f 7699 7774 7693 +f 7774 7784 7693 +f 7783 7773 7698 +f 7773 7700 7698 +f 7701 7758 7699 +f 7758 7774 7699 +f 7773 7757 7700 +f 7757 7702 7700 +f 7703 7751 7701 +f 7751 7758 7701 +f 7757 7750 7702 +f 7750 7704 7702 +f 7705 7746 7703 +f 7746 7751 7703 +f 7750 7745 7704 +f 7745 7706 7704 +f 7707 7742 7705 +f 7742 7746 7705 +f 7745 7741 7706 +f 7803 7795 7725 +f 7796 7804 7726 +f 7886 7876 7741 +f 7745 7886 7741 +f 7877 7746 7742 +f 7894 7886 7745 +f 7750 7894 7745 +f 7887 7751 7746 +f 7877 7887 7746 +f 7904 7894 7750 +f 7757 7904 7750 +f 7895 7758 7751 +f 7887 7895 7751 +f 7908 7904 7757 +f 7773 7908 7757 +f 7905 7774 7758 +f 7895 7905 7758 +f 7916 7908 7773 +f 7783 7916 7773 +f 7909 7784 7774 +f 7905 7909 7774 +f 7924 7916 7783 +f 7787 7924 7783 +f 7917 7788 7784 +f 7909 7917 7784 +f 7932 7924 7787 +f 7795 7932 7787 +f 7925 7796 7788 +f 7917 7925 7788 +f 7803 7932 7795 +f 7933 7891 7796 +f 7891 7804 7796 +f 7925 7933 7796 +f 7890 7932 7803 +f 7974 7966 7876 +f 7886 7974 7876 +f 7967 7887 7877 +f 7980 7974 7886 +f 7894 7980 7886 +f 7975 7895 7887 +f 7967 7975 7887 +f 7940 7932 7890 +f 7933 7941 7891 +f 7984 7980 7894 +f 7904 7984 7894 +f 7981 7905 7895 +f 7975 7981 7895 +f 8002 7984 7904 +f 7908 8002 7904 +f 7985 7909 7905 +f 7981 7985 7905 +f 8008 8002 7908 +f 7916 8008 7908 +f 8003 7917 7909 +f 7985 8003 7909 +f 8014 8008 7916 +f 7924 8014 7916 +f 8009 7925 7917 +f 8003 8009 7917 +f 8022 8014 7924 +f 7932 8022 7924 +f 8015 7933 7925 +f 8009 8015 7925 +f 7940 8022 7932 +f 8023 7987 7933 +f 7987 7941 7933 +f 8015 8023 7933 +f 7986 8022 7940 +f 8046 8038 7966 +f 7974 8046 7966 +f 8039 7975 7967 +f 8054 8046 7974 +f 7980 8054 7974 +f 8047 7981 7975 +f 8039 8047 7975 +f 8064 8054 7980 +f 7984 8064 7980 +f 8055 7985 7981 +f 8047 8055 7981 +f 8076 8064 7984 +f 8002 8076 7984 +f 8065 8003 7985 +f 8055 8065 7985 +f 8030 8022 7986 +f 8023 8031 7987 +f 8092 8076 8002 +f 8008 8092 8002 +f 8077 8009 8003 +f 8065 8077 8003 +f 8104 8092 8008 +f 8014 8104 8008 +f 8093 8015 8009 +f 8077 8093 8009 +f 8112 8104 8014 +f 8022 8112 8014 +f 8105 8023 8015 +f 8093 8105 8015 +f 8030 8112 8022 +f 8113 8079 8023 +f 8079 8031 8023 +f 8105 8113 8023 +f 8078 8112 8030 +f 8134 8096 8038 +f 8046 8134 8038 +f 8097 8047 8039 +f 8142 8134 8046 +f 8054 8142 8046 +f 8135 8055 8047 +f 8097 8135 8047 +f 8156 8142 8054 +f 8064 8156 8054 +f 8143 8065 8055 +f 8135 8143 8055 +f 8164 8156 8064 +f 8076 8164 8064 +f 8157 8077 8065 +f 8143 8157 8065 +f 8184 8164 8076 +f 8092 8184 8076 +f 8165 8093 8077 +f 8157 8165 8077 +f 8124 8112 8078 +f 8113 8125 8079 +f 8192 8184 8092 +f 8104 8192 8092 +f 8185 8105 8093 +f 8165 8185 8093 +f 8188 8162 8096 +f 8134 8188 8096 +f 8163 8135 8097 +f 8200 8192 8104 +f 8112 8200 8104 +f 8193 8113 8105 +f 8185 8193 8105 +f 8124 8200 8112 +f 8201 8175 8113 +f 8175 8125 8113 +f 8193 8201 8113 +f 8174 8200 8124 +f 8218 8188 8134 +f 8142 8218 8134 +f 8189 8143 8135 +f 8163 8189 8135 +f 8230 8218 8142 +f 8156 8230 8142 +f 8219 8157 8143 +f 8189 8219 8143 +f 8238 8230 8156 +f 8164 8238 8156 +f 8231 8165 8157 +f 8219 8231 8157 +f 8244 8232 8162 +f 8188 8244 8162 +f 8233 8189 8163 +f 8252 8238 8164 +f 8184 8252 8164 +f 8239 8185 8165 +f 8231 8239 8165 +f 8210 8200 8174 +f 8201 8211 8175 +f 8264 8252 8184 +f 8192 8264 8184 +f 8253 8193 8185 +f 8239 8253 8185 +f 8270 8244 8188 +f 8218 8270 8188 +f 8245 8219 8189 +f 8233 8245 8189 +f 8278 8264 8192 +f 8200 8278 8192 +f 8265 8201 8193 +f 8253 8265 8193 +f 8210 8278 8200 +f 8279 8249 8201 +f 8249 8211 8201 +f 8265 8279 8201 +f 8248 8278 8210 +f 8318 8270 8218 +f 8230 8318 8218 +f 8271 8231 8219 +f 8245 8271 8219 +f 8370 8318 8230 +f 8238 8370 8230 +f 8319 8239 8231 +f 8271 8319 8231 +f 8359 8290 8232 +f 8244 8359 8232 +f 8291 8245 8233 +f 8387 8370 8238 +f 8252 8387 8238 +f 8371 8253 8239 +f 8319 8371 8239 +f 8395 8359 8244 +f 8270 8395 8244 +f 8360 8271 8245 +f 8291 8360 8245 +f 8294 8278 8248 +f 8279 8295 8249 +f 8407 8387 8252 +f 8264 8407 8252 +f 8388 8265 8253 +f 8371 8388 8253 +f 8415 8407 8264 +f 8278 8415 8264 +f 8408 8279 8265 +f 8388 8408 8265 +f 8421 8395 8270 +f 8318 8421 8270 +f 8396 8319 8271 +f 8360 8396 8271 +f 8294 8415 8278 +f 8416 8392 8279 +f 8392 8295 8279 +f 8408 8416 8279 +f 8429 8389 8290 +f 8359 8429 8290 +f 8390 8360 8291 +f 8391 8415 8294 +f 8435 8421 8318 +f 8370 8435 8318 +f 8422 8371 8319 +f 8396 8422 8319 +f 8445 8429 8359 +f 8395 8445 8359 +f 8430 8396 8360 +f 8390 8430 8360 +f 8449 8435 8370 +f 8387 8449 8370 +f 8436 8388 8371 +f 8422 8436 8371 +f 8468 8449 8387 +f 8407 8468 8387 +f 8450 8408 8388 +f 8436 8450 8388 +f 8461 8437 8389 +f 8429 8461 8389 +f 8438 8430 8390 +f 8425 8415 8391 +f 8416 8426 8392 +f 8472 8445 8395 +f 8421 8472 8395 +f 8446 8422 8396 +f 8430 8446 8396 +f 8480 8468 8407 +f 8415 8480 8407 +f 8469 8416 8408 +f 8450 8469 8408 +f 8425 8480 8415 +f 8481 8456 8416 +f 8456 8426 8416 +f 8469 8481 8416 +f 8496 8472 8421 +f 8435 8496 8421 +f 8473 8436 8422 +f 8446 8473 8422 +f 8455 8480 8425 +f 8498 8461 8429 +f 8445 8498 8429 +f 8462 8446 8430 +f 8438 8462 8430 +f 8510 8496 8435 +f 8449 8510 8435 +f 8497 8450 8436 +f 8473 8497 8436 +f 8504 8476 8437 +f 8461 8504 8437 +f 8477 8462 8438 +f 8512 8498 8445 +f 8472 8512 8445 +f 8499 8473 8446 +f 8462 8499 8446 +f 8520 8510 8449 +f 8468 8520 8449 +f 8511 8469 8450 +f 8497 8511 8450 +f 8488 8480 8455 +f 8481 8489 8456 +f 8532 8504 8461 +f 8498 8532 8461 +f 8505 8499 8462 +f 8477 8505 8462 +f 8538 8520 8468 +f 8480 8538 8468 +f 8521 8481 8469 +f 8511 8521 8469 +f 8548 8512 8472 +f 8496 8548 8472 +f 8513 8497 8473 +f 8499 8513 8473 +f 8544 8506 8476 +f 8504 8544 8476 +f 8507 8505 8477 +f 8488 8538 8480 +f 8539 8515 8481 +f 8515 8489 8481 +f 8521 8539 8481 +f 8514 8538 8488 +f 8569 8548 8496 +f 8510 8569 8496 +f 8549 8511 8497 +f 8513 8549 8497 +f 8567 8532 8498 +f 8512 8567 8498 +f 8533 8513 8499 +f 8505 8533 8499 +f 8573 8544 8504 +f 8532 8573 8504 +f 8545 8533 8505 +f 8507 8545 8505 +f 8571 8534 8506 +f 8544 8571 8506 +f 8535 8545 8507 +f 8581 8569 8510 +f 8520 8581 8510 +f 8570 8521 8511 +f 8549 8570 8511 +f 8595 8567 8512 +f 8548 8595 8512 +f 8568 8549 8513 +f 8533 8568 8513 +f 8552 8538 8514 +f 8539 8553 8515 +f 8599 8581 8520 +f 8538 8599 8520 +f 8582 8539 8521 +f 8570 8582 8521 +f 8617 8573 8532 +f 8567 8617 8532 +f 8574 8568 8533 +f 8545 8574 8533 +f 8607 8563 8534 +f 8571 8607 8534 +f 8572 8545 8535 +f 8564 8572 8535 +f 8552 8599 8538 +f 8600 8578 8539 +f 8578 8553 8539 +f 8582 8600 8539 +f 8619 8571 8544 +f 8573 8619 8544 +f 8572 8574 8545 +f 8623 8595 8548 +f 8569 8623 8548 +f 8596 8570 8549 +f 8568 8596 8549 +f 8577 8599 8552 +f 8627 8575 8563 +f 8607 8627 8563 +f 8608 8572 8564 +f 8576 8608 8564 +f 8637 8617 8567 +f 8595 8637 8567 +f 8618 8596 8568 +f 8574 8618 8568 +f 8633 8623 8569 +f 8581 8633 8569 +f 8624 8582 8570 +f 8596 8624 8570 +f 8635 8607 8571 +f 8619 8635 8571 +f 8620 8574 8572 +f 8608 8620 8572 +f 8650 8619 8573 +f 8617 8650 8573 +f 8620 8618 8574 +f 8631 8593 8575 +f 8627 8631 8575 +f 8628 8608 8576 +f 8594 8628 8576 +f 8613 8599 8577 +f 8600 8614 8578 +f 8662 8633 8581 +f 8599 8662 8581 +f 8634 8600 8582 +f 8624 8634 8582 +f 8645 8603 8593 +f 8631 8645 8593 +f 8632 8628 8594 +f 8604 8632 8594 +f 8676 8637 8595 +f 8623 8676 8595 +f 8638 8624 8596 +f 8618 8638 8596 +f 8613 8662 8599 +f 8663 8642 8600 +f 8642 8614 8600 +f 8634 8663 8600 +f 8646 8604 8603 +f 8645 8646 8603 +f 8646 8632 8604 +f 8668 8627 8607 +f 8635 8668 8607 +f 8636 8620 8608 +f 8628 8636 8608 +f 8641 8662 8613 +f 8686 8650 8617 +f 8637 8686 8617 +f 8651 8638 8618 +f 8620 8651 8618 +f 8684 8635 8619 +f 8650 8684 8619 +f 8636 8651 8620 +f 8690 8676 8623 +f 8633 8690 8623 +f 8677 8634 8624 +f 8638 8677 8624 +f 8682 8631 8627 +f 8668 8682 8627 +f 8669 8636 8628 +f 8632 8669 8628 +f 8688 8645 8631 +f 8682 8688 8631 +f 8683 8669 8632 +f 8646 8683 8632 +f 8708 8690 8633 +f 8662 8708 8633 +f 8691 8663 8634 +f 8677 8691 8634 +f 8698 8668 8635 +f 8684 8698 8635 +f 8685 8651 8636 +f 8669 8685 8636 +f 8714 8686 8637 +f 8676 8714 8637 +f 8687 8677 8638 +f 8651 8687 8638 +f 8672 8662 8641 +f 8663 8673 8642 +f 8689 8646 8645 +f 8688 8689 8645 +f 8689 8683 8646 +f 8718 8684 8650 +f 8686 8718 8650 +f 8685 8687 8651 +f 8672 8708 8662 +f 8709 8693 8663 +f 8693 8673 8663 +f 8691 8709 8663 +f 8726 8682 8668 +f 8698 8726 8668 +f 8699 8685 8669 +f 8683 8699 8669 +f 8692 8708 8672 +f 8734 8714 8676 +f 8690 8734 8676 +f 8715 8691 8677 +f 8687 8715 8677 +f 8732 8688 8682 +f 8726 8732 8682 +f 8727 8699 8683 +f 8689 8727 8683 +f 8738 8698 8684 +f 8718 8738 8684 +f 8719 8687 8685 +f 8699 8719 8685 +f 8745 8718 8686 +f 8714 8745 8686 +f 8719 8715 8687 +f 8733 8689 8688 +f 8732 8733 8688 +f 8733 8727 8689 +f 8751 8734 8690 +f 8708 8751 8690 +f 8735 8709 8691 +f 8715 8735 8691 +f 8722 8708 8692 +f 8709 8723 8693 +f 8759 8726 8698 +f 8738 8759 8698 +f 8739 8719 8699 +f 8727 8739 8699 +f 8722 8751 8708 +f 8752 8742 8709 +f 8742 8723 8709 +f 8735 8752 8709 +f 8775 8745 8714 +f 8734 8775 8714 +f 8746 8735 8715 +f 8719 8746 8715 +f 8777 8738 8718 +f 8745 8777 8718 +f 8739 8746 8719 +f 8741 8751 8722 +f 8773 8732 8726 +f 8759 8773 8726 +f 8760 8739 8727 +f 8733 8760 8727 +f 8774 8733 8732 +f 8773 8774 8732 +f 8774 8760 8733 +f 8787 8775 8734 +f 8751 8787 8734 +f 8776 8752 8735 +f 8746 8776 8735 +f 8789 8759 8738 +f 8777 8789 8738 +f 8778 8746 8739 +f 8760 8778 8739 +f 8767 8751 8741 +f 8752 8768 8742 +f 8801 8777 8745 +f 8775 8801 8745 +f 8778 8776 8746 +f 8767 8787 8751 +f 8788 8782 8752 +f 8782 8768 8752 +f 8776 8788 8752 +f 8805 8773 8759 +f 8789 8805 8759 +f 8790 8778 8760 +f 8774 8790 8760 +f 8781 8787 8767 +f 8806 8774 8773 +f 8805 8806 8773 +f 8806 8790 8774 +f 8819 8801 8775 +f 8787 8819 8775 +f 8802 8788 8776 +f 8778 8802 8776 +f 8817 8789 8777 +f 8801 8817 8777 +f 8790 8802 8778 +f 8809 8787 8781 +f 8788 8810 8782 +f 8809 8819 8787 +f 8820 8822 8788 +f 8822 8810 8788 +f 8802 8820 8788 +f 8831 8805 8789 +f 8817 8831 8789 +f 8818 8802 8790 +f 8806 8818 8790 +f 8851 8817 8801 +f 8819 8851 8801 +f 8818 8820 8802 +f 8832 8806 8805 +f 8831 8832 8805 +f 8832 8818 8806 +f 8821 8819 8809 +f 8866 8831 8817 +f 8851 8866 8817 +f 8852 8820 8818 +f 8832 8852 8818 +f 8821 8841 8819 +f 8841 8851 8819 +f 8852 8859 8820 +f 8859 8842 8820 +f 8842 8822 8820 +f 8867 8832 8831 +f 8866 8867 8831 +f 8867 8852 8832 +f 8858 8851 8841 +f 8858 8870 8851 +f 8870 8866 8851 +f 8867 8885 8852 +f 8885 8871 8852 +f 8871 8859 8852 +f 8870 8884 8866 +f 8884 8890 8866 +f 8890 8894 8866 +f 8894 8867 8866 +f 8894 8891 8867 +f 8891 8885 8867 +f 7117 6822 6820 +f 6821 7117 6820 +f 7128 7117 6821 +f 6839 7128 6821 +f 7129 6840 6822 +f 7117 7129 6822 +f 6853 7128 6839 +f 7129 6854 6840 +f 7150 7128 6853 +f 6873 7150 6853 +f 7129 7151 6854 +f 7151 6874 6854 +f 6897 7150 6873 +f 7151 6898 6874 +f 7190 7150 6897 +f 6929 7190 6897 +f 7151 7191 6898 +f 7191 6930 6898 +f 7228 7190 6929 +f 6959 7228 6929 +f 7191 6960 6930 +f 6997 7228 6959 +f 7229 6998 6960 +f 7191 7229 6960 +f 7297 7228 6997 +f 7055 7297 6997 +f 7298 7056 6998 +f 7229 7298 6998 +f 7156 7297 7055 +f 7298 7157 7056 +f 7377 7297 7156 +f 7204 7377 7156 +f 7298 7378 7157 +f 7378 7205 7157 +f 7275 7377 7204 +f 7378 7276 7205 +f 7453 7377 7275 +f 7349 7453 7275 +f 7378 7454 7276 +f 7454 7350 7276 +f 7407 7453 7349 +f 7454 7408 7350 +f 7551 7453 7407 +f 7481 7551 7407 +f 7454 7552 7408 +f 7552 7482 7408 +f 7571 7551 7481 +f 7552 7572 7482 +f 7571 7696 7551 +f 7697 7572 7552 +f 7706 7696 7571 +f 7697 7707 7572 +f 7741 7779 7696 +f 7706 7741 7696 +f 7780 7742 7697 +f 7742 7707 7697 +f 7876 7779 7741 +f 7780 7877 7742 +f 7966 7914 7779 +f 7876 7966 7779 +f 7915 7967 7780 +f 7967 7877 7780 +f 7966 8038 7914 +f 8038 8000 7914 +f 8001 8097 7915 +f 8097 8039 7915 +f 8039 7967 7915 +f 8162 8070 8000 +f 8038 8096 8000 +f 8096 8162 8000 +f 8071 8163 8001 +f 8163 8097 8001 +f 8290 8150 8070 +f 8162 8232 8070 +f 8232 8290 8070 +f 8151 8291 8071 +f 8291 8233 8071 +f 8233 8163 8071 +f 8437 8216 8150 +f 8290 8389 8150 +f 8389 8437 8150 +f 8217 8438 8151 +f 8438 8390 8151 +f 8390 8291 8151 +f 8506 8242 8216 +f 8437 8476 8216 +f 8476 8506 8216 +f 8243 8507 8217 +f 8507 8477 8217 +f 8477 8438 8217 +f 8563 8268 8242 +f 8506 8534 8242 +f 8534 8563 8242 +f 8269 8564 8243 +f 8564 8535 8243 +f 8535 8507 8243 +f 8593 8304 8268 +f 8563 8575 8268 +f 8575 8593 8268 +f 8305 8594 8269 +f 8594 8576 8269 +f 8576 8564 8269 +f 8593 8603 8304 +f 8603 8305 8304 +f 8603 8604 8305 +f 8604 8594 8305 +f 7128 7126 7116 +f 7117 7128 7116 +f 7127 7117 7116 +f 7127 7129 7117 +f 7150 7148 7126 +f 7128 7150 7126 +f 7149 7129 7127 +f 7149 7151 7129 +f 7190 7188 7148 +f 7150 7190 7148 +f 7189 7151 7149 +f 7189 7191 7151 +f 7228 7226 7188 +f 7190 7228 7188 +f 7227 7191 7189 +f 7227 7229 7191 +f 7297 7295 7226 +f 7228 7297 7226 +f 7296 7229 7227 +f 7296 7298 7229 +f 7377 7375 7295 +f 7297 7377 7295 +f 7376 7298 7296 +f 7376 7378 7298 +f 7453 7451 7375 +f 7377 7453 7375 +f 7452 7378 7376 +f 7452 7454 7378 +f 7551 7549 7451 +f 7453 7551 7451 +f 7550 7454 7452 +f 7550 7552 7454 +f 7696 7694 7549 +f 7551 7696 7549 +f 7695 7552 7550 +f 7695 7697 7552 +f 7779 7777 7694 +f 7696 7779 7694 +f 7778 7697 7695 +f 7778 7780 7697 +f 7914 7912 7777 +f 7779 7914 7777 +f 7913 7780 7778 +f 7913 7915 7780 +f 8000 7998 7912 +f 7914 8000 7912 +f 7999 7915 7913 +f 7999 8001 7915 +f 8070 8068 7998 +f 8000 8070 7998 +f 8069 8001 7999 +f 8069 8071 8001 +f 8150 8148 8068 +f 8070 8150 8068 +f 8149 8071 8069 +f 8149 8151 8071 +f 8216 8214 8148 +f 8150 8216 8148 +f 8215 8151 8149 +f 8215 8217 8151 +f 8242 8240 8214 +f 8216 8242 8214 +f 8241 8217 8215 +f 8241 8243 8217 +f 8268 8266 8240 +f 8242 8268 8240 +f 8267 8243 8241 +f 8267 8269 8243 +f 8304 8302 8266 +f 8268 8304 8266 +f 8303 8269 8267 +f 8303 8305 8269 +f 8305 8303 8302 +f 8304 8305 8302 +f 7238 7127 7116 +f 7126 7234 7116 +f 7234 7238 7116 +f 7148 7237 7126 +f 7237 7234 7126 +f 7238 7264 7127 +f 7264 7149 7127 +f 7188 7263 7148 +f 7263 7237 7148 +f 7264 7286 7149 +f 7286 7189 7149 +f 7226 7285 7188 +f 7285 7263 7188 +f 7286 7336 7189 +f 7336 7227 7189 +f 7295 7335 7226 +f 7335 7285 7226 +f 7336 7382 7227 +f 7382 7296 7227 +f 7375 7381 7295 +f 7381 7335 7295 +f 7382 7424 7296 +f 7424 7376 7296 +f 7451 7423 7375 +f 7423 7381 7375 +f 7424 7492 7376 +f 7492 7452 7376 +f 7451 7491 7423 +f 7549 7491 7451 +f 7492 7583 7452 +f 7583 7550 7452 +f 7549 7582 7491 +f 7694 7582 7549 +f 7583 7709 7550 +f 7709 7695 7550 +f 7694 7708 7582 +f 7777 7708 7694 +f 7709 7738 7695 +f 7738 7778 7695 +f 7777 7737 7708 +f 7912 7872 7737 +f 7777 7912 7737 +f 7873 7778 7738 +f 7873 7913 7778 +f 7998 7954 7872 +f 7912 7998 7872 +f 7955 7913 7873 +f 7955 7999 7913 +f 8068 8004 7954 +f 7998 8068 7954 +f 8005 7999 7955 +f 8005 8069 7999 +f 8148 8050 8004 +f 8068 8148 8004 +f 8051 8069 8005 +f 8214 8102 8050 +f 8148 8214 8050 +f 8149 8069 8051 +f 8103 8149 8051 +f 8240 8144 8102 +f 8214 8240 8102 +f 8215 8149 8103 +f 8145 8215 8103 +f 8266 8160 8144 +f 8240 8266 8144 +f 8241 8215 8145 +f 8161 8241 8145 +f 8302 8172 8160 +f 8266 8302 8160 +f 8267 8241 8161 +f 8173 8267 8161 +f 8303 8173 8172 +f 8302 8303 8172 +f 8303 8267 8173 +f 7237 7711 7234 +f 7711 7238 7234 +f 7263 7711 7237 +f 7711 7264 7238 +f 7285 7711 7263 +f 7711 7286 7264 +f 7335 7711 7285 +f 7711 7336 7286 +f 7381 7711 7335 +f 7711 7382 7336 +f 7423 7711 7381 +f 7711 7424 7382 +f 7491 7711 7423 +f 7711 7492 7424 +f 7582 7711 7491 +f 7711 7583 7492 +f 7708 7711 7582 +f 7711 7709 7583 +f 7737 7711 7708 +f 7711 7738 7709 +f 7955 7873 7711 +f 7873 7738 7711 +f 8103 8051 7711 +f 8051 8005 7711 +f 8005 7955 7711 +f 8173 8161 7711 +f 8161 8145 7711 +f 8145 8103 7711 +f 8144 8160 7711 +f 8160 8172 7711 +f 8172 8173 7711 +f 8004 8050 7711 +f 8050 8102 7711 +f 8102 8144 7711 +f 7737 7872 7711 +f 7872 7954 7711 +f 7954 8004 7711 +f 6597 6692 6593 +f 6691 6596 6593 +f 6692 6691 6593 +f 6691 6600 6596 +f 6601 6692 6597 +f 6699 6606 6600 +f 6691 6699 6600 +f 6607 6700 6601 +f 6700 6692 6601 +f 6699 6619 6606 +f 6620 6700 6607 +f 6716 6629 6619 +f 6699 6716 6619 +f 6630 6717 6620 +f 6717 6700 6620 +f 6716 6642 6629 +f 6643 6717 6630 +f 6734 6658 6642 +f 6716 6734 6642 +f 6659 6735 6643 +f 6735 6717 6643 +f 6734 6671 6658 +f 6672 6735 6659 +f 6765 6687 6671 +f 6734 6765 6671 +f 6688 6766 6672 +f 6766 6735 6672 +f 6765 6714 6687 +f 6715 6766 6688 +f 6692 6777 6691 +f 6786 6699 6691 +f 6777 6786 6691 +f 6700 6778 6692 +f 6778 6777 6692 +f 6806 6716 6699 +f 6786 6806 6699 +f 6717 6787 6700 +f 6787 6778 6700 +f 6810 6728 6714 +f 6765 6810 6714 +f 6729 6811 6715 +f 6811 6766 6715 +f 6818 6734 6716 +f 6806 6818 6716 +f 6735 6807 6717 +f 6807 6787 6717 +f 6810 6755 6728 +f 6756 6811 6729 +f 6847 6765 6734 +f 6818 6847 6734 +f 6766 6819 6735 +f 6819 6807 6735 +f 6843 6775 6755 +f 6810 6843 6755 +f 6776 6844 6756 +f 6844 6811 6756 +f 6877 6810 6765 +f 6847 6877 6765 +f 6811 6848 6766 +f 6848 6819 6766 +f 6843 6808 6775 +f 6809 6844 6776 +f 6778 6871 6777 +f 6875 6786 6777 +f 6871 6875 6777 +f 6787 6872 6778 +f 6872 6871 6778 +f 6883 6806 6786 +f 6875 6883 6786 +f 6807 6876 6787 +f 6876 6872 6787 +f 6903 6818 6806 +f 6883 6903 6806 +f 6819 6884 6807 +f 6884 6876 6807 +f 6889 6829 6808 +f 6843 6889 6808 +f 6830 6890 6809 +f 6890 6844 6809 +f 6917 6843 6810 +f 6877 6917 6810 +f 6844 6878 6811 +f 6878 6848 6811 +f 6925 6847 6818 +f 6903 6925 6818 +f 6848 6904 6819 +f 6904 6884 6819 +f 6889 6863 6829 +f 6864 6890 6830 +f 6945 6889 6843 +f 6917 6945 6843 +f 6890 6918 6844 +f 6918 6878 6844 +f 6941 6877 6847 +f 6925 6941 6847 +f 6878 6926 6848 +f 6926 6904 6848 +f 6935 6885 6863 +f 6889 6935 6863 +f 6886 6936 6864 +f 6936 6890 6864 +f 6872 6951 6871 +f 6957 6875 6871 +f 6951 6957 6871 +f 6876 6952 6872 +f 6952 6951 6872 +f 6963 6883 6875 +f 6957 6963 6875 +f 6884 6958 6876 +f 6958 6952 6876 +f 6981 6917 6877 +f 6941 6981 6877 +f 6918 6942 6878 +f 6942 6926 6878 +f 6983 6903 6883 +f 6963 6983 6883 +f 6904 6964 6884 +f 6964 6958 6884 +f 6935 6921 6885 +f 6922 6936 6886 +f 6991 6935 6889 +f 6945 6991 6889 +f 6936 6946 6890 +f 6946 6918 6890 +f 6995 6925 6903 +f 6983 6995 6903 +f 6926 6984 6904 +f 6984 6964 6904 +f 7003 6945 6917 +f 6981 7003 6917 +f 6946 6982 6918 +f 6982 6942 6918 +f 6987 6937 6921 +f 6935 6987 6921 +f 6938 6988 6922 +f 6988 6936 6922 +f 7013 6941 6925 +f 6995 7013 6925 +f 6942 6996 6926 +f 6996 6984 6926 +f 7051 6987 6935 +f 6991 7051 6935 +f 6988 6992 6936 +f 6992 6946 6936 +f 6987 6979 6937 +f 6980 6988 6938 +f 7067 6981 6941 +f 7013 7067 6941 +f 6982 7014 6942 +f 7014 6996 6942 +f 7089 6991 6945 +f 7003 7089 6945 +f 6992 7004 6946 +f 7004 6982 6946 +f 7029 7027 6951 +f 6952 7029 6951 +f 7028 6957 6951 +f 7027 7028 6951 +f 6958 7037 6952 +f 7037 7029 6952 +f 7028 7036 6957 +f 7039 6963 6957 +f 7036 7039 6957 +f 7042 7041 6958 +f 7041 7040 6958 +f 7040 7038 6958 +f 6964 7042 6958 +f 7038 7037 6958 +f 7039 7043 6963 +f 7043 7047 6963 +f 7047 7050 6963 +f 7050 7054 6963 +f 7054 7081 6963 +f 7118 6983 6963 +f 7081 7118 6963 +f 7082 7053 6964 +f 7053 7049 6964 +f 7049 7048 6964 +f 7048 7044 6964 +f 6984 7082 6964 +f 7044 7042 6964 +f 7083 6999 6979 +f 6987 7083 6979 +f 7000 7084 6980 +f 7084 6988 6980 +f 7138 7003 6981 +f 7067 7138 6981 +f 7004 7068 6982 +f 7068 7014 6982 +f 7136 6995 6983 +f 7118 7136 6983 +f 6996 7119 6984 +f 7119 7082 6984 +f 7158 7083 6987 +f 7051 7158 6987 +f 7084 7052 6988 +f 7052 6992 6988 +f 7160 7051 6991 +f 7089 7160 6991 +f 7052 7090 6992 +f 7090 7004 6992 +f 7162 7013 6995 +f 7136 7162 6995 +f 7014 7137 6996 +f 7137 7119 6996 +f 7083 7045 6999 +f 7046 7084 7000 +f 7180 7089 7003 +f 7138 7180 7003 +f 7090 7139 7004 +f 7139 7068 7004 +f 7186 7067 7013 +f 7162 7186 7013 +f 7068 7163 7014 +f 7163 7137 7014 +f 7182 7134 7045 +f 7083 7182 7045 +f 7135 7183 7046 +f 7183 7084 7046 +f 7202 7158 7051 +f 7160 7202 7051 +f 7084 7159 7052 +f 7159 7161 7052 +f 7161 7090 7052 +f 7082 7057 7053 +f 7058 7081 7054 +f 7082 7065 7057 +f 7066 7081 7058 +f 7082 7076 7065 +f 7071 7081 7066 +f 7206 7138 7067 +f 7186 7206 7067 +f 7139 7187 7068 +f 7187 7163 7068 +f 7077 7081 7071 +f 7082 7086 7076 +f 7080 7081 7077 +f 7085 7081 7080 +f 7085 7200 7081 +f 7208 7118 7081 +f 7200 7208 7081 +f 7201 7197 7082 +f 7197 7086 7082 +f 7119 7201 7082 +f 7216 7182 7083 +f 7158 7216 7083 +f 7183 7159 7084 +f 7196 7200 7085 +f 7212 7160 7089 +f 7180 7212 7089 +f 7161 7181 7090 +f 7181 7139 7090 +f 7218 7136 7118 +f 7208 7218 7118 +f 7137 7209 7119 +f 7209 7201 7119 +f 7182 7178 7134 +f 7179 7183 7135 +f 7241 7162 7136 +f 7218 7241 7136 +f 7163 7219 7137 +f 7219 7209 7137 +f 7239 7180 7138 +f 7206 7239 7138 +f 7181 7207 7139 +f 7207 7187 7139 +f 7269 7216 7158 +f 7202 7269 7158 +f 7183 7217 7159 +f 7217 7203 7159 +f 7203 7161 7159 +f 7267 7202 7160 +f 7212 7267 7160 +f 7203 7213 7161 +f 7213 7181 7161 +f 7271 7186 7162 +f 7241 7271 7162 +f 7187 7242 7163 +f 7242 7219 7163 +f 7247 7210 7178 +f 7182 7247 7178 +f 7211 7248 7179 +f 7248 7183 7179 +f 7281 7212 7180 +f 7239 7281 7180 +f 7213 7240 7181 +f 7240 7207 7181 +f 7287 7247 7182 +f 7216 7287 7182 +f 7248 7217 7183 +f 7291 7206 7186 +f 7271 7291 7186 +f 7207 7272 7187 +f 7272 7242 7187 +f 7277 7200 7196 +f 7201 7278 7197 +f 7277 7208 7200 +f 7209 7278 7201 +f 7311 7269 7202 +f 7267 7311 7202 +f 7217 7270 7203 +f 7270 7268 7203 +f 7268 7213 7203 +f 7321 7239 7206 +f 7291 7321 7206 +f 7240 7292 7207 +f 7292 7272 7207 +f 7289 7309 7208 +f 7277 7289 7208 +f 7333 7218 7208 +f 7309 7333 7208 +f 7304 7290 7209 +f 7310 7304 7209 +f 7219 7310 7209 +f 7290 7278 7209 +f 7247 7261 7210 +f 7262 7248 7211 +f 7327 7267 7212 +f 7281 7327 7212 +f 7268 7282 7213 +f 7282 7240 7213 +f 7337 7287 7216 +f 7269 7337 7216 +f 7248 7288 7217 +f 7288 7270 7217 +f 7341 7241 7218 +f 7333 7341 7218 +f 7242 7334 7219 +f 7334 7310 7219 +f 7363 7281 7239 +f 7321 7363 7239 +f 7282 7322 7240 +f 7322 7292 7240 +f 7367 7271 7241 +f 7341 7367 7241 +f 7272 7342 7242 +f 7342 7334 7242 +f 7339 7261 7247 +f 7369 7339 7247 +f 7287 7369 7247 +f 7262 7340 7248 +f 7340 7288 7248 +f 7339 7301 7261 +f 7302 7340 7262 +f 7373 7311 7267 +f 7327 7373 7267 +f 7270 7312 7268 +f 7312 7328 7268 +f 7328 7282 7268 +f 7379 7337 7269 +f 7311 7379 7269 +f 7288 7338 7270 +f 7338 7312 7270 +f 7385 7291 7271 +f 7367 7385 7271 +f 7292 7368 7272 +f 7368 7342 7272 +f 7389 7327 7281 +f 7363 7389 7281 +f 7328 7364 7282 +f 7364 7322 7282 +f 7395 7369 7287 +f 7337 7395 7287 +f 7340 7370 7288 +f 7370 7338 7288 +f 7303 7309 7289 +f 7397 7321 7291 +f 7385 7397 7291 +f 7322 7386 7292 +f 7386 7368 7292 +f 7339 7359 7301 +f 7360 7340 7302 +f 7315 7309 7303 +f 7310 7316 7304 +f 7387 7333 7309 +f 7315 7387 7309 +f 7334 7316 7310 +f 7409 7379 7311 +f 7373 7409 7311 +f 7338 7380 7312 +f 7380 7374 7312 +f 7374 7328 7312 +f 7334 7388 7316 +f 7419 7363 7321 +f 7397 7419 7321 +f 7364 7398 7322 +f 7398 7386 7322 +f 7417 7373 7327 +f 7389 7417 7327 +f 7374 7390 7328 +f 7390 7364 7328 +f 7387 7341 7333 +f 7342 7388 7334 +f 7421 7395 7337 +f 7379 7421 7337 +f 7370 7396 7338 +f 7396 7380 7338 +f 7411 7359 7339 +f 7435 7411 7339 +f 7369 7435 7339 +f 7360 7412 7340 +f 7412 7370 7340 +f 7443 7367 7341 +f 7387 7443 7341 +f 7368 7388 7342 +f 7411 7393 7359 +f 7394 7412 7360 +f 7449 7389 7363 +f 7419 7449 7363 +f 7390 7420 7364 +f 7420 7398 7364 +f 7457 7385 7367 +f 7443 7457 7367 +f 7444 7388 7368 +f 7386 7444 7368 +f 7463 7435 7369 +f 7395 7463 7369 +f 7412 7436 7370 +f 7436 7396 7370 +f 7459 7409 7373 +f 7417 7459 7373 +f 7380 7410 7374 +f 7410 7418 7374 +f 7418 7390 7374 +f 7465 7421 7379 +f 7409 7465 7379 +f 7396 7422 7380 +f 7422 7410 7380 +f 7471 7397 7385 +f 7457 7471 7385 +f 7458 7444 7386 +f 7398 7458 7386 +f 7473 7417 7389 +f 7449 7473 7389 +f 7418 7450 7390 +f 7450 7420 7390 +f 7411 7441 7393 +f 7442 7412 7394 +f 7483 7463 7395 +f 7421 7483 7395 +f 7436 7464 7396 +f 7464 7422 7396 +f 7479 7419 7397 +f 7471 7479 7397 +f 7420 7480 7398 +f 7472 7458 7398 +f 7480 7472 7398 +f 7495 7465 7409 +f 7459 7495 7409 +f 7422 7466 7410 +f 7466 7460 7410 +f 7460 7418 7410 +f 7497 7441 7411 +f 7517 7497 7411 +f 7435 7517 7411 +f 7442 7498 7412 +f 7498 7436 7412 +f 7501 7459 7417 +f 7473 7501 7417 +f 7460 7474 7418 +f 7474 7450 7418 +f 7493 7449 7419 +f 7487 7493 7419 +f 7479 7487 7419 +f 7450 7488 7420 +f 7488 7480 7420 +f 7513 7483 7421 +f 7465 7513 7421 +f 7464 7484 7422 +f 7484 7466 7422 +f 7523 7517 7435 +f 7463 7523 7435 +f 7498 7518 7436 +f 7518 7464 7436 +f 7497 7485 7441 +f 7486 7498 7442 +f 7521 7473 7449 +f 7493 7521 7449 +f 7474 7494 7450 +f 7494 7488 7450 +f 7541 7495 7459 +f 7501 7541 7459 +f 7466 7496 7460 +f 7496 7502 7460 +f 7502 7474 7460 +f 7557 7523 7463 +f 7483 7557 7463 +f 7518 7524 7464 +f 7524 7484 7464 +f 7547 7513 7465 +f 7495 7547 7465 +f 7484 7514 7466 +f 7514 7496 7466 +f 7521 7501 7473 +f 7502 7522 7474 +f 7522 7494 7474 +f 7575 7557 7483 +f 7513 7575 7483 +f 7524 7558 7484 +f 7558 7514 7484 +f 7497 7539 7485 +f 7540 7498 7486 +f 7541 7563 7495 +f 7567 7547 7495 +f 7563 7567 7495 +f 7568 7542 7496 +f 7570 7568 7496 +f 7514 7548 7496 +f 7548 7570 7496 +f 7542 7502 7496 +f 7638 7539 7497 +f 7650 7638 7497 +f 7517 7650 7497 +f 7540 7639 7498 +f 7639 7518 7498 +f 7559 7541 7501 +f 7521 7559 7501 +f 7542 7522 7502 +f 7547 7573 7513 +f 7577 7575 7513 +f 7573 7577 7513 +f 7578 7548 7514 +f 7558 7576 7514 +f 7576 7578 7514 +f 7658 7650 7517 +f 7523 7658 7517 +f 7639 7651 7518 +f 7651 7524 7518 +f 7542 7560 7522 +f 7670 7658 7523 +f 7557 7670 7523 +f 7651 7659 7524 +f 7659 7558 7524 +f 7638 7618 7539 +f 7619 7639 7540 +f 7559 7563 7541 +f 7568 7564 7542 +f 7564 7560 7542 +f 7567 7569 7547 +f 7569 7573 7547 +f 7578 7574 7548 +f 7574 7570 7548 +f 7592 7593 7557 +f 7575 7590 7557 +f 7590 7592 7557 +f 7593 7595 7557 +f 7595 7597 7557 +f 7597 7598 7557 +f 7598 7603 7557 +f 7603 7609 7557 +f 7612 7670 7557 +f 7609 7612 7557 +f 7673 7613 7558 +f 7613 7604 7558 +f 7604 7596 7558 +f 7596 7594 7558 +f 7594 7591 7558 +f 7591 7589 7558 +f 7589 7576 7558 +f 7659 7671 7558 +f 7671 7673 7558 +f 7588 7590 7575 +f 7577 7581 7575 +f 7581 7586 7575 +f 7586 7588 7575 +f 7587 7585 7576 +f 7585 7584 7576 +f 7584 7580 7576 +f 7580 7579 7576 +f 7589 7587 7576 +f 7579 7578 7576 +f 7672 7670 7612 +f 7638 7688 7618 +f 7689 7639 7619 +f 7721 7688 7638 +f 7719 7721 7638 +f 7650 7719 7638 +f 7689 7722 7639 +f 7722 7651 7639 +f 7717 7719 7650 +f 7658 7717 7650 +f 7722 7720 7651 +f 7720 7659 7651 +f 7715 7717 7658 +f 7670 7715 7658 +f 7720 7718 7659 +f 7718 7671 7659 +f 7713 7715 7670 +f 7672 7713 7670 +f 7718 7716 7671 +f 7716 7673 7671 +f 7716 7714 7673 +f 7721 7723 7688 +f 7724 7722 7689 +f 7759 7715 7713 +f 7716 7819 7714 +f 7819 7760 7714 +f 7818 7717 7715 +f 7759 7818 7715 +f 7718 7841 7716 +f 7841 7819 7716 +f 7840 7719 7717 +f 7818 7840 7717 +f 7720 7861 7718 +f 7861 7841 7718 +f 7860 7721 7719 +f 7840 7860 7719 +f 7722 7867 7720 +f 7867 7861 7720 +f 7791 7723 7721 +f 7866 7791 7721 +f 7860 7866 7721 +f 7724 7792 7722 +f 7792 7867 7722 +f 7811 7818 7759 +f 7819 7812 7760 +f 7866 7870 7791 +f 7871 7867 7792 +f 7822 7818 7811 +f 7819 7815 7812 +f 7819 7823 7815 +f 7884 7840 7818 +f 7822 7884 7818 +f 7841 7911 7819 +f 7911 7885 7819 +f 7885 7823 7819 +f 7829 7884 7822 +f 7885 7828 7823 +f 7885 7830 7828 +f 7885 7831 7830 +f 7832 7884 7829 +f 7885 7833 7831 +f 7834 7884 7832 +f 7885 7835 7833 +f 7885 7836 7835 +f 7837 7884 7834 +f 7885 7869 7836 +f 7869 7838 7836 +f 7868 7884 7837 +f 7839 7868 7837 +f 7869 7842 7838 +f 7843 7868 7839 +f 7910 7860 7840 +f 7884 7910 7840 +f 7861 7951 7841 +f 7951 7911 7841 +f 7869 7845 7842 +f 7844 7868 7843 +f 7846 7868 7844 +f 7869 7849 7845 +f 7847 7868 7846 +f 7848 7868 7847 +f 7850 7868 7848 +f 7869 7851 7849 +f 7852 7868 7850 +f 7854 7852 7850 +f 7853 7855 7851 +f 7869 7853 7851 +f 7882 7868 7852 +f 7854 7882 7852 +f 7869 7927 7853 +f 7927 7883 7853 +f 7883 7855 7853 +f 7856 7882 7854 +f 7883 7857 7855 +f 7858 7864 7856 +f 7864 7882 7856 +f 7883 7859 7857 +f 7862 7864 7858 +f 7883 7865 7859 +f 7865 7863 7859 +f 7950 7866 7860 +f 7910 7950 7860 +f 7867 7961 7861 +f 7961 7951 7861 +f 7874 7864 7862 +f 7865 7881 7863 +f 7881 7875 7863 +f 7874 7880 7864 +f 7880 7882 7864 +f 7883 7949 7865 +f 7949 7881 7865 +f 7928 7870 7866 +f 7960 7928 7866 +f 7950 7960 7866 +f 7871 7929 7867 +f 7929 7961 7867 +f 7926 7884 7868 +f 7882 7926 7868 +f 7885 7963 7869 +f 7963 7927 7869 +f 7906 7922 7874 +f 7922 7880 7874 +f 7881 7923 7875 +f 7923 7959 7875 +f 7959 7907 7875 +f 7948 7882 7880 +f 7922 7948 7880 +f 7949 7971 7881 +f 7971 7923 7881 +f 7948 7926 7882 +f 7927 7977 7883 +f 7977 7949 7883 +f 7962 7910 7884 +f 7926 7962 7884 +f 7911 7983 7885 +f 7983 7963 7885 +f 7978 7958 7906 +f 7958 7922 7906 +f 7920 7978 7906 +f 7959 7979 7907 +f 7979 7921 7907 +f 7982 7950 7910 +f 7962 7982 7910 +f 7951 8011 7911 +f 8011 7983 7911 +f 7996 7978 7920 +f 7944 7996 7920 +f 7979 7997 7921 +f 7997 7945 7921 +f 7970 7948 7922 +f 7958 7970 7922 +f 7971 8007 7923 +f 8007 7959 7923 +f 7976 7962 7926 +f 7948 7976 7926 +f 7963 8013 7927 +f 8013 7977 7927 +f 7960 7972 7928 +f 7973 7961 7929 +f 7952 7996 7944 +f 7997 8035 7945 +f 8035 7953 7945 +f 7970 7976 7948 +f 7977 8021 7949 +f 8021 7971 7949 +f 8010 7960 7950 +f 7982 8010 7950 +f 7961 8041 7951 +f 8041 8011 7951 +f 7964 8034 7952 +f 8034 7996 7952 +f 8035 7965 7953 +f 8006 7970 7958 +f 7978 8006 7958 +f 8007 8043 7959 +f 8043 7979 7959 +f 8016 7972 7960 +f 8040 8016 7960 +f 8010 8040 7960 +f 7973 8017 7961 +f 8017 8041 7961 +f 8012 7982 7962 +f 7976 8012 7962 +f 7983 8049 7963 +f 8049 8013 7963 +f 7968 8044 7964 +f 8044 8034 7964 +f 8035 8045 7965 +f 8045 7969 7965 +f 8036 8052 7968 +f 8052 8044 7968 +f 8067 8037 7969 +f 8045 8053 7969 +f 8053 8067 7969 +f 8020 7976 7970 +f 8006 8020 7970 +f 8021 8059 7971 +f 8059 8007 7971 +f 8020 8012 7976 +f 8013 8061 7977 +f 8061 8021 7977 +f 8042 8006 7978 +f 7996 8042 7978 +f 8043 8063 7979 +f 8063 7997 7979 +f 8048 8010 7982 +f 8012 8048 7982 +f 8011 8073 7983 +f 8073 8049 7983 +f 8062 8042 7996 +f 8034 8062 7996 +f 8063 8099 7997 +f 8099 8035 7997 +f 8058 8020 8006 +f 8042 8058 8006 +f 8059 8107 8007 +f 8107 8043 8007 +f 8072 8040 8010 +f 8048 8072 8010 +f 8041 8133 8011 +f 8133 8073 8011 +f 8060 8048 8012 +f 8020 8060 8012 +f 8049 8119 8013 +f 8119 8061 8013 +f 8040 8056 8016 +f 8057 8041 8017 +f 8058 8060 8020 +f 8061 8131 8021 +f 8131 8059 8021 +f 8098 8062 8034 +f 8044 8098 8034 +f 8099 8139 8035 +f 8139 8045 8035 +f 8088 8066 8036 +f 8066 8052 8036 +f 8083 8089 8037 +f 8067 8083 8037 +f 8108 8056 8040 +f 8132 8108 8040 +f 8072 8132 8040 +f 8057 8109 8041 +f 8109 8133 8041 +f 8106 8058 8042 +f 8062 8106 8042 +f 8107 8147 8043 +f 8147 8063 8043 +f 8138 8098 8044 +f 8052 8138 8044 +f 8139 8153 8045 +f 8153 8053 8045 +f 8118 8072 8048 +f 8060 8118 8048 +f 8073 8159 8049 +f 8159 8119 8049 +f 8152 8138 8052 +f 8066 8152 8052 +f 8153 8171 8053 +f 8171 8067 8053 +f 8130 8060 8058 +f 8106 8130 8058 +f 8131 8167 8059 +f 8167 8107 8059 +f 8130 8118 8060 +f 8119 8169 8061 +f 8169 8131 8061 +f 8146 8106 8062 +f 8098 8146 8062 +f 8147 8183 8063 +f 8183 8099 8063 +f 8170 8152 8066 +f 8082 8170 8066 +f 8088 8082 8066 +f 8191 8083 8067 +f 8171 8191 8067 +f 8158 8132 8072 +f 8118 8158 8072 +f 8133 8199 8073 +f 8199 8159 8073 +f 8190 8170 8082 +f 8100 8190 8082 +f 8088 8100 8082 +f 8101 8089 8083 +f 8191 8101 8083 +f 8182 8146 8098 +f 8138 8182 8098 +f 8183 8221 8099 +f 8221 8139 8099 +f 8128 8206 8100 +f 8206 8190 8100 +f 8191 8207 8101 +f 8207 8129 8101 +f 8166 8130 8106 +f 8146 8166 8106 +f 8167 8223 8107 +f 8223 8147 8107 +f 8132 8154 8108 +f 8155 8133 8109 +f 8168 8158 8118 +f 8130 8168 8118 +f 8159 8227 8119 +f 8227 8169 8119 +f 8140 8206 8128 +f 8207 8141 8129 +f 8166 8168 8130 +f 8169 8229 8131 +f 8229 8167 8131 +f 8194 8154 8132 +f 8198 8194 8132 +f 8158 8198 8132 +f 8155 8195 8133 +f 8195 8199 8133 +f 8220 8182 8138 +f 8152 8220 8138 +f 8221 8237 8139 +f 8237 8153 8139 +f 8224 8206 8140 +f 8207 8225 8141 +f 8222 8166 8146 +f 8182 8222 8146 +f 8223 8247 8147 +f 8247 8183 8147 +f 8236 8220 8152 +f 8170 8236 8152 +f 8237 8259 8153 +f 8259 8171 8153 +f 8226 8198 8158 +f 8168 8226 8158 +f 8199 8263 8159 +f 8263 8227 8159 +f 8228 8168 8166 +f 8222 8228 8166 +f 8229 8275 8167 +f 8275 8223 8167 +f 8228 8226 8168 +f 8227 8287 8169 +f 8287 8229 8169 +f 8258 8236 8170 +f 8190 8258 8170 +f 8259 8283 8171 +f 8283 8191 8171 +f 8246 8222 8182 +f 8220 8246 8182 +f 8247 8307 8183 +f 8307 8221 8183 +f 8282 8258 8190 +f 8206 8282 8190 +f 8324 8207 8191 +f 8283 8324 8191 +f 8198 8234 8194 +f 8235 8199 8195 +f 8272 8234 8198 +f 8262 8272 8198 +f 8226 8262 8198 +f 8235 8273 8199 +f 8273 8263 8199 +f 8323 8282 8206 +f 8224 8323 8206 +f 8324 8225 8207 +f 8306 8246 8220 +f 8236 8306 8220 +f 8307 8384 8221 +f 8384 8237 8221 +f 8274 8228 8222 +f 8246 8274 8222 +f 8275 8386 8223 +f 8386 8247 8223 +f 8337 8356 8224 +f 8356 8323 8224 +f 8357 8338 8225 +f 8324 8357 8225 +f 8286 8262 8226 +f 8228 8286 8226 +f 8263 8398 8227 +f 8398 8287 8227 +f 8274 8286 8228 +f 8287 8400 8229 +f 8400 8275 8229 +f 8383 8306 8236 +f 8258 8383 8236 +f 8384 8410 8237 +f 8410 8259 8237 +f 8385 8274 8246 +f 8306 8385 8246 +f 8386 8432 8247 +f 8432 8307 8247 +f 8409 8383 8258 +f 8282 8409 8258 +f 8410 8434 8259 +f 8434 8283 8259 +f 8411 8366 8262 +f 8366 8272 8262 +f 8397 8411 8262 +f 8286 8397 8262 +f 8273 8367 8263 +f 8367 8412 8263 +f 8412 8398 8263 +f 8399 8286 8274 +f 8385 8399 8274 +f 8400 8444 8275 +f 8444 8386 8275 +f 8433 8409 8282 +f 8323 8433 8282 +f 8434 8442 8283 +f 8442 8324 8283 +f 8399 8397 8286 +f 8398 8448 8287 +f 8448 8400 8287 +f 8431 8385 8306 +f 8383 8431 8306 +f 8432 8452 8307 +f 8452 8384 8307 +f 8441 8433 8323 +f 8356 8441 8323 +f 8454 8357 8324 +f 8442 8454 8324 +f 8343 8356 8337 +f 8357 8339 8338 +f 8357 8342 8339 +f 8357 8346 8342 +f 8350 8356 8343 +f 8357 8349 8346 +f 8357 8355 8349 +f 8358 8356 8350 +f 8358 8362 8356 +f 8362 8453 8356 +f 8453 8441 8356 +f 8361 8355 8357 +f 8454 8361 8357 +f 8454 8364 8361 +f 8363 8453 8362 +f 8365 8453 8363 +f 8454 8368 8364 +f 8369 8453 8365 +f 8454 8373 8368 +f 8372 8453 8369 +f 8374 8453 8372 +f 8454 8376 8373 +f 8375 8453 8374 +f 8377 8453 8375 +f 8454 8379 8376 +f 8378 8459 8377 +f 8459 8453 8377 +f 8380 8459 8378 +f 8460 8381 8379 +f 8454 8460 8379 +f 8382 8459 8380 +f 8463 8382 8381 +f 8460 8463 8381 +f 8463 8459 8382 +f 8451 8431 8383 +f 8409 8451 8383 +f 8452 8493 8384 +f 8493 8410 8384 +f 8443 8399 8385 +f 8431 8443 8385 +f 8444 8495 8386 +f 8495 8432 8386 +f 8474 8439 8397 +f 8439 8411 8397 +f 8447 8474 8397 +f 8399 8447 8397 +f 8412 8440 8398 +f 8440 8475 8398 +f 8475 8448 8398 +f 8443 8447 8399 +f 8448 8503 8400 +f 8503 8444 8400 +f 8492 8451 8409 +f 8433 8492 8409 +f 8493 8509 8410 +f 8509 8434 8410 +f 8494 8443 8431 +f 8451 8494 8431 +f 8495 8519 8432 +f 8519 8452 8432 +f 8508 8492 8433 +f 8441 8508 8433 +f 8509 8523 8434 +f 8523 8442 8434 +f 8522 8508 8441 +f 8453 8522 8441 +f 8523 8543 8442 +f 8543 8454 8442 +f 8502 8447 8443 +f 8494 8502 8443 +f 8503 8560 8444 +f 8560 8495 8444 +f 8530 8500 8447 +f 8500 8474 8447 +f 8502 8530 8447 +f 8475 8501 8448 +f 8501 8531 8448 +f 8531 8503 8448 +f 8518 8494 8451 +f 8492 8518 8451 +f 8519 8562 8452 +f 8562 8493 8452 +f 8542 8522 8453 +f 8459 8542 8453 +f 8557 8460 8454 +f 8543 8557 8454 +f 8463 8556 8459 +f 8556 8542 8459 +f 8558 8463 8460 +f 8557 8558 8460 +f 8558 8556 8463 +f 8561 8518 8492 +f 8508 8561 8492 +f 8562 8584 8493 +f 8584 8509 8493 +f 8559 8502 8494 +f 8518 8559 8494 +f 8560 8602 8495 +f 8602 8519 8495 +f 8589 8565 8502 +f 8565 8530 8502 +f 8559 8589 8502 +f 8531 8566 8503 +f 8566 8590 8503 +f 8590 8560 8503 +f 8583 8561 8508 +f 8522 8583 8508 +f 8584 8622 8509 +f 8622 8523 8509 +f 8601 8559 8518 +f 8561 8601 8518 +f 8602 8640 8519 +f 8640 8562 8519 +f 8621 8583 8522 +f 8542 8621 8522 +f 8622 8630 8523 +f 8630 8543 8523 +f 8629 8621 8542 +f 8556 8629 8542 +f 8630 8648 8543 +f 8648 8557 8543 +f 8558 8647 8556 +f 8647 8629 8556 +f 8649 8558 8557 +f 8648 8649 8557 +f 8649 8647 8558 +f 8652 8625 8559 +f 8625 8589 8559 +f 8601 8652 8559 +f 8590 8626 8560 +f 8626 8653 8560 +f 8653 8602 8560 +f 8639 8601 8561 +f 8583 8639 8561 +f 8640 8681 8562 +f 8681 8584 8562 +f 8680 8639 8583 +f 8621 8680 8583 +f 8681 8707 8584 +f 8707 8622 8584 +f 8696 8678 8601 +f 8678 8652 8601 +f 8639 8696 8601 +f 8653 8679 8602 +f 8679 8697 8602 +f 8697 8640 8602 +f 8706 8680 8621 +f 8629 8706 8621 +f 8707 8731 8622 +f 8731 8630 8622 +f 8730 8706 8629 +f 8647 8730 8629 +f 8731 8737 8630 +f 8737 8648 8630 +f 8747 8728 8639 +f 8728 8696 8639 +f 8680 8747 8639 +f 8697 8729 8640 +f 8729 8748 8640 +f 8748 8681 8640 +f 8649 8736 8647 +f 8736 8730 8647 +f 8737 8740 8648 +f 8740 8649 8648 +f 8740 8736 8649 +f 8779 8771 8680 +f 8771 8747 8680 +f 8706 8779 8680 +f 8748 8772 8681 +f 8772 8780 8681 +f 8780 8707 8681 +f 8813 8799 8706 +f 8799 8779 8706 +f 8730 8813 8706 +f 8780 8800 8707 +f 8800 8814 8707 +f 8814 8731 8707 +f 8839 8825 8730 +f 8825 8813 8730 +f 8736 8839 8730 +f 8814 8826 8731 +f 8826 8840 8731 +f 8840 8737 8731 +f 8847 8839 8736 +f 8740 8853 8736 +f 8853 8847 8736 +f 8840 8848 8737 +f 8848 8854 8737 +f 8854 8740 8737 +f 8854 8855 8740 +f 8855 8853 8740 +f 6564 6565 6563 +f 6573 6564 6563 +f 6566 6573 6563 +f 6573 6571 6564 +f 6571 6579 6564 +f 6579 6572 6564 +f 6572 6565 6564 +f 6572 6587 6565 +f 6595 6573 6566 +f 6588 6595 6566 +f 6580 6578 6571 +f 6578 6582 6571 +f 6582 6579 6571 +f 6573 6580 6571 +f 6579 6598 6572 +f 6598 6594 6572 +f 6594 6587 6572 +f 6595 6580 6573 +f 6583 6584 6578 +f 6584 6591 6578 +f 6591 6582 6578 +f 6580 6583 6578 +f 6582 6604 6579 +f 6604 6598 6579 +f 6599 6583 6580 +f 6595 6599 6580 +f 6591 6615 6582 +f 6615 6604 6582 +f 6605 6592 6583 +f 6592 6584 6583 +f 6599 6605 6583 +f 6596 6591 6584 +f 6592 6597 6584 +f 6597 6593 6584 +f 6593 6596 6584 +f 6594 6621 6587 +f 6626 6595 6588 +f 6622 6626 6588 +f 6596 6600 6591 +f 6600 6606 6591 +f 6606 6615 6591 +f 6616 6607 6592 +f 6607 6601 6592 +f 6601 6597 6592 +f 6605 6616 6592 +f 6598 6627 6594 +f 6627 6625 6594 +f 6625 6621 6594 +f 6626 6599 6595 +f 6604 6633 6598 +f 6633 6627 6598 +f 6628 6605 6599 +f 6626 6628 6599 +f 6615 6637 6604 +f 6637 6633 6604 +f 6634 6616 6605 +f 6628 6634 6605 +f 6619 6615 6606 +f 6616 6620 6607 +f 6619 6629 6615 +f 6629 6637 6615 +f 6638 6630 6616 +f 6630 6620 6616 +f 6634 6638 6616 +f 6625 6650 6621 +f 6661 6626 6622 +f 6651 6661 6622 +f 6627 6662 6625 +f 6662 6660 6625 +f 6660 6650 6625 +f 6661 6628 6626 +f 6633 6664 6627 +f 6664 6662 6627 +f 6663 6634 6628 +f 6661 6663 6628 +f 6642 6637 6629 +f 6638 6643 6630 +f 6637 6668 6633 +f 6668 6664 6633 +f 6665 6638 6634 +f 6663 6665 6634 +f 6642 6658 6637 +f 6658 6668 6637 +f 6669 6659 6638 +f 6659 6643 6638 +f 6665 6669 6638 +f 6660 6689 6650 +f 6696 6661 6651 +f 6690 6696 6651 +f 6671 6668 6658 +f 6669 6672 6659 +f 6662 6697 6660 +f 6697 6695 6660 +f 6695 6689 6660 +f 6696 6663 6661 +f 6664 6701 6662 +f 6701 6697 6662 +f 6698 6665 6663 +f 6696 6698 6663 +f 6668 6705 6664 +f 6705 6701 6664 +f 6702 6669 6665 +f 6698 6702 6665 +f 6671 6687 6668 +f 6687 6705 6668 +f 6706 6688 6669 +f 6688 6672 6669 +f 6702 6706 6669 +f 6714 6705 6687 +f 6706 6715 6688 +f 6695 6732 6689 +f 6741 6696 6690 +f 6733 6741 6690 +f 6697 6744 6695 +f 6744 6740 6695 +f 6740 6732 6695 +f 6741 6698 6696 +f 6701 6747 6697 +f 6747 6744 6697 +f 6745 6702 6698 +f 6741 6745 6698 +f 6705 6753 6701 +f 6753 6747 6701 +f 6748 6706 6702 +f 6745 6748 6702 +f 6714 6728 6705 +f 6728 6753 6705 +f 6754 6729 6706 +f 6729 6715 6706 +f 6748 6754 6706 +f 6755 6753 6728 +f 6754 6756 6729 +f 6740 6782 6732 +f 6791 6741 6733 +f 6783 6791 6733 +f 6744 6792 6740 +f 6792 6790 6740 +f 6790 6782 6740 +f 6791 6745 6741 +f 6747 6794 6744 +f 6794 6792 6744 +f 6793 6748 6745 +f 6791 6793 6745 +f 6753 6804 6747 +f 6804 6794 6747 +f 6795 6754 6748 +f 6793 6795 6748 +f 6755 6775 6753 +f 6775 6804 6753 +f 6805 6776 6754 +f 6776 6756 6754 +f 6795 6805 6754 +f 6808 6804 6775 +f 6805 6809 6776 +f 6790 6841 6782 +f 6850 6791 6783 +f 6842 6850 6783 +f 6792 6851 6790 +f 6851 6849 6790 +f 6849 6841 6790 +f 6850 6793 6791 +f 6794 6855 6792 +f 6855 6851 6792 +f 6852 6795 6793 +f 6850 6852 6793 +f 6804 6861 6794 +f 6861 6855 6794 +f 6856 6805 6795 +f 6852 6856 6795 +f 6808 6829 6804 +f 6829 6861 6804 +f 6862 6830 6805 +f 6830 6809 6805 +f 6856 6862 6805 +f 6863 6861 6829 +f 6862 6864 6830 +f 6849 6899 6841 +f 6910 6850 6842 +f 6900 6910 6842 +f 6851 6911 6849 +f 6911 6909 6849 +f 6909 6899 6849 +f 6910 6852 6850 +f 6855 6913 6851 +f 6913 6911 6851 +f 6912 6856 6852 +f 6910 6912 6852 +f 6861 6919 6855 +f 6919 6913 6855 +f 6914 6862 6856 +f 6912 6914 6856 +f 6863 6885 6861 +f 6885 6919 6861 +f 6920 6886 6862 +f 6886 6864 6862 +f 6914 6920 6862 +f 6921 6919 6885 +f 6920 6922 6886 +f 6909 6955 6899 +f 6966 6910 6900 +f 6956 6966 6900 +f 6911 6967 6909 +f 6967 6965 6909 +f 6965 6955 6909 +f 6966 6912 6910 +f 6913 6969 6911 +f 6969 6967 6911 +f 6968 6914 6912 +f 6966 6968 6912 +f 6919 6973 6913 +f 6973 6969 6913 +f 6970 6920 6914 +f 6968 6970 6914 +f 6921 6937 6919 +f 6937 6973 6919 +f 6974 6938 6920 +f 6938 6922 6920 +f 6970 6974 6920 +f 6979 6973 6937 +f 6974 6980 6938 +f 6965 7017 6955 +f 7024 6966 6956 +f 7018 7024 6956 +f 6967 7025 6965 +f 7025 7023 6965 +f 7023 7017 6965 +f 7024 6968 6966 +f 6969 7030 6967 +f 7030 7025 6967 +f 7026 6970 6968 +f 7024 7026 6968 +f 6973 7034 6969 +f 7034 7030 6969 +f 7031 6974 6970 +f 7026 7031 6970 +f 6979 6999 6973 +f 6999 7034 6973 +f 7000 6980 6974 +f 7035 7000 6974 +f 7031 7035 6974 +f 7045 7034 6999 +f 7035 7046 7000 +f 7023 7154 7017 +f 7167 7024 7018 +f 7155 7167 7018 +f 7025 7168 7023 +f 7168 7166 7023 +f 7166 7154 7023 +f 7167 7026 7024 +f 7030 7172 7025 +f 7172 7168 7025 +f 7169 7031 7026 +f 7167 7169 7026 +f 7034 7176 7030 +f 7176 7172 7030 +f 7173 7035 7031 +f 7169 7173 7031 +f 7045 7134 7034 +f 7134 7176 7034 +f 7135 7046 7035 +f 7177 7135 7035 +f 7173 7177 7035 +f 7178 7176 7134 +f 7177 7179 7135 +f 7166 7232 7154 +f 7250 7167 7155 +f 7233 7250 7155 +f 7168 7251 7166 +f 7251 7249 7166 +f 7249 7232 7166 +f 7250 7169 7167 +f 7172 7253 7168 +f 7253 7251 7168 +f 7252 7173 7169 +f 7250 7252 7169 +f 7176 7259 7172 +f 7259 7253 7172 +f 7254 7177 7173 +f 7252 7254 7173 +f 7210 7259 7176 +f 7178 7210 7176 +f 7211 7179 7177 +f 7260 7211 7177 +f 7254 7260 7177 +f 7261 7259 7210 +f 7260 7262 7211 +f 7249 7245 7232 +f 7246 7250 7233 +f 7249 7325 7245 +f 7348 7250 7246 +f 7326 7348 7246 +f 7347 7325 7249 +f 7351 7347 7249 +f 7251 7351 7249 +f 7348 7252 7250 +f 7353 7351 7251 +f 7253 7353 7251 +f 7352 7254 7252 +f 7348 7352 7252 +f 7357 7353 7253 +f 7259 7357 7253 +f 7354 7260 7254 +f 7352 7354 7254 +f 7301 7357 7259 +f 7261 7301 7259 +f 7302 7262 7260 +f 7358 7302 7260 +f 7354 7358 7260 +f 7359 7357 7301 +f 7358 7360 7302 +f 7347 7345 7325 +f 7346 7348 7326 +f 7347 7415 7345 +f 7430 7348 7346 +f 7416 7430 7346 +f 7429 7415 7347 +f 7431 7429 7347 +f 7351 7431 7347 +f 7430 7352 7348 +f 7433 7431 7351 +f 7353 7433 7351 +f 7432 7354 7352 +f 7430 7432 7352 +f 7439 7433 7353 +f 7357 7439 7353 +f 7434 7358 7354 +f 7432 7434 7354 +f 7393 7439 7357 +f 7359 7393 7357 +f 7434 7440 7358 +f 7440 7394 7358 +f 7394 7360 7358 +f 7441 7439 7393 +f 7440 7442 7394 +f 7429 7427 7415 +f 7428 7430 7416 +f 7429 7511 7427 +f 7530 7430 7428 +f 7512 7530 7428 +f 7529 7511 7429 +f 7531 7529 7429 +f 7431 7531 7429 +f 7530 7432 7430 +f 7533 7531 7431 +f 7433 7533 7431 +f 7532 7434 7432 +f 7530 7532 7432 +f 7537 7533 7433 +f 7439 7537 7433 +f 7534 7440 7434 +f 7532 7534 7434 +f 7485 7537 7439 +f 7441 7485 7439 +f 7486 7442 7440 +f 7538 7486 7440 +f 7534 7538 7440 +f 7539 7537 7485 +f 7538 7540 7486 +f 7529 7527 7511 +f 7528 7530 7512 +f 7529 7668 7527 +f 7679 7530 7528 +f 7669 7679 7528 +f 7678 7668 7529 +f 7680 7678 7529 +f 7531 7680 7529 +f 7679 7532 7530 +f 7682 7680 7531 +f 7533 7682 7531 +f 7681 7534 7532 +f 7679 7681 7532 +f 7686 7682 7533 +f 7537 7686 7533 +f 7683 7538 7534 +f 7681 7683 7534 +f 7618 7686 7537 +f 7539 7618 7537 +f 7619 7540 7538 +f 7687 7619 7538 +f 7683 7687 7538 +f 7688 7686 7618 +f 7687 7689 7619 +f 7678 7676 7668 +f 7677 7679 7669 +f 7678 7727 7676 +f 7728 7679 7677 +f 7801 7727 7678 +f 7799 7801 7678 +f 7680 7799 7678 +f 7802 7681 7679 +f 7728 7802 7679 +f 7797 7799 7680 +f 7682 7797 7680 +f 7800 7683 7681 +f 7802 7800 7681 +f 7793 7797 7682 +f 7686 7793 7682 +f 7798 7687 7683 +f 7800 7798 7683 +f 7723 7793 7686 +f 7688 7723 7686 +f 7724 7689 7687 +f 7794 7724 7687 +f 7798 7794 7687 +f 7791 7793 7723 +f 7794 7792 7724 +f 7801 7805 7727 +f 7806 7802 7728 +f 7870 7793 7791 +f 7794 7871 7792 +f 7930 7797 7793 +f 7870 7930 7793 +f 7931 7871 7794 +f 7935 7931 7794 +f 7798 7935 7794 +f 7934 7799 7797 +f 7930 7934 7797 +f 7937 7935 7798 +f 7800 7937 7798 +f 7936 7801 7799 +f 7934 7936 7799 +f 7939 7937 7800 +f 7802 7939 7800 +f 7892 7805 7801 +f 7938 7892 7801 +f 7936 7938 7801 +f 7893 7939 7802 +f 7806 7893 7802 +f 7928 7930 7870 +f 7931 7929 7871 +f 7938 7942 7892 +f 7943 7939 7893 +f 7972 7930 7928 +f 7931 7973 7929 +f 8018 7934 7930 +f 7972 8018 7930 +f 8019 7973 7931 +f 8025 8019 7931 +f 7935 8025 7931 +f 8024 7936 7934 +f 8018 8024 7934 +f 8027 8025 7935 +f 7937 8027 7935 +f 8026 7938 7936 +f 8024 8026 7936 +f 8029 8027 7937 +f 7939 8029 7937 +f 7988 7942 7938 +f 8028 7988 7938 +f 8026 8028 7938 +f 7989 8029 7939 +f 7943 7989 7939 +f 8016 8018 7972 +f 8019 8017 7973 +f 8028 8032 7988 +f 8033 8029 7989 +f 8056 8018 8016 +f 8019 8057 8017 +f 8110 8024 8018 +f 8056 8110 8018 +f 8111 8057 8019 +f 8117 8111 8019 +f 8025 8117 8019 +f 8116 8026 8024 +f 8110 8116 8024 +f 8121 8117 8025 +f 8027 8121 8025 +f 8120 8028 8026 +f 8116 8120 8026 +f 8123 8121 8027 +f 8029 8123 8027 +f 8080 8032 8028 +f 8122 8080 8028 +f 8120 8122 8028 +f 8081 8123 8029 +f 8033 8081 8029 +f 8108 8110 8056 +f 8111 8109 8057 +f 8122 8126 8080 +f 8127 8123 8081 +f 8154 8110 8108 +f 8111 8155 8109 +f 8196 8116 8110 +f 8154 8196 8110 +f 8197 8155 8111 +f 8203 8197 8111 +f 8117 8203 8111 +f 8202 8120 8116 +f 8196 8202 8116 +f 8205 8203 8117 +f 8121 8205 8117 +f 8204 8122 8120 +f 8202 8204 8120 +f 8209 8205 8121 +f 8123 8209 8121 +f 8176 8126 8122 +f 8208 8176 8122 +f 8204 8208 8122 +f 8177 8209 8123 +f 8127 8177 8123 +f 8194 8196 8154 +f 8197 8195 8155 +f 8208 8212 8176 +f 8213 8209 8177 +f 8234 8196 8194 +f 8197 8235 8195 +f 8276 8202 8196 +f 8234 8276 8196 +f 8277 8235 8197 +f 8281 8277 8197 +f 8203 8281 8197 +f 8280 8204 8202 +f 8276 8280 8202 +f 8285 8281 8203 +f 8205 8285 8203 +f 8284 8208 8204 +f 8280 8284 8204 +f 8289 8285 8205 +f 8209 8289 8205 +f 8250 8212 8208 +f 8288 8250 8208 +f 8284 8288 8208 +f 8251 8289 8209 +f 8213 8251 8209 +f 8272 8276 8234 +f 8277 8273 8235 +f 8288 8296 8250 +f 8297 8289 8251 +f 8366 8276 8272 +f 8277 8367 8273 +f 8413 8280 8276 +f 8366 8413 8276 +f 8414 8367 8277 +f 8418 8414 8277 +f 8281 8418 8277 +f 8417 8284 8280 +f 8413 8417 8280 +f 8420 8418 8281 +f 8285 8420 8281 +f 8419 8288 8284 +f 8417 8419 8284 +f 8424 8420 8285 +f 8289 8424 8285 +f 8393 8296 8288 +f 8423 8393 8288 +f 8419 8423 8288 +f 8394 8424 8289 +f 8297 8394 8289 +f 8411 8413 8366 +f 8414 8412 8367 +f 8423 8427 8393 +f 8428 8424 8394 +f 8439 8413 8411 +f 8414 8440 8412 +f 8478 8417 8413 +f 8439 8478 8413 +f 8479 8440 8414 +f 8483 8479 8414 +f 8418 8483 8414 +f 8482 8419 8417 +f 8478 8482 8417 +f 8485 8483 8418 +f 8420 8485 8418 +f 8484 8423 8419 +f 8482 8484 8419 +f 8487 8485 8420 +f 8424 8487 8420 +f 8457 8427 8423 +f 8486 8457 8423 +f 8484 8486 8423 +f 8458 8487 8424 +f 8428 8458 8424 +f 8474 8478 8439 +f 8479 8475 8440 +f 8486 8490 8457 +f 8491 8487 8458 +f 8500 8478 8474 +f 8479 8501 8475 +f 8536 8482 8478 +f 8500 8536 8478 +f 8537 8501 8479 +f 8541 8537 8479 +f 8483 8541 8479 +f 8540 8484 8482 +f 8536 8540 8482 +f 8547 8541 8483 +f 8485 8547 8483 +f 8546 8486 8484 +f 8540 8546 8484 +f 8551 8547 8485 +f 8487 8551 8485 +f 8516 8490 8486 +f 8550 8516 8486 +f 8546 8550 8486 +f 8517 8551 8487 +f 8491 8517 8487 +f 8530 8536 8500 +f 8537 8531 8501 +f 8550 8554 8516 +f 8555 8551 8517 +f 8565 8536 8530 +f 8537 8566 8531 +f 8597 8540 8536 +f 8565 8597 8536 +f 8598 8566 8537 +f 8606 8598 8537 +f 8541 8606 8537 +f 8605 8546 8540 +f 8597 8605 8540 +f 8610 8606 8541 +f 8547 8610 8541 +f 8609 8550 8546 +f 8605 8609 8546 +f 8612 8610 8547 +f 8551 8612 8547 +f 8579 8554 8550 +f 8611 8579 8550 +f 8609 8611 8550 +f 8580 8612 8551 +f 8555 8580 8551 +f 8589 8597 8565 +f 8598 8590 8566 +f 8611 8615 8579 +f 8616 8612 8580 +f 8625 8597 8589 +f 8598 8626 8590 +f 8660 8605 8597 +f 8625 8660 8597 +f 8661 8626 8598 +f 8665 8661 8598 +f 8606 8665 8598 +f 8664 8609 8605 +f 8660 8664 8605 +f 8667 8665 8606 +f 8610 8667 8606 +f 8666 8611 8609 +f 8664 8666 8609 +f 8671 8667 8610 +f 8612 8671 8610 +f 8643 8615 8611 +f 8670 8643 8611 +f 8666 8670 8611 +f 8644 8671 8612 +f 8616 8644 8612 +f 8652 8660 8625 +f 8661 8653 8626 +f 8670 8674 8643 +f 8675 8671 8644 +f 8678 8660 8652 +f 8661 8679 8653 +f 8700 8664 8660 +f 8678 8700 8660 +f 8701 8679 8661 +f 8713 8701 8661 +f 8665 8713 8661 +f 8712 8666 8664 +f 8700 8712 8664 +f 8717 8713 8665 +f 8667 8717 8665 +f 8716 8670 8666 +f 8712 8716 8666 +f 8721 8717 8667 +f 8671 8721 8667 +f 8694 8674 8670 +f 8720 8694 8670 +f 8716 8720 8670 +f 8695 8721 8671 +f 8675 8695 8671 +f 8696 8700 8678 +f 8701 8697 8679 +f 8720 8724 8694 +f 8725 8721 8695 +f 8728 8700 8696 +f 8701 8729 8697 +f 8749 8712 8700 +f 8728 8749 8700 +f 8750 8729 8701 +f 8758 8750 8701 +f 8713 8758 8701 +f 8757 8716 8712 +f 8749 8757 8712 +f 8764 8758 8713 +f 8717 8764 8713 +f 8763 8720 8716 +f 8757 8763 8716 +f 8766 8764 8717 +f 8721 8766 8717 +f 8743 8724 8720 +f 8765 8743 8720 +f 8763 8765 8720 +f 8744 8766 8721 +f 8725 8744 8721 +f 8747 8749 8728 +f 8750 8748 8729 +f 8765 8769 8743 +f 8770 8766 8744 +f 8771 8749 8747 +f 8750 8772 8748 +f 8785 8757 8749 +f 8771 8785 8749 +f 8786 8772 8750 +f 8792 8786 8750 +f 8758 8792 8750 +f 8791 8763 8757 +f 8785 8791 8757 +f 8798 8792 8758 +f 8764 8798 8758 +f 8797 8765 8763 +f 8791 8797 8763 +f 8808 8798 8764 +f 8766 8808 8764 +f 8783 8769 8765 +f 8807 8783 8765 +f 8797 8807 8765 +f 8784 8808 8766 +f 8770 8784 8766 +f 8779 8785 8771 +f 8786 8780 8772 +f 8799 8785 8779 +f 8786 8800 8780 +f 8807 8811 8783 +f 8812 8808 8784 +f 8815 8791 8785 +f 8799 8815 8785 +f 8816 8800 8786 +f 8828 8816 8786 +f 8792 8828 8786 +f 8827 8797 8791 +f 8815 8827 8791 +f 8830 8828 8792 +f 8798 8830 8792 +f 8829 8807 8797 +f 8827 8829 8797 +f 8834 8830 8798 +f 8808 8834 8798 +f 8813 8815 8799 +f 8816 8814 8800 +f 8823 8811 8807 +f 8833 8823 8807 +f 8829 8833 8807 +f 8824 8834 8808 +f 8812 8824 8808 +f 8825 8815 8813 +f 8816 8826 8814 +f 8849 8827 8815 +f 8825 8849 8815 +f 8850 8826 8816 +f 8857 8850 8816 +f 8828 8857 8816 +f 8833 8843 8823 +f 8844 8834 8824 +f 8839 8849 8825 +f 8850 8840 8826 +f 8856 8829 8827 +f 8849 8856 8827 +f 8863 8857 8828 +f 8830 8863 8828 +f 8862 8833 8829 +f 8856 8862 8829 +f 8869 8863 8830 +f 8834 8869 8830 +f 8860 8843 8833 +f 8868 8860 8833 +f 8862 8868 8833 +f 8861 8869 8834 +f 8844 8861 8834 +f 8847 8849 8839 +f 8850 8848 8840 +f 8853 8864 8847 +f 8864 8849 8847 +f 8865 8854 8848 +f 8850 8865 8848 +f 8864 8856 8849 +f 8875 8865 8850 +f 8857 8875 8850 +f 8855 8864 8853 +f 8865 8855 8854 +f 8865 8864 8855 +f 8874 8862 8856 +f 8864 8874 8856 +f 8881 8875 8857 +f 8863 8881 8857 +f 8868 8872 8860 +f 8873 8869 8861 +f 8880 8868 8862 +f 8874 8880 8862 +f 8889 8881 8863 +f 8869 8889 8863 +f 8865 8874 8864 +f 8875 8874 8865 +f 8886 8872 8868 +f 8888 8886 8868 +f 8880 8888 8868 +f 8887 8889 8869 +f 8873 8887 8869 +f 8875 8880 8874 +f 8881 8880 8875 +f 8881 8888 8880 +f 8889 8888 8881 +f 8888 8892 8886 +f 8893 8889 8887 +f 8895 8892 8888 +f 8889 8895 8888 +f 8893 8895 8889 +f 8334 8353 8330 +f 8354 8382 8331 +f 8382 8334 8331 +f 8382 8353 8334 +f 8380 8378 8353 +f 8382 8380 8353 +f 8379 8381 8354 +f 8381 8382 8354 +f 8312 8293 8137 +f 8225 8312 8137 +f 8141 8225 8137 +f 8338 8312 8225 +f 8037 8075 7957 +f 7969 8037 7957 +f 8089 8075 8037 +f 7875 7879 7814 +f 7863 7875 7814 +f 7907 7879 7875 +f 7772 7827 7771 +f 7827 7849 7771 +f 7849 7851 7771 +f 7851 7855 7771 +f 7673 7643 7613 +f 7714 7657 7643 +f 7673 7714 7643 +f 7714 7710 7657 +f 7756 7736 7710 +f 7714 7756 7710 +f 7760 7756 7714 +f 7760 7812 7756 +f 7120 7094 7091 +f 7115 7120 7091 +f 7095 7115 7091 +f 7120 7097 7094 +f 7096 7115 7095 +f 7120 7101 7097 +f 7100 7115 7096 +f 7120 7102 7101 +f 7103 7115 7100 +f 7120 7109 7102 +f 7112 7115 7103 +f 7108 7112 7103 +f 7120 7113 7109 +f 7120 7114 7113 +f 7121 7120 7115 +f 7122 7125 7120 +f 7121 7122 7120 +f 7125 7123 7120 +f 7125 7124 7123 +f 7125 7283 7124 +f 7284 7283 7125 +f 7284 7299 7283 +f 7300 7299 7284 +f 7300 7307 7299 +f 7308 7329 7300 +f 7329 7307 7300 +f 7467 7329 7308 +f 7330 7467 7308 +f 7468 7467 7330 +f 7468 7478 7467 +f 7478 7490 7467 +f 7490 7903 7467 +f 7903 7477 7467 +f 7903 7489 7477 +f 7903 7499 7489 +f 7500 7903 7490 +f 7947 7957 7499 +f 7957 7918 7499 +f 7903 7919 7499 +f 7919 7947 7499 +f 7918 7902 7499 +f 7902 7888 7499 +f 7888 7515 7499 +f 7516 7903 7500 +f 7888 7878 7515 +f 7878 7519 7515 +f 7889 7903 7516 +f 7879 7889 7516 +f 7520 7879 7516 +f 7878 7813 7519 +f 7813 7610 7519 +f 7611 7879 7520 +f 7813 7785 7610 +f 7785 7622 7610 +f 7814 7879 7611 +f 7623 7814 7611 +f 7785 7775 7622 +f 7775 7626 7622 +f 7786 7814 7623 +f 7776 7786 7623 +f 7627 7776 7623 +f 7775 7629 7626 +f 7771 7776 7627 +f 7630 7771 7627 +f 7767 7763 7628 +f 7763 7633 7628 +f 7629 7770 7628 +f 7770 7769 7628 +f 7769 7767 7628 +f 7775 7770 7629 +f 7772 7771 7630 +f 7631 7772 7630 +f 7632 7772 7631 +f 7636 7772 7632 +f 7763 7637 7633 +f 7763 7640 7637 +f 7768 7772 7636 +f 7646 7649 7636 +f 7649 7653 7636 +f 7653 7655 7636 +f 7762 7764 7636 +f 7644 7646 7636 +f 7764 7768 7636 +f 7655 7657 7636 +f 7657 7710 7636 +f 7710 7762 7636 +f 7641 7644 7636 +f 7654 7652 7640 +f 7652 7648 7640 +f 7763 7712 7640 +f 7712 7656 7640 +f 7656 7654 7640 +f 7648 7645 7640 +f 7648 7647 7645 +f 7736 7762 7710 +f 7763 7735 7712 +f 7763 7739 7735 +f 7740 7762 7736 +f 7763 7743 7739 +f 7744 7762 7740 +f 7763 7747 7743 +f 7748 7762 7744 +f 7763 7749 7747 +f 7754 7762 7748 +f 7752 7754 7748 +f 7763 7753 7749 +f 7763 7761 7753 +f 7957 7946 7918 +f 7957 7956 7946 +f 8075 8074 7956 +f 7957 8075 7956 +f 8095 8094 8074 +f 8075 8095 8074 +f 8095 8114 8094 +f 8115 8114 8095 +f 8115 8136 8114 +f 8137 8136 8115 +f 8137 8292 8136 +f 8293 8292 8137 +f 8299 8301 8292 +f 8301 8298 8292 +f 8293 8299 8292 +f 8301 8300 8298 +f 8301 8308 8300 +f 8315 8321 8301 +f 8321 8325 8301 +f 8325 8329 8301 +f 8313 8315 8301 +f 8329 8331 8301 +f 8331 8334 8301 +f 8334 8308 8301 +f 8309 8313 8301 +f 8328 8322 8308 +f 8322 8320 8308 +f 8334 8330 8308 +f 8330 8328 8308 +f 8320 8310 8308 +f 8320 8314 8310 +f 8101 8095 8075 +f 8089 8101 8075 +f 8129 8115 8095 +f 8101 8129 8095 +f 8141 8137 8115 +f 8129 8141 8115 +f 7921 7889 7879 +f 7907 7921 7879 +f 7945 7903 7889 +f 7921 7945 7889 +f 7953 7919 7903 +f 7945 7953 7903 +f 7965 7947 7919 +f 7953 7965 7919 +f 7969 7957 7947 +f 7965 7969 7947 +f 7857 7776 7771 +f 7855 7857 7771 +f 7859 7786 7776 +f 7857 7859 7776 +f 7863 7814 7786 +f 7859 7863 7786 +f 7756 7740 7736 +f 7766 7744 7740 +f 7756 7766 7740 +f 7766 7782 7744 +f 7782 7790 7744 +f 7790 7748 7744 +f 7790 7752 7748 +f 7790 7808 7752 +f 7808 7754 7752 +f 7808 7810 7754 +f 7810 7817 7754 +f 7817 7762 7754 +f 7812 7766 7756 +f 7817 7821 7762 +f 7821 7764 7762 +f 7821 7825 7764 +f 7825 7768 7764 +f 7812 7815 7766 +f 7815 7823 7766 +f 7823 7782 7766 +f 7827 7772 7768 +f 7825 7827 7768 +f 7823 7828 7782 +f 7828 7830 7782 +f 7830 7790 7782 +f 7831 7808 7790 +f 7830 7831 7790 +f 7831 7833 7808 +f 7833 7835 7808 +f 7835 7810 7808 +f 7836 7817 7810 +f 7835 7836 7810 +f 7836 7838 7817 +f 7838 7821 7817 +f 7845 7825 7821 +f 7842 7845 7821 +f 7838 7842 7821 +f 7849 7827 7825 +f 7845 7849 7825 +f 8312 8317 8293 +f 8317 8299 8293 +f 8317 8301 8299 +f 8317 8327 8301 +f 8327 8309 8301 +f 8336 8313 8309 +f 8333 8336 8309 +f 8327 8333 8309 +f 8338 8339 8312 +f 8339 8317 8312 +f 8336 8315 8313 +f 8336 8341 8315 +f 8341 8345 8315 +f 8345 8321 8315 +f 8346 8327 8317 +f 8342 8346 8317 +f 8339 8342 8317 +f 8345 8348 8321 +f 8348 8325 8321 +f 8352 8329 8325 +f 8348 8352 8325 +f 8346 8349 8327 +f 8355 8333 8327 +f 8349 8355 8327 +f 8354 8331 8329 +f 8352 8354 8329 +f 8355 8361 8333 +f 8361 8336 8333 +f 8364 8341 8336 +f 8361 8364 8336 +f 8368 8345 8341 +f 8364 8368 8341 +f 8373 8348 8345 +f 8368 8373 8345 +f 8373 8376 8348 +f 8376 8352 8348 +f 8376 8354 8352 +f 8376 8379 8354 +f 7574 7630 7570 +f 7578 7600 7574 +f 7600 7630 7574 +f 7631 7630 7600 +f 7522 7520 7494 +f 7522 7611 7520 +f 7560 7611 7522 +f 7388 7330 7316 +f 7388 7468 7330 +f 7444 7468 7388 +f 7284 7110 7086 +f 7197 7284 7086 +f 7284 7125 7110 +f 7278 7284 7197 +f 7061 7091 7027 +f 7029 7061 7027 +f 7091 7094 7027 +f 7094 7062 7027 +f 7062 7028 7027 +f 7062 7036 7028 +f 7037 7061 7029 +f 7095 7091 7061 +f 7111 7196 7085 +f 7124 7283 7111 +f 7283 7196 7111 +f 7283 7277 7196 +f 7329 7387 7315 +f 7467 7387 7329 +f 7467 7443 7387 +f 7519 7521 7493 +f 7610 7521 7519 +f 7610 7559 7521 +f 7629 7573 7569 +f 7629 7577 7573 +f 7629 7599 7577 +f 7629 7628 7599 +f 7642 7672 7612 +f 7656 7712 7642 +f 7712 7713 7642 +f 7713 7672 7642 +f 7735 7713 7712 +f 7735 7755 7713 +f 7755 7759 7713 +f 7811 7759 7755 +f 7770 7826 7769 +f 7850 7826 7770 +f 7854 7850 7770 +f 7850 7848 7826 +f 7874 7862 7813 +f 7878 7874 7813 +f 7878 7906 7874 +f 8036 7968 7956 +f 8074 8036 7956 +f 8074 8088 8036 +f 8292 8311 8136 +f 8311 8337 8136 +f 8337 8224 8136 +f 8224 8140 8136 +f 7564 7611 7560 +f 7568 7623 7564 +f 7623 7611 7564 +f 7570 7627 7568 +f 7627 7623 7568 +f 7630 7627 7570 +f 7458 7468 7444 +f 7472 7478 7458 +f 7478 7468 7458 +f 7480 7490 7472 +f 7490 7478 7472 +f 7488 7500 7480 +f 7500 7490 7480 +f 7494 7516 7488 +f 7516 7500 7488 +f 7520 7516 7494 +f 7290 7284 7278 +f 7290 7300 7284 +f 7304 7300 7290 +f 7304 7308 7300 +f 7316 7308 7304 +f 7316 7330 7308 +f 7283 7299 7277 +f 7299 7289 7277 +f 7299 7307 7289 +f 7307 7303 7289 +f 7307 7329 7303 +f 7329 7315 7303 +f 7467 7477 7443 +f 7477 7457 7443 +f 7477 7489 7457 +f 7489 7471 7457 +f 7489 7499 7471 +f 7499 7479 7471 +f 7499 7515 7479 +f 7515 7487 7479 +f 7515 7519 7487 +f 7519 7493 7487 +f 7610 7622 7559 +f 7622 7563 7559 +f 7622 7626 7563 +f 7626 7567 7563 +f 7626 7629 7567 +f 7629 7569 7567 +f 7775 7854 7770 +f 7856 7854 7775 +f 7785 7856 7775 +f 7858 7856 7785 +f 7813 7858 7785 +f 7862 7858 7813 +f 7888 7906 7878 +f 7920 7906 7888 +f 7902 7920 7888 +f 7944 7920 7902 +f 7918 7944 7902 +f 7952 7944 7918 +f 7946 7952 7918 +f 7964 7952 7946 +f 7956 7964 7946 +f 7968 7964 7956 +f 8094 8088 8074 +f 8094 8100 8088 +f 8114 8100 8094 +f 8114 8128 8100 +f 8136 8128 8114 +f 8136 8140 8128 +f 7063 7061 7037 +f 7038 7063 7037 +f 7040 7063 7038 +f 7041 7069 7040 +f 7069 7063 7040 +f 7042 7069 7041 +f 7075 7069 7042 +f 7044 7075 7042 +f 7078 7075 7044 +f 7048 7078 7044 +f 7049 7078 7048 +f 7087 7078 7049 +f 7053 7087 7049 +f 7092 7087 7053 +f 7057 7092 7053 +f 7098 7092 7057 +f 7065 7098 7057 +f 7063 7096 7061 +f 7096 7095 7061 +f 7100 7096 7063 +f 7069 7100 7063 +f 7076 7098 7065 +f 7075 7100 7069 +f 7103 7100 7075 +f 7078 7108 7075 +f 7108 7103 7075 +f 7086 7106 7076 +f 7106 7098 7076 +f 7112 7108 7078 +f 7087 7112 7078 +f 7110 7106 7086 +f 7092 7112 7087 +f 7115 7112 7092 +f 7098 7115 7092 +f 7121 7115 7098 +f 7106 7121 7098 +f 7122 7121 7106 +f 7110 7122 7106 +f 7125 7122 7110 +f 7579 7600 7578 +f 7580 7602 7579 +f 7602 7600 7579 +f 7584 7602 7580 +f 7585 7606 7584 +f 7606 7602 7584 +f 7587 7606 7585 +f 7608 7606 7587 +f 7589 7608 7587 +f 7615 7608 7589 +f 7591 7615 7589 +f 7617 7615 7591 +f 7594 7617 7591 +f 7621 7617 7594 +f 7596 7621 7594 +f 7625 7621 7596 +f 7604 7625 7596 +f 7602 7631 7600 +f 7632 7631 7602 +f 7606 7636 7602 +f 7636 7632 7602 +f 7643 7635 7604 +f 7635 7625 7604 +f 7613 7643 7604 +f 7641 7636 7606 +f 7608 7641 7606 +f 7615 7641 7608 +f 7644 7641 7615 +f 7646 7644 7615 +f 7617 7646 7615 +f 7621 7646 7617 +f 7649 7646 7621 +f 7625 7649 7621 +f 7653 7649 7625 +f 7635 7653 7625 +f 7655 7653 7635 +f 7643 7655 7635 +f 7657 7655 7643 +f 7599 7601 7577 +f 7601 7581 7577 +f 7601 7605 7581 +f 7605 7586 7581 +f 7605 7588 7586 +f 7605 7607 7588 +f 7607 7590 7588 +f 7607 7614 7590 +f 7614 7592 7590 +f 7616 7593 7592 +f 7614 7616 7592 +f 7616 7595 7593 +f 7616 7620 7595 +f 7620 7597 7595 +f 7624 7598 7597 +f 7620 7624 7597 +f 7624 7603 7598 +f 7628 7633 7599 +f 7633 7601 7599 +f 7637 7605 7601 +f 7633 7637 7601 +f 7634 7609 7603 +f 7624 7634 7603 +f 7640 7607 7605 +f 7637 7640 7605 +f 7645 7614 7607 +f 7640 7645 7607 +f 7634 7612 7609 +f 7634 7642 7612 +f 7645 7616 7614 +f 7647 7620 7616 +f 7645 7647 7616 +f 7652 7624 7620 +f 7648 7652 7620 +f 7647 7648 7620 +f 7652 7634 7624 +f 7652 7654 7634 +f 7654 7642 7634 +f 7654 7656 7642 +f 7062 7039 7036 +f 7070 7043 7039 +f 7062 7064 7039 +f 7064 7070 7039 +f 7070 7074 7043 +f 7074 7047 7043 +f 7074 7079 7047 +f 7079 7050 7047 +f 7079 7088 7050 +f 7088 7054 7050 +f 7093 7058 7054 +f 7088 7093 7054 +f 7093 7099 7058 +f 7099 7066 7058 +f 7094 7097 7062 +f 7097 7064 7062 +f 7097 7101 7064 +f 7101 7070 7064 +f 7099 7071 7066 +f 7102 7074 7070 +f 7101 7102 7070 +f 7099 7107 7071 +f 7107 7077 7071 +f 7109 7079 7074 +f 7102 7109 7074 +f 7107 7080 7077 +f 7109 7088 7079 +f 7111 7085 7080 +f 7107 7111 7080 +f 7113 7114 7088 +f 7114 7093 7088 +f 7109 7113 7088 +f 7114 7099 7093 +f 7114 7120 7099 +f 7120 7107 7099 +f 7124 7111 7107 +f 7123 7124 7107 +f 7120 7123 7107 +f 8298 8311 8292 +f 8316 8311 8298 +f 8300 8316 8298 +f 8326 8316 8300 +f 8308 8326 8300 +f 8332 8326 8308 +f 8310 8332 8308 +f 8335 8332 8310 +f 8314 8340 8310 +f 8340 8335 8310 +f 8316 8337 8311 +f 8344 8340 8314 +f 8320 8344 8314 +f 8343 8337 8316 +f 8326 8343 8316 +f 8322 8344 8320 +f 8351 8347 8322 +f 8347 8344 8322 +f 8328 8351 8322 +f 8350 8343 8326 +f 8332 8358 8326 +f 8358 8350 8326 +f 8353 8351 8328 +f 8330 8353 8328 +f 8335 8362 8332 +f 8362 8358 8332 +f 8340 8363 8335 +f 8363 8362 8335 +f 8344 8369 8340 +f 8369 8365 8340 +f 8365 8363 8340 +f 8347 8372 8344 +f 8372 8369 8344 +f 8375 8374 8347 +f 8374 8372 8347 +f 8351 8375 8347 +f 8353 8378 8351 +f 8378 8377 8351 +f 8377 8375 8351 +f 7739 7755 7735 +f 7765 7755 7739 +f 7743 7765 7739 +f 7781 7765 7743 +f 7747 7781 7743 +f 7789 7781 7747 +f 7749 7789 7747 +f 7807 7789 7749 +f 7753 7809 7749 +f 7809 7807 7749 +f 7761 7809 7753 +f 7822 7811 7755 +f 7765 7822 7755 +f 7763 7820 7761 +f 7816 7809 7761 +f 7820 7816 7761 +f 7824 7820 7763 +f 7767 7824 7763 +f 7781 7822 7765 +f 7769 7824 7767 +f 7826 7824 7769 +f 7789 7829 7781 +f 7829 7822 7781 +f 7807 7832 7789 +f 7832 7829 7789 +f 7809 7834 7807 +f 7834 7832 7807 +f 7816 7837 7809 +f 7837 7834 7809 +f 7839 7837 7816 +f 7820 7839 7816 +f 7844 7843 7820 +f 7824 7844 7820 +f 7843 7839 7820 +f 7846 7844 7824 +f 7847 7846 7824 +f 7826 7847 7824 +f 7848 7847 7826 + diff --git a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg index b81f16ec61..01fcbb505b 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index d0c7219857..73a4ff6065 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index 1e9a2e43f5..09c48d9b42 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg index a6640512a3..4c3f0828bd 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg index 5be2675226..b2d71c26d5 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg index cf8577fdd9..10f7f36a79 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg index ef2a78edca..8dc9b11380 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg index 9acf14f593..2ce54de0c3 100644 --- a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg index f293b9f43a..5bc4234ef2 100644 --- a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg index 3af1a557a5..c2d30ca03e 100644 --- a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg index 8264717b80..a174e51024 100644 --- a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg index d210d49036..66f0d3a68e 100644 --- a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg index e1ce9538fb..ed7bc9f477 100644 --- a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg index 09cebca9c2..cbd2b506f6 100644 --- a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_high.inst.cfg b/resources/quality/abax_titan/atitan_pla_high.inst.cfg index af29995363..ec0e4da1a5 100644 --- a/resources/quality/abax_titan/atitan_pla_high.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg index 2bc6d4ef85..e2f5c521ec 100644 --- a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg index 653fe51985..68fa90d4f2 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg index b51b9ab357..12d5c547a1 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg index 144d56eca6..958efd3c6e 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ankermake_m5c/ankermake_m5c_fast.inst.cfg b/resources/quality/ankermake_m5c/ankermake_m5c_fast.inst.cfg index eb8725bc6d..4b36de2425 100644 --- a/resources/quality/ankermake_m5c/ankermake_m5c_fast.inst.cfg +++ b/resources/quality/ankermake_m5c/ankermake_m5c_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ankermake_m5c/ankermake_m5c_normal.inst.cfg b/resources/quality/ankermake_m5c/ankermake_m5c_normal.inst.cfg index d3e14088bd..51e17ebf32 100644 --- a/resources/quality/ankermake_m5c/ankermake_m5c_normal.inst.cfg +++ b/resources/quality/ankermake_m5c/ankermake_m5c_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ankermake_m5c/ankermake_m5c_precision.inst.cfg b/resources/quality/ankermake_m5c/ankermake_m5c_precision.inst.cfg index f615a7aaa4..39d9cf6c8d 100644 --- a/resources/quality/ankermake_m5c/ankermake_m5c_precision.inst.cfg +++ b/resources/quality/ankermake_m5c/ankermake_m5c_precision.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = precision -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg index 10e78081b9..05e4b6d70c 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg index 9e4aee0e44..f1194cbbcc 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg index 32d10397bc..6b31601811 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg index 1a1b8572bb..b8e8fc8e65 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg index af3b74fc0c..837a5dfab1 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg index 18c0acaf01..cafc354ad0 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg index a100908a53..78d375ca77 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg index 41fc5c20ae..9a9602df0e 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg index 898c3e131a..07642ba911 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg index be43f63425..a216e83000 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg index 9d8b7c9919..84bfff79aa 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg index b57341f9a2..a6641948a1 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg index e358bb9e17..8d7d5c5e32 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg index 8663045149..e373971416 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg index 8e3d3abc54..30924d83ca 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg index c9de15f792..c2a4f4358d 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg index 1b8db2a1e0..128a63e13a 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg index df989f6adc..78b4f90eef 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg index 3d372ceef1..3bf0729d3d 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg index d5d27481a0..f2e98a422a 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg index 73910af233..db1875975c 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg index bb1ba76661..3024d33345 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg index 6806a23c2b..013f91a325 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg index 4ce9996043..2cbebae10e 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg index 824d4e6fa5..27ac9e9e6f 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = abs -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg index 6a0462b35b..23c97036d8 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg index 4be68e74e5..25c56de79f 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg index 0b9632a9c9..8396162f5b 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_abs quality_type = abs -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg index 2d91d4c584..a82e211298 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = pla -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg index 93bfca84fe..9590ed6910 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_tpu quality_type = tpu -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg index e04940df10..444fa11f54 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg index ce518fc4e1..becbc01f9e 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg index 7ac90930a9..d4c151a2a8 100644 --- a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg +++ b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg index ffdbb12038..3ef4b32bda 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg index 69ea443736..6dd8189ebc 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg index 23467c9bc3..19e6bd9eb2 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/anycubic_predator/predator_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_coarse.inst.cfg index cecac7c417..684c1c496f 100644 --- a/resources/quality/anycubic_predator/predator_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/anycubic_predator/predator_draft.inst.cfg b/resources/quality/anycubic_predator/predator_draft.inst.cfg index b675f04ca4..26b675493c 100644 --- a/resources/quality/anycubic_predator/predator_draft.inst.cfg +++ b/resources/quality/anycubic_predator/predator_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg index 21b398c1bb..6e22074365 100644 --- a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg index 0b4735578c..8f6b5f5609 100644 --- a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xfine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_fine.inst.cfg b/resources/quality/anycubic_predator/predator_fine.inst.cfg index 0d3015814d..82d2bfa837 100644 --- a/resources/quality/anycubic_predator/predator_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_normal.inst.cfg b/resources/quality/anycubic_predator/predator_normal.inst.cfg index a684d4d35b..1bae16ca64 100644 --- a/resources/quality/anycubic_predator/predator_normal.inst.cfg +++ b/resources/quality/anycubic_predator/predator_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg index 11acec995d..608f35af98 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg index c7666a95ec..53ad003185 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg index a3f3a42ca6..cd95bb7935 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg index 5128f6fe3f..7bc1eb158c 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg index f1931b93e9..e01a058bf9 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg index 2fb224f03a..a010daa35f 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg index 117f78ff38..3e3a57fe88 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg index add5e339d4..148d683120 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg index 0eb908acf6..48a6a0a199 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg index 25983e79c2..a7eb3a1bfc 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg index 6980b4c848..ba28f4568e 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg index 549506a69a..461e39f9e9 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg index d6136c9f17..fedc007442 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg index 258a45ba89..5c0cad5801 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg index 1c556e5564..7ec0c6923e 100644 --- a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg index bad27f445d..4fca876c4e 100644 --- a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg index 7fd0913c5e..4f8e89a4b1 100644 --- a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg index c27c00e6d9..34cf959f2e 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg index 84099e707d..1112b1825c 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg index d8ab5b4708..60d0a9d64f 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg index 859d7010b1..2ed5fee09b 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg index 121e957c30..805c86d4e1 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg index 92551aa821..14fd764d90 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg index 776636a8fd..f0d92d7d61 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg index daceab0a29..680d891034 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg index 50314b8361..137aada739 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg index 2f4b5206de..5f67d28a84 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg index 207b81227e..4da940aa7d 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg index 24cf0d5390..4ce70294f8 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg index 8b6b8a0599..4a56de0fb7 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg index 48a329febc..bcb6fb24e8 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg index d9230a6398..266e601c56 100644 --- a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg index 2f92394892..ef26584c9b 100644 --- a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg index 4c58a5698e..e2dada08d6 100644 --- a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg index 8ec277000a..da874227f4 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg index f020dd2225..ef512a7f0f 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg index a8ead0ef61..7c15275298 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg index 201cc59e1d..8cce3c73b3 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg index 2bb875f22d..2d0623d556 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg index e6295131e6..809abbdec0 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg index 71cef9cc68..31ecd04d2c 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg index 84905f95d9..87da4d0084 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg index 83c159d91f..d3e09ce719 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg index 118494b380..5fb3c0f15b 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg index e2b8eb9d5c..d3ef3bf060 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg index ecd8357307..60f63656d6 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg index 46487edb08..d7684dc376 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg index 6d31588cf0..3e2a5fa10f 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg index ea6dfa3f9e..5f80113104 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg index 2b281b57f7..609e9b3612 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg index d349693711..247eed31ed 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg index 08a00715be..10cf05399a 100644 --- a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg index bd3c512710..c63343bc27 100644 --- a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg index 964c5c1a82..22b5794937 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg index c8df48da97..2ec99eae28 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg index c91abe6f60..81d2c417ae 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg index 4f609193b9..25a3969d89 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg index 643d3f802c..8b3d83c278 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg index fd9770ad13..2a884f2c1a 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg index 7e20a4e444..9558562746 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg index b172c720a6..58e06bfecc 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg index 8488194de3..582231c229 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg index f19464ad8c..0404db2e1f 100644 --- a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg index f49e7541ac..e6e2bed40b 100644 --- a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg index 7d21369ee5..72b19a4161 100644 --- a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/artillery_global_adaptive.inst.cfg b/resources/quality/artillery/artillery_global_adaptive.inst.cfg index c38437a2b0..1651323992 100644 --- a/resources/quality/artillery/artillery_global_adaptive.inst.cfg +++ b/resources/quality/artillery/artillery_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/artillery/artillery_global_draft.inst.cfg b/resources/quality/artillery/artillery_global_draft.inst.cfg index f2623b07ca..9b3ff911c5 100644 --- a/resources/quality/artillery/artillery_global_draft.inst.cfg +++ b/resources/quality/artillery/artillery_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/artillery/artillery_global_low.inst.cfg b/resources/quality/artillery/artillery_global_low.inst.cfg index b68bb9cad0..3132491569 100644 --- a/resources/quality/artillery/artillery_global_low.inst.cfg +++ b/resources/quality/artillery/artillery_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/artillery/artillery_global_standard.inst.cfg b/resources/quality/artillery/artillery_global_standard.inst.cfg index 3c4b7e3f3f..e8f278706b 100644 --- a/resources/quality/artillery/artillery_global_standard.inst.cfg +++ b/resources/quality/artillery/artillery_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/artillery/artillery_global_super.inst.cfg b/resources/quality/artillery/artillery_global_super.inst.cfg index e70190eb90..bcecaaaade 100644 --- a/resources/quality/artillery/artillery_global_super.inst.cfg +++ b/resources/quality/artillery/artillery_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/artillery/artillery_global_ultra.inst.cfg b/resources/quality/artillery/artillery_global_ultra.inst.cfg index 850cc73f83..ac62cf8d40 100644 --- a/resources/quality/artillery/artillery_global_ultra.inst.cfg +++ b/resources/quality/artillery/artillery_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg index 9244ae9335..b88a1c297f 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg index 9523866c1d..391f91b7ac 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg index f59bf7aaf9..0ba8d1ff1d 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg index 7ca002b987..b82677171a 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg index ba93b1d995..27e237daa7 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg index 1ba4d7b89f..859c467a91 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg index 3a738b966f..adbe170efb 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg index 10ea2fe33f..3ea3bf406d 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg index 7b40781160..3ef4d0bc5c 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg index 1bfa6501b8..4d4c5b6428 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg index 68e9d25231..eddb797acc 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg index 055614c812..2c3fbbe3b4 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg index 37f8e3ca18..49d197b82f 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg index ea87807340..c337499add 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg index a4d8b5cf89..59b77426eb 100644 --- a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg index 450ff10e65..6bf2c76fe4 100644 --- a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg index 651b7b91ce..fa2cd1011d 100644 --- a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg index c618f22ec6..1a892b2287 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg index 9045688eb5..82095accaf 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg index c20770e7eb..eb52efd04b 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg index 21a9b4977d..0f13f8b1e5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg index 5783d4035e..50545673d8 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg index ebf2240981..921b5b1049 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg index 45ac5f30e1..73326d7eab 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg index abea65986d..3b8a1ab271 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg index 9211291503..86967c0a16 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg index 0037dc8e3b..9e40075162 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg index 7814f10d5a..64d1b5bb52 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg index f4f52b4f64..125d129fd1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg index 7e0700c912..8c2a6403b1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg index f31ac3b763..449a30062f 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg index da88ed8e0a..4de38d768a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg index b5f6a23b1a..77fb058488 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg index cfe6423311..2aa874263a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg index f12e118679..16682eb780 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg index cfd4c48e3c..61b36e8e3d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg index e2267a15be..bba8ac9442 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg index 4895e1bad9..31e151f3ef 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg index 594c8cc340..3f67038120 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg index f98243c870..4296f5261c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg index 9a392d3fe7..059cb06b3b 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg index 204bc3c6ce..85cbcdba02 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg index 8b70a44c01..e208296e3c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg index 8674f58cd1..08ae548bf7 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg index f9e1c1575a..229d61ca22 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg index b6bd759337..2fef881991 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg index 1aa556f189..cb0c94406e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg index cd021a0cbc..711c0cf12d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg index 6b4a617394..79c5892b62 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg index c40580028a..5f33f408fc 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg index 03f80e8e84..e818a03f22 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg index 820c8b74ac..0bfbe84e69 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg index 6ad627d3e1..14c7125b70 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg index e9b0b4fd9c..ca80a21766 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg index d5e5334a22..825eee9587 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg index 962d4dcce6..45ea452cb1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg index 89cfdadfd5..a03f01f262 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg index 17323226f9..d4386fe4a3 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg index d81d212335..61bea29327 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg index 98ef74f7d2..66c6c9e480 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg index 40c8023fb6..167295aa94 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg index b1de8aaba1..1ebfbcf085 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg index ae01192293..48c77ecd92 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg index 65582f5b0d..0fd881b5cb 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg index a156e49b78..37c10f724e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg index 28aa90f61a..b67746de93 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg index b1d9efc34a..3d4e627aa1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg index 672c65f51c..1d7666c687 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg index b29b85b8f2..0af725e6f5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg index bf044f9541..ddce6a529f 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg index 99aa800fd3..3bf0866384 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg index 6109281345..3bedc82491 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg index d5e6e8f61d..eee916bb01 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg index e558d3c272..7f434bb18a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg index 034dd29681..e347fd79a9 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg index 8bffcdd8c5..92b5189ba0 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg index e64eee6119..a6a351db7a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg index fa25a246fb..5674cdfb0a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg index a68aded6ce..a881186909 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg index 908298d6c4..996ae17d6c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg index db69b0d710..f3cf0f3834 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg index 0c492f7651..997b6d5821 100644 --- a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/beamup_l/beamup_l_draft.inst.cfg b/resources/quality/beamup_l/beamup_l_draft.inst.cfg index 8f3fb7ce5d..253bfc0cea 100644 --- a/resources/quality/beamup_l/beamup_l_draft.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg index 203f8da165..9fa6b7f883 100644 --- a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/beamup_l/beamup_l_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_fine.inst.cfg index e62534025d..e8717d38f8 100644 --- a/resources/quality/beamup_l/beamup_l_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/beamup_l/beamup_l_normal.inst.cfg b/resources/quality/beamup_l/beamup_l_normal.inst.cfg index 86d73af1ef..8165ceb9a8 100644 --- a/resources/quality/beamup_l/beamup_l_normal.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg index d7b636cbc7..d51d3a8c35 100644 --- a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/beamup_s/beamup_s_draft.inst.cfg b/resources/quality/beamup_s/beamup_s_draft.inst.cfg index 50a8d2fe50..be893624b2 100644 --- a/resources/quality/beamup_s/beamup_s_draft.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg index eaa39d9cf7..a148cde3aa 100644 --- a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/beamup_s/beamup_s_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_fine.inst.cfg index 726d48be20..1d16db154b 100644 --- a/resources/quality/beamup_s/beamup_s_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/beamup_s/beamup_s_normal.inst.cfg b/resources/quality/beamup_s/beamup_s_normal.inst.cfg index eaafcc1164..58900858ef 100644 --- a/resources/quality/beamup_s/beamup_s_normal.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg index 6aa4fae488..383477e5b1 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg index a521feca63..17fc42f78a 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg index 8811d1f837..23feec7cef 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg index d7a307f57a..9bb9496dc8 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg index e672eb9316..f7de6e4287 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg index be00db90b3..c1ccf1e6b4 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg index b565e8f74c..49752eaea5 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg index 51dc9fbb76..13f48599c7 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg index 0738ff8ef8..287820034f 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg index 07c7f0ded1..396eccb6c2 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg index c014b267d0..b2bcb26c95 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg index 09f14d8c01..1ce688865a 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg index 363762ac85..a4c6d56258 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg index fb21754f0f..0d18946743 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg index ce554b2755..1ddcfc845d 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg index 07b0d4d369..a96873623a 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg index 06258db290..26d41fcaa4 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg index 6815703726..ef4741e98c 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg index 8d5cc94903..3cdd3bb2a1 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg index 84eaa67a29..f361e7c0e5 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg index 000779dbba..64c03bd86d 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg index ea02181e29..8437f0a8af 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg index 1301d6b732..7fa1d20728 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg index 005a64b24d..828b9a7b90 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg index f9b4caf8fb..cf0265db80 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg index 4af0e371e8..c6a564f2c4 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg index 78825c5d8d..a4c73c16aa 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg index aa96425455..e127ca2e96 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg index c62eb06655..d948269ecf 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg index a507e2555e..82a8ba0ccc 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg index 588b3dacc1..9d5fd87a11 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg index df61197924..c1008c3f85 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg index 1dbcb62fb3..8985b4b359 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg index 8bff839e45..7ffda9f1cc 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg index f0333fac75..7fa321af90 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg index 924dd669d1..9901b9306c 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg index 05e3644675..8117689c63 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg index 91466498c5..2708ab330c 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg index 68e774f205..a0c32eae33 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg index 0f84569bad..0d233acd32 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg index 724d76d23b..1193d45744 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg index b801e75cc3..a3b41f5ed1 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg index 7340f539f2..7654aa5fc6 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg index 754c2a43ea..46d36aaf0d 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg index f21e6e3b08..a686585025 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg index 157b8eb9e3..89a2eff114 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg index e116b7ec11..46b3b23bba 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg index 1ea39a2d1e..7bccadde91 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg index 7009c6d5fb..a41d7b107e 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg index 2f0f770507..63eeb976b5 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg index 8a23e888c5..69731f3260 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg index 9c5164287e..2a5d64f1ec 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg index 1ac3ee85a3..1d9025fb44 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg index 6b90e73483..2eda541abf 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg index c4db9c1979..d0c4daafac 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg index 23f06b83d7..f8d11adc91 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg index a95181b907..a27b03e537 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg index 5df16e09a6..26fc51c155 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg index bcbf4eb1e6..1d7cd60dcf 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg index ef2c484653..de863a2b44 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg index d3a92884d1..f729a347ae 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg index c5d553b9d9..e313509908 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg index 8c999eb161..ea050612eb 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg index f509a3b572..4baa35c994 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg index d712d097b2..6266f510c6 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg index 1096d25f8c..6831d7e068 100644 --- a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg index bfe1b9a4b1..a811d4b440 100644 --- a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg index f302300232..fdd00a238a 100644 --- a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg index 7361f29fa0..1384bc4ad2 100644 --- a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg index 8c6c8d0919..318715c649 100644 --- a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg index fbea0a9ed8..fce5244dd9 100644 --- a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg index bd1da0170a..7f27c65b2d 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low 0.2 -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg index 08fc738619..1c4557f187 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.2 -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg index 0993d1e938..6cf7ed1136 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg index 60df32c561..3e91c37055 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.3 -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg index c54ce24ba4..fc3dab7651 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg index dbbd5b3788..14f771bc1a 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg index 6fa18591f6..483fef2fac 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg index 1c630a6e14..081319d80d 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg index 7b5af6f41b..5af3c5178d 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg index 92deb8ba49..cd7c776d47 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg index e09730ba94..7d07483455 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg index d04036f8d8..7891dcae8d 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg index 9713c85ede..af3b9f3f1c 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg index f9597d54b5..40577df357 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg index 2e26c89cd2..ace07df36d 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg index 0706d57844..0fabdc6a9b 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg index ca494c3777..9c8790b6c4 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg index 97eb190769..10500b77c3 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg index 7eb8ddd920..761c43208c 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg index 7b80e3ba89..da2a36022c 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg index 22389c7f59..ea28deb4e2 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg index bfe070b2ef..7985dc719f 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg index 5420a1f6b8..bd4071a527 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg index 33071d96b4..4fe76ce761 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg index 241a81753e..9c9664daf7 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg index 17033f013d..a479435a3e 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg index 0b6985238b..3496ee8f17 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg index abdf0409f0..c695065062 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg index d83be54131..14e1d3bb29 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg index f97453339b..9aa6c46aed 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg index 66ef59fac8..d77192df1f 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 1.2mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg index 45549791bf..789212a8fc 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg index 0f95a2c5f3..ad7481663b 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg index 4b777fb89d..23b92be3fe 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg index b1d01bfc87..458722c895 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 24 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg index 61c875e617..f68ae4894c 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 1.2mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg index dd9168741c..81138ac75f 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg index 7ac14cd8f3..e7d627253c 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg index 7c7f10fe64..55e648a6f9 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg index a74ca975ff..0e70a8fdd7 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg index 815027d6ef..2991aaf351 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg index c3c4a03bd6..12ae5d6569 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg index 66790c739a..deb8e99c02 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg index a3f8ed15b9..b7687a813a 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg index 99432f51c0..26c7b1117a 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg index e789d4ae4b..424748bf8c 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg index d54e44fff1..7cc44cce8c 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg index a97de1a9a3..921628ddde 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg index 92ca89fa6f..46c620dc4c 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg index 6727b950c8..f12a4912b7 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg index 2dbee187a8..cf271cc9f1 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg index ef6e16e3f3..33652d8442 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg index 2d85d53f4e..bc3dfa4603 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg index 109c79608f..d9cf6d915f 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg index b87d68962e..8b8589ebd4 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg index 10806f53c4..9974f04e9b 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg index 8f747c08e9..75fa28af67 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg index b0d9447b82..da19706937 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.3mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg index 2c8444df01..ebe0e68bae 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.3mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg index 8410e56e1d..2224efff68 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.3mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg index 0dee28da76..2ff091ecc5 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg index 86be97d7ef..8c434a4cc1 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg index b3b20834ec..220191bd65 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg index ea1c5269f4..495759c024 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg index d95326a2cd..f86826f542 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg index 6139f477a9..2acd08fab1 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg index d6b10ead40..4ae726e3e3 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg index 501fd43305..437f5129d9 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg index 9210920b17..4e134d0f51 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg index 37071e37ec..656c9518b6 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg index 4d7a139ee4..2aa97b5bc2 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg index 0f4fb4da2a..4fe7d88a91 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg index c0d98feb50..c875294ccc 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg index f3b66ecd9f..fd58bc91f2 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg index 075bc33bdf..6ea3527a0a 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg index bfe0c1efb3..1ff5245e97 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg index cdeffbce07..ea4f950909 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg index 6aa9142446..f0ce7a5c64 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg index 4f196bd070..44d2ba1024 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg index 8df63decc4..d41609efd0 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.0mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg index cc34498a54..8940333cfd 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.0mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg index 5dcd5eca8c..529ec26d2d 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg index 12c5e568ab..2d7a57777b 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.0mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg index 910efb6244..37ada1694c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg index a9d00ea40d..c28b5d450d 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg index 3acda8b9dc..51bd25e24d 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg index ced39e298b..5935a65f2a 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.2mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg index 068ed81057..41e51cecd0 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg index f094968a1a..879be6a876 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.2mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg index 2f34faba86..3770b68697 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg index 416ed6cce1..a46402b650 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg index 0c86d1922b..dde596b019 100644 --- a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg index f2f475d324..9021fd4538 100644 --- a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg index f96020401d..697afbfe2e 100644 --- a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg index fbd2b1b648..e6207125c7 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg index 18b43d1fce..519e9fc2e2 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg index c25fe48eee..2ca19716b9 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg index a662fd199a..6e0bf15019 100644 --- a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg index 5be817574f..9a18419444 100644 --- a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg index 955c533ee0..d7deefcf75 100644 --- a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg index 81c3bac17a..ec6e015cdf 100644 --- a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg index 0270042c6d..4bc7b0b0a8 100644 --- a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg index 10cd3774a1..0330b91cc6 100644 --- a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg index 55b35c33a1..5584fe4ecf 100644 --- a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg index 5c744cde48..cb4985e2fc 100644 --- a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg index da56e1c7d0..8cdb13a946 100644 --- a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg index 74ac09ab1f..b587b4e7bd 100644 --- a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg index 4185c32c2d..d3ed80b262 100644 --- a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg index 6ffc2dc31a..62356f7874 100644 --- a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg index 747d7c0bbe..424001ffbd 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg index 8d9db6ef9d..64da56a867 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg index 756f8f2917..22345089d5 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg index 2b50d823db..b2f75bfd1c 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg index e20ed3a4a5..b30a85e8b8 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg index 89c3c5ddf1..7ec69f1d73 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg index 98ec1d290c..75a947cefd 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg index 1102445d73..34de7ae070 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg index fdebf33114..5e20b58bf4 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg index dc583398e3..29cbb5fd42 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg index 275f1afb76..932b63d694 100644 --- a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg index 0db9ae1a24..e6880b90af 100644 --- a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg index 30633b369d..b7e85b15ae 100644 --- a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg index 3037c3aaad..6693c83886 100644 --- a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg index 59d3cde27f..494ea47d8a 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg index 237b9c9997..aae291e4a1 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg index d045650dd1..83273ec75e 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg index 9edbe0795b..f316f3067e 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg index 07cb20a6a3..d27cb18830 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg index f83ece82c9..350b801a4c 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg index 432bdb5181..6f9829c659 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg index 56767df588..104f08e624 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg index cd90509f5f..88e4d48c85 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg index 8b67e6343f..cadcfc77f0 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg index c2602f9f9b..b8ffb1c482 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg index c20a955d02..bcd37abdb0 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg index 0aa49b222d..fc921dba76 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg index a31c713bde..71729f3dca 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg index ba853061da..a2fc4f4f07 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg index 3907f5ceca..71583c5370 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg index 59e92e733f..1c874d536c 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg index 4e408ceef7..318e8afc68 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg index f01fae14b4..1d4a441653 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg index b70d03a341..be53d41faf 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg index 3dfa6bbc07..20ad3fa6a6 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg index 48851fed3e..650f3feb4f 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg index feed09fb66..56dc826396 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg index e510fc1453..78824b944b 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg index b6422335ff..202cf90a0c 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg index 79c4b15ea8..a4b550907c 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg index fd94e73fd1..b9e0a8dfad 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg index e648a5bb24..8cbd7c811f 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg index 2a824cbd42..38430597f3 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg index efd1f9a6d7..9a2db2c894 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg index 7a294b9532..07a54d0418 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg index 1fb094b684..4f3f502811 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg index f4c45020ea..ffdf6b1573 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg index 88a4cbaf4b..92f8d15a04 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg index d68392a58e..5c18cbf8aa 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg index 52d9cbefa0..c6dd7f13e2 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg index 1664e93b37..65598b8334 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = -3 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg index e269557ea5..3449a13328 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = -4 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg index e8af9745d7..041e630cc5 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg index d2a7e8d673..f5ca805e42 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg index c077347a27..84370dd002 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg index 7689cb7296..9a8f5314dd 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg index a764523419..040a5308cb 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg index 5d96b324b8..863f515f93 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg index c97c5e0d11..e94b94a9f2 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg index b9ccbec940..e29e771b17 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg index 7be3729c54..f281c86ed0 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg index c5575d58fc..3160259a2e 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/coarse.inst.cfg b/resources/quality/coarse.inst.cfg index 28df0a1c18..bb1b1df162 100644 --- a/resources/quality/coarse.inst.cfg +++ b/resources/quality/coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg index 510e7f1c3d..a138cc347f 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg index 2901a92b34..cfa93c5fab 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg index 37390c4f2c..9f329f8feb 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg index e631278a12..093b5dd3d0 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg index 0cc925e81c..9a09103293 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg index 42a05036bf..6245b9fac4 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg index be04111ffc..ddef2f89ff 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg index 0a89b548af..0b33d269c6 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg index a215b77102..08b5555d05 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg index f8bd706b13..ece6618adc 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg index 59769cff2c..c447ac861c 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg index 07e3bdfc33..b14c54114e 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg index 17f02a5341..c032cf2f25 100644 --- a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg index 249d81eda4..aa8bafa05e 100644 --- a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg index f202bc039f..ef634533a7 100644 --- a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg index f014c4d817..4d0a4cd40f 100644 --- a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg index 9069c6217d..58c870e37c 100644 --- a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg index e7549eb0cd..06a514d45b 100644 --- a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg index c459673c03..bb7f6c3e3f 100644 --- a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg index 3ac36051ef..f459034416 100644 --- a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg index 0747c9470e..f720b136e9 100644 --- a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg index 32520aa212..9449dce87b 100644 --- a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg index c131707e19..52e36adaf9 100644 --- a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg index b20f448ba0..fbb453f40a 100644 --- a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg index b8e5ad16c2..56599aa0b5 100644 --- a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg index e5c59aade7..f0be6bc726 100644 --- a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg index a1b31cbb36..6eebf58889 100644 --- a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg index 4958661ff4..be08002209 100644 --- a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg index f5319c95ac..7bd15b3589 100644 --- a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg index 91518c75fc..98f1dbab89 100644 --- a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg index 24b32bccdb..55663acf98 100644 --- a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg index cc15f42fb1..ad5c2c7929 100644 --- a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg index 6e9a67af5c..0bf115b04c 100644 --- a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg index cb84911e81..f66705ba77 100644 --- a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg index 38b057a744..63b0ac063e 100644 --- a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg index 400bc2a190..9a00c09b94 100644 --- a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg index 4501bb5227..bd28c80de4 100644 --- a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg index 09122ad76b..208c05b51d 100644 --- a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg index 316291ca09..6b1398df77 100644 --- a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg index b279711da0..eaf774040e 100644 --- a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg index cf31ad62b5..d08fa99527 100644 --- a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg index 7ba40dcd48..926b381a1f 100644 --- a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg index 356a9390b0..b44125b6b2 100644 --- a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg index 2ca57936c3..b6463cbe19 100644 --- a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg index 873563a5ab..416daf3e3e 100644 --- a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg index 3e33d4d280..94dd432d6c 100644 --- a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg index 39244b0cc6..3508fc8781 100644 --- a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg index 3e3e8ac50e..855cfd104b 100644 --- a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg index 7f1bb0bc66..746dbfcf70 100644 --- a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg index 878286e616..2b37c18549 100644 --- a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg index 7724c1001a..ad6690e3ef 100644 --- a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg index c33d5a48b7..772c90ffaa 100644 --- a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg index 675794832b..63fc148bbf 100644 --- a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg index d55b54dc8b..c0219dff8e 100644 --- a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg index b8b08fba46..60c95e98fe 100644 --- a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg index dd64434c06..8a9832f76b 100644 --- a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg index bea3579678..b8aa49cb4e 100644 --- a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg index 85809f8aaf..7e6e44b7ee 100644 --- a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg index f4a885cd2c..55ccb3de07 100644 --- a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg index d4caac8486..8f5561e76a 100644 --- a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg index 4c8f24db64..83769cdfb3 100644 --- a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg index f437fc220c..8212ce2595 100644 --- a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg index 7c4a2dc2d7..dbde40577e 100644 --- a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg index 0faaf8e45d..178b435a65 100644 --- a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg index 040da082a4..ead76c7dd9 100644 --- a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg index 9ce2b0454b..5a01f79cef 100644 --- a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg index 463b652b05..5d8569b261 100644 --- a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg index 377b68b0d8..bf646d539a 100644 --- a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg index 1057a431a6..6685c206e1 100644 --- a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg index 3f4026061c..3c2eb4ab7d 100644 --- a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg index 587724a118..bf15a84589 100644 --- a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg index 1e86537713..215d72d312 100644 --- a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg index d660e3b15b..f94f78d179 100644 --- a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg index 13a66ff494..3e1a39434d 100644 --- a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg index b2e58f2975..56d77fa55a 100644 --- a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg index 76de410101..0696837fd2 100644 --- a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg index fd999f6b0d..c45897f1d6 100644 --- a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_global_adaptive.inst.cfg b/resources/quality/creality/base/base_global_adaptive.inst.cfg index 9a9841afbe..c3e282324b 100644 --- a/resources/quality/creality/base/base_global_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/creality/base/base_global_draft.inst.cfg b/resources/quality/creality/base/base_global_draft.inst.cfg index dd5078d648..7cf204f406 100644 --- a/resources/quality/creality/base/base_global_draft.inst.cfg +++ b/resources/quality/creality/base/base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/creality/base/base_global_low.inst.cfg b/resources/quality/creality/base/base_global_low.inst.cfg index fd0a08e352..8b94efb8ce 100644 --- a/resources/quality/creality/base/base_global_low.inst.cfg +++ b/resources/quality/creality/base/base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/creality/base/base_global_standard.inst.cfg b/resources/quality/creality/base/base_global_standard.inst.cfg index a3fd5f5956..0f7d5c0f08 100644 --- a/resources/quality/creality/base/base_global_standard.inst.cfg +++ b/resources/quality/creality/base/base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/creality/base/base_global_super.inst.cfg b/resources/quality/creality/base/base_global_super.inst.cfg index a4bbfed83d..fa4ed42acd 100644 --- a/resources/quality/creality/base/base_global_super.inst.cfg +++ b/resources/quality/creality/base/base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/creality/base/base_global_ultra.inst.cfg b/resources/quality/creality/base/base_global_ultra.inst.cfg index 85c78d7b8d..c9b6f0a821 100644 --- a/resources/quality/creality/base/base_global_ultra.inst.cfg +++ b/resources/quality/creality/base/base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg index b75eb896a4..945ac525e1 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg index 9ce1333999..f337a46b8f 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg index cf231a7631..edd1fbfb9b 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg index 4487d7314a..2b9cde2a55 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg index 18c2c9e8c2..7ca6bf5b49 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg index 18b92d7b8b..6f782d4eb2 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg index 2964bd8424..26a1bc2582 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg index db5d49de7b..3f655d47ea 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg index 99940ba8e4..6e70d6e037 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg index 7873309c26..dcdc5eb6e6 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg index 194a9d2ecc..76d62c4df4 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg index 2bc213d8ba..896e580c6a 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg index 815d889a1b..27fa8ad03b 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg index 17493da3ac..3cb65df1b0 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg index 83988387dd..ef589861a3 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg index 1ab336b3bd..18b15778da 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg index 6095afc7a9..92a426f48c 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg index 14cb361ba5..b5db93f340 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg index 7299109537..828b049d21 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg index e1cbebad59..0c7a2b924a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg index 8f52deed73..8ebb54df01 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg index c66b230b3f..75ce96fb56 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg index 5ca0aff282..ede0b60cde 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg index e4e9a63b3b..0285c80999 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg index 50af708e6d..c90c1b3f55 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg index 2c07478c3b..4994f7411f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg index 652346f10b..d3806f1d87 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg index 2bbf4ca548..f4e6dd5a9b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg index cc458da8d1..129230b769 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg index abf58a72a4..88226eca38 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg index 129ea34c39..f07fb2c858 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg index 10dcfad171..ef27160d5f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg index 39d12f2573..ff6c6ec239 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg index 5c79e53906..a7370314de 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg index 6ba205b42e..d2c11e7f2e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg index 3f8e4d098f..609a725b96 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg index 41ceb4e795..2b41a785b8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg index 5604950ca3..7c217d0a87 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg index f0462b9356..f96c44fc25 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg index 2d175ae2fa..a753b68321 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg index 606a733664..2bc944cf3d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg index 6fc1ba3286..f6f586a5cc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg index 74a331f160..aa7face78a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg index cacb37c73d..2d9d60839f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg index 671147552c..b0a375ca13 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg index e41b33ce6e..3fe1c1406e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg index 42875c40dd..ed93457586 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg index fb4d097abb..5b00452dcd 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg index 6223ddba96..6f1bf4b373 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg index bff7731278..34942bff19 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg index 7dadd7ef79..799c5cb7d7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg index 8c90a1f304..5063b9c6e7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg index cb2ad61411..b8924a2582 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg index 36e59de2e3..1346c172c7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg index 9c87a86afc..e7df96bcf4 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg index 7d01768643..6d1d410dd5 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg index 1a372f2689..5f4027827f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg index 03735e73c9..3c1aa2371a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg index fd0e2092fe..d23c5ce4a7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg index 764fae3340..76f2c04e5f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg index 105457d8dd..28490ea003 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg index 418750d4bf..386a353ba5 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg index 3d823e2b15..8146e0278c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg index bc56d30d7c..b952a15e84 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg index aa03342cb2..ee462e60f8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg index 9c58bafbbc..9a4f3631d3 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg index 736ac60dee..5fb7857f91 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg index 60cd6a6835..f75ac354cd 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg index cda0198ba2..0589b21216 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg index 5d48f19122..d9ebca89a5 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.6mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg index d4c97e9387..ad27b1d6bf 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg index 8e9ce5df5c..935cce7348 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg index 706e493748..bf89b694c9 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg index 5fa87f6a3d..91984dd036 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg index 1ec3a05ef3..9ddb0ab81f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg index c997636195..27694784a4 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg index 6866799752..761fec0f55 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg index a7b08617c6..73b74c809b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.2mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg index 0aa380fcff..a7d7ce9bea 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg index 487bac34b2..bc532ac45e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg index bdf235bd29..e6dfebec55 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg index 4ac4a2b798..7c6b69f037 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg index bdef20e4f8..76c67dcfec 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg index 897f9fc63a..e92ca4677b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg index 1203ab3c8d..0fa5317a9b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg index 9fd1c53811..f8192618d6 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg index 70de54d92f..972fadb8c2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg index faa45bd0d8..f292bb02b5 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg index eb8aec270f..cd4069ebd2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg index 75c4f287eb..f6d6fac7b6 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg index 45f129d8b4..de76fa738e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg index 5349318ce5..1250e47b41 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg index 515114f3a2..7978b32fcb 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg index 9b81d1096a..e548508196 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg index d039abd7d7..d6b3f6a882 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg index 9a3f73e717..f1a31a8136 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg index f5c8e5c226..a6c9d6bdfe 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg index 9e24a016db..94c74a04b7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg index 0457db771e..1b913a008d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg index c27869d858..20401cb3c0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg index 54a8cf3c59..8731a9ae53 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg index 5eecef0be1..dd9b34615b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg index e99408614c..beb94c4b64 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg index d89273d34b..2c501ec2b5 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg index 6e4e2441df..ac6af86556 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg index 2ee463e2f7..f83044e35d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg index 6e26fa8520..b2ebecb9a9 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg index 621303c03f..2856845964 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg index 37bcb1de38..3206312d54 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg index 9b3c420461..57bb39fbec 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg index 29dcfd687e..8080d4fb99 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg index 11fa0af120..76a7d69f64 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg index a84246755c..73f425fb00 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg index 2a35c53029..8ac9096f1f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg index 87b536ce00..20b4fe7b04 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg index 7caa4f19b3..493cff0715 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg index 3d18ae5645..0fd1ab4775 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg index 26c55325d3..2f95856a55 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg index f6f9bdcfd5..90776b11ec 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = dagoma_sigma [metadata] -setting_version = 23 +setting_version = 24 type = quality quality_type = h0.6 weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg index c0dd1bdc22..5421474dc1 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg index 39d1311f88..31932fa921 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg index 30bd0b88f4..1737119377 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg index 6f5e1594a3..b418d1b09e 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg index 11627f7cc0..464d9737ee 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg index 13f032f573..c7f8be4130 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg index 2d3a252eff..cc769bca61 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.8 -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg index 2f4b38a21c..abb223e4a5 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg index 6cf00327bc..24e47002f9 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg index 89f3b80443..217d1c7fdb 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg index d4bfe2a43d..be628b4b2e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg index d8e4c1c2e2..2c316b39f2 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg index a5e83f03be..af87272aa1 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg index 94261daf9e..af6d816fef 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg index 16b40d8c6b..11c0713cb6 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg index b6973e84ae..07084856e5 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg index d69a78f115..bde8fc5e51 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg index 3f1fbabc67..e0d2f9b4f1 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg index 8c0008450d..365f6b6c6d 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg index 6d675bba9c..10053f8dc5 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg index 254c651f8b..a45d4b7566 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg index 055d0a803e..78e6e60e28 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg index e64d545725..513e263508 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg index a0d307ee22..74b86e7640 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg index 982b7761fa..af4aaecaea 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg index 235498bc96..80338b14da 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg index 290910742d..e193406070 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg index 58656290ee..c034e11aef 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg index be38030f9f..a9f07ecea1 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg index f313d739e2..efc9d1f11d 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg index 3b0c42ca93..b095a13283 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg index 5755713fe3..fcee6cc6c3 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg index a055df78fb..a7b7f5a10a 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg index 0f39dc8803..b649b9a44b 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg index 9640066226..3f250f0e5e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg index 6156764dbf..152c0479c9 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg index d0aad40ed3..b941f30425 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg index 456c6ea798..916a358b9e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg index d365c172a4..15924d67af 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg index 7dee9e7317..ddfd4b65c7 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg index d5e2a394a0..ffdbb1c77d 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 24 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg index e42c085ea2..2ef6cfac28 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg index 20f232643c..59ee1ce78b 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg index b62f57aab6..fab9b95f7f 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg index e8e1200b57..c065c4033f 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg index 78e3e52258..e61bac5cc5 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg index 75321948b3..e6f5c6f244 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg index 43e7c86bba..4e31a46807 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg index 255e5e84ac..622797a1b9 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg index 94ff2c2f31..7f96988889 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg index 212aaf3863..5611d0370d 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg index 7d5b705561..d7595db62b 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg index 58c39a178d..b338b3c266 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg index 168d464453..6519499305 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg index aa26014230..123a180941 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg index 1bbd850357..64d290a0ae 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg index df0b816a22..ae0b1bcff4 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg index b8557252d5..44ff86f3d2 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg index f9ecee8b9a..77e26ed044 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg index 5129278efd..fc3fe5fb27 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg index 1e6378bbff..272bffc4b9 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg index ad052174fd..a725bc43a2 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg index 8f04ff05be..0368f32e02 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg index c6fd1a5b34..ae5d93e4c7 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg index 7a281473bf..b6995a61a2 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg index dee783d9ef..bafed05a50 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg index 39cd500d38..f0701342cd 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg index 5cd566790a..990dec9190 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg index bd2767eb92..72fcd7b0d3 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg index 657f0acb13..f4219b71f6 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg index ecd5808a63..37a9d799d5 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg index 073abec7a4..9ed9f24adb 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg index cc893ee6dc..723e6aec97 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg index ddd1eb6d15..02888f12d4 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg index 42681e7332..db20ac1efb 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg index 48620f80de..d7d8d6af44 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg index 814a31f541..f1bea3bb2f 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg index 3e58d17c2b..ef40bf4b72 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg index 422fd262eb..51a8d58486 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg index 7c09cea5e6..b032138380 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg index 04fd4eb000..79a3b2b509 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg index e69dbee1da..345d7bdf0a 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg index 8fa17b68ae..08d8c16cd6 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg index 228f9ef2ea..06609cf2aa 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg index f7759e4ac2..1246788a64 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg index 40ab119290..fe3cd8ec98 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg index f12afe9f2f..19d806ba71 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg index 28d9bd7a1e..e597c657f9 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg index 4926b470de..9d030785b9 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg index 83bc04f13b..ad4e5b7650 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg index de3b81ec1c..89f3187479 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg index 84e69b2c51..d425c1f1a1 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg index e751ff9df6..6aca97923d 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg index 63fe58d5a7..c2b681495f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg index 7feff9db8d..d7127458be 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg index 63f28107d5..83ec413e11 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg index a4ac0de94f..2a0dcf9512 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg index 8e0a0f89f9..90bb100ae9 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg index a8d4d43e62..a758176e16 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg index 639b632459..adfa202186 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg index 878eb66f4f..19c0a2daf7 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg index 9beead6171..e6b1bab191 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg index d443dd99fc..0e0e1fdc0e 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg index 94a9161ac1..e942c68a21 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg index 963b6330e3..e544a01d61 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg index 813ef05b3e..f7a5b21a53 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg index dd9f03094a..405741240c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg index 85c84cc075..48acccb57d 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg index 1963e7531f..64d48e3f9b 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg index edb5b6a2b3..44975974f7 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg index bfe360e0a0..54cd9c615f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg index 1f9fe6362d..b10720db96 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg index 7c75a8f974..7d5716aa0f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg index f054df6a1d..e6eb0d08a5 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg index c54e26b6a3..7f7f37f89e 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg index 63fc3efa35..c5482e397c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg index b9d742bae3..435cc8afe8 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg index 892a526b0d..7e6fea5db2 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg index 25a4e96755..3abecc4773 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg index 00aacd6141..e694a8582a 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg index 91c16e5c67..f1172d5f87 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg index 3668246197..daa91786bc 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg index 519e1f5eaf..c484ece468 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg index 1149937c87..e0b84f3694 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg index 352d4de341..bfb40b3cfa 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg index e06a0a7322..ca79d79e49 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg index 7ac8c61715..b2a830da5c 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg index b39b5d2e96..7335bb6696 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg index 7a3ef1b326..dbd650e7ec 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg index 373de4e4b4..1fad5aece7 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg index 0b175880b9..d710e6e9b9 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg index 508911edfd..32069f7f40 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg index 0ecb10b88b..e68e5cd784 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg index fcd493bc51..076600e7aa 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg index 208f17e7c3..751290b860 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg index 07bf612a39..0ca0f0497f 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg index eb2e6a695e..b4f185f071 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg index 644cc467e4..36fdd853b7 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg index 219153ea6d..520ff9a9c2 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg index a654a9c09d..8484966c66 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg index fb793f17f6..0fba785819 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg index 13026b5e40..0b4efd0665 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg index 21dc4e258e..3a5098cfbd 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg index 7bc4648976..da50a735b4 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg index b8e9e60a71..d1d020a312 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 23 +setting_version = 24 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg index 99c9fbb302..a270cc2c19 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg index 2d0575447b..d04c390a0c 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg index 6aaad33447..c91ec1ecd4 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg index 854c30e546..86bd4e66f3 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 23 +setting_version = 24 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg index 29601ca25e..8055788a2f 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg index 136ddf125b..a4a80cdfa5 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg index 6e67b7bc50..3e9946263c 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg index 58f9f71b7d..ec76a2feeb 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg index 53b1fdebe1..aeaf31ecfe 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg index cb83ab0b66..e2cbe1519c 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg index ead1fb1073..d3cb682a85 100755 --- a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D005 -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg index 91d2b0c01d..b5d58f4c9e 100755 --- a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D010 -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg index e2ed0c55ec..1bf8f8ef7c 100755 --- a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D015 -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg index c5a78b5fee..1e3babd286 100755 --- a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D020 -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg index c4db01ca7a..7fea33eafe 100755 --- a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D030 -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg index d8015320e4..b1f78ecaab 100755 --- a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D045 -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg index 86e6afbd00..3311b92376 100755 --- a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D060 -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/diy220/diy220_draft.inst.cfg b/resources/quality/diy220/diy220_draft.inst.cfg index b72d99e6b7..515406f957 100644 --- a/resources/quality/diy220/diy220_draft.inst.cfg +++ b/resources/quality/diy220/diy220_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/diy220/diy220_fast.inst.cfg b/resources/quality/diy220/diy220_fast.inst.cfg index 96cc12594c..8484f5e981 100644 --- a/resources/quality/diy220/diy220_fast.inst.cfg +++ b/resources/quality/diy220/diy220_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/diy220/diy220_high.inst.cfg b/resources/quality/diy220/diy220_high.inst.cfg index 409b655fed..e9e21cba20 100644 --- a/resources/quality/diy220/diy220_high.inst.cfg +++ b/resources/quality/diy220/diy220_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/diy220/diy220_normal.inst.cfg b/resources/quality/diy220/diy220_normal.inst.cfg index c9d06fff3b..613a704c06 100644 --- a/resources/quality/diy220/diy220_normal.inst.cfg +++ b/resources/quality/diy220/diy220_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/draft.inst.cfg b/resources/quality/draft.inst.cfg index b0510350d2..36ab59902a 100644 --- a/resources/quality/draft.inst.cfg +++ b/resources/quality/draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg index 6a5928fe39..d1f5f44476 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg index 94e0ff76db..d5b9ca7e3e 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg index 8e0753df21..68f82f3054 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg index d15fe35565..f7127ac136 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg index 9c0d0b373f..6fd6c1948d 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg index caae30a653..a7d71c64de 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg index 821aad26e0..dc83ab8404 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg index dda2efc18d..6949a1b344 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg index 80daf5e208..2c341e2341 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg index b8205a51e9..4a894479d8 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg index 639416de9a..7cf062bc88 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg index 28df9f27f6..ae6c1644be 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg index 1027aefde0..afa06bb90a 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg index abb411e9aa..4a18f7547a 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 24 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg index 60854868a7..dce2d14808 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_060 -setting_version = 23 +setting_version = 24 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg index 31f6f2eea5..e20c34238c 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg index 4ceba7f60d..ce8f9cac1c 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg index abaf0e45b0..1b6673593e 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg index 05ddbca9c9..6a54b32362 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg index e7c17603c4..11c4f894e2 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 24 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg index 56425ebc32..e574c70c8d 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg index 18057cbd23..39c6907c82 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg index 5787dec9ab..0371cc4b9f 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg index 61f1200dc5..4835c06400 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg index 64e054eb60..0f418422ef 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg index a3597c5cfe..f89d0b9b84 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg index 6f15cd12b0..27b0e0e367 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg index 326df93ddf..c1a8313c34 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg index daf028784f..e00faed168 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg index 64a766b544..4534cd32a9 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg index e2eecb087f..2de7bd5f37 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg index ac50ba359c..0d2d505065 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_060 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg index b3354fcc42..eee3eccd7e 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg index 236f4546c7..48b9a80e69 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg index 4bff2a9a5c..5f066a593a 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg index fdace5abf3..903c88e7dd 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg index 40ddd88c0d..c4964df54d 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg index 9a8a5ff0be..f8d1befaab 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg index 4035d17d24..ce6f8c2b51 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg index f9dc125bba..a96ea4b147 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg index 615dc1ef52..7fe751e521 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg index ced818bcec..02c70a6912 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg index 29877b0ff2..4ba8bd3a1e 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg index d9efc99162..87a40e0d86 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg index 9abf9fd779..a2b86705d7 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg index 67163bd6a0..2523092452 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg index 6cc3c34161..9047d8b0c2 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg index 9016c13baf..6c04bfde74 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg index 3acd8e9c19..889778909c 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg index 66a007ae30..11d362ada9 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 24 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg index c0f861ed11..79634b0ebd 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_060 -setting_version = 23 +setting_version = 24 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg index fdbe91aecb..83cd155998 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg index 12ab4871e6..fe157f3a06 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg index 66841fad83..67c482e363 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg index 6adae27f5d..18930c9a1c 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg index 7ec14659ba..58a11baeb1 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg index 01f00569fe..8123f29721 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg index 963b61f697..25a47f5a25 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg index 256c231275..908b843560 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg index b9a1aa3dff..4e591ce3f6 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg index ac71e65614..c7f620d4ee 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg index 95fc95df77..e25899d7a4 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg index 84b045be8b..4d8f5d9497 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg index d527b02bca..25e46b39c8 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg index 267d5935a1..f40b777fdf 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg index e2dc623cfc..06cd4342f0 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg index 2a8f9f73de..fd2011dbad 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg index 5945ec42df..8dbb4f9ab1 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg index c747fb3b2d..5394e2cca4 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg index 27a692eda5..ee396f06c2 100644 --- a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg index 582b0f6206..648eb86f09 100644 --- a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg index 79ed3bf4e0..7037e075cb 100644 --- a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg index aa29fd73a0..316e990d04 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg index 6d02bfab86..9dccecae42 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg index 98d77a8408..e7dbbcb6a4 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg index 559a547b75..5dfdbcb72f 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg index 1baad09869..d7ce6a7279 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/extra_coarse.inst.cfg b/resources/quality/extra_coarse.inst.cfg index 2ef72cde59..5db3eb5f35 100644 --- a/resources/quality/extra_coarse.inst.cfg +++ b/resources/quality/extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/extra_fast.inst.cfg b/resources/quality/extra_fast.inst.cfg index 3e432ede96..66684fddc0 100644 --- a/resources/quality/extra_fast.inst.cfg +++ b/resources/quality/extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg index 28dd970db6..7aece03100 100644 --- a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg index e9b55c8635..788c2ea53a 100644 --- a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg index dcacb56d01..2c1d9fa96c 100644 --- a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg index 3858c9d91a..03148e9bde 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg index 45bef0403c..a0a2ed6c1e 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg index 55532ceb2a..10702013c3 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg index 92c4f0dfeb..38f129de95 100644 --- a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg index 5f5d9a87dc..4aeb716d01 100644 --- a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg index b6f13d5efe..bee0d47e73 100644 --- a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg index 3f206edb69..792a26c536 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg index e5758fd610..23c6933b7d 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg index dc86601a44..bc5cfd65f9 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg index 98022f1371..cf1452342f 100644 --- a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg index 8b3864f9be..945ce63d8d 100644 --- a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Fine -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg index c36f61cb8d..de5c4247ea 100644 --- a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg index 61d33928a0..f5727cfa9d 100644 --- a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg index 33af821e05..2a473da564 100644 --- a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Fine -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg index f6a03c6725..f5908b95d5 100644 --- a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg index ec39636406..27fbcef32a 100644 --- a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg index 44870395ff..dd13e305e6 100644 --- a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Fine -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg index 55d0cbdfe5..0de6a5ea75 100644 --- a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg index ac01503afa..6fb077a2cf 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg index 70cf6b75cf..1530d68132 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Fine -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg index 2afb912967..574757d862 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg index c9668fec6a..e04163b282 100644 --- a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg index 26ac9b1eef..27270f79d7 100644 --- a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Fine -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg index 5596b8911d..e35c73d128 100644 --- a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg index 4e0841b5fa..e707f5fd55 100644 --- a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg index faca76f359..59cae75ebd 100644 --- a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Fine -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg index db95936528..4f290cd7e2 100644 --- a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg index d992ad808f..4ce5b276d2 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg index 6751fa489a..acf02e3094 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Fine -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg index be5bf2a03b..8c1cf746f1 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fast.inst.cfg b/resources/quality/fast.inst.cfg index 2bd950fbf2..1bb130bda9 100644 --- a/resources/quality/fast.inst.cfg +++ b/resources/quality/fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg index ceeb33ebb0..6e2f46f117 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg index 59f9dfc21b..8ea07ee8cf 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg index c0ca53f77e..6ffc16ce66 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg index 214e8838d0..69fe3fef81 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg index 840be24862..0fa99101e2 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg index 563fabb46a..fe21748c06 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg index 1644284954..9c38a88bbe 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg index 64deb8c257..9db9f6670b 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg index d70262d6e3..91458b6cc2 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg index dc92a36227..0d42575ab1 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg index a3540c2f2a..2362753dfc 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg index 2af3abe070..ce91e4eac4 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg index d1c103a95b..3ece8bde6e 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg index 8558a9af98..7e2e137360 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg index 9d95220b24..0f52860b93 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg index 34a0265bad..49d82cdeb1 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg index abe8341705..6dd2b9a8d9 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg index 27be971b69..91da5756e5 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Xcoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg index ff14587278..eceacd2415 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg index aae66cffb2..db91b32f9a 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg index 3c0cefacdf..5eebfd1509 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg index 0b679e648b..0f5486edd6 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg index 19e2ba1fa2..a53b35f6b6 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg index 1e7d154fa1..84e2955803 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg index 84e9388526..9f4af67b0f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg index 4454e4caa8..aa61de750f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg index 89552b7d27..f45a348e24 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg index 5823fde21c..219855fdc0 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg index 4749e76a58..c469a468be 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg index 2e27fad0d1..bf48a45c24 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg index 544850b5a1..5529af10cf 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg index 51be6df1ef..e1802f0706 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg index 92db3f7497..a6990bf356 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg index 44c5c7eb4b..9405dde04e 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg index 9385df4953..7182703d5c 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg index 0f7bb26ea3..dc83a202bb 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg index eb77c444fc..f9c3f5c77a 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg index b3c8daf042..5c7cc36d59 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg index 9ca8cbbd12..ad62fa788b 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg index 577b560d8b..7f13413475 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg index d04e5f2713..c8d7c64d42 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg index e58194790c..1c12b51ced 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg index 1cc6c7d5a6..36d40f8235 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg index 004c970641..43742387c0 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg index 01722e32ea..7e323b321d 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg index ea2288f712..38b3f0c0a0 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg index 57ea1716a0..f341cdb27a 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg index 412236a0b4..6535e01303 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg index 2393725b44..73368866b1 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg index ef88b8f515..b0b0d66757 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg index f0ea2efb26..d309674ac0 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg index 1b1a290eca..b979316151 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg index 5045911c77..2c7f7385cc 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg index fdfa82e182..2c501ed87c 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg index 6049accf3c..3103574e2a 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg index 9ad3086e4d..63770ac8f5 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg index 4d02730890..37a3228dd2 100644 --- a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg index 0569e335b9..edc27668a7 100644 --- a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg index ae3e8dbbf2..2706878fa6 100644 --- a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg index 057fd5c164..b51b43e9da 100644 --- a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg index 686394cfc3..a141bd38c6 100644 --- a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg index df8c6440f1..4dba0a51aa 100644 --- a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg index 8ca5ffe6d5..fc29024b31 100644 --- a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -6 diff --git a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg index 2daeadc9d8..f41f873a86 100644 --- a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 23 +setting_version = 24 type = quality weight = -7 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg index a0c8d9634c..4f8a0eaece 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg index fc2a74f13f..63f7ff3ea6 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg index 7287263674..d316a20adb 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg index 49a5747768..99e38815f7 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg index f381d51404..9ba5d1245b 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg index f56ef4cea5..aab95f3b03 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg index 140906c9bb..8cb4b595c0 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg index 8a0958494a..85fe85ee95 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg index 2d1d442ae0..ff135cccd7 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg index 12224722b4..2d09ea51bb 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg index fe3cb31541..adb2fa174e 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg index 987e14ec9c..01bf028f50 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg index 5de2fbac40..b6e0af3aad 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg index 77f453fc03..902d05d181 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg index 3be4591fee..2bc1a42d55 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg index 28dc975374..594555c869 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg index 36f5894a95..1b71848ca0 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg index 328a8a1ef9..4292eebd27 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg index 05907e516c..41307e5a27 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg index c7d703e787..e8765e4165 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg index ff367e7422..a0cbddf15c 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg index e0837d68e5..2ad6fed87c 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg index b2c7b3ae15..ee87b8fb3c 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg index 8254ecd952..dbec5d47c4 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg index 1955a20517..a49f2f0fe0 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg index 33450d9d86..0b7aac311d 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg index b17e8c421f..766f657532 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg index aa39173cb3..e0f12b9f85 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg index ba80b010f4..ae32a81e42 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg index 737bb68786..bc63b56b13 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg index 055eb43155..2722ac2cbe 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Xcoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg index aae8dae743..8ea9fec493 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg index f1dab1f88a..65a31fc7dd 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg index 940aa1b704..20827af619 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg index 2233823918..c4b8b9d029 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg index 94f819068d..2c6814c035 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg index 46fcf05f83..2477ce7239 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg index edb4b63932..ea016b5f8f 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg index 3873c089a5..4dd3fdf28e 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg index 68caeb589a..555f99cb3e 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg index e360f94600..954bc2be2f 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg index 07e9565243..ce777b361e 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg index 279130f4dc..c984b2c213 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg index 68475b9a3f..27fdd1b4ac 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg index a64bce087f..e4562aeb3d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg index 1ff8c93689..849832f1bd 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg index 8d6052529a..3db2373aa0 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg index fde77f6c68..6304705dcd 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg index bac296cdd9..997d00b700 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg index a603d564d1..6c59a13ed1 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg index 253ed947c1..c6dd0777b7 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg index 41eeff7317..71c3592aac 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg index bbdfb71452..8a524e2135 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg index bf68f7518c..cc333ed19e 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg index d0f9b2605b..651c95175f 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg index 4b67350081..108e73ff68 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg index 967c4906b0..eed4ae8e2a 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg index 93671d76ed..19d93da76f 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg index d1becca566..688e72ad0c 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg index a43dec98ca..9d5aea811a 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg index e93f061086..cc355d4647 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg index b699f3488d..7ab8663590 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg index fc9bf8e60c..a7d55b75e0 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg index 402abc4be9..624b793c74 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg index ba5b5d9cd7..163e4a9129 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg index e908862f69..efaf85277b 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg index 1fc1c76255..8e6ee54744 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg index 8a785cccec..4fdbf41f1c 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg index dbfd3fe273..0ba50490f7 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg index 48d67a8657..44bd705e4a 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg index c14b3543a4..e35180e6b3 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Xcoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg index 893f575be8..0593ebd801 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg index 793fc6d10e..53a1b1aa86 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg index c983c9fe5f..5ef07e4b96 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg index a649f8c2bb..b6b541ce02 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg index 84cdfaf7be..7fdd686c9c 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg index 4a6852033e..7e11062f60 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg index d71dbd89c8..a5ff61516d 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg index d4df69f5f0..b84c7d47ee 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg index e379ed2035..5b74e1cb9c 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg index 4520b7cb87..86b2c64873 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg index b4084177b4..9781865fe6 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg index 2b23a1699d..1750bb044c 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg index de66e4f871..76a2453b94 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg index 4f45dd9a3b..e5f6589f55 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg index de3ed6f4f1..850e1ff785 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg index ab3f1260e7..03ea340609 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg index 3b6bd6fa03..011f99a1a6 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg index cf9a7d73a5..9e48b60b43 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg index 628dc43a99..829c12ce0f 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg index ce2a91ad6e..6683a63fd3 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg index d91ec1c84d..df3b29aed8 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg index 1dcbb15714..0733dcf1e3 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg index 21139a85fd..d8ad9c7861 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg index aff1ba5017..28f2fe44e4 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg index a79887ca13..ca2f4a406e 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg index 49335a5773..33e98f1e06 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg index c648bd5bf3..aaf04fc005 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg index 874afda091..6ed2d2ab15 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg index 91eafec12c..9d42b5c0f4 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg index 61e83554ed..aed6866316 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg index dc0da4c92d..dfaec71acf 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg index 8ca5c89a31..dad74c27ac 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg index b7c3bbf127..76621dd4d4 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg index a638f56d61..a38cb1c0dc 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg index bbb162048c..85bd18ae8c 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg index 6c598e033d..fdaa112ff5 100644 --- a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg index f74057ed5e..965c0db6bd 100644 --- a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg index e0a1712310..50ed6266a0 100644 --- a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg +++ b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg index 5ae7ce783f..58f0626f29 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg index 3b97fbbec3..f9e563eed1 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg index 9067ae4f18..5684ff6b49 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg index ba555c9b20..a85218d4e0 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg index 712ffc8076..a439f37149 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg index 7ec3745a34..759e89ae5c 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg index 6d90f7d958..6a5fc8f149 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg index d6909bc982..d7b599e124 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg index e7fcde28b5..e332e6091b 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg index 5137f14e39..7e48a6d1c2 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg index 05ccbc742f..cd5520884a 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg index 4d87172310..6d673b425a 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg index e645dc6064..25f829e8b5 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg index 325f189ce5..3b3d1c2687 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg index 64c4740121..1688c86eae 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg index af09323a3a..4f16487141 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg index 2fe02ed7f0..6663c4c070 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg index b551a10c00..fecb56908c 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg index 1ab5c72914..ebc5b9a323 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg index 7fa1bd9489..899a797c66 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg index e46142baea..e8e9863a39 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg index 14e7112594..acb9cb9295 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg index 90777f4f27..22c477e8a2 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg index bdffacbf93..fc1d3b01a8 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg index 5f83d78564..b3f9f80e62 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -6 diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg index ee4503a01d..6f7734b73d 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg index 1051c04f35..6c8bd5431c 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg index 39b0cd3a95..6aa39f2a13 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg index 992218c567..c9d24196d6 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg index a9e55e4965..78c7c5ded8 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg index 639276336a..02c695118c 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg index 176f54fe31..f6a06df64e 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg index dbde45c7ae..d8d3a96b2e 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg index b962c50da2..4ef98de93c 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg index 7f61cc4893..dc15eda6b6 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg index 4ad6474263..8daa1ee946 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg index 9f9229d901..f392a74743 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg index 23c0c98525..7015554975 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg index 5ff44cc28b..7d0fa100e8 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg index 1bfae457ce..82cf8a19e2 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg index 7a5c4dff28..263e7d522a 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg index b7deccddd0..3881c8f35b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg index 30dd959964..940d0aad35 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg index a6c59756d1..39210bb336 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg index 5d03677094..3c19f12977 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg index 80b7ce3632..cdde005788 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg index ed022ff1a7..ff5225bd81 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg index fb08d90281..287c345576 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg index bee035c633..f4aa38b780 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg index f7e51f3ccf..86923eb7cf 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg index 408bbccf1c..5a504d067b 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg index fed9d3d3ac..3e7f5e2c12 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg index a6c52520c3..121a9ff3c7 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg index 6e8556c649..a67ea19f44 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg index 18b5c61b2b..4e52e80562 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg index 92e2b2d84b..f116c5fc7b 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg index 2990745ee5..0f3cb629b1 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg index 6ae9d86cc3..2d7b9cac06 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg index bef2f08658..99dadd2b7f 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg index dccc9296de..7d20a119cb 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg index 00ea087078..c5ae72b99a 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg index 5949d2337c..ffe57862de 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg index c7fca8f17d..390e7b9b8c 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg index b38c4dc5a1..946cabb22f 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg index c69fb2a58f..62dab4ad58 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg index 6936c9506e..7dba4cf92e 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg index e1c669ac7f..e0592ed2c5 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg index c2e502ea92..0268841f9c 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg index 56f9be67c3..47c9ff7a03 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg index 8af6273550..1810338f18 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg index 575a89d77d..728907eb04 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg index 4988d8fcfd..4b578275c6 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg index 203d6f9002..aeaa7f7afd 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg index d46789d1e3..f465e38196 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg index 7fa9b57c3d..1a4ac8ef66 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg index 01da9606ed..4b2c37991b 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg index 1a9d835227..f91d2ae826 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg index eea62d9901..602046fa61 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg index f672730f2a..eebf9bd352 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg index 2878b3c270..41afc5fea7 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg index acfd12f444..6093e4a24c 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg index 430e88b36a..ef8634806d 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg index 02965b938e..f4371a62fa 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg index 4627852ad2..55134475a3 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg index a5d4c71cb5..911db02008 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg index bce6a871cf..3380c83144 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg index f4506c04ec..ec92fbdd1f 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg index 42700664c2..b7ab141fb3 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg index 5002536077..223d61faf7 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg index 414afc7d4b..4e3bd88ddd 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg index 125d504830..275e727aa9 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg index 2128cebe40..3d7c2d65b5 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg index 844fb8697f..cdafd6b434 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg index 853b1b80d8..99de1aa93e 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg index 00fbabdd23..b5d7d151e8 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg index f0e0332111..f2862e42c8 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg index 068b59ac7c..9076dce563 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg index 023d73a5e7..30c3578aeb 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg index ae22d9d0f0..fd93f8d91e 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg index fba61c57cd..7f2156569b 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg index f33ef9889b..d9f6401740 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg index 68dd1abf08..4cc909adec 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg index 4c6a7e6bf0..4c8d58b19e 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg index 9bf8763a8d..0b3f1fb7a2 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg index a7ac0d2a0b..d4be2031e6 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg index 950b9a87b0..a2f137223f 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg index cf7aea8e4f..c7b51e60e4 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg index 80db600843..5ad09c3e40 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg index 56a06a3261..9c66ecbc66 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg index baf68727fa..2f636cea04 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg index f2d1f7d6f2..719ed80d9d 100644 --- a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_PVA_high.inst.cfg b/resources/quality/fusedform/base/base_PVA_high.inst.cfg index 352494579c..3433374d2b 100644 --- a/resources/quality/fusedform/base/base_PVA_high.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg index 04154bf4b3..f1c00f4846 100644 --- a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_draft.inst.cfg b/resources/quality/fusedform/base/base_abs_draft.inst.cfg index a5c297eca4..760575df8d 100644 --- a/resources/quality/fusedform/base/base_abs_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/fusedform/base/base_abs_high.inst.cfg b/resources/quality/fusedform/base/base_abs_high.inst.cfg index a4f9fa613a..b9e2f2973e 100644 --- a/resources/quality/fusedform/base/base_abs_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_abs_normal.inst.cfg b/resources/quality/fusedform/base/base_abs_normal.inst.cfg index 4c62b0cc6c..d9ca100c21 100644 --- a/resources/quality/fusedform/base/base_abs_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg index d007a855a1..7f720f3f85 100644 --- a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_draft.inst.cfg b/resources/quality/fusedform/base/base_draft.inst.cfg index 8a6910cd1a..0d0e8fcf10 100644 --- a/resources/quality/fusedform/base/base_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_flex_high.inst.cfg b/resources/quality/fusedform/base/base_flex_high.inst.cfg index ba3a62ef36..e17811e263 100644 --- a/resources/quality/fusedform/base/base_flex_high.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_flex_normal.inst.cfg b/resources/quality/fusedform/base/base_flex_normal.inst.cfg index a247d6f6bf..7f9cd23252 100644 --- a/resources/quality/fusedform/base/base_flex_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_high.inst.cfg b/resources/quality/fusedform/base/base_high.inst.cfg index 06c28b5c7a..4b74a817a1 100644 --- a/resources/quality/fusedform/base/base_high.inst.cfg +++ b/resources/quality/fusedform/base/base_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_draft.inst.cfg b/resources/quality/fusedform/base/base_hips_draft.inst.cfg index e02c07f97f..0b66c3abf4 100644 --- a/resources/quality/fusedform/base/base_hips_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/fusedform/base/base_hips_high.inst.cfg b/resources/quality/fusedform/base/base_hips_high.inst.cfg index e015f56f53..fbb7085192 100644 --- a/resources/quality/fusedform/base/base_hips_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_normal.inst.cfg b/resources/quality/fusedform/base/base_hips_normal.inst.cfg index 416747436c..10ae676ed8 100644 --- a/resources/quality/fusedform/base/base_hips_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg index 462791472c..a65f61db22 100644 --- a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_normal.inst.cfg b/resources/quality/fusedform/base/base_normal.inst.cfg index 549dea9145..9f50c14f05 100644 --- a/resources/quality/fusedform/base/base_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg index 8abb293bf0..a916840f62 100644 --- a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/fusedform/base/base_nylon_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_high.inst.cfg index c9dcdf2af4..3b2d132aa7 100644 --- a/resources/quality/fusedform/base/base_nylon_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg index 861a877d65..9fe4899cd1 100644 --- a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg index 12000acf62..41acab4274 100644 --- a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_high.inst.cfg b/resources/quality/fusedform/base/base_petg_high.inst.cfg index 576e790dd2..7465d23d6e 100644 --- a/resources/quality/fusedform/base/base_petg_high.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_normal.inst.cfg b/resources/quality/fusedform/base/base_petg_normal.inst.cfg index 2548ddc851..580202266d 100644 --- a/resources/quality/fusedform/base/base_petg_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_draft.inst.cfg b/resources/quality/fusedform/base/base_pla_draft.inst.cfg index 7ff4389b71..cf5061b8f0 100644 --- a/resources/quality/fusedform/base/base_pla_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_pla_high.inst.cfg b/resources/quality/fusedform/base/base_pla_high.inst.cfg index 26fd52efa8..aafa35aa01 100644 --- a/resources/quality/fusedform/base/base_pla_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_pla_normal.inst.cfg b/resources/quality/fusedform/base/base_pla_normal.inst.cfg index e95ac62277..1bbaae71d1 100644 --- a/resources/quality/fusedform/base/base_pla_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg index fecf4bafcb..cf50e13842 100644 --- a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra high -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_ultra_high.inst.cfg index 853565b80b..a69640ae4e 100644 --- a/resources/quality/fusedform/base/base_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg index b8fb0fc084..4222fda2ea 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg index 170487b7a8..334f328b6b 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg index 314d61894a..c8e924f6b5 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg index edbf7c4d7c..a08332cdd5 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg index 408fd5b062..b64c851213 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg index e4e8ecd157..414d30411a 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg index 3700253dad..34022f1653 100644 --- a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg index 923e252770..c9d52313c6 100644 --- a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg index a716730eed..29b0b96339 100644 --- a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg index 9a414b2f15..7e65b18fdf 100644 --- a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg index 5b343453d0..538e030015 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg index c57e47950d..b30f00ca25 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg index 04bb078949..9a0d4c6f5f 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg index 289646eec4..f8c320e76a 100644 --- a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg index 560fcf2c35..fc5238a052 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg index 20fb1056bb..a49fd1df53 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg index 13885dda24..9207643687 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg index 6e1708c534..450c2f97f3 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg index 2e41da31be..85288f917b 100644 --- a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg index c15be13de6..fc74b604fe 100644 --- a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg index 45380a16d4..9f373c61ff 100644 --- a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg index 1a304a07ed..507d7d8c7e 100644 --- a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg index 49567c3ebd..ed45fd64c5 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg index e8e13fa7f2..6db279162e 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg index 8a9d975219..b8b67ed25d 100644 --- a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg index 29adfb091b..2d23c20e69 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg index fbee684ce2..b03026fe0e 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg index a268baf68b..6e0b003e76 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg index 0c918f88ac..cecab29e1a 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg index 73d199f6ce..b1ae059aa1 100644 --- a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg index e2beebc76a..2b348b963a 100644 --- a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg index 16894ed8da..2b8f1ace19 100644 --- a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg index d3551c51bd..5aa3615ff4 100644 --- a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg index 86b8596128..aec10f9bda 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg index 0e9de77d8f..3ade7ed85a 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg index ffbc74268d..364fcb1c8f 100644 --- a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_global_fine.inst.cfg b/resources/quality/fusion3/fusion3_global_fine.inst.cfg index 4af1cc5535..cae276183a 100644 --- a/resources/quality/fusion3/fusion3_global_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_good.inst.cfg b/resources/quality/fusion3/fusion3_global_good.inst.cfg index 5f36f60d73..6e2dbe6932 100644 --- a/resources/quality/fusion3/fusion3_global_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_low.inst.cfg b/resources/quality/fusion3/fusion3_global_low.inst.cfg index 84bc1e0a27..83bb684ed3 100644 --- a/resources/quality/fusion3/fusion3_global_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_normal.inst.cfg b/resources/quality/fusion3/fusion3_global_normal.inst.cfg index ab2cbf7de0..cbc90e724c 100644 --- a/resources/quality/fusion3/fusion3_global_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg index 91b851f576..95af57e51d 100644 --- a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rough.inst.cfg b/resources/quality/fusion3/fusion3_global_rough.inst.cfg index e3ad70b5c1..0f11196645 100644 --- a/resources/quality/fusion3/fusion3_global_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg index 59475969b8..f2aa524d93 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg index 9fda1b2e51..8e331024cb 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg index 0f3057fe82..a486025a3c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg index e459a9d096..33bf04e3a2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg index 6e4f55fcba..94d22291a7 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg index 3e84045674..4f7fd2ea76 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg index b5b72a1d6a..d7fe1d2140 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg index d1497b1d4b..7fc308dc02 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg index 9fef4f56d2..6a40dfeafb 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg index 3150c7bf1b..44ddb0645f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg index 321f584169..aed1600fc2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg index 79203249f8..eb8345c1a2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg index 23ad0fa136..dfb34fc718 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg index bd77f7a194..48dd3c0061 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg index f6e74f21de..19af2ffecf 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg index 6a0ace1634..6a6483e8e9 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg index be9207dfe5..f31a8421b9 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg index f0087a0135..447279a8ba 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg index 08174d60e3..094e256827 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg index 5db816a83a..7a134ef964 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg index 45179cb24c..74204db80d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg index db97cac4f4..94ef610b6a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg index 5036b82e30..50e72aeb43 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg index 8a9cdf11c8..83f156c64f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg index e3a026eb54..5536ed711a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg index c510219770..b9b1541092 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg index 6ca89507a9..6f3cc6e378 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg index f9c427f3da..19b82743b5 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg index 00afeb3d7b..a19beb2ae6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg index 013a9a81c2..6a6f35119c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg index 5cfefecfad..87d14ef2e3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg index 64662fdfe2..ad81d2a829 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg index 14797b146b..decc3f9535 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg index 5b47dd59da..bd3763e9bb 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg index ebd00a13aa..7c79f70ee3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg index 6abd2e66b6..f5463e2938 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg index 9b1deace62..fc3d3a3a11 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg index a5415cc14e..a27b80df31 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg index 16fd183692..a3cc5ca5c4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg index 6473b02231..ca58d3a57c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg index 696f4ef947..ed480f2280 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg index 362ee45ceb..7352d0a6b7 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg index 6a68da9a6b..b985501006 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg index 3647e19894..36099b077e 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg index 1e4e05e520..c27581ef99 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg index a86131a041..9f13ddab2e 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg index 298569b4e4..8624cea2b4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg index cb34fe279d..b94db1038b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg index d650752d4c..4152aeed84 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg index 4bf0718a0b..43266c8cb9 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg index a8c395e18c..b04b27492f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg index 238d5721a2..d801b2ce3d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg index d4aea0867f..cb01b35063 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg index 6ab31aac4a..fc832929f1 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg index 4bcdf7c5ae..db0814ea53 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg index 16a6a8866a..481c061901 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg index 2d17a5669a..806d59b8a1 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg index c23ce9e590..e57139e40f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg index 19542d65bd..81916171b0 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg index e963451053..87acce0469 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg index 5a71879909..88ab9d3aac 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg index 704342ad44..b8c4a9665e 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg index a8c9fbdfea..39183f6544 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg index f166dcd8e0..3bf1684b93 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg index a9370c5674..d40635ef30 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg index 829c96a27a..06ad5eae3f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg index eb9747c47d..8bdcae0ae4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg index 5a4ca40612..01be873997 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg index 29f950977d..f176ddb21a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg index 41fa491055..8528422c58 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg index d8036a5885..1e277c7254 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index 120b8e9cb3..67d41aec00 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index 6718a49e29..e9932aca5e 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index f42f350d69..810231527d 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg index 2a65300e35..4adc4d6635 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg index 4ff40b9db2..18fc7c72ca 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg index 2aa06147d8..4bc4d529b7 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg index 1ad1a76b9b..bd1459d6bc 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg index 3b0b433ee4..fe07013f12 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg index 44aeccf545..d33f718183 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg index 635575d990..1aac78bc82 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg index 2c0df2f7ac..94307ae9fd 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg index 4b7e34524e..889dc908a9 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg index 40370dcd41..dec2d62cd4 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg index 9ea1e92e5f..d98479271a 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg index 4f899585ec..eeea5d0e03 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg index 2c9710a487..285b2733ce 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg index b0c8caef65..c416f2ceba 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg index b30bd33e3c..fb3ce2277c 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg index 9e6f652f87..a16126c77c 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg index 7ca5a1939d..54758df74b 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg index d382453320..cafad09435 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg index 617bee3083..b1a78a6e3c 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg index bff7afc626..6edc4902ff 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg index c6949b5820..15971f033e 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg index ee28d12a05..64432688d8 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg index 981aed3726..80262fdf89 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg index a752b4ce18..e06fff2c81 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg index 602551cd69..eb40d4536e 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg index 07cc2fcdae..3409c23aac 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg index cf030a6f8d..1804814cf5 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg index 55e01a8ba1..e6cbbe5eee 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg index e42993080f..9f93ca2ed8 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg index 1a73f46b85..c65be3a180 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg index dbf082da40..cd5fd002b6 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg index 65321d4fec..1a81d66b8f 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg index 75d8941434..2ca8d4eb2c 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg index eb09eda464..01ea7e5df5 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg index 6f7d653798..849e72fb05 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg index 7f37899966..3a4baa441a 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg index d1c6e6bead..2b605b1535 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg index 2daa1107a6..b4c6ce3dd3 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg index 9948b00c8d..3e8f705897 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg index 9e060de7cf..76f7dbba73 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg index 4bdd3ef015..9badbc17b4 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg index 9f1afa96f6..59e17d8e47 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg index ebd0e10908..14d8d68cfd 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg index 01b7889d9b..fc30206654 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg index 099097d723..97afbb97b9 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg index cd9beaf5a7..0502c6809e 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg index 93c7bc6d49..e1c3377087 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg index 0011ca9d41..000778e157 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg index d219cad79c..cbb33e7595 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg index f57797456b..e103617266 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg index 3fce59afe3..b7b2896828 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg index fbd171efa2..a190c83cdf 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg index d2bb27659f..00e1ec36f2 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg index 99d27a7f56..2fadeca0a9 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg index b0a4334327..66febdcbc6 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg index 6bef72abfc..6337548f45 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg index 5d0c696b34..159dcc7329 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg index 8e755fb23d..f374b3137c 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg index 7527db4b4b..62460c8360 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg index 921cc3c0ce..0454a6a39e 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg index 9c5b3a901f..b56f9f593b 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg index bcecf64b08..2b3c2aa8f9 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg index 6704636080..b26a59ea23 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg index 89014792ab..78c6f68ee6 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg index 7cc9f07223..edaf8788a7 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg index ff991d2e92..9bb32d2c0a 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg index 387bc2803f..03d890c327 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg index 4749e80886..780a45ea4e 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg index e2cc8ebc5e..84660f354d 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg index 636cb46324..ef7ca38707 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg index 94f7035de6..761cdce701 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg index 046c224eee..d27979507b 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg index c82d1e59d5..8dd1e275bf 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg index ba1f025416..cce611f8f5 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg index 7c13e9a36c..8158c49652 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg index 3de4182895..9613b54fb2 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg index ea23db0653..3f2b2058d4 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg index 0d0d14a536..8536b0150e 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg index 3bb109d6c9..33166b1c00 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg index 5edf0b9bd8..3f8e3713ea 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg index ae16cbc3b8..39e6607cf4 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg index 182a5eb557..d294580ced 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg index 1bea3a0353..602cd6f209 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg index 8fc710811b..66c8c1253c 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg index 8c5e9ebcce..67af2dd32d 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg index 2a905fb6a7..957be7ed58 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg index c07fd746d1..ccca628956 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg index 6f647df03f..0710df322d 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg index a908ae58c9..d0798e9e20 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg index 503947b259..c952db17bb 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg index e68a678370..0b66a4a6b4 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg index 2c8ae1a79f..7188b5c5c6 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg index dd79f1ffa6..d7d6ee45f3 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg index a7f82c656d..6261c57a69 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg index 5f7de68aa0..17555bb27f 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg index 7594f90b2c..5c2d9cfa9f 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg index a26870a135..91afb25c21 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg index 4728c71a2f..4001857c4a 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg index 9c4c3d1b17..4a32cf5986 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg index 93b15b522a..d5ba7be7b6 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg index 7ca4ae0e0c..5d2d257789 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg index 7c6018bf2c..c9bd78b11b 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg index 4b88ea8654..fcc839aadf 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg index 9894d7449a..9e20d7dd7b 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg index 6ae4291645..90581ac410 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg index 5deaafd570..9c2de53de4 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg index 1640a2df7b..8e8b699b5a 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg index 907140849a..4c993264a4 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg index 575a91c50b..2e87a84d69 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg index e336fdd056..d96e8bcf1b 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg index 1dadaad261..0ad7caa602 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg index 427fac9af3..790331145f 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg index 723879fbe7..c8f5eac832 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg index b5bb1979f6..99ddc81327 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg index 5501ac6902..f917558a61 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg index 9866bd5114..65b276ba93 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg index 4aa0b53205..09f837e635 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg index 5cbec44964..58e0f362b2 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg index a6d91a1007..f2ae5cf940 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg index 8c640dfb5c..663451375f 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg index 53222d2273..c9a7f15335 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg index 348a785acc..06349f0055 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg index 46567e5724..4f326d7c75 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg index 4390447146..4a5c8734c2 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg index 2d28320a98..ea7ead673b 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg index 17b8df3dbd..b04d7b3e65 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg index e832ecfd9f..9935faff9e 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg index 3d1af0cfde..53c77b0a71 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg index e2bf82bbaf..4a880c72fc 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg index f7dc4ed76e..06fb694fa0 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg index 6c1d838564..bd9e944696 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg index 896c4734d8..51b19b3089 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg index 2ef08555de..1d673872de 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg index 674a74b59a..5699acee26 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg index 060f1b2078..2ac942455d 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg index af1847498e..7794e02c78 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg index 774904af4e..449bf7193c 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg index beb2bce12d..f208610f14 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg index 19e0532dc4..43e017fb01 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg index da00944e6e..4688ffb42f 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg index e59c08ce03..6961bd3658 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg index 121b088b85..b9826416e1 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg index 6bba94e2be..39858804ed 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg index e0f595bde6..76cf95798b 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg index 9ede72af1b..1ba938f9f1 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg index 0be8604ae4..f2b8812f80 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg index 7ba70b1d35..8119dccd2e 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg index 356904c310..df01d28eba 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg index 43f9621a4e..01e5f61561 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg index 30365cd67a..60cf730537 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg index 7cda0fac5f..d5baacf706 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg index 527bf85048..b1c7fa8789 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg index 2080deeacf..3270a016c6 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg index da0a593f95..9b0e5f3b22 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg index d8d1a7ca87..ddefe4dc58 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg index c22215a97e..f150af61bc 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg index 361687e2ee..6a217cc876 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg index 0b40b616f0..dbfdbb87f8 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg index a6352e8542..c6b16d8762 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg index 217577960d..b89940f930 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg index 5224461e41..b7c62f15b2 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg index d80a21dd47..26f5feb0de 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg index 6e77446e48..3e4c780d70 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg index 5b23f59e2e..7f1cccb760 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg index 0c8a2e9d47..72df9e7f6d 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg index 9170a6ccd3..04fba9c151 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg index b7165ca165..bda8f7ea1e 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg index c9e9e48f4d..82fe31b9d4 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg index c4a2ae6ee6..f2924ee8e8 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg index 03c98d3620..9ef26d892d 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg index 0651e514be..67ca71c154 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg index ef9c935596..f4bbf372e5 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg index dcd50bc969..aa9a8a31ea 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg index e536456bc9..218c48496e 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg index 9deab3245f..89bb70465d 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg index ecf42151cb..e107f1978c 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg index 02c02bc3e6..50806f3072 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg index 245bae2a99..ba359dc33b 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg index fb58a85c07..03517732ad 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg index 4d97e9e32d..2e224e9506 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg index 065fc1731c..44ae610be1 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg index 9ea26f12e8..904c23f4ad 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg index 5128f225a4..2dc58b1ab6 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg index bdcf429b4b..2ae6ba51e9 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg index 2f2985b521..ccd14e6cf1 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg index c31e8c3165..a554364f89 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg index 77e928ecde..30dae77aca 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg index 4f300b8df5..c04823d7c3 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg index cf42e403b0..f37b0b1389 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg index bdfc2bc6ac..f87982b24a 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg index 781e1a49ca..d29c89a202 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg index a01576b86c..ade2f06ac4 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg index d6e876a7d5..3261ce883c 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg index bb2f366c99..8ca031dbd0 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg index aa93b4aa81..e55801cc42 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg index 05ba27ebe5..8843ceef23 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg index bf53f2de7a..d95ac1ca2c 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg index d6c47ed9f1..d66339a387 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg index d7238ad4e5..12eb80195d 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg index 6ec648b3d5..94a26cd12f 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg index 623995b206..22626f7bbe 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg index 44c249c816..8273912d68 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg index 9be8e0a81b..d939ce18f9 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg index 55946c3114..912cb6f1b5 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg index 905359674c..676b99a800 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg index 924af69d3e..9dbca806f3 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg index 2397cfaa83..0fd5511552 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg index 38a70388ed..ea8cad4ab5 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg index 62c13964a0..1c58475efb 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg index 390be62de2..0c1b44a6c7 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg index 30931645ad..8c9bf0c2c9 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg index 33b80dd579..7bbed38a96 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg index 250cb060bc..7cdd669741 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg index a69b7dcc37..b9b50c48ca 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg index 9b822a58c9..dcde3500c2 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg index 59283a5e34..88dd7bc21b 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg index c55e3ad761..51d1cd112b 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg index f0f668ab32..13e230eb1e 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg index 2688901e07..accd85fd39 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg index 47045c91b8..c4e80b70ff 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg index 7b1b50ad63..4569cf2b19 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg index 6cf5819318..d712e1e293 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg index 156a652a8f..636f6eab6a 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg index 1a5215be93..d32c13a5cf 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg index 8c16dc8cb2..3457e9e1af 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg index aa74e974f8..b98d518163 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg index dcbe3f44fa..16b445d15d 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg index a69c6e51bc..0a089f48f3 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg index 5cf34da5b3..c44fb2e775 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg index ab90f22afd..aa2d36fb4d 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg index eb511de63f..5474c023d4 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg index 9a84bc7a23..0355056aa3 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg index af8d148076..b1c2a773eb 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg index 4ab82b5dfd..6c506f20bb 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg index 83dc2864d9..cacf61f1b5 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg index 43e36bb640..58f3557392 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg index deedf0bf1d..ab64df0159 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg index 142cb15786..6727d8c7ca 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg index 9b770447bd..a9732d7a92 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg index b80eabd35c..e668a1ec30 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg index 44730ff9d3..2cdddbae44 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg index 1cdf589a09..ec8ba08a83 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg index a4e470199a..a9eca59efb 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg index 20d6b7d38b..702c89e42d 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg index d71b7310b4..ee585148a0 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg index 75bea2fc24..b30c53b1ba 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg index 1d054195e1..fb039f3419 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg index d82203c2e7..6f35a077b9 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg index cfeab2566c..1251b6b71f 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg index 2448c605f0..b41367711c 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg index 9a817f0e39..1dee7a78d8 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg index 380f4e2dd5..2a9863ad6a 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg index 439bd15e25..2b0440e00a 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg index 2fa405b164..ebec0ab89b 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg index 5c7cf701fe..9cba7714ae 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg index 8c59997a60..59ae58cf40 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg index 00eca070f8..3f412e2274 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg index 33cb7b1a87..a5e0a1714a 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg index 5f54ebf647..89a223dfe0 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg index 9eaac26a42..0848ef5a5f 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg index 041302c244..07a8e35e01 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg index e80ab9d9ee..7bb8e89167 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg index ad81d57fb7..1539bd97ba 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg index 0443634dc4..6e17637b6b 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg index b5275e5c2e..2d2d284b0b 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg index 353632253d..3678e23beb 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg index 274cbc354e..654156d73b 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg index 6a85e0c7ed..f5d9a691ac 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg index 08aca6b910..9d10cb0d14 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg index 1a1e074028..bf130e5c8f 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg index f9f8010d49..a07815a8f4 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg index 9defbeb911..da630de6e8 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg index 983c32e725..5565c9902b 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg index baa5bcae96..ddfc7b09d8 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg index 4f94d09d63..a5176a756f 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg index 2fee6bc6ad..b0dc976e7f 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg index 6f205a97a2..3985ae8ab0 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg index fa705a5520..48ebe4f78a 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg index 0baea30908..2472aad1ee 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg index 15c3ea0e2a..eb8f7bfb09 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg index 8b56269c2d..5942583385 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg index ea804f05f4..7650789c8f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg index 274838e728..cc14d0f29a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg index 0e78ad6acf..904e16a5d5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg index c340d22e6f..b087d389ef 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg index 92050f0dc8..7f67a43610 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg index 7976f5db53..7b32f84f87 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg index 44b404c6a1..f5a2aaa19d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg index 9f71bdd306..61366a5df3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg index d9b2378055..6676b0e146 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg index 74ab85f6b9..6210aa0e84 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg index 54753bcd6a..ee5cfae78e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg index 53742da7ba..6967a2bfff 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg index 1b830d2bb4..0bed2d2f1c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg index e6b6248c65..4e146e868c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg index ca03daad0e..76b69a3ca2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg index eda258e7de..fe7be75593 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg index 7d1fdddb59..33e38f3828 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg index 474ec20184..fd86cfca33 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg index c19ce0e996..21e775c3c8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg index 524229cfcd..f8bd768933 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg index b4c78531a4..5ff6f7d5bb 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg index b6f9ae029e..cd491d7afd 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg index d681300f02..d9f3af713d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg index de5b575061..2bcbe6d09e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg index 86536b0e01..148f630391 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg index 12df7e9cc9..e17d7508ea 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg index 576c85cdfe..9c59afe6f0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg index 2d739906bf..bf855617ca 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg index 77e61240d4..b3fef3d6ed 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg index 27ff3f26f8..0c0cd402e3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg index 85b73e4b6d..57f34d9e4b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg index 21ca35b524..c3f38f6132 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg index 9ef89bb7c8..b5c75a8048 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg index a85340ad4d..c50b4400eb 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg index e2ddb16800..74df078797 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg index c820a301e7..72d436e235 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg index c0cff5cc4b..66253d49da 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg index 9931f64de2..5eab14ea11 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg index c954561593..b71e8edae6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg index cee16a757d..5a615c31fc 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg index 76215536e6..6fa823eaf6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg index 02e0c41bb5..47341532c5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg index 5a1e3c456a..31b4a157ee 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg index 1f36479435..6d9332925a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg index b8c86af345..257c228394 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg index d12504ba95..e4c268e631 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg index e5031178ca..47e9fa433c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg index 2e60dcdcc3..19520efe05 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg index 39dee8a34a..2efa5efa3a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg index 7b2eaa4d07..f46056e310 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg index 81378a00fe..4f004cb795 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg index 2079e1f0c8..e30a84af55 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg index f2380c7cfe..8179b0c4b6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg index e3f6c13bea..3a4a29b17e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg index 2dce8f735e..07a2d776da 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg index 3f60c32563..a0a35192b9 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg index 53f23e6eb3..7afd083079 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg index 46e26a0626..9ec65f240b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg index bff51d98fd..a5a323aca3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg index 1201a30d5d..0baab52f2d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg index e9645c7f0f..a1957f31fe 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg index 7e7fea7877..df9f616cbc 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg index a4ee3f3bf5..04c928ce93 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg index 125f0e9beb..dd2d3971b4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg index 8a46d6cbd1..6112fe7180 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg index ea6cbec13b..6d721826b9 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg index f7a613a20b..2a9c6651a6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg index 44ac6c91b7..381bc4c7c2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg index 7f93f92adf..dd5f95bf30 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg index 61a251e220..585026ee82 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg index 7db0bfd557..eb7c483201 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg index 2f8a3bdb57..90fb2f93db 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg index d78c1b2bf7..c8c078ad84 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg index 0513491e11..7811840884 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg index 3f92cc307b..5362b7cf75 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg index 4c4fcd3605..91404fbe18 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg index e36d6cc922..90affad44f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg index 16679787e5..518d6316e0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg index daadf2a25f..8e4474f60d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg index 220f3b38e7..079cf3a637 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg index 72b6c17e6f..f3f386b7b5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg index 480a6d0d46..2b77997fb8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg index 4aed3391d2..0450a73162 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg index a8b259e40e..2f8ff6af71 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg index 4515d11786..7c3f65d70d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg index 9332be7f50..4c1cad927a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg index 75cec5183e..c0e4235e43 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg index 875390ef4d..ac72c79e46 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg index 40834d6db8..6483eba8c5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg index 23c59fb500..1a021ddd55 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg index e2ad9d6fd4..7e4844e279 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg index c70bdfb20e..63c8b7cc0b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg index 9f860abd28..81cd21667c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg index 520f8fc8a5..21844fe15b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg index 8fd2bee068..0c7f1ae7b8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg index 561bde734c..bfb6f49857 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg index 671b54bdf4..20f98cf51f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg index ddd379be18..60e1da073b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg index b123bd5721..ec1150efc1 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg index 36875a4c57..62ae3159e0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg index 11fafe0809..b8ada0d861 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg index 0fe62096af..4fe0416ccc 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg index 29f1abb2a7..b6e4cfdecd 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg index 00deef516c..b75c8d1dab 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg index 94ae0743fe..a73715e031 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg index f9b94fc257..fdd45bd2a1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg index 46a3a9fa61..49633ffb71 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg index 56f92ab16b..30ba825b6c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg index bd58e7adf5..00deeb44ad 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg index cee9e4dccb..57c0065064 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg index 9f02a5215e..28eaeef3eb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg index 6f53a862dc..47ca736558 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg index 6046f738c5..023f198e1b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg index c07b6dfad4..d4c31cf248 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg index bdda4ef8a1..d050224e43 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg index fb0fc68a5c..d0020613d9 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg index 4c01ab631e..b8b6424a82 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg index 1a4c2426fb..0c4b12cc17 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg index 968a7a9c67..8fc7af7940 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg index 6a216a25a1..c56827975f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg index 457eefe206..8ef08d4e29 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg index 5008a6a0ae..9116964565 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg index 2e9e44565b..689693ba0a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg index bcd800c289..c6e0e41bf4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg index aac1990e10..d42b3723b7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg index d8e6eceaa6..1a1c62e721 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg index 0f3d79ceca..40da0a1128 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg index 35d29dfef7..36572f8d1d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg index c4bcca2059..d2ff2fe115 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg index 0332a2f238..51c82da024 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg index 931a14e739..1858029f84 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg index c613d41901..83569f7f61 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg index 9ca43bb40f..e59ce4b906 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg index 57332ca7b7..a70b979e32 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg index a19e30459f..00710e2b86 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg index c6f687d186..77c12dfeaf 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg index a8416f211e..6bb3e21dc8 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg index 7e5063001f..aa5af90189 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg index 80e240c99e..588e3e2118 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg index 30c88bcb71..fb304b1d34 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg index fb5ce48208..769825dea0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg index 5e4135d37f..f2d21048ea 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg index 2ca72b6478..a2731b6c74 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg index fb76a0b203..1eaf1de871 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg index a604d591e7..c8f9642adc 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg index 36aa675aa5..494e5e237b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg index 9f8ea69fb5..7869d70642 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg index 30b78bc806..ed6c585174 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg index 440620c4f4..797e0e39a6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg index 7d04f1fe66..8acbe3cafa 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg index f31ca3a447..3675aacd14 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg index 78337e4399..bab562bba4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg index a522b67182..a47a7ddc02 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg index a5237fd688..16b5e16f2e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg index 0735eafe6b..0b5d6a4c53 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg index ac8f22dae5..0af1f3651f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg index 2137bb44d6..5769cf611c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg index 8bf07b71bd..68e3526979 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg index 1b0303b4a0..ce3a6a2509 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg index 12af81f8ff..cb52df2f4a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg index 5f23442d9e..f042858d1b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg index 1e1954997d..50cb444dc4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg index c2dccc4c29..e0c063950c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg index 29be08b135..38b3be7398 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg index d1cf9b5edf..dc18860dbb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg index eeb45c2cca..9532d1c943 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg index 8205023bcd..f36b7d8f9e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg index 3495ff4d3b..4a6872bdb3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg index 208e9a81be..32c41b413f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg index 2df649ca35..0b1b5c359e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg index 1e56bc12bf..ef81a3eef7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg index f1f8cc59ce..ec6fc6befb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg index ca0921304a..d158a5d6a3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg index e2fd6b87d3..9115bbfa0e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg index 52d3659570..7ef34b0f1f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg index 8a005e13f4..46073fa044 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg index 35831312bb..edd73b4c9b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg index 0ff8d89664..bf0a437f61 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg index 43859075e1..061bf66e26 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg index 09e685a14d..a25a9c747f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg index 99187ad5df..2971ada501 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg index 81fdbdbafb..4db8951440 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg index 3ed41c0309..ca9c5f1652 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg index b51daea66f..bf8384a5c6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg index 1a054a1259..09a5d0038b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg index 9ba820f877..5156c85cd2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg index c89eedbf43..e98edb3548 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg index 39d4687305..6b842e057c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg index 7bd3af8187..28a301ba3d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg index da4acd2f6f..a24850332b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg index d3a322e465..88e2f43030 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg index a63a8816e7..2e4a618c37 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg index de0137a4e6..6bd8796e72 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg index fa28f435c6..f1d975f4b3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg index 16534a9d4a..96e66a792d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg index 3025e1b77c..6495ba58d9 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg index ebd9e68fe0..2123fa9640 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg index 7f039d1a1c..b7e7afe396 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg index cf026efa1d..08f0926550 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg index 83700acaf2..ebfe63bbde 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg index 9c912e786f..d9395ac60f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg index c38c5b2fb0..3b83f379aa 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg index 44f3add9e2..82112d311e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg index 573484ba80..2c3af06bb7 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg index 9aa7c8002e..d3a2e07353 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg index 46469f6f29..0ceeae3420 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg index 05eedcdbb9..1cf34cdcc0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg index 681f07472e..acc9aa19aa 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg index 30ad404a8c..73e23e6c0e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg index fbe87ef6c6..6c16d49a59 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg index 9fe7f059cd..01440258fc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg index ba0d5867f0..695cb1bef9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg index e8848d36ed..014369ded0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg index 5a581ba104..d62d330f5a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg index 9999ad4926..6f95469f47 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg index b99ed6619c..00b9ce7263 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg index e69de84b62..c5c5381e0d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg index 181121e481..be0f0822db 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg index 073a976f16..fa379612fa 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg index 4a508a0a06..30b7f25c7b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg index 3c8b00f626..d4dd4dddc0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg index 3ce95f7a63..c86e89e75e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg index 3b41b07a06..57f0e71760 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg index 3210f1da7b..2137f2e8b0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg index 46e75f3899..5b73e3e205 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg index aa4f99fcb3..93d3c2e70d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg index 679e88140f..11e675e091 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg index 1b3680cf73..38fec9524d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg index dac40bc410..9b995313e2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg index 80b5c6b650..65a8c5ec4f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg index 17b366bf72..5e14075c91 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg index cee54c2363..c4c04cf39d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg index e4deeed9db..20c3fcedab 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg index adeb956660..d422fbe162 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg index 682d398b68..706be488a4 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg index e465530528..6f2be7db63 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg index d7a74a43fe..f9a1d25967 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg index 50ecaf14ec..defb9cbe23 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg index 04334a9c55..d31bb4923f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg index 427ecf378d..28aa170cb1 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg index 98fd96a26d..da7a15900e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg index f4dda4780a..3c84dd99d0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg index 6d9bfd898e..2b1f842f36 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg index 83789925b6..7e0ebcb3e6 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg index 6807168f8a..ef89b1dbcf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg index 72f6883afd..f7001286b8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg index 8070d0e64c..9bb3f41e6e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg index 4abf8d0c80..74f8353879 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg index 4367c59ba8..8fc468aa67 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg index 7290662db6..10a621713b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg index 28b3cbc3be..c4648eff7b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg index 48f1358124..613e6650bd 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg index 63395c97e2..762006ef2e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg index bb80d477d2..5c628ca7a4 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg index 234019da73..b8c20e5362 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg index 8106b3ef21..bfb67aa505 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg index 7ff797252c..b56efc3a23 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg index 2a667d6466..fb9e87f0c3 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg index df35985225..6046be248c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg index e2d4610158..c163f22934 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg index 495ce5971c..c3db67bc25 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg index 7d13a8dadc..3ca20117e0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg index d895be517a..55a8b21cdd 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg index e34dcbac6d..c0151e8bd7 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg index 86db2a4d45..ecb64d82fb 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg index 6b4d27dd4a..782f993ead 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg index 4886566493..c2aaeab8de 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg index a38cf1fd2e..be468f1a74 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg index 5a23fd57a2..91eb3c175a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg index 8e4170d9d2..18ce754956 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg index 938461c5e7..c4875ccfa6 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg index 9e4a762812..711ecc8214 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg index 336196c2ca..1bf7cdab30 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg index 16e9d629c1..d53883f31b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg index cedbff00bf..6b048ac903 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg index 434da68f63..944eabc455 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg index 5e46e31d8f..a7fe8ad398 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg index a0b4939bf2..bc0ff7a4e5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg index 4a39e1c8e1..24ba1a4fef 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg index 96b2f04cef..0bc561a271 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg index b3e32302ab..72a36fc596 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg index c64a33386e..5adef1190f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg index a7959b6cc9..618ec6d94a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg index 2493925bfd..eadc3734c0 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg index 1f98a763f8..a0740206cc 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg index f464e71639..e35df4784b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg index 279a08f94f..f2b46839c4 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg index 29a442d2f2..c316894932 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg index 806e5fd9fa..ecdf0c1f94 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg index cc43279098..4fd29efdfe 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg index b308cdd674..3388e9607c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg index 5ffd943827..ca73a16936 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg index 90011648e7..2e2190c575 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.7mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg index d4be1df646..63bf627553 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg index c1d11ee1e5..4ef6e2086c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg index 06d6553302..e4caf869a9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg index 713055db6d..86f8e2d4f0 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg index d537e2bce9..23b1a72495 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg index 67e57f4a4f..280f57ce61 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg index 4bbf391b45..deeb2fd4fd 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg index 01dc8f7675..5b83456a76 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg index e2dc4fb2ba..70f7bc9e00 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg index 87062b3c99..251f2fc278 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg index c6fddf4d72..4b4a731a67 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg index 011559774d..55c70ade8c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg index 7838ee5fee..299b7bd192 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg index 197d91b836..6c4d30119e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg index 835f59c754..e534809d7c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg index c5e129679a..c20957d1e2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg index 2e70de1784..b061b99744 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg index 0b690d4ea6..b2a62eaa27 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg index 550659cd4e..dc9c9b19d3 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg index db0e547e98..f25d8fea98 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg index 3b34147009..c5df5a9320 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg index 506475b0b5..3f5cd754a2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg index 75f6251d43..3eec6d0820 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg index 0020c6afc2..dd050fe85d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg index 1721758d21..3f4cecefea 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg index ae3a1f9195..be6849d33c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg index 7ceb595c4b..5a4a68ee39 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg index 436fef5536..f3948ad8f5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg index ade3324090..e6c173e297 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg index d84355a0dc..e9b18db58a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg index a8ac3c5a58..8ecfa1a95a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg index 32d826930a..24a7d21e3d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg index e0b1b83885..91bb30fb13 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg index 8b2d5d8dab..7422932479 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg index a4e05f0b1b..d523809cff 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg index 3dcf5d8cf2..006912a7a2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg index bebb81291a..ac0f0379fd 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg index fb219f2e16..ddb315b42e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg index 9c23538b5f..b9bf511a26 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg index bd4e3851be..a16c1bf6a0 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg index 6d788974ce..50e3ebff78 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg index be1ad19db6..1312205c77 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg index 133e168d63..449c30eba5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg index 2d895109ed..bfc9210793 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg index d25c4c2793..6e8792dcd6 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg index eef04ba0f0..7ac335b8f9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg index bc6abd6fde..c3d9fb6c92 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg index 444258d3e7..9123395ac9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg index aafee1609c..ff0eb233ee 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg index 91dfb9945f..6cd095471d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg index 383b814804..b6c24c3bea 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg index f15973a0e4..cd7f6ce6d2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg index f1855c07d7..ba296a7d96 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg index 2cff52d0d7..4a58a7df4b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg index 45b10074a0..55c32a55fa 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg index 55c4a61eee..f55b4e43d2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg index 243bdcfaea..1065b6becb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg index 8913a0d710..663c738768 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg index 7e30359f03..9704253cf9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg index 6aabac6e5b..6d0218a319 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg index 61e3bc8944..efbf751eda 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg index e24514e973..d35d3f4801 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg index f2a18d1a0f..030baf23fb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg index 25f5eea228..244c69997d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg index d6f8b70abb..8b652abed2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg index 78b6abfcce..c07c1b5ea7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg index 4d2b12b952..d2e012d392 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg index 89863c4c31..e526399dc5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg index 9f9fef6d60..068060a65d 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg index f7e1050f20..f6f65b7260 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg index c04809b64f..86b0d8a269 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg index 1668ede94c..20ea272f9e 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg index 62933a4fbd..de0252c7c8 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg index 7bb06108a0..cf9a5e5923 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg index 1c0691a7d6..f38f713a57 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg index 48f165411b..18bb1ef898 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg index a106cf2fd2..4c556ca2f7 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg index feccfe4d0c..d431094541 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg index e7c73d65ec..174efb3a44 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg index 072c9b3697..b5575c568a 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg index 0822ed9395..d72455056c 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg index af138ec9ad..09bf69731d 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg index 5f56b9858a..866fdd7f91 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg index f19c453c06..3262c5e240 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg index f771663bc6..ee8412ccc5 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg index 88619447b8..e40f18c61d 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg index 32d055d519..1808434018 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg index b387713b73..e7d02f1d53 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg index 9ef41cae42..bb3c4fd880 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg index 0f51bcd54a..593c8233a8 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg index 6d2760a8b6..1e52a178e4 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg index 9024d3af2c..d945f47db0 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg index 6d65d34038..b8b66f65ec 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg index 951d21a24a..30d431fcfb 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg index 03902636ee..8568535ee2 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg index b427f6ade8..aeb913765d 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg index a818846db1..a28ca7ab5b 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg index 7156000c89..aeb975f545 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg index 2bcce8c08f..221adae74b 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg index a89d332e92..0d3645e52a 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg index 7accd1dc5d..592ba552f4 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg index eb55f19744..861ffef909 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg index d6cdef8f46..4148c658e0 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg index 4c7386319d..b3f1939f99 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg index cfb6048bfa..ae03ebfb76 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg index 7aa0d81680..af6440127d 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg index 7cbc5d0d5a..b1f865e0b4 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg index a217770025..fd9ac4fd56 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg index b5e6cfd2da..ca1918e4fc 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg index 3bd3ce920f..11122b971a 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg index beb9b922a1..c625aec4ab 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg index e167dcac9f..46a098cffc 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg index 664f3e6ca1..4b60ec6e35 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg index 444da63072..5770a7ed77 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg index 3f9ada087c..b38a718571 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg index d00e73fabb..27f932c83c 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg index 4343317dfc..4486d342f0 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg index c286dc2485..8c005d0f45 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg index e31017db6d..2c4b4d40c2 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg index d05f817415..26d6e08707 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg index 9a47845871..37bd85f4bf 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg index 49609c7121..30bf664179 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg index 0647fcbeaa..0bb4031253 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg index 9e69c455dd..2769a0c9ae 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg index 0b1278493c..36bf8399ef 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg index 1d31469cc3..28041603f2 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg index 7e9261a810..8227f84840 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg index abc24c245c..db2e78e84d 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg index 9d90340c7d..9b20620627 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg index c3369b073b..1a28a345fa 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg index 098e1b2733..f5e2a7f645 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg index 034b928933..a4cd047f91 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg index 47443f2158..ccc1a47163 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg index aa2c30969b..bb9a2bc8f1 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg index c032396476..a28637500b 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg index 99e48b52ca..ab44f1e22a 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg index 960ea90df3..db3aefb3d4 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg index f6be30dffb..900c38e0e4 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg index 01f7d71e9b..8b3ed8da98 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg index 02adae91d8..28021d8a18 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg index 5bbf15d831..a358843c35 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg index 22109fa736..7b06fa0ebe 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg index d005f36294..73a30d8a9a 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg index 51afba93ed..2fe4ae1ae7 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg index 435b079942..3fbec61e80 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg index ee17b3b568..9f58ed264f 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg index 9d3027b926..a23dbb2c1f 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg index b76e7d1237..b961fe2dba 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg index 306b13f499..50b353fdaa 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg index 7fbfd04d18..d5195ac253 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg index 3829cd6681..1f27cae9a7 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg index ef53446b4c..d1c5b88476 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg index c59f80887b..aadd2c9434 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg index 55ffd2c0ca..01f3339b3b 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg index a00cca72fe..d6660ce929 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg index c0348c50a0..eaaafc764a 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg index 9dd50875e1..71ee382fd0 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg index 5975aed497..f9767f61e6 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg index 3e2c862d7b..df353fe5a0 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg index 67f9a187c8..55eaae669d 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg index fd576bf979..7be7394119 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg index ca2db4cbc3..2eb2433472 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg index ba6b8e3bdd..1d0543b08d 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg index d30b9f23c7..cb2f5fbed7 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg index 104e8167c3..fc9568c8ac 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg index 28a10003f4..dfeadc9da1 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg index 4acd15ea0f..11534fff54 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg index a31b09d1e3..f289697d44 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg index 7de788b6cd..42c1a2f253 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg index d07ac3d50e..fab2718405 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg index a9c8d61167..d0e2caebde 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg index 9e11cd6a41..89cbf03911 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg index e29af7fa79..e7544714f1 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg index a29e3ab72e..6488614bb0 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg index bb0e6fe9ab..8ca2419576 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg index c810bf612f..5d354ecb12 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg index 268f749a4e..e1c831f35c 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg index 4eb93f317e..65e5ff075d 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg index 7b584856be..6712c52c54 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg index d82bad2d38..d2e8bada76 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg index 3fbc6b312f..f4c5f68af1 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg index 4380089b59..ba3a0f66f4 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg index 144a7913ce..04aa1126e4 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg index e844f9d899..99862ced18 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg index 38f9972768..10d8252be8 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg index ea465314fd..8b735c39e4 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg index 4fedd884d2..d22fbe3338 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg index 10dac63a0a..5b3b7df78a 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg index c196470d71..457b821334 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg index ad943c9b4c..c1c8343924 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg index b5829eadfa..43208a2d9c 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg index c062f66dfd..70e6af2259 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg index 13461b69ac..2b9eecd335 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg index ab3386b24c..569c5dd1c0 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg index ec1e72432d..667b2410ba 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg index de5ddffaa8..5e454ec4ca 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg index 92727c490a..ad4037a3a3 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg index eb9edd824d..2cf4d0f8bf 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg index 13fced9fa9..bd80b3dae9 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg index a54569e07b..b6c158ca7d 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg index d21940b51e..cc425e83dd 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg index 9a0b95203e..72a78416d6 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg index 6b7ee19e86..f4b826e449 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg index 6ae18a8b21..b1184015c6 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg index 9ac8127039..9189b2a5a7 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg index 2c703191c8..63626419d8 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg index 07a9538f65..ffa0ef0f75 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg index f0fcc87112..c56d69217e 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg index 95bd1f3d8e..883065f505 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg index bf773f65c4..ef15c495a9 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg index 59bd0b6edb..f45c04f58d 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg index a7df472cc2..fe103892c9 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg index 0fda0370f2..3c7a924c9e 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg index 9d1f7abe98..b4ee4351ef 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg index c04888e54b..b2f5d0e10c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg index 165a7be1df..a517a43d21 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg index 2487452a5c..63379d0282 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg index 3992eb5636..cfe26bda42 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg index 4fbf336105..11d40f3ca4 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg index c71962cb1e..707f050180 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg index c444297122..c6d253c110 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg index f2448b4f1f..d24338073e 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg index bec02e01c0..1f5b409a69 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg index 0b61c51846..9b05b596f6 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg index 0d8d49da54..b492aac0b4 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg index 13bb7b8a48..325668c7f5 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg index 900bbfd174..7055cd9a5b 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg index ac47dccb19..51107aca27 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg index 18854e1f8b..0eb0202e49 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg index a3d82be732..3eb6fa5602 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg index 734be5fbb5..0b5b74145d 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg index 23b596fef9..aac53d6df4 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg index 7fb524d988..9c83dcde00 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg index fc703723a3..17dfb1ce5b 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg index 583ccc7233..8922dad032 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg index 82e8848521..081942573f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg index 93a3eeceea..c080d13ea9 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg index 23665d699a..689c450266 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg index 85f0bb9e0e..e6aa110ead 100644 --- a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg index 55b1637938..e38117d9e3 100644 --- a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg index a70b33ef30..b8e2829ae2 100644 --- a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg index 12d536938c..ba94b4f3cb 100644 --- a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/high.inst.cfg b/resources/quality/high.inst.cfg index 5b78cb99d1..60e980306f 100644 --- a/resources/quality/high.inst.cfg +++ b/resources/quality/high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg index bf18f50f12..3e615080f4 100644 --- a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg index c70f229a77..178206d092 100644 --- a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg index 9b016128d3..050f415638 100644 --- a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg index 7c6743494c..af5cc4b8c3 100644 --- a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg +++ b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm TP extruder weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg index 8edf92e6eb..ff3d880c05 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg index 60703ed4a0..625864a3f9 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg index 50f79ee486..e96b348a39 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg index 4382e3194b..9a470bdfe5 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg index ff8acff08f..1e61025d92 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg index 194740ca18..1e00618772 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg index 649d0aa573..ddf7ad924a 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg index 33f64bac61..df1d35a127 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg index 55ef0c54bf..480eac21d0 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg index e9efa56b41..0c1555d08c 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg index 79c5d00156..660cff2d49 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg index 24975658e7..86c29e7288 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg index 92cc50fe64..9d377adaa1 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg index ee758d4c06..b9d9cabaf8 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg index f400857822..e367192191 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg index ce0a5d45f5..f212dc8f5f 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg index eddfaeb3ae..9bad91c8fd 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg index 4d498a7d4e..8d51ed7fa0 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg index 1f0999bac1..2a4d1e9638 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg index 4cfc017bff..562b01c63f 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg index 952c67285c..6952ba95ad 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg index a9f4ce4136..14f58b81f5 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/inat/inat_base_advanced_materials.inst.cfg b/resources/quality/inat/inat_base_advanced_materials.inst.cfg index ddd332c199..f1484ad44a 100644 --- a/resources/quality/inat/inat_base_advanced_materials.inst.cfg +++ b/resources/quality/inat/inat_base_advanced_materials.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_advanced -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/inat/inat_base_draft.inst.cfg b/resources/quality/inat/inat_base_draft.inst.cfg index e24e5cb684..8bbab4e9a0 100644 --- a/resources/quality/inat/inat_base_draft.inst.cfg +++ b/resources/quality/inat/inat_base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_fine.inst.cfg b/resources/quality/inat/inat_base_fine.inst.cfg index 3274629305..7f1940c037 100644 --- a/resources/quality/inat/inat_base_fine.inst.cfg +++ b/resources/quality/inat/inat_base_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/inat/inat_base_standard.inst.cfg b/resources/quality/inat/inat_base_standard.inst.cfg index a7ff77f71c..b2fd8f9a74 100644 --- a/resources/quality/inat/inat_base_standard.inst.cfg +++ b/resources/quality/inat/inat_base_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_strong.inst.cfg b/resources/quality/inat/inat_base_strong.inst.cfg index bb49238d33..2efae00ecf 100644 --- a/resources/quality/inat/inat_base_strong.inst.cfg +++ b/resources/quality/inat/inat_base_strong.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/inat/inat_base_tree_support.inst.cfg b/resources/quality/inat/inat_base_tree_support.inst.cfg index c7985d704e..15547a0587 100644 --- a/resources/quality/inat/inat_base_tree_support.inst.cfg +++ b/resources/quality/inat/inat_base_tree_support.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_tree_supp -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg index 61f44fe2db..fc16efb3dc 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = detail -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg index d29c72d391..84a8f82715 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = optimal -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg index 1e07e55fff..7b5ca74fb4 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg index 4ee1bab58b..933c8ae224 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg index 2df4e25328..19a45c1056 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/katihal/alya3dp_normal.inst.cfg b/resources/quality/katihal/alya3dp_normal.inst.cfg index b9605426b8..24b5bf04f0 100644 --- a/resources/quality/katihal/alya3dp_normal.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alya_normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg index 0cfa315170..9ff4a7ccf1 100644 --- a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alya_normal -setting_version = 23 +setting_version = 24 type = quality weight = 3 diff --git a/resources/quality/katihal/alyanx3dp_normal.inst.cfg b/resources/quality/katihal/alyanx3dp_normal.inst.cfg index 4accd0ff52..8ad9036865 100644 --- a/resources/quality/katihal/alyanx3dp_normal.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alyanx_normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg index 809f08de22..2aeaaa8ddd 100644 --- a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alyanx_normal -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/katihal/kupido_normal.inst.cfg b/resources/quality/katihal/kupido_normal.inst.cfg index cb6a330c8b..1483a2ce17 100644 --- a/resources/quality/katihal/kupido_normal.inst.cfg +++ b/resources/quality/katihal/kupido_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = kupido_normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg index 63f63fe194..636cf13e7e 100644 --- a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = kupido_normal -setting_version = 23 +setting_version = 24 type = quality weight = 3 diff --git a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg index d363393593..27f8f5714e 100644 --- a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = kupido_normal -setting_version = 23 +setting_version = 24 type = quality weight = 3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg index d809ae48ad..9eddab7734 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg index fc8fd5c7a5..10943cba27 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg index 34651bc83b..9952d3b365 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg index 456784f7ca..64dd3a593e 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg index 8a4bcd4968..74f8cd074a 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg index e413d82cf5..fbb2154f8a 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg index ffe75aeb45..ec89f82508 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg index 099e5081b7..a808c347fa 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg index 6b7c08d2bd..c7c2eec48f 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg index d8d485ab99..90c995db7c 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg index d92fd6ca25..1852530231 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg index 297a0b9e85..d091584379 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg index 5630fdefe0..e96ab8cae2 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg index a74f9f83b0..c51f20b7de 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg index cb5baf62b7..f065c6d096 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_best.inst.cfg b/resources/quality/key3d/key3d_tyro_best.inst.cfg index e5b68e36b8..6e1cd2e2bd 100644 --- a/resources/quality/key3d/key3d_tyro_best.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/key3d/key3d_tyro_fast.inst.cfg b/resources/quality/key3d/key3d_tyro_fast.inst.cfg index d988800c1a..a24a781c00 100644 --- a/resources/quality/key3d/key3d_tyro_fast.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_normal.inst.cfg b/resources/quality/key3d/key3d_tyro_normal.inst.cfg index a7d361bdac..d04661f9f7 100644 --- a/resources/quality/key3d/key3d_tyro_normal.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg index 6e146e7b70..fd8ede4d87 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg index 1567cdd68d..a5e89b0942 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg index 267c47b676..b21c9f83b5 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg index 68c797149e..22a59e6ad2 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg index 7b5ed95354..10fb2c257c 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg index 0f4d5f9132..c1c0244ba8 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg index 201e6a7b27..7dddc9b181 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg index 4ff7b3bcb5..b0955f8293 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg index 9732857f87..5a1c2ff8f1 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg index 600158f328..b0d8e7ff7f 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg index 08ae5147ed..2dbbc53cf7 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg index 6bd87de8b1..51d287b068 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg index a9ee4d58da..5aaa685c21 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg index f92db9d0d3..8656fc794f 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg index c13c12ff0e..33214fab91 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg index 9705ae65b4..89361ee8f8 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg index 4bf4616338..6237aa4d83 100644 --- a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg index 18743bfb14..2ff6d8e219 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg index 90b68a4b2d..4f9deea30a 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg index f4e2967c60..22526386c4 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg index 90161eeb14..48816992b7 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg index 88b3f0fac3..4703f85aa2 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg index 669ee1ba2d..4741489226 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg index ecda7d46d9..a82d1cf8b7 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg index c7c486a8b2..a0d9ec662b 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg index 96103eaeca..5171efe32e 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg index 3b9e707058..03ee36064e 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg index f65914591b..3975ee98f0 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg index dd9512693f..35ae6fed1a 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg index 8ddbf80ae3..ddbe208a69 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg index 2d3e127421..84f88d361c 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg index 712d39c19d..92504708a9 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg index 09210cdb3c..85636274a8 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg index 70efb35bad..956dd87ddf 100644 --- a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg index 0d75516111..adf134086b 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg index a8cf9eac90..61585bbcea 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg index 096a94fbbd..0be8ad8fb1 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg index 184fd09da7..7cc12b0b23 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg index 825f2a1ef3..b39399b680 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg index a243276092..f63924bd46 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg index 0683da11e5..8ee74b50d6 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg index 272fd0531f..d1d2455ffc 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg index 78116453e2..69cb2bb0f9 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg index 3b02bf9e14..95c178976a 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg index 08afefaa7c..c14f2124f5 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg index c07aec9317..7da71ce2d6 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg index 6309f6637e..649433a8b9 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg index 58c6b73697..ae32a04d41 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg index 8a7142b9c6..35b1c5146a 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg index bf4471ea15..f975a5de47 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg index 9e4c79f1a4..217fd36ac0 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg index 43328ed7c2..69b2fe30ff 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg index a22662c906..fb887ee3c7 100644 --- a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg index f27334e5f4..258f0be5cd 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg index cbc2f2688d..a2eb39770c 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg index cd78f0f22d..c636f993f9 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg index 0ff82bd8f1..e6060c5ad5 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg index 7e15efbd9c..735fbb752a 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg index 91ff4fa64b..ad3653366b 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg index 335da8db18..0fb8499556 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg index 5d2f1f1b45..ddc476dbe8 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg index 48fa66b72b..f07b960525 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg index 0b965f6a3d..f1bd80702c 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg index 6b7aa3fb02..3630c250d2 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg index 8fa29c3e7f..a2f2105225 100644 --- a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg index fd3c7d48c6..e72e6026f2 100644 --- a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/kingroon/kingroon_global_draft.inst.cfg b/resources/quality/kingroon/kingroon_global_draft.inst.cfg index 0e1282093d..eb2c20514d 100644 --- a/resources/quality/kingroon/kingroon_global_draft.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/kingroon/kingroon_global_low.inst.cfg b/resources/quality/kingroon/kingroon_global_low.inst.cfg index d0687eb4ba..357a41b046 100644 --- a/resources/quality/kingroon/kingroon_global_low.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/kingroon/kingroon_global_standard.inst.cfg b/resources/quality/kingroon/kingroon_global_standard.inst.cfg index 7a6a1a0ff2..821fe10db9 100644 --- a/resources/quality/kingroon/kingroon_global_standard.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/kingroon/kingroon_global_super.inst.cfg b/resources/quality/kingroon/kingroon_global_super.inst.cfg index 24651d6e30..5d1f01a11e 100644 --- a/resources/quality/kingroon/kingroon_global_super.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg index ed8f7487ee..31162c8290 100644 --- a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg index 068213f167..4d6701aa7d 100644 --- a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg index 79ac2a8dd1..858f5d46d0 100644 --- a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/koonovo/koovono_base_global_high.inst.cfg b/resources/quality/koonovo/koovono_base_global_high.inst.cfg index fa7f77732d..f8584abdbe 100644 --- a/resources/quality/koonovo/koovono_base_global_high.inst.cfg +++ b/resources/quality/koonovo/koovono_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg index 529fb00e0c..15f8a28856 100644 --- a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg index 2555cbf163..469123b357 100644 --- a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg index bc4dd518f7..c24af59285 100644 --- a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg index 50d4b9d85c..84fcca2977 100644 --- a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg index 0b96cdc9f1..4d9cb0bd56 100644 --- a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg index 8ad236a3a5..bfb4afc3f0 100644 --- a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg index 7edc4475d1..d636094c16 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg index adbf76cf59..007e68a608 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg index 8f02ace622..fe5e0768b9 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg index 481f928668..e94f98a34d 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg index 793b141039..12d90094c0 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg index 82d3afb3c3..d28862cafa 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg index 79a9ec7afe..1b92de47b3 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg index 20e046ae9d..43a3801de4 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg index 9ab6e00494..036488ba1a 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg index bad45f35ff..c3513c3f84 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg index 2c1b409a61..81827e6674 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg index 92e7b6f1dc..ef238a6c21 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg index 43dad6ef40..198a198afd 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg index 61e64bcdce..309b305537 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg index 72279f861e..262b3e1664 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg index b0c5a190d2..078e753d12 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg index eb8bfd773d..988098892d 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg index 64ab7b9b1a..f6f600d86a 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg index 3ed34d7d21..9bd6b6f7b9 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg index 6f2cace35e..753602c774 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg index 9a99d3d243..f1d338f7b8 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg index fc113b83c2..fb15eb4fa7 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg index 3a2cb07bd1..d860cdbe34 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg index 3119dc6139..f9c9e04cc9 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg index f873d577d7..5dc88c3b43 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg index 3eb242372e..16c4b7b9fc 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg index 65e6e3b18e..990690464e 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg index 796de0a70b..d17c215482 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg index fee2e03376..147c0116d1 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg index bfbcb68eca..d360ee85a5 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg index da52676e53..0e7f8415f4 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg index e4b64bc6dd..e73453ecaa 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg index 2d2411a178..e1e4d3d176 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg index 2b81e1bf5c..e8f9d986b1 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg index b1191d4a49..dfdfe3f850 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg index b38068f681..8b07dc748f 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg index ac516c9182..c2cff6f274 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg index 7141c80b65..7bf5336785 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg index 30dc909d48..1386c26858 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg index 2fad19c793..530037b8a5 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg index 29a059069b..5ea1418b8a 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg index 504681900f..07e51c5074 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg index 9916790871..93fb7420ab 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg index 9197ac19ea..e760862e4c 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg index 650c292701..10e7437037 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg index e97ebb3a2b..85eddc9b09 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg index 23d6bb0ee5..a1ad0c2b2d 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg index e833d7f132..3b2f31c3a0 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg index fe21da3107..2a3204bf1e 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg index 40970b649c..88364a31f8 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg index c889900b38..d5a758c23d 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg index bef9ca1bbe..13e415b3c7 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg index bd78aaee1c..a639650fc2 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg index cf03a5eef0..5b2ab885b9 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg index 279bf1b9cd..ce9996a173 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg index bcb84f17d2..82a61cc6e6 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg index 846f1debc2..ee08e37511 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg index ca74c20bbc..36ead54025 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg index 5397b2ffd6..9424e2878e 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg index e89de5246f..225d0b605d 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg index f14bf32f35..01d172007e 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg index 19b419068a..7448f0ebb5 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg index 909a8cebee..4434fa5a5b 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg index 7ed1077b3e..bff2090577 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg index 449deae2ad..9304dcb046 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg index 5473b935f6..b826450997 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg index 0a20b2fbf1..dbf9fd2480 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg index 21a69ce7c2..64df0372db 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg index d0f709d405..b2a07626cc 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg index 7bb2651f33..21052e9b89 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg index bb773464c8..0c2fee8667 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg index e355bd25b4..af9d1e851a 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg index 617821370a..46dbbd8315 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg index 84339d288a..4f52eb7b9b 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg index 69869e3fd6..07f1ceadac 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg index a51303702c..970744c1b3 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg index 6dda11cc51..8536a3f515 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg index ad87dd1196..c0cdeb36f9 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg index df5df7cf6a..f49b0d2718 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg index d2a4c50817..01cd576886 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg index 097f8d4eca..0c44d37785 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg index d30b3f83c5..d56275e14c 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg index 613a72ae4a..e84aa27b82 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg index 19c26a6cc3..e22cd0d13b 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg index 6e81d2d1c6..a01b5ceca5 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg index deabef32a8..3dcebad46c 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg index fa55dbe427..595a2befcd 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg index 3d4f20932a..e1fe33f870 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg index a5b2708995..0cb6714e46 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg index fb492bda7b..8e65705d18 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg index e6f942ff5f..4a30e07558 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg index c0ad2d4f36..4a338118b5 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg index c617b11b87..4885eea8f2 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg index 3707ac77ff..7d711dd0bb 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg index 64a55d3c0a..0e84183266 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg index 940dddc62b..36fc4f8082 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg index 175bcd85d7..caec77d820 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg index e4fdecd332..257ec66be9 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg index c11539a7fe..8016222af8 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg index 47077570bf..bf50524554 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg index 49e6e755c5..1377ca98b5 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg index 3b57ab093a..cd52e57429 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg index 84ce5bc92e..3f3bafdf43 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg index a9c094251b..7db05f0ece 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg index fccb8288ed..23f277b6dd 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg index ea294530e0..709338809e 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/longer_global_adaptive.inst.cfg b/resources/quality/longer/longer_global_adaptive.inst.cfg index fe9c855ded..4e4eb4a64b 100644 --- a/resources/quality/longer/longer_global_adaptive.inst.cfg +++ b/resources/quality/longer/longer_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/longer/longer_global_draft.inst.cfg b/resources/quality/longer/longer_global_draft.inst.cfg index a93d4aa255..648ad1edf4 100644 --- a/resources/quality/longer/longer_global_draft.inst.cfg +++ b/resources/quality/longer/longer_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/longer/longer_global_low.inst.cfg b/resources/quality/longer/longer_global_low.inst.cfg index 3e38f97bef..fbce24ba47 100644 --- a/resources/quality/longer/longer_global_low.inst.cfg +++ b/resources/quality/longer/longer_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/longer/longer_global_standard.inst.cfg b/resources/quality/longer/longer_global_standard.inst.cfg index c8ee6fdb8e..d77891f06b 100644 --- a/resources/quality/longer/longer_global_standard.inst.cfg +++ b/resources/quality/longer/longer_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/longer/longer_global_super.inst.cfg b/resources/quality/longer/longer_global_super.inst.cfg index db208391a3..930765d4d5 100644 --- a/resources/quality/longer/longer_global_super.inst.cfg +++ b/resources/quality/longer/longer_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/longer/longer_global_ultra.inst.cfg b/resources/quality/longer/longer_global_ultra.inst.cfg index 7bf07f7c85..6d1d03e0b4 100644 --- a/resources/quality/longer/longer_global_ultra.inst.cfg +++ b/resources/quality/longer/longer_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg index 5afe35de2c..729ae7cad2 100644 --- a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg +++ b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg index 6313dcb6be..aecfc0547b 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg index 37eb3c1762..c3571db899 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg index dc2a3dd90f..8816d8e1b8 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg index 35498f1237..b01943f2a9 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg index 6ba4fa8e52..bcf5f82d61 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg index 87bfea805d..2444d85698 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg index 238f45df16..be20d2f684 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg index 44667c79e0..86b9d7d4dd 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg index 4593a16ed9..8711d4e05c 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg index 0027871b23..5c12720ab5 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg index da25e42b6c..4d7321dec9 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg index dd8b85c1ab..99a03aaeb8 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg index bb9b810157..e5f5fbf451 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg index faa108a83c..3454b3a8b5 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg index 528b877958..5909b6433b 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg index 7402b0f81b..02303d5f45 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg index 259b34ef55..52aab95bc4 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg index caf8ecbff7..8701170cd5 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg index 7dbc1778d0..5f40f8f592 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg index 9bdfb41533..3e52e844a8 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg index 6871e99b76..fa9ad132db 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg index a5f982f2be..e797cc9c51 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg index 33f99e5fcb..f4368fc71d 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg index 46480c1bf7..67c5c040b7 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg index 82787afe54..ac85777c76 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg index 642d0810e4..675b69cb77 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg index 0695f9fe57..3ef34d38f8 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg index 18a65ba0c3..9beb8a1768 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg index f3a017087c..fd7db138ae 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg index e9c279967e..2303ad0f8c 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg index 1a74e53aaf..0728053216 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg index 99291c7ffc..cd2f735b1e 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg index 7822cc565b..0e7bccea56 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg index 72681de427..c19836e767 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg index 53fc6550b0..9aa3c67d42 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg index 26dcce8ed6..26f04bb006 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg index 4695644f2d..d4cba5c9cf 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg index 42487ec3e6..8051def9df 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg index 3c1359073d..4c4969a216 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg index d1a28a7653..9c8bf66372 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg index 1e7c29a347..e41603b3c6 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg index f8211f3d41..b39efd3ea5 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg index 3785771f47..4a4102a2f9 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg index f0af9dbc34..dae905f64e 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg index d0d1a4ccf3..eede9d592c 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg index c5ced7c9a5..804da05e3d 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg index 7b7a024bf0..5deb9f0233 100644 --- a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg index 61160d6bb0..392b6661b2 100644 --- a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg index acb60b6c9f..5174b73cc4 100644 --- a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg index 35dec16918..ecd04ed9e7 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg index 53a2bc13b3..0d172ae663 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg index 6c126047ad..5e3d9edf6e 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg index e6e118e21f..8c15a32acc 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg index 0b5acb5a1d..70b11540c4 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg index ebb706385c..3e73b72332 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg index ee0e96899d..c5adc42a65 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg index 8a8ee114e4..b134a363f2 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg index 37c01e84a1..9b1ba0f560 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg index 92efaca3e6..081e9ebd32 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg index cedcc4aee8..4f504bb26f 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg index 5a47d08a6e..cb0e1230c5 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg index ee9baa433e..792599fe07 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg index 4505d985f6..1473ddad1d 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg index 1b6c6b9a64..8f12af797d 100644 --- a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg index a69338d3d9..9b8bf4b71d 100644 --- a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg index a4519d007e..dbcfd20e69 100644 --- a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg index afa0fab2f1..59f7ca4dd4 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg index 9157f938cc..7a8a03f939 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg index e74c862004..d9a62b9f9c 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg index 0b4e80354e..428fae3683 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg index 09c7cbeb8a..5bd521f180 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg index 2b37626e56..0f48719c03 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg index b23b08c986..0b953c6266 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg index dc73a650d5..7e856cb8f6 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg index 2e10d594bf..46d989b079 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg index a8f4d0d870..35ae06dc60 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg index 516fd69b22..752aa56635 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg index 9f620c26e6..6c51222002 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg index 26a6e27821..295abbede4 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg index 25155655e7..0124e6efb8 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg index 494357a91d..8b4ad8ee91 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg index 7d870437bf..8f33d03b24 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg index f102e574be..3aa7092512 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg index 70842228e2..17199b4ca8 100644 --- a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg index 05cf9e0bbc..8e42ef072f 100644 --- a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg index 1967d1be9f..ec8bde2805 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg index 2c1cf471df..a03fdc2508 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg index ff3f81c034..8e94e7a1ed 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg index 77e839eaff..f2a777d016 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg index 442065f509..f6e697b9e2 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg index ac3882c1fc..20d4118ec7 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg index f705eea1cd..dd18d291a8 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg index 7626ff56e7..11b42e5054 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg index db3124027b..328a7eabf9 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg index 0dc6d71649..9d07fc4b68 100644 --- a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg index f34b342364..26594e870b 100644 --- a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg index 7b410aea17..7e2a31690e 100644 --- a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/mingda_global_adaptive.inst.cfg b/resources/quality/mingda/mingda_global_adaptive.inst.cfg index 79435798a9..8360861341 100644 --- a/resources/quality/mingda/mingda_global_adaptive.inst.cfg +++ b/resources/quality/mingda/mingda_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/mingda/mingda_global_draft.inst.cfg b/resources/quality/mingda/mingda_global_draft.inst.cfg index b17f84f742..f00dd23a07 100644 --- a/resources/quality/mingda/mingda_global_draft.inst.cfg +++ b/resources/quality/mingda/mingda_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/mingda/mingda_global_low.inst.cfg b/resources/quality/mingda/mingda_global_low.inst.cfg index 723fe0120f..ede31e55ea 100644 --- a/resources/quality/mingda/mingda_global_low.inst.cfg +++ b/resources/quality/mingda/mingda_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/mingda/mingda_global_standard.inst.cfg b/resources/quality/mingda/mingda_global_standard.inst.cfg index e17f3bcd93..4220fd485a 100644 --- a/resources/quality/mingda/mingda_global_standard.inst.cfg +++ b/resources/quality/mingda/mingda_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/mingda/mingda_global_super.inst.cfg b/resources/quality/mingda/mingda_global_super.inst.cfg index 64fd4936cf..089cda1cd7 100644 --- a/resources/quality/mingda/mingda_global_super.inst.cfg +++ b/resources/quality/mingda/mingda_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/mingda/mingda_global_ultra.inst.cfg b/resources/quality/mingda/mingda_global_ultra.inst.cfg index fb7385fab1..1bd2bdf95f 100644 --- a/resources/quality/mingda/mingda_global_ultra.inst.cfg +++ b/resources/quality/mingda/mingda_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg index 3702314162..6e42e521b0 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg index 1f66a09b62..496041818d 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg index a155a520d3..116f65e94f 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg index e21090c600..44a2458c87 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg index 6414ce4589..d7b3958db1 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg index 1248585ec4..4fb25b0be2 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg index e9859c9cb7..c3e852f4b1 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg index 0bfc4bf338..b40164f184 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg index 23754001ed..9df3219d50 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg index 2d30739115..f3f832abe3 100644 --- a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg index 00d6e94cb4..251ea000bd 100644 --- a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg index 7b2ca97af3..d23dcfacd1 100644 --- a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg index fd19842b62..83e3c08fcd 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg index d7df5c5ff2..d3ef9892cd 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg index fc1e193f97..96b6b4a926 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg index 289722633f..25da3490c2 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg index 26caf03d8f..6db757f896 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg index 0f305d4835..586190107e 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg index ed96f8a8d7..53cc03019b 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg index 0272e99c0f..76267055e1 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg index 018ed5f7d9..5f80f209a9 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg index 76118d401e..bb2eaabe05 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg index 99cfa4cea8..3adbc2aac1 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg index d015825894..9661e486cf 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg index 39b0ab1f79..64011e8a6f 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg index 5cf1aa4219..db57954c17 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg index 5d5e352eaa..f7adf740f7 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg index daa141e464..e606962b23 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg index 2f8d8195b4..1fe31c8181 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg index 96d771d5a7..247080da92 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg index 19c4743970..bdd9c2be5b 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg index 218b8c0769..49d932015d 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg index bc4f11b1e0..f155860be2 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg index ad4b1b467b..2e8c128c42 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = thickerdraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg index f9c80b0079..4ad5f91808 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg index 14784247dd..edb512d07a 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg index 151e21fdd5..105a90945c 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg index e0735cb0ff..bc889f7e38 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg index 6184ba86b2..16e0bcc815 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg index 2a8eeb3dd4..5ea5eb1da6 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg index e7e772f85c..bbf09a6b13 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg index 300db25f2e..571d497b5a 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = thickerdraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg index a3d8287a53..f236002f23 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg index 376782ed63..47fddd5b99 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg index 6dda9f5f85..9e84e6a3dc 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg index e67e012831..c9147b5d2d 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg index d449cb1f50..d0a5b021de 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg index fe8bebaea0..a63c5da396 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg index 00684445f6..7170c49dee 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg index eaa2f3c8b4..4c5b1445ce 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg index b89c9ca342..0fb6f575c1 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg index 7da4ee15c2..e98906e174 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg index 1efd7a48ad..ceff8a48c6 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg index 1ac637cad1..e1e916e719 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg index c18c95f385..765729f316 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg index 7ec5bbab4e..664b83f6d3 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg index 74bd8f8aa4..e0fa137f3c 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg index a60be7f5f6..b8473c5b0c 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg index cb94eab696..a63372f7c6 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg index 8c2b8b5f67..da80708eb9 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/normal.inst.cfg b/resources/quality/normal.inst.cfg index cdfedcd6a9..53ad610475 100644 --- a/resources/quality/normal.inst.cfg +++ b/resources/quality/normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_A.inst.cfg b/resources/quality/nps/nps_ABS_A.inst.cfg index 8788f2d15a..1ce19c0123 100644 --- a/resources/quality/nps/nps_ABS_A.inst.cfg +++ b/resources/quality/nps/nps_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = a -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/nps/nps_ABS_B.inst.cfg b/resources/quality/nps/nps_ABS_B.inst.cfg index c73992eb31..80fb1fbfc6 100644 --- a/resources/quality/nps/nps_ABS_B.inst.cfg +++ b/resources/quality/nps/nps_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = b -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_C.inst.cfg b/resources/quality/nps/nps_ABS_C.inst.cfg index e4b974e03b..ff45c0fb3d 100644 --- a/resources/quality/nps/nps_ABS_C.inst.cfg +++ b/resources/quality/nps/nps_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = c -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PC_A.inst.cfg b/resources/quality/nps/nps_PC_A.inst.cfg index 811df9ffdc..3b83c2a802 100644 --- a/resources/quality/nps/nps_PC_A.inst.cfg +++ b/resources/quality/nps/nps_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = a -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PC_B.inst.cfg b/resources/quality/nps/nps_PC_B.inst.cfg index d972b6d5e6..7cc75abef1 100644 --- a/resources/quality/nps/nps_PC_B.inst.cfg +++ b/resources/quality/nps/nps_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = b -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PC_C.inst.cfg b/resources/quality/nps/nps_PC_C.inst.cfg index 1c91d7f319..e22410bfdb 100644 --- a/resources/quality/nps/nps_PC_C.inst.cfg +++ b/resources/quality/nps/nps_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = c -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PETG_A.inst.cfg b/resources/quality/nps/nps_PETG_A.inst.cfg index 098fd7b0e7..d23d674818 100644 --- a/resources/quality/nps/nps_PETG_A.inst.cfg +++ b/resources/quality/nps/nps_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = a -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PETG_B.inst.cfg b/resources/quality/nps/nps_PETG_B.inst.cfg index 9121ce0cc8..808f8b7572 100644 --- a/resources/quality/nps/nps_PETG_B.inst.cfg +++ b/resources/quality/nps/nps_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = b -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PETG_C.inst.cfg b/resources/quality/nps/nps_PETG_C.inst.cfg index 891103acbb..5132c78e8b 100644 --- a/resources/quality/nps/nps_PETG_C.inst.cfg +++ b/resources/quality/nps/nps_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = c -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PLA_A.inst.cfg b/resources/quality/nps/nps_PLA_A.inst.cfg index 302e03b8d1..7ec6f318a5 100644 --- a/resources/quality/nps/nps_PLA_A.inst.cfg +++ b/resources/quality/nps/nps_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = a -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PLA_B.inst.cfg b/resources/quality/nps/nps_PLA_B.inst.cfg index 2578ee3920..2d34549906 100644 --- a/resources/quality/nps/nps_PLA_B.inst.cfg +++ b/resources/quality/nps/nps_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = b -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PLA_C.inst.cfg b/resources/quality/nps/nps_PLA_C.inst.cfg index 7db1e3938a..5ba23c6704 100644 --- a/resources/quality/nps/nps_PLA_C.inst.cfg +++ b/resources/quality/nps/nps_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = c -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/nps/nps_TPU_A.inst.cfg b/resources/quality/nps/nps_TPU_A.inst.cfg index 8bc9697e17..fa4bf46ffd 100644 --- a/resources/quality/nps/nps_TPU_A.inst.cfg +++ b/resources/quality/nps/nps_TPU_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = a -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/nps/nps_TPU_B.inst.cfg b/resources/quality/nps/nps_TPU_B.inst.cfg index f6131d5c72..2ec5c9c526 100644 --- a/resources/quality/nps/nps_TPU_B.inst.cfg +++ b/resources/quality/nps/nps_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = b -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/nps/nps_TPU_C.inst.cfg b/resources/quality/nps/nps_TPU_C.inst.cfg index 9004a7aafb..e6215b7bca 100644 --- a/resources/quality/nps/nps_TPU_C.inst.cfg +++ b/resources/quality/nps/nps_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = c -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/nps/nps_global_A.inst.cfg b/resources/quality/nps/nps_global_A.inst.cfg index b406f96b95..d67a54c567 100644 --- a/resources/quality/nps/nps_global_A.inst.cfg +++ b/resources/quality/nps/nps_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_B.inst.cfg b/resources/quality/nps/nps_global_B.inst.cfg index 87b79e4185..d75643c4cc 100644 --- a/resources/quality/nps/nps_global_B.inst.cfg +++ b/resources/quality/nps/nps_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_C.inst.cfg b/resources/quality/nps/nps_global_C.inst.cfg index 55e03f04bf..fced037052 100644 --- a/resources/quality/nps/nps_global_C.inst.cfg +++ b/resources/quality/nps/nps_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg index c62172e271..f6e3fb7546 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg index 6eb625350a..aa5820ed43 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Engineering -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg index dd3303ff21..5918aee648 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg index 79a93c2cbb..2cea8320cf 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg index 23a5398377..c301b65243 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg index 9afbe1c9fa..af40548870 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg index 0282588b31..51c2b872ab 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg index 2f7e5731a7..125c07d83c 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = 3 diff --git a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg index e5fd23d4f2..8efcfa89ee 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg index 11145f3151..4e7f490f91 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_high -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg index b3aa4e2cc8..2b6274f6da 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg index 91eb5d4642..8d5948a8af 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg index b53926d84e..2d19cfce8c 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg index 5ba1720f7c..cea995a8e7 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg index f773bf87c6..bf21afd528 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg index 7ad5b63828..5683957e0c 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg index 18d481d92e..f0ba16b8f4 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg index 094f815c57..a8982d111d 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg index ef6926b4d3..7a23b6ab48 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg index 0de97f8576..fc325455b9 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg index f399287ece..51210de22d 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg index e828bbc5ec..aee8bae3a6 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg index 425efe8bb7..18a43867de 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg index 504e601637..80b01a7780 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg index 599dfa2119..e4b119178c 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg index e337cf021d..b56a5eded3 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg index 5037ea9877..f5b288ba3e 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg index b11d0cbbfe..f57f9099a4 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg index 1523fe7ace..99337451c2 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg index 13f3d3c6b8..d0b35a0ee4 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg index e1e0e68add..fefb7eead1 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg index f45f4f0db4..d56a576afa 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg index f00cfe1f18..12685a8d9f 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg index 4c49ed47cc..a9a4dbf93b 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg index 6c085cf045..a63daae393 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg index 1436293e32..1537edf286 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg index 77a5b093b0..ac24d8be4e 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg index fab2b3f6a0..769f5fe1d2 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg index a22e557023..1cee3e7db1 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg index 7d53f5a735..a5c96b844f 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg index bc7763e69a..dbd01a6c01 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg index f50d26c026..c18eb14086 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg index 32a6e79f73..e67881850e 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg index cb789901f7..0013d2be0d 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg index 1ff77f2028..ac610e3849 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg index 8585739084..9dbc7d6369 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg index 9d8ef6a9a3..d84fa8f366 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg index d0a93f1beb..3ee8c410ae 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg index 8e7e337fa5..ea7b39680e 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg index c6b8308b87..39fb22d254 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg index 67d98a3bf6..71d2d17748 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg index 3bce948dfe..964fe58379 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg index d9647022e4..5c76093a95 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg index 1471709c21..31fa27bff9 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg index 6434e24870..5e69f737ea 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg index f0230d0bb6..b6878b4299 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg index 4f3739f6be..5289c59109 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg index d6338d2323..e1796643eb 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg index 7ea3bc2e74..8e0c3c2bcf 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg index 3391515bef..a58833288c 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg index 425098058e..ac939deb28 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg index 82ae46b93c..94ac9ffa17 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg index fbbf5178a0..21c9d2a554 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg index 8f2413e7ea..8e4fc0f48e 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg index 24232e97e5..5702884b28 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg index f603ac2f49..f8e6aa8148 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg index 0f1ed527c4..30614ebcae 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg index 282bffac12..30619d7c6d 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg index 34963f44d6..b4db849422 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg index 0f4c9857c9..55c8279128 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg index f9c1935ecb..50807e4c56 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg index f661ed4414..b483830176 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg index 11e12d4fb1..7922fb109d 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg index 8a7457fa0a..efc7246981 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg index 199338b92a..71a8b8573f 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg index cd45e2a4a0..734057eb9c 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg index ae00c536ff..56059fcade 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg index 20be989072..e308f943cf 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg index 85fca68f64..efc7af186a 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg index b85d104141..efa5f6cf12 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg index e17edf408d..1ee03fee3d 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg index 7b663dd97f..829eedd0b5 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg index 424b52f5bc..331bcb41e3 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg index 825999e09e..f360260e85 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg index e708aa36d7..d84f788114 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg index 7e18816e99..da7363136c 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg index caec94d742..4f40c3b23e 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg index bb58f8a607..3bd8bba333 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg index 3be043ba9d..be455b0e0b 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg index 6a221187b0..8939e1e58c 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg index 7f36e8b488..bd4e122d48 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = good -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg index 8826bcbc1a..69b1c076bf 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg index ebedcfe46b..37ddb55b10 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg index 5a65e5a3dd..d3580a847f 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg index 2031e51928..7b8bb24233 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg index 5e9ef8f653..7bc2dfdb47 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg index 6314c5cf47..497071290b 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg index 2824c346f7..9d6d5ff7c8 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg index 28dbc36370..5223e1410a 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg index d3ed18ec56..6eafbb03c7 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg index 54ae63ed9c..e45dd4b9e2 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg index e5800f7630..a6857608da 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg index 662344bcfd..6a7744cf14 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg index 20ad51f84c..753d0ad5e9 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg index d3ef33dae4..c94f6429ea 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg index dd1c2c1a40..1adee293ad 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg index b57e9643e7..7d62a5d973 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg index 7b9edd4240..14ee1f32fa 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -6 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg index f110e2ac11..0f4f19c038 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg index def57b4251..d8264c0126 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg index 84f85042f7..f44b648c70 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg index 692c3f2e81..aa7443127c 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg index 1487279aee..c9d92af185 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg index 465d18fef6..72a359bd23 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg index abf8313328..0116593dc8 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg index 0686d9d66c..897d571471 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg index 26238b9fc9..ff81cfdb8b 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg index 2ef1bee0a8..2cfe78375d 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg index debf198a7e..7cbb253b35 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/skriware_2/sk2_advanced.inst.cfg b/resources/quality/skriware_2/sk2_advanced.inst.cfg index dd30149d02..a1f51e2dfa 100644 --- a/resources/quality/skriware_2/sk2_advanced.inst.cfg +++ b/resources/quality/skriware_2/sk2_advanced.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/skriware_2/sk2_fast.inst.cfg b/resources/quality/skriware_2/sk2_fast.inst.cfg index 6d41a98b92..753ccb709d 100644 --- a/resources/quality/skriware_2/sk2_fast.inst.cfg +++ b/resources/quality/skriware_2/sk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/skriware_2/sk2_precise.inst.cfg b/resources/quality/skriware_2/sk2_precise.inst.cfg index 1372013ad8..97b6401c4d 100644 --- a/resources/quality/skriware_2/sk2_precise.inst.cfg +++ b/resources/quality/skriware_2/sk2_precise.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg index 0b62a1385c..1f91d7b717 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg index 12106d3e9b..330f09dfdc 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg index 12e4ec025e..584c878294 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg index d51159aa75..ec6064fd0f 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg index 572fc08a85..0ebaea6eef 100644 --- a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg index 8e734798c1..887d7a654a 100644 --- a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg index c2293f55bc..56cf25b0f2 100644 --- a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg index defa686635..a04e44ab1f 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg index 806e83a3b2..f533c49729 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg index f68599df66..f90f2275f4 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg index 5df799868e..c01a4bc1cb 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg index e07f978b90..49254d46d8 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg index c0227b5b43..e5ab87b4d0 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg index 4984310577..0fe1db44b8 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg index 38414cee14..dbff55b81b 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg index 98f393cb39..660dbaad75 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg index ccbb661b74..1c8488549f 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg index 0588caaa20..2f64bae6e1 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg index ecd3e8143b..12b7b69da7 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg index e489d845a7..0fdc6413a8 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg index 6e616c299f..0b26dd6273 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg index 1f421bdebd..58474db866 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg index d13758ac17..0c09419ce3 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg index ecd3e8143b..12b7b69da7 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg index 180ef9793c..24aedb1be9 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg index ef400d0393..769f765037 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg index 229e456c0a..f00a18dfb2 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg index e762e8be23..88d52beced 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg index 80ecf4cd5a..48f92039bf 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg index 88760eddfa..5ad225fab3 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg index ecc9d878af..45ddd6f6f9 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg index e89120e413..9d7f16ccf1 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg index b3ed5d750d..d60b39488f 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg index df9043526e..ad4ce3cb86 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg index de741e100c..4f66422928 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg index 197974f8de..e41d3c3968 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg index ffd6a18e6c..7b0543132c 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg index 81f5628de5..08b7913e6d 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg index e518eeeee7..ff2511cad6 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg index 13cb1da608..499f595c3e 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg index 0d2344258f..b92b5c6060 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg index be6b0a424d..8c65930ad1 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg index 8fb90b1ebf..fb7c6c86fb 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg index e518eeeee7..ff2511cad6 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg index c1b28d2eed..f56a44f566 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg index 63f0f20b9b..8f7ab42c48 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg index 0b2e06b960..888aef4e1f 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg index 632f8562a0..e59ca93f0f 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg index 778faab851..9f37418671 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg index e41ac67a4b..832cfdb7f2 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg index 125944ab7b..dfbdee57ba 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg index aadae21f2b..3d5af205b4 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg index 4cdf9e82a1..8e23548ec3 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg index 87d3cbaba8..e3fcf18ab3 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg index 71a71c2074..e48cf965ed 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg index a7e7c68832..f34b527ecc 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg index d0e96ddf9e..a2f5403c35 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg index af21641a94..af7cd07ab1 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg index a48585cceb..4f48811f76 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg index 6cd9377e7f..602de942e6 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg index 0bf2ad87fa..1dcf086ff5 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg index 0b112bb475..6d44175508 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg index 924e14928c..27760af035 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg index a48585cceb..4f48811f76 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg index b9a346b74c..b71e28b91b 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg index 9575468f22..0cbdc9a724 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg index 19249525d6..9102e82df5 100644 --- a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg index 9263813e0f..566ec694ab 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg index 457c4557ed..c02c15577c 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg index a5b0dd141c..bc373c6d1c 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg index d15b92b2db..a14dcbc305 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg index 0198bb31d1..e06d8b54a3 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg index d7a1c155bd..1d98a435bf 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg index e46a0fc9e7..8d1f32e09f 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg index b5865b796f..c6b4fd7c8e 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg index 909887f734..d9fbf0a7bf 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg index 1e77f58d77..07ce8f6213 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg index 53dab10238..13930f82b3 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg index 2309c3d80a..1cfb658c86 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg index f42e9ed165..a0c2eb32b1 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg index 68ed0f68bf..9a5dd5d244 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg index 52445d8e9c..44cf6aa5d2 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg index 02cab8fbed..5de47aee01 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg index 0e17e9b5ea..dec2e260b3 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg index 41f5bd56ed..7473277462 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg index 3455b63eae..9892f015dd 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg index b6afb89877..526274e72d 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg index d73fcd987d..dbf549002c 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg index b1d8446a8a..7c4337c5b0 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg index 300ff8a9ff..826e8bc370 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg index f2ccdbd5ca..82fa0239b8 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg index 58a1f4d8e2..7b00f323e8 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg index 2e330c453e..86101af71d 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg index eeecf62b03..3a18eb132e 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg index 4ec7b7a412..219c6aa8dc 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg index a1c0e48cba..0039e66f81 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg index 7808a3da9a..5124b2aefa 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg index 33e1e1dc64..9341650710 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg index b7f329a98c..38982799ab 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg index 0ec707bb86..2cf76f720b 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg index 8a472a5f71..517d43c563 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg index 093963d94b..107fc2185e 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg index 28408b23d8..e4ef4adb42 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg index 79ecbb7de7..2ce268839a 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg index 1e04a9ee43..a8a2921a61 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg index ea145cbc74..292d42745f 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg index 550bdd503b..6d9db7a33e 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg index e38455850f..f001c39762 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg index b221a2fb6f..0ecadda648 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg index 9bd2454185..c44afc88c3 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg index fc823efb6e..187db2e6bc 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg index 23504f5132..98146f1cb4 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg index f82812e3a2..1146172281 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg index d0e2ca11be..5f2be8438c 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg index cde88b0333..24d08d1b6c 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg index 58d1ddf5f0..69ba4d1751 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg index ed2f53f573..105ac94d7c 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg index 25751681af..0bcb961684 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg index e9ff5631f3..6752bbe1b0 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg index 6b6193ef49..4e8adb34f8 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg index e60d7aad26..2e0ceba52a 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg index d85791b9e6..8ecea20ab9 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg index 266459a784..e09c4d5ac5 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg index 4eac8df6af..236bbc34c3 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg index e494138b71..6ef7a1216a 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg index b05ccd072d..2f7cc2b97a 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg index 155086bbed..93063336d5 100644 --- a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg index dfb6644231..c4157110af 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg index 1bba7ee004..676f9fd410 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg index 8ceefff1ce..fb616c6011 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg index d99e7a9187..c3db38fd1c 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg index c76bd93eb5..9d47d5a0d4 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg index c008efd6a4..3f306ed9c0 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg index 2af72b0eb9..d1c7ccab6e 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg index cda9ceed05..f7efc9c727 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg index 67303a344c..8c0f32a28f 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg index 480ce19bd2..eedc95c0b5 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg index 818ba54d18..8d7ab70003 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg index 0d5763d654..a6bd9eaf5a 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg index 462fe35ca8..b6e54d173a 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg index c69290b75c..082fd3a3d0 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg index a842730f71..5100d76266 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg index 3a30124ba8..61c583bb8f 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg index f6d093bcdb..d776cdb399 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg index 0caf6fde44..b1fc39aab4 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg index a75db5305a..0e966ea131 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg index 5156a79dbb..f81b7e71a6 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg index e79df78c54..536926c1c3 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg index 648195d2cb..78c447913f 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg index fec5480e93..3ddc73f015 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg index 7ab1a6eb90..f6b86ab7e8 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg index 2945d9d3fb..55741fb618 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg index 61e9343536..624df56f29 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg index 66af6a6e6c..06704ff312 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg index 36b56f53cc..cdb4fdcd5c 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg index 6e683d4912..860e7a35d3 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg index 05d13d7f09..4bc510153c 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg index 25062507a1..82deb12f16 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg index fc974c0d23..16b7623fb5 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg index 7642a661fc..5143f23843 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg index a4d08915b2..f4e50dbefc 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg index 56c4f6f535..c8a5a64152 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg index 77260e44b4..cb6ebaf2e1 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg index 9d3e897f1f..d6a4011741 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg index 06468f867f..6d23563d9f 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg index 49b1a1da83..8f9e1fe528 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg index f4d2249bea..6ae10c91d0 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg index afd059515d..50154d1e2f 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg index 935acf8769..3b8dcd47a8 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg index 4b1bd7186b..c0b9df657a 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg index 3e8c01bf29..2e94b7fe0d 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg index 9b0a17a246..f9d663f07a 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg index 8a4dd64c3d..4c91e7a5be 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg index e5ffd6c0a1..005d5d9455 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg index 6fac81f060..9c0d3ebbfc 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg index 0d72cd1018..e9c62d9746 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg index 937006edf2..0142b4c6e9 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg index 90ff99d94b..bcb2c78bca 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg index 3a90afe430..1d2d324a64 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg index c50ff9be24..b0f88c2c3c 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg index 9c2f27d150..567672c1cc 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg index 7b9550dd25..53a5129ffb 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg index 656e646d0b..8a34320430 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg index 789646f896..8804cd2d19 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg index f52221e9ff..9765f5b9f4 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg index 092849b63a..2ecdcb13be 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg index c2acac8b77..0cb0288b3a 100644 --- a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg index ed82bbeba1..4acea1bcf2 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg index e797e28f77..7e9e612855 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg index 0ef5dab250..5a291abe6b 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg index 6f8296972a..652c499082 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg index 05646b59f7..04f407deca 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg index f73639bed5..41dc7a712c 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg index 0d65a9e716..bd310e647b 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg index 0f98f0af00..befd41d1b5 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg index f3567ed5cd..8db2a6aab5 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg index f485682a3a..cea589036f 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg index 805f8029de..76b4e75101 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg index 108d25cc2b..c2f3710396 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg index 3be81fcb24..3a056680a1 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg index 89bee3e6e9..3f6592164e 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg index eff1ec18de..09523de009 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg index ae6e439d1e..9e9f710833 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg index fce3d5d5d3..ebae2aff56 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg index 14143a43c3..2d8f821f99 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg index 3a59c9cc4f..c2738dcc68 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg index 25bb9a52ce..8bb35765aa 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg index 56cceef368..752d8f536e 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg index 06e8e1caf9..c637d39539 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg index db6777c29e..d60ebe1bc5 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg index 1ae1708d17..bb7714bd2c 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg index 40c868739e..9fe8ef6095 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg index 7c4e765659..7c7c0fce85 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg index 7c70bcd2e6..7122d237b5 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg index 8fb5912308..7bebb4266c 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg index 37e25483e9..a39177afc4 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg index 0ab905ddea..3209609dc0 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg index fd0245d797..0faf4224b9 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg index 16b5139867..62c4809d2d 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg index e6944b6abc..24bb806e0e 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg index 1eda8ed9c3..30078bc130 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg index 796d50d951..ff20dd5ee2 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg index 45df6d13e1..b300b1626f 100644 --- a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg index e9cff77480..8083b8f12b 100644 --- a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg index dd082f5d45..683409c8a8 100644 --- a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg index 0286357f65..1ae6873838 100644 --- a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg index 05c840ab84..0efe0a9d42 100644 --- a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg index d4cb00ea43..f939291b96 100644 --- a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg index 90c6235d88..0d5d74bfa8 100644 --- a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg index a3239e277e..c3212074f2 100644 --- a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg index 2dfe9261bd..a98836e95a 100644 --- a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg index a26036a9f4..a21938d128 100644 --- a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg index c39b3a47d2..9018fed613 100644 --- a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg index 9e14ee36a5..3f078adcc7 100644 --- a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg index f3ad3f63f2..1f41ee4876 100644 --- a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg index d1bdac7e44..a64572840b 100644 --- a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg index 7d9574e9c2..d9cf542037 100644 --- a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_titan_global_low.inst.cfg b/resources/quality/sovol/sovol_titan_global_low.inst.cfg index 2bb6d850a6..14a45e9186 100644 --- a/resources/quality/sovol/sovol_titan_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg index c799172723..57c2fa6870 100644 --- a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_titan_global_super.inst.cfg b/resources/quality/sovol/sovol_titan_global_super.inst.cfg index 70744f18ad..da2fb7a307 100644 --- a/resources/quality/sovol/sovol_titan_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg index b159e54f61..c50e1ce642 100644 --- a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg index 15c8c49221..89f5b726e9 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg index fda7548825..a94f740b29 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg index 8e65f491a4..fcd16c2686 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg index 5e03710bc4..6391e13f3b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg index 6c93c716d0..38c0f89bfa 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg index a7e7d2a872..007d4b0ffb 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg index be60ed117e..41de009fca 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg index bb36ad977f..5a37604c9a 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg index a04b859e41..7bad24babe 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg index e80011a25f..e13b3d3a0b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg index caca18acb1..a5cc4d2ec6 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg index 07bcbb951c..58bd5e6022 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg index 692cc0bf7e..1d1475806d 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg index f481caf900..d0c817bdb4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg index c19d8120bd..541bfc4aaf 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg index 6816682a58..e4f113f2ac 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg index 49aebe6435..24a4bf2d4e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg index 8809625bd5..b3e0b67195 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg index f76fc17f7f..6653f7992c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg index d88b9f9aaf..f33095b187 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg index 50143d9504..b0f43b7c79 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg index 99364c2edc..157f1e10e3 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pekk quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg index 65c7532c8b..83b99cfcc8 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg index cc5f154c0b..22634c00c4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg index 4c55dc1666..8ec567bb24 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg index 508999aee5..40d841019e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg index e642ad6f4e..dfeb071e7a 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg index 04e4543c75..8d3bff92ed 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg index 39c32ad622..047f927a70 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg index 59b4b730f3..10e4c15deb 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg index 200201554d..3f634e05a2 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg index bac0135e9f..44aa5efbb4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg index 2fda0cb960..afb82e8b38 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg index 164e5bf494..78282ce86e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg index 6c0b7ede59..20150f3bfe 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg index feac83c0d3..e8e4296e20 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg index adec58532a..f3b31b40f4 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg index 4f738ecb9b..e2b6befbee 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg index 53cde676c1..b2e4d37cc4 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg index cb4c175488..bde51a83ce 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg index 25894a7242..4b5350065b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg index ddc47eb6ce..52f9f3536b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg index 486503b69e..2290e31a95 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg index 2b595fecad..f52cfd224a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg index 24f35a4181..2201c6f864 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg index d4e78fd7e3..24c24d184c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg index e700994fbc..16d60def7b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg index c7b53df000..813a4bbd17 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg index 09ee00f8d0..67d0f46674 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg index 963ee03862..251ad5eed2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg index 8ede6f7f2a..d00afcc096 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg index 85cf082f99..5a778a6fc3 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg index 94e5093fb5..c5ad56cd7a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg index 4637550542..b54edd7a42 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg index 655e7227db..82910f0491 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg index bae5a7326c..1073f71029 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg index 40459d1d72..4f97ce5817 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg index d806f76fb3..c067881ff2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg index 896a30bb3e..6920bd86cb 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg index cfdce04458..b5d147cd16 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg index e3056b2754..4d1cb16570 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg index 8e1a632832..9312c9fa5f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg index 69af5bce38..424e6268af 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg index 0df714452e..0b8189725b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg index da5e04fe60..311808df2a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg index b16348cc77..da5b28f4e6 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg index 1594c7862c..31f39cf962 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg index f0eacc13ae..ab3bea1cc7 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg index cf3426952c..3eb92c764c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg index 3b28137240..0512ad26e5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg index 444d8edb54..5eb4813c31 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg index 43f3672bd5..1a64024b51 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg index 57328d0b75..dcbceaf198 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg index 78f773a4d5..b1a484d072 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg index e4fbbaacdd..d0aaa7c43a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg index 88ffcba8f0..46097c1de9 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg index 2cff0f12eb..77f9766ad8 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg index 93b086eb72..34939d2c44 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg index a5045af80b..e3043236e8 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg index fce8e2a6f5..4e9d3d9606 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg index fd63382cad..b1852f0c6c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg index 4bb693a89b..4ea388956e 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg index e3c73b2f18..20332307ec 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg index 30d829153f..651f097ed7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg index 3a1e9db729..d872690ab2 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg index 7d398914b5..f78e88ca64 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg index 16198bfe8f..43444eb522 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg index 66a6d4f69a..d6870fddc6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg index 65c4d78b54..39478186e6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg index 54e7319457..bbda9aac12 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg index cdb7308468..57df38bc5a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg index 867b4a8f4d..78d2203adc 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg index 8fa93b3213..d9352dc2ad 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg index a4d6bc2410..c893c56437 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg index b95282909d..d69c426adb 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg index 737432c653..1106988e52 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg index 542a7b3305..f69934a57c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg index d9209eca42..7bc42e0c78 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg index fae31ae3bd..c235e55109 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg index 940064d2da..8e8f118c94 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg index 4afc1c4fa6..21584c6e4d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg index 07028500c3..1abb30c22d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg index a6e3798cfb..ead456decd 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg index cc48cc71b7..8586222383 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_nylon_1030 quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg index 4171f8070f..9fd98aec5b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg index 1b628fe5e9..4a2a55f503 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg index b6a063f3a0..06bd295657 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg index ed6f453bee..0756e7543d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg index 396a85ba31..f4cf1e94a6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg index a3ac4e486b..d5a1ea5601 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg index 3b4b044ac2..3abe1107d8 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg index 882513bcf1..6bb34594ba 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg index 0447cf7a92..4008b19ded 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg index 413c4fdc72..f7052f3224 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg index f1c19a14e4..7d199d5acf 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg index 389fad0008..087e3205a1 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg index 5c3cdf0f7b..40d8563692 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg index 151d368a51..5533e94b09 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg index 40738389b6..fdad38f2c8 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg index a44146afe5..42300055fe 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg index 68b40d7efa..577f38c266 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg index 34ed767222..f11bc74516 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg index cb9446d6c1..57a61122a9 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg index ef790cc9ca..6259b4e3a5 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg index 4ec7d54c1d..c38f31c4e1 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg index 262f796006..6537901bed 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg index fa9670fe18..f866a278c9 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg index 426b7a2c92..8b9f0eb4ce 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg index c34110f835..2eef38c107 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg index 1764c18e02..74c8fd507c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg index b4287caadd..d48ca4a850 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg index 92968b1bd9..a078e81bec 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg index 78a1f47297..d67e36a308 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg index 097c944cc7..2f79e759ad 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg index 0598a06be0..8669175da2 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg index cdab1d39a9..c6da05b3a3 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg index 98b4d3ee1b..ab27f5668c 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg index 503f07b889..ce02dbc105 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg index e3b485240c..706c313e8c 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg index 2a71e9bddb..7ea65d6bfe 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg index 39a078103e..0acd9be9c7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg index 77fd69de9f..827696cc7d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg index 80938dbebb..3641b9e084 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg index 546f6e4c5f..5f550c1101 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg index 74f6b45b41..b07e6eae25 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg index a5621900e9..36bbf752e8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg index 774c1be097..206d2c0b09 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg index c4a8b05559..94876f9014 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg index 27fa20a398..b7a90c736f 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg index 943b12b2f4..be584dbd72 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg index db502df575..232921775c 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg index 03d094cd27..4e19b9afbb 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg index 53f876c547..fe63ccdc38 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg index 3e19a67a13..3a70ec1559 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg index 9dc86fee90..9d68da4707 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg index cc6f751c76..8b1ab73857 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg index 589eca1b89..02a718047c 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg index 5760889bf8..d1a1e8592d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg index c6f2301184..b3b5c52dae 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg index 5d17c760af..142c3a56ee 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg index 80c89a7f39..975b8ef5d1 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg index 98f3963ec7..ad4b103520 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg index a0a004afdb..d23fa3c9ed 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg index 4967bae5e1..4a0bd48e3c 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg index 22cfb59bb8..3535a0f459 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg index 25ebbb1990..551bf36492 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg index 9d2e69d0df..d77b266f23 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg index 99a0803d8d..2b8eae9e89 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg index 8921b8b8d7..22c4d442d1 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg index 167fddbf0b..3fd99c23ed 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg index 09c2aac6a1..f89bf4cbe2 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg index 82322be546..9b264ebbca 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg index 252afdeae4..4b85e3e4a5 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg index 191d6ffa8e..eb785715ff 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg index b43d80d475..25c69e73d3 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg index 3771f389fd..1fd3281a48 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg index 2cc8e0a30a..91ff4eddfd 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg index f5e18a93c3..1514f91141 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg index 4b5fed9eb4..8c504e75e7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg index cd61c020c5..cdf00aab5e 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg index 200856ca53..45392cb33c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg index a5a3bf8338..a9dbf9f5c5 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg index 96f4b453f9..699540289c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg index cd323aeba0..3fcca8fd96 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg index 11a27b4fe9..7b868bdeae 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg index d2b524f3f8..8d71dd9910 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg index 0eaf98e1ed..ae5f704c7c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg index 9a5f413f85..fce60e08b1 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg index 4dafe54bef..bf9532a3da 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg index 31111b8148..16795e0ed2 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg index 71afad2707..437f52ee32 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg index 2b8a49811f..5963e06d58 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg index 1a6d68f6c4..c0c992c714 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg index b234435928..c0abb2edbb 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg index 4ec41d2355..58630f8e26 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg index 30ea3d02d9..7fa642f3af 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg index 7173ee3c7d..c93c2f481a 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg index 6de97c18b8..e7fb7f60f6 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg index d7f6693d6f..8e806c181f 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg index 4b6b9e0829..32e8ea12f5 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg index a7654a552b..4524138986 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg index 375aa70df2..f785d90ce8 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg index 1c09546eb0..8fa14c8780 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg index 7d6239044b..78c8d2b7c2 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg index d4c2a21dbe..43e8f638d4 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg index 052cccc4a8..a7bae4e25c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg index 3f391c093a..f42796c704 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg index 0cae1d5278..2e0075ec84 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg index e6bd01e706..d8e94f1d0b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg index 0dbffd8dce..1ab76e52bc 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg index 0dbc2576c4..4bd59d9d11 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg index 11b4408a82..1fad7c7322 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg index 719d0a9c25..4cf9a8f273 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg index 41a4d1a39f..26df2e2665 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = g -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg index a9ffd2a459..0a41d628c2 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = h -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg index fc51245d79..38f05f9812 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg index 995ad827b9..b3afd26360 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = g -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg index 415f3239cc..af26df0718 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = h -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg index 7328f90a50..6e85ea2f36 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg index 80b17899dd..f9d6723628 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = g -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg index 5a9511c1a6..efe088d15f 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = h -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg index 2bf9153b93..7857a3b7bc 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg index ef96f0aa6a..38919e7f21 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = g -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg index da4a810980..99489626d7 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = h -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg index 73ff310e2a..fbadd4fa28 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg index 531a5ddb27..28b855bd1d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = g -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg index 33fe883560..40005e3f05 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = h -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg index a583a7eb46..44ce2ccbae 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg index 266a3fa223..14c5913174 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = g -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg index c833fe412b..6c7a8ecb81 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = h -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg index 4fe456849b..1dbb5823af 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg index 01052c90ae..3698c93600 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = g -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg index cd68c8c900..820029c5d3 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = h -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg index fe304f4e54..fac597a24e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg index 67afd44b64..cbd4cc4952 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = g -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg index c638766b26..79f678811c 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = h -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg index 3ff175b6a0..3767ad1214 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg index a5f351c529..f3fc1e840c 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = g -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg index 125f19d66f..78a3bedc2a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = h -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg index 071677014e..b1299a7f0b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg index ad354adb14..c309e0179b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = g -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg index 1a1de5bb23..90fbef94b1 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = h -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg index 911194c25c..2e003fad2f 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg index c8d9145ada..2b4b407d51 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = g -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg index 84e86ffd05..51ae60df83 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = h -setting_version = 23 +setting_version = 24 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/s3d_global_A.inst.cfg b/resources/quality/strateo3d/s3d_global_A.inst.cfg index 0e1f915c0a..8ed3cee5d6 100644 --- a/resources/quality/strateo3d/s3d_global_A.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_B.inst.cfg b/resources/quality/strateo3d/s3d_global_B.inst.cfg index 6396711afa..2db88591f8 100644 --- a/resources/quality/strateo3d/s3d_global_B.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_C.inst.cfg b/resources/quality/strateo3d/s3d_global_C.inst.cfg index 6a15748bc3..9868858bb3 100644 --- a/resources/quality/strateo3d/s3d_global_C.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_D.inst.cfg b/resources/quality/strateo3d/s3d_global_D.inst.cfg index 0dd458dcc6..8ee8a466a1 100644 --- a/resources/quality/strateo3d/s3d_global_D.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_E.inst.cfg b/resources/quality/strateo3d/s3d_global_E.inst.cfg index 3e17131bd7..46c671419d 100644 --- a/resources/quality/strateo3d/s3d_global_E.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_F.inst.cfg b/resources/quality/strateo3d/s3d_global_F.inst.cfg index 52a679028f..3c9e1d215f 100644 --- a/resources/quality/strateo3d/s3d_global_F.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = f -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_G.inst.cfg b/resources/quality/strateo3d/s3d_global_G.inst.cfg index 2f8e5e1da4..3309b70ec2 100644 --- a/resources/quality/strateo3d/s3d_global_G.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = g -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_H.inst.cfg b/resources/quality/strateo3d/s3d_global_H.inst.cfg index 8321feb52f..fa255a8874 100644 --- a/resources/quality/strateo3d/s3d_global_H.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg index 36a56da7a3..57f3fa63f2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg index cb85d768d4..7f6f03249d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg index 153b559376..936d6c6c25 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg index de62bfb3a0..f68f0c71ed 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg index 1628085b6b..0f621284fd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg index 64ce3c53f9..0520aaf24f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg index 4fd837f579..a3a58b904f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg index 82b987e3e4..cc07efb617 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg index da992e9d55..9b5a8d16d7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg index 5d52be9c54..0125d719e4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg index 09f961d018..013a816087 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg index bc0aa98914..78cca94dc1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg index 2d8139af88..8b280a5638 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg index 73f6643cb0..d45cf82a22 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg index 8c6ea9c565..d48a2fb19d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg index 800247fa00..edf22375fe 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg index 14d4c1265d..565c6cf7b1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg index 1dd2a3f339..1d026267da 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg index a48122d0ff..e421c1a597 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg index 5d3fddf6bf..d003ebf5cd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg index 3916aec06b..a7f92b52ea 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg index 1cfdb072d9..6f572b7bdd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg index 915faa0e57..669db1665f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg index c5fddef5f7..974b8d23e8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg index b6dac97352..714af6c8b1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg index af7be4076e..7760aa251d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg index 455bb6516a..d2191abbe4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg index c319613906..ee9630548b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg index 663d3bc141..e5ab3d0cf8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg index ee7ec5a49b..a63ec1e7b3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg index 32b094a926..13819d5396 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg index 7d02f48433..7e2b265142 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg index e0e3f0950d..145426b94a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg index cec4307927..a83863f0a8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg index cd312783b1..f2f15a0c7b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg index fcf85e5354..ceffbe33d8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg index d8fa6154d3..0f012abfbf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg index d3c0b763c1..0a6d2b86f5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg index 9ce83b7567..a64aaa71a4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg index aacd51cfa4..908560a4ff 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg index 8d4b467382..88be2ba6e9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg index ba1e050fad..754c1fdf16 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg index 78ecc50944..c5bae4f5c9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg index af98bbe9e3..035b2847c0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg index a57dbad5b7..3e3fab0e9c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg index dde6898259..f4e513461d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg index 1d9a21f7d5..b7c36a7acb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg index f9b8ba9c39..f9ba2e08f3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg index 74ec0b720a..c64e767e9e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg index 04b04f9c3e..24cb5cceda 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg index 43b2d9776f..823f0bbaec 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg index a0e25f7207..79eec4b23c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg index ddfc162cf9..9f3e909e0e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg index 976eb26ce6..134939714c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg index 15662bb5d0..b3c204b60f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg index f50c4e5d10..0edfd13fc4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg index 2d2e7d5760..bab2a9cba8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg index 0593e108d5..773466ac9b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg index c6197bb477..df7076f4bd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg index b4f7eac10b..7356c0e2b1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg index 919eae5482..7ddc0589a8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg index b80de309cb..4e80a6d35a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg index f59791b3b9..e28ac2942a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg index 4f7c5ede44..6c0cca79bc 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg index 5b6ae2d0a0..da98168e00 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg index 6ccd25b1d1..ad0385fc1d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg index f5dc7fccdb..40da47f21b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg index 9c2eea2718..560391327f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg index c0a166d66a..c390ecba88 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg index e3020b574c..1b4d51d423 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg index 369d563c2f..bfd8a96725 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg index ba40fe5e03..d08a9fe796 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg index dcfc8410fa..c730ddc305 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg index 9bf4670d6d..9309c74f1e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg index b16e9a61a7..1fe4112219 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg index bff5c6084b..bf8134ab67 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg index 75c22ed713..7347705a71 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg index 8e7fa092df..ae1d1e7cfa 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg index a08f7f3c3c..d2888a22b3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg index 8aabb6d17e..dc8cabd7cb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg index 838c32a83d..5e6081f3cd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg index 3b0b01c147..c393a06e76 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg index 094c7917ca..b0b9fe2778 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg index 214db30e47..43900f17d2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg index 7904903257..17f563a069 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg index 263716d6bc..4122c9ed9f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg index 43ba181c20..70ee4c6d25 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg index 9a995b1529..2ef9f54f42 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg index c325e4a74c..24091d45a0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg index ac4a1c4e19..06fecfb8a4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg index daa23def10..56f6673d7f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg index 08e8a6e78c..7719f52818 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg index 5d06e3d2db..c2141a2916 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg index 352904ad15..18beef6a75 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg index 2e447e9638..1c537d1ee6 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg index b34912e03e..b39fa9a201 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg index 7be3e6e4f1..3dd86c957e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg index b97f23a7ce..0c577f5e74 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg index 4063b36131..a11970b162 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg index 0b68f3e4d2..fb23e1ed57 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg index 61c21d9d0d..6c4d2e1756 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg index b37201dd29..b6d6f1fa92 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg index 458b47de01..10c3c686ca 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg index ad114d167d..708f96e22c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg index 02d29c0f24..6863bc6e87 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg index c8ff855a1f..60bd9b7ecc 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg index 0d6f5e4f01..3dd22739d2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg index ecf49161dc..acd7855fa2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg index e3eb6c6bc8..356db4ff70 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg index af21c2aa44..a9a6620c1c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg index dbe1833889..1cdd25027e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg index 38084b916c..ea7b67e2d9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg index 16ee0c27b4..73c4239957 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg index 60393cf430..a018668fef 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg index 39970acd1d..ed1e5b16aa 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg index 91b94f6131..7b81602582 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg index 2cb4d41794..bb8ed361d8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg index 0f29dec308..d23d913790 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg index 518c53ee18..bb3566ea8a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg index c6b41e53c2..309f7b985f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg index 3be87a45b3..a0f93fc5ff 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg index f04c331621..1a608aec41 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg index 1a4766dfa1..79d85b6cfa 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg index e0de41cf94..0bef9be66c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg index e71f50e7c5..388d6353e2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg index aec52859fa..ecf569b194 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg index a8059b82eb..38a2281765 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg index 19b8a9213a..20dc2a743f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg index 09d2f59acf..2e6dad2051 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg index cc43097e85..73e9698be1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg index d949cfb2bc..167e3b04eb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg index 0e033e1254..59bdd1bc88 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg index aca1b80e06..bf90b6d878 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg index ce791391e8..0276b9fe66 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg index d9d47dfa89..bbbedd575a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg index fb69f050ec..4bf82e685f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg index 4ecd5bf3ee..ccdda29f32 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg index cbdb6b63a5..2a2e4ee9da 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg index 9f9ad2c452..1767298b12 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg index dd4b2ee64f..e52db7dbfb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg index 023b51a264..779d7d5e1a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 23 +setting_version = 24 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg index be55a9e69d..c0e0702963 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg index e29b6fd63e..0e2f8ede49 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg index 3edca64237..b6688a0186 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg index c06e0cc24e..5a624aa011 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg index a45e360a41..1a4fbadf85 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/tank_m_base_global_draft.inst.cfg b/resources/quality/tank_m_base_global_draft.inst.cfg index cef3e3ced6..9ada46ad71 100644 --- a/resources/quality/tank_m_base_global_draft.inst.cfg +++ b/resources/quality/tank_m_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/tank_m_base_global_high.inst.cfg b/resources/quality/tank_m_base_global_high.inst.cfg index bc065a8dea..016adc5406 100644 --- a/resources/quality/tank_m_base_global_high.inst.cfg +++ b/resources/quality/tank_m_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/tank_m_base_global_standard.inst.cfg b/resources/quality/tank_m_base_global_standard.inst.cfg index 4683900a0a..8f66a5ad9b 100644 --- a/resources/quality/tank_m_base_global_standard.inst.cfg +++ b/resources/quality/tank_m_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg index e1f33a089f..82f9cd1d3e 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg index c7ed7e6c0b..2fa3c25113 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg index 5a932c9261..b77495393a 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg index 47a22b00b7..6c40f2f5e4 100644 --- a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg index dbb15a5989..56fb6a00ef 100644 --- a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg index 4f9b30b4cd..39afddfb82 100644 --- a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg index cb33075051..29b7385659 100644 --- a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg index b762c33c22..5afecdb617 100644 --- a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg index 2ccf5b7d44..8e019e32f4 100644 --- a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg index 6a88be5788..148ab71a76 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg index 1b8fb99784..c1dc1adf77 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg index 33ee02b57f..a171af2930 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg index 61f7512585..e7d307f999 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg index 30a7ffc3ad..b8e41e77ed 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg index 0ed612e090..ba880a2e6d 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg index bb031de52f..e010597861 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg index 7dd86d45d7..ac0e72aa9a 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg index 1546674bb1..345170c7f9 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg index bcf8f4c3d9..1960cda62d 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg index e4af6949cc..e5b99796fe 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg index 768d5f9579..f9772eb79d 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg index 6637c178ad..0498259bd1 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg index f2c201ff55..abd393fd11 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg index 248f84b5f1..1951514300 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg index 37989390f4..8bf3c53b32 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg index 9d1e1f59fd..1699502211 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg index c65d8c9878..e69ea6fe8c 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg index 45c48af06f..1b3ccfbca2 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg index 47651b2269..16f828dda5 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg index 40fb2db3d5..89d86eac70 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg index 1d72ea5198..94e282b3f4 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg index 663e4e3184..7331a5e376 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg index af5f4ec303..4bc26c3a30 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg index dc11ed8430..80360668d0 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg index 1242c06515..eb24230924 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg index f606252f9b..11c2124230 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg index 2a12a43b1f..19035dd0c2 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg index 585bde78eb..e39b90012d 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg index f5f27a1654..09cca372c0 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg index c747105ca0..eee1d701fc 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg index 465321cb4a..024bf84f16 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg index 672fe535c3..39505fa731 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg index 271518a4f0..9e27e552c1 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg index 4ead3de642..55e4cf9353 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg index 8eeb7f7a52..1b0aee9c77 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg index 6b8ac3bd49..b07facc6f1 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg index d4be949691..11e0616e00 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg index ad46ffef48..fcc2ad3b28 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg index 768c13565f..f33c6a65aa 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg index 5cf3c2d17a..f01f4c8691 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg index 1d2acf0f10..a07cb67605 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg index 556df18b04..30dda2f8d6 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg index 136f1ad611..92bc657e31 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg index 8c1d96f8f7..8fbf8c4dbb 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg index 69b8c484b6..a778e6b69c 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg index e159697c87..835e92ec9c 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg index 6f684c0777..52cbf2cfe2 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg index b4db252214..0e8716be51 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg index 2ff8f1d568..ed51b6355a 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg index 1c197ce362..057252ecec 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg index 30cc3f891e..a04501cfd0 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg index 572bf4075c..1eb933efff 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg index 0ff7992da6..7032d9eb23 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg index 022d6b12f8..fcc57a0f07 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg index 1c13a45be7..3d96923c62 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg index 0e40bf105d..e3f4c69d28 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg index 1dccc44410..69959d95c7 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg index bc15310d38..c358ffe400 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg index f4b1fcaa68..1bc55243e9 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg index 8846800d5b..6c86db8c3f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg index c7b91a24f2..9788a2b163 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg index fd242ebf1f..7667a4da23 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg index 65ee5e4060..4d215c0b01 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg index bc7192956e..8bf6b494ab 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg index 5aa2a1f7a6..aae4df8c14 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg index b0f80e3195..60a183f2ff 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg index 068b46b819..3eaeb358a9 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg index c1cb3a139a..f84de6d313 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg index 71ba140211..3167ff78b9 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg index 22df55ae9b..1c35254e8c 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg index 26d51f4048..8ffdb8cc50 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg index e3678d6586..e7a73775a2 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg index 4250674bf7..c77a851ddd 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg index 68366636d1..cb63f2912e 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg index 65f4a62d9f..abd694c50c 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg index f6ed38a7da..f8b435900d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg index ce05cbd117..b54565eee7 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg index d1ffc8dee0..3422c596d2 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg index 90f7f5cafa..497a6cede6 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg index 6ebac449eb..2d07098508 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg index ecfc90bb0c..4ed4f1a071 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg index 597857775a..c9691ea85c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg index 0ab7ebeb7e..0310c39ab2 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg index 0a8fa2560b..35d5c660db 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg index fa840bb04c..fec1935ccb 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg index af5985fa28..7c55c027ab 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg index c210e1067c..2fc844215a 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg index 4c72239702..7142e1f663 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg index 6552f1b786..a7bcd604fc 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg index 6f8a31a5cc..26bc42703c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg index 6ffc6af755..e119408669 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg index b92564848a..209c142222 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg index 49b7a3b486..d98f20a258 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg index e1fc378b86..db686cb1fc 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg index 4ef60bbf98..45f31b6af9 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg index c65cacdd69..42246bc194 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg index 978d1b8312..e9e2f5deeb 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg index 1c212d6e55..b8a8ed6ff8 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg index fdf6540454..7262563be8 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg index 8d02a10d4d..e089f4361e 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg index 9b067c6d5f..4653215210 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg index 6895181f48..8ce7ac35f5 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg index c616a33dad..10829c2693 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg index b9c6f1305d..8e44856eb2 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg index 6ceadf98aa..0daf246f33 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg index e54e67f8a8..ef3a025df1 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg index 1bd2947b6a..8113a4e885 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg index 2a7f08d04c..aa9d1a6f2c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg index 04565fcfdb..66fcd2e250 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg index 61b931dcce..9aef24854e 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg index 9ba18d70e8..11b46af42a 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg index 7a8b36873c..18980f5366 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg index 76eb3991ee..644bee6316 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg index 48124047b0..9b6f264f03 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg index 9f3b21318e..6a067514a7 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg index 86ebed427d..b58554d450 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg index 2f56f89d6c..2d66a5bf45 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg index cbaf24020b..60d9a0a0ed 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg index 58c5c5a99c..ecfceb80d6 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg index 07590e6220..29fdefb7a6 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg index 65b78d75e3..39e1fd16a6 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg index db26f43e1c..2e8cce87c5 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg index 2e8907d03d..a81eb7087a 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg index f443539979..127d0610ce 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg index a9f594e338..62262ddeaa 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg index 258d1b24f7..d66b41df56 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg index 3ea6f759b6..08ec00398f 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg index 76d849144a..2a7cc24b59 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg index 38d0d5a70e..bc1ddc8d0e 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg index cf315d0311..e1ac4aeed6 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg index b2a9e83262..40cd68507c 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg index a00e734a4b..0fbd31e3a6 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg index e31eb16a15..e700d05892 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg index b34e256225..e1157d5f18 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg index 9b58479968..b33c1d8004 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg index fba7932975..c1a67f8a7b 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg index 7eeb5abb50..ff845b8c2c 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg index 0aaf3070a2..ea8d7bc5c5 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg index 0a5e9e57ec..507d9a2e3c 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg index 03f0cf6317..638a6bbbec 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg index 0bb51ba7f5..c0b1b637b5 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg index b5f0525693..a086904a68 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg index 0be7bc67df..a8f712871b 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg index 168f49e05f..b579a51612 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg index e7404f37da..0efaf53ca9 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg index d57ac22096..7c959823f8 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg index 443e8e9163..75996a7eb9 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg index 3c758b080f..0b417cb71c 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg index e4e6fd325a..73738399af 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg index 3e521fe5cd..25c2740045 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg index 50a6a06367..3d36119b99 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg index 7efc2925db..d44a8a682d 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg index 33c0dd9ed7..9661e0b713 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg index a9dec2ac7c..16acb470bb 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg index 9d8eb29cbe..f495293de1 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg index 3eda4c5391..dd509d1a90 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg index cdb4c8589e..1aded83dc0 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg index c3b10bc011..04bef5551f 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg index 2f80a69cad..e6c7d14960 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg index 500654b95e..68876593c1 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg index 868647065c..dbf233ad6e 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg index 1bc9797884..3095c56a0f 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg index 5afbc9a036..7aa53abb64 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg index 793faa0398..b3591cc788 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg index 6aa3e37b5c..af209426ec 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg index 8839464be8..06e4e7c651 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg index a03fe406d6..2aaa280b2f 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg index 0ab68afe6e..4c834f0ff6 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg index 66bb790b7b..df550ba1bc 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg index aee6a22475..6ab79382d8 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg index 48b223905e..60998dbd65 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg index 1e2b873e7f..dde4a97fc1 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg index c3702cdd9e..3963e6b0d5 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg index 9906072362..784e5b2e58 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg index dab3aaa490..cb51fd4db6 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg index 34b0df7d1f..9faeba3edb 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg index b6c1244dcb..52272f8c34 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg index 1cf6176e49..ff18437e57 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg index 86519d1305..2784f7e8f8 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg index e8737441da..523dcb6e2a 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg index c2f6ea5527..b1ff18d6cc 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg index c60b6b7bc2..7d19cc1d44 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg index 627de7cadf..60d3c52614 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg index 367597cad2..926b77b33d 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg index 725fcb20a7..6732722685 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg index 651ba5a4c9..8f94e2e1a0 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg index d8620b8ea9..9680d7a7ed 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg index bfe7b1127b..f009c46413 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg index 89dada6d6d..f61bb46847 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg index 6901d8f552..7a8388337c 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg index 3177aa72da..f681c109b9 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg index 23392e8790..d11538aa3b 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg index 4ccda30473..954492ef7e 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg index 9e7e746430..0ce082a0a0 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg index d4ff0860ab..9b0788803e 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg index deda6a7f6c..8492d43d09 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg index ccca511d6e..49142f32a7 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg index 17f2ce6c12..e525ef3d1a 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg index b32fa4b71e..b8ef4dc13a 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg index f1583a70d2..c0f8fb43a7 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg index a46ab47036..8f7e73d605 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg index b83c8b5efe..35f9341e0b 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rough -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_global_extra.inst.cfg b/resources/quality/tronxy/tronxy_global_extra.inst.cfg index d11d1e39e8..2ca8b9fdcc 100644 --- a/resources/quality/tronxy/tronxy_global_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_global_fine.inst.cfg b/resources/quality/tronxy/tronxy_global_fine.inst.cfg index 1ee5b3d856..427f2faa15 100644 --- a/resources/quality/tronxy/tronxy_global_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/tronxy/tronxy_global_low.inst.cfg b/resources/quality/tronxy/tronxy_global_low.inst.cfg index 446fadfa8d..c0bc5b407f 100644 --- a/resources/quality/tronxy/tronxy_global_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/tronxy/tronxy_global_normal.inst.cfg b/resources/quality/tronxy/tronxy_global_normal.inst.cfg index 07697c710c..060b165729 100644 --- a/resources/quality/tronxy/tronxy_global_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg index 4b49afa97a..217d68feb8 100644 --- a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_rough.inst.cfg b/resources/quality/tronxy/tronxy_global_rough.inst.cfg index 6bbf2615bb..5c7f7ec595 100644 --- a/resources/quality/tronxy/tronxy_global_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_super.inst.cfg b/resources/quality/tronxy/tronxy_global_super.inst.cfg index 2ba5b0aaec..0afbc9139e 100644 --- a/resources/quality/tronxy/tronxy_global_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg index ebc52fdf83..49e8411f36 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg index a51d2ee826..400d513b38 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg index 498e38ab67..6425bdd1ab 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg index f3ef6c692d..ccfbd85495 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg index 27e856a11c..c2c8bddd52 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg index 61f983c1f1..bec1ccd426 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg index acf9a2d79b..a58e034c61 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg index fa26a3e621..4c2033f132 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg index 70ea753138..01598de7ee 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg index 57e2cc95eb..37eac7509d 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg index 0a6247df5e..bd2371801a 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg index e7d5a413d3..455d386fed 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg index 59d727e0ee..d98842f2ca 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg index 8093f901b3..21383a4cad 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg index 4da10a58b7..0777183e07 100644 --- a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg index a2928c11ae..947b5e9ff6 100644 --- a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg index d3acc3d676..74411d1ce6 100644 --- a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg index 00e1753f59..4000ea44a7 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg index cd456caa85..aa8509acae 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg index c3681301cf..578a86cc7f 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg index a330602fdd..55b89c009c 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg index bf9e99eea5..cbdb74f5ce 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg index a5b2744362..0eb5b95247 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg index 766b6ef1ff..1bf5cf5952 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg index 529cb82628..df4c082ea8 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg index 9a9213c25e..6efb175d00 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg index 32174de806..f1eda6a3ed 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg index f55cc7c36d..50f1dc8c79 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg index 4d1989d074..baad51731f 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg index 47b93b14f5..6b28e5e148 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg index ac3ab46420..35f5f4c9db 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg index 7ba8d13fc7..54c4e1a510 100644 --- a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg index 8d9b052abe..1566954973 100644 --- a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg index 6654f3a13d..5c6ab5ea34 100644 --- a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg index 292d3964c9..8fb61489c5 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg index a18faa2496..7d176e8aa0 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg index d73b38625f..e62cce53d1 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg index bc1d930f5c..f9099b1f06 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg index 2aed3e25e3..a8146611b7 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg index 672344afe9..ab80118504 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg index be051364fd..e4a7ab8fae 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg index 50ef6ef118..83cb50d0af 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg index ffaa82b9f1..acc650fb1a 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg index 0142c3df2d..e60301d0d2 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg index fab1c4d968..8729581abd 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg index 26f374607e..e85b6a0b52 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg index 9f334a996a..3491c23d13 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg index 45f87521af..f1380a6c8c 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg index a259e5d759..5e39da3b70 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg index cdc8b281b5..7a190bec9d 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg index b47b18b9e4..2691da39e6 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg index 731c9371bb..91b687f152 100644 --- a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg index 61dedfdfc7..1326865311 100644 --- a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg index d3233fd303..31f34666e5 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg index c9fc819a6c..e3fb5cae7c 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg index db08081c75..0adb942024 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg index bc90a60fa8..1e6396fc10 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg index f424abd5d9..a8f6eb585c 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg index db575821d8..82d7ea240f 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg index 3fbea6b899..85fb9ea5c9 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg index c4e806ae5e..bf0a457922 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg index eedbf5abe2..b3f4c4f6cc 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg index eb2f3f269f..8caa9cce45 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg index 9383f9a018..4cf938d2c1 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg index a6dfedc300..74229a86ba 100644 --- a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg index 35dcbfdc7c..736d70b6cb 100644 --- a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/twotrees/two_trees_global_draft.inst.cfg b/resources/quality/twotrees/two_trees_global_draft.inst.cfg index 57d6acaea1..a2bb178ede 100644 --- a/resources/quality/twotrees/two_trees_global_draft.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/twotrees/two_trees_global_low.inst.cfg b/resources/quality/twotrees/two_trees_global_low.inst.cfg index 53991fb83c..27c55fcb6b 100644 --- a/resources/quality/twotrees/two_trees_global_low.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/twotrees/two_trees_global_standard.inst.cfg b/resources/quality/twotrees/two_trees_global_standard.inst.cfg index 15c704f00c..c4b77aafa9 100644 --- a/resources/quality/twotrees/two_trees_global_standard.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/twotrees/two_trees_global_super.inst.cfg b/resources/quality/twotrees/two_trees_global_super.inst.cfg index 373a4ac415..5887d1cea5 100644 --- a/resources/quality/twotrees/two_trees_global_super.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg index ac28e1163f..e63a048b58 100644 --- a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ultimaker2/um2_draft.inst.cfg b/resources/quality/ultimaker2/um2_draft.inst.cfg index 842364a0e2..00fb1a36a8 100644 --- a/resources/quality/ultimaker2/um2_draft.inst.cfg +++ b/resources/quality/ultimaker2/um2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ultimaker2/um2_fast.inst.cfg b/resources/quality/ultimaker2/um2_fast.inst.cfg index a4b3b53d9a..5b3affd987 100644 --- a/resources/quality/ultimaker2/um2_fast.inst.cfg +++ b/resources/quality/ultimaker2/um2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/ultimaker2/um2_high.inst.cfg b/resources/quality/ultimaker2/um2_high.inst.cfg index d3906d40a4..058248956e 100644 --- a/resources/quality/ultimaker2/um2_high.inst.cfg +++ b/resources/quality/ultimaker2/um2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/ultimaker2/um2_normal.inst.cfg b/resources/quality/ultimaker2/um2_normal.inst.cfg index ce35f5fdf6..c4731f4d9c 100644 --- a/resources/quality/ultimaker2/um2_normal.inst.cfg +++ b/resources/quality/ultimaker2/um2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg index a66b8d893a..b702c6a88a 100644 --- a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg index b33d5b9601..2c63efeceb 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg index 1ae2910d5f..8e9de50047 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg index e7668c52ff..94d820b1c2 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg index 87b3fc43f1..191cddb86f 100644 --- a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg index 8e8abd0af3..966ec07eeb 100644 --- a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg index aa23c2d29e..c9f58ef9c8 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg index 35cc2eb58c..8c09824001 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg index 7ec4b73d06..deef18099a 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg index 4c0d9734a4..46ec3b3468 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg index 89132582c2..7b8c2b94b9 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg index e602968179..b0182083ed 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg index 268629808d..eae39695ef 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg index 1bc04ea32a..e2f1f6aa51 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg index de94c44cb2..c8ce764a72 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg index 7a07755564..ade9583652 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg index 9261d6a828..4ef8850b71 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg index ee9c178686..7bbf8ed2db 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg index c29f258765..907455a2b8 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg index 7a1ef4d328..de27c72705 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg index 6c1226cb94..40d4c614e1 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg index 7733a6542f..e134a7a2c8 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg index 64b20d7697..48c27caf28 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg index a3f73e630f..d81f99b023 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg index dad85dbf32..20cc695bf3 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg index c545bc162b..acf561f8b5 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg index b90a08e164..ed90f01b9b 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg index c3c6ec1ccb..4bfc313db0 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg index b2301907f1..8ef551bea2 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg index 4e8d0b98dd..0dcd2e1a1c 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg index 9fe60b531c..d2f02f3004 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg index 05ac13318e..4c0b9cb67a 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg index 6af095a034..1305a3b11e 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg index 512444d2d0..8b4be06847 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg index c81aa84dd1..ed4a9df10f 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg index c201d3c190..5fd48d3bb1 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg index af44fbb77a..3864d11860 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg index bf548fe1da..befb3ed66b 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg index fef262b2e9..f8257baa7b 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg index 42394c95c5..bf133efc00 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg index c620b6d639..f4b438fdc1 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg index 2007aed6e8..1f7961bf1f 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg index 2297ed8f46..010bc48106 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg index aa2cefdeed..8c444f81d3 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg index 8ad024143d..24486fb668 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg index 8ce3d3fc8a..b1cafe6011 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extracoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg index 7b04f77dae..d02509ba4f 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg index 20cf3f4f39..e102897fe4 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg index b47d8dcbbf..da0510edbe 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg index 635691d3df..4211dfebf2 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg index 9e631ee4a2..f1de76a51b 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg index 69911019ee..f190ab0785 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg index af5fab1f9c..3867636a09 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg index e4ba9b64a5..7ffb9b6e21 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg index d6beb15c1b..89c43c36b6 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg index 82e9444d96..54bbc1766a 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg index dc6e6470a8..ccf768c8ea 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg index 226d4f417d..08a5d02e33 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg index 6ea8c1855a..ea5e840576 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg index 45960525a1..3e9bb5d6b0 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg index bccbceb94b..decccba57b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg index 7a7bbd77b6..44f9109de3 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg index dbdf7ff3ce..236bddc415 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg index 425b214086..fccd9227da 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg index a53fa1d41c..ba658c3f60 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg index ba09e6f598..875f5f015f 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg index b39d2167e5..7023ec59c5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg index 02ef186159..ec0a920181 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg index 4365af9728..9b95161602 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg index 839d10fb5b..b28654a87c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg index deb4633e6f..ad6f2bb6f6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg index 42542ca2c2..f1eede7f12 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg index 606286b545..080092f5aa 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg index 7f4ab594d1..effa96a0f5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg index 3f739736a4..b1dfcc5912 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg index 86767b0734..97113da57a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg index cc0b73b62a..24a21414e2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg index 432f5c88be..9d802165ca 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg index ff05cd8e3b..01bf6670b6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg index 315bed236d..4a5fcf8dc2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg index 9be9845ccf..477e13a007 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg index 22b98a2bef..eeb11fd106 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg index f0bf399845..fe8b3e598d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg index 5e9bfe3f10..d9fe81584f 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg index 0acedb59a4..2e6eaef651 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg index 83645f994e..2a88a6a080 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg index 35cdc1c793..a27fafe1c5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg index 49518bcc83..841970b089 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg index 4c9d6de011..c31f76e508 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg index 9ba27afdba..6fcdf0b9bd 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg index 081fd35b40..87fc62c266 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg index 175e85ceee..e4443c575b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg index 4546b75ecd..d91fc56731 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg index 8acbf177bb..a82a4868c6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg index c591382c17..67fb096b0d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg index 247cb35fb1..8d47eb7bf6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg index b61cd02dae..e8273bc663 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg index 24cdf93b52..5111ee743b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg index 7c80517589..5b84564cec 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg index 89fe4a4e34..66b5315153 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg index 84745a9d01..5813e7866f 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg index c8bc507424..f283ffb132 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg index 0d06ee23f4..ac130a054d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg index 4fcdc54f98..fb276a1714 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg index b9b838e14e..41747bddb7 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg index 462282adc6..3b4582a977 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg index 2d2a424ebc..e5bc6c4b42 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg index f274f95f8d..d5c64caee3 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg index 0192052440..e336c7a4e2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg index d5aaa0a754..c762b0cdcc 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg index f4fdd27861..77dda60409 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg index 0e2fef1c91..ee9c83cbbe 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg index ba01ab72d7..0ea464823a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg index b61dda88da..f88d8dfdc4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg index c5cd0c61b2..58b078bd97 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg index 972bfda801..185f82f839 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg index f81f88276e..5f67e8e8e5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg index d0ef8d2b5c..880e6ac0a4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg index 782a08c6ed..d69647e116 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg index 42b6f2ea89..e83747ba51 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg index e49f37cc77..0ac9c5d4ef 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg index 45acc00ce9..0fa77caaae 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg index 6354670e28..cf70e45598 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg index e53d36940c..35a2e0ee63 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg index eff671f0e7..9cfd2f0e00 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg index 261dc31a8d..f10cfdf0b2 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg index 13330087fc..58fdd96962 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg index 56ee69253d..4c6e09d255 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg index 07a7f1eb95..99c9243b12 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg index 001364bd92..aad10c37d6 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg index 10e384276b..1762c4e937 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg index e9fb3a8258..5c625b634d 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg index b64e3dfb1e..fb594ef0ac 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg index 41b5031de1..12b6b73c98 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg index 8195470e4f..80ce7ecd9b 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg index ecb9faad44..1f42ac3b8e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg index d6731e02b0..2cc734c062 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg index 55af57f67a..c1df881030 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg index 367fe5dcf6..bf1d6659fe 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg index 9d9203c2ac..4148e77c3d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg index 0a9b2d9f02..956a452244 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg index 577538fac1..8445c7c02e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg index b52f60361b..07e0cefc27 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg index cb6e303af3..b3a75da800 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg index 1505a30d22..3b9395caa4 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg index e9e926660c..ed0f95d871 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg index 68004b632d..31c77c886c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg index 4a79e5728a..97177449e3 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg index b65fe71a63..c180a5fb30 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg index 7d6d2eabaf..01ed386bb2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg index 4739ce4f5c..e18e3eedbc 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg index 7c894abf0b..ce27a32547 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg index 542c9a51bf..85a84d1b7f 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg index 1f5cba710d..42c37b15e9 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg index 4bfa09ae9e..794a8d53f3 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg index 2174893804..823ad5cddd 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg index 434e7ce54c..c5cd8fa8f7 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg index c139608ff1..1e5040bb52 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg index 44e49ed160..d9169d1c7b 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg index 0fa970bc70..89351a7162 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg index 42784f075a..4ed000250a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg index 994d781aef..164bf3655f 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg index 4fbcdedfa6..33b7f0c0bf 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg index 0655fa158b..86e252b2bc 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg index 375f79a0aa..df8a91f5be 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg index f5eb8575b0..0a57398d75 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg index 3cf1ad08e8..11a32962e6 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg index df4cd1cb5e..63024749ec 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg index 833b2e2ba4..26aeb21c26 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg index 667efc592c..1685f817b8 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg index 13c119ffae..df994bd387 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg index 4614943320..455dc08eb6 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg index c02bf624d8..ed43b60467 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg index ad0d2c1d5e..bb7fe9ea7b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg index d9a7590540..dd07e941c3 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg index 4696e86a1e..7f183edfa5 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg index 8bea04ec52..7edcb227d6 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg index 5a2b0be400..ea7f3e2a04 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg index 61e169f227..ed5fbfb9b0 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg index 889c7d559e..14a2671284 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg index d551dac42e..3c03492c61 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 60092ffe17..7c6c44a97b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg index b144fd3a44..76e61c875e 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg index b4a09c306d..724124ed00 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg index 8b90dd7c42..894370deb3 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg index cb7e0df75e..98b1cd8a22 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg index 4541fd17ea..6e5aa8a78a 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg index a23d38188b..89cf1f850f 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg index 8ca93cd813..29609e55c2 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg index c59367946e..6510c2234b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg index 40d91ace75..6f2dd36dac 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg index dc387d1358..5c5758bdb5 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg index 1d64336e57..0e557787b0 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg index 0ea5def31a..a00a58ff29 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg index 83b73eea9e..40bbd79914 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg index 3404da85e4..10d9d0f070 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg index 40926c6d92..5489e0307c 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg index b1ccf767d0..a06a6295b2 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg index 67a81efc7b..1079cc455d 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg index 8596784c18..1bd6e961d8 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg index 8e0ce7b6b3..69fcd3ac80 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg index 3a38fd1b35..9af53d1a30 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg index f7f7192483..95c2d989a4 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg index 0cab276520..38091a99a4 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg index da82ad30eb..c7a3aa701a 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg index 4b6a6781f1..52bb0af6b9 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg index 7cb3be4d0a..de9325fabe 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg index c85cc5c30f..3d380598ff 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg index 1195b49051..8983f228cc 100644 --- a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg index 23b5bda714..b4fa7e43d6 100644 --- a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg index 277909301e..15325a9add 100644 --- a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg index cd4be3a748..96364ef08c 100644 --- a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg index 4c59ff74cd..da5ef570f7 100644 --- a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg index b09024d070..8feb1f8f4e 100644 --- a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg index bbb9d0f6e1..e94b1a981f 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg index 3709b1fb9c..303b54bdab 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg index 185d5b9f22..9b7ddd4d46 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg index 307af32184..5e6d184c40 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg index bb10a276a2..ac9f6dfdfb 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg index 946e1d73a3..9896326574 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg index fbc7ac702c..14da349fa4 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg index 338533ee03..9f1a9ace9f 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg index d788d72111..5bc3d24b65 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg index f121a419f1..26a34aa3f6 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg index 9bae566648..c95d4a6045 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg index 5ce773528b..3e3420bdf1 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg index 5dc170dd46..9d1385a9d0 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg index decc1b6846..c52309e048 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg index 46d802a0c6..15852e2fd5 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg index ab89cfa7b0..6493bfcfaf 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg index 85ef72980e..d78b672061 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg index 8493737087..6f57a64035 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg index ddf058629a..fa87c69535 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg index bbaa81e380..38e2e7f306 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg index e3f13bb208..d094818f67 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg index 59b7f0cc0d..c8b7a4740d 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg index a68fb26c1a..0ea0e9b05a 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg index fb1e113270..6f5f23535d 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg index 4f9bf33860..3c2a0f9c53 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg index c2c1c74379..77cda85447 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg index 411fe42d59..49dc9a6ecc 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg index 22b06849b2..e5381d2447 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg index 885f39e5f1..939414c49c 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg index fb86282cf6..7949216404 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg index 89ad814e07..de767251ee 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg index 381df3a6e9..c3ba955d80 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg index c3291f77a1..59739fc6c5 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.3mm.inst.cfg index 7949c64afc..b7e0e209c9 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.4mm.inst.cfg index 4b1d25bd18..9c09abf8a6 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg index 37e9bb8b73..23dc66bbf2 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg index 4c83276641..2d0b514956 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg index 93f62df983..cab331654b 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg index 0d946c0092..bdd52192a1 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg index 148a82c991..8a05f6cb67 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg index 8ab2146046..1dc6f2b2b7 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg index 52134575b0..a506455080 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm.inst.cfg index 40f9516580..21f7a3b4d3 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm.inst.cfg index a9616d2c56..44ba8d3468 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm.inst.cfg index d0dacd043c..fdfee2b6da 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm.inst.cfg index ff2b894cb8..479113beb8 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg index 1b5ae5b4a1..1980060b70 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm.inst.cfg index 74915d58be..f448406c60 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm.inst.cfg index 7b6a444531..1309f15be3 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm.inst.cfg index d6140b680a..4cfc15fcc1 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm.inst.cfg index 4b82f05342..eefa01dad1 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg index 0b1fa30c04..fbc0cf5541 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg index 89fd1dc556..3109858139 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg index eff621dcc3..b15b0dcf0b 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Draft_Quality.inst.cfg index 7a88390184..f5d984f6d4 100644 --- a/resources/quality/ultimaker_factor4/um_f4_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Fast_Quality.inst.cfg index 44783fa788..018e0352fd 100644 --- a/resources/quality/ultimaker_factor4/um_f4_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Normal_Quality.inst.cfg index 6b192914f3..70ee5b9892 100644 --- a/resources/quality/ultimaker_factor4/um_f4_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Superdraft_Quality.inst.cfg index 09e179a68b..485cdd08a7 100644 --- a/resources/quality/ultimaker_factor4/um_f4_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Verydraft_Quality.inst.cfg index 48feef8723..9af0370953 100644 --- a/resources/quality/ultimaker_factor4/um_f4_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg index 875b7a06a0..856adc0a16 100644 --- a/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpps quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = HT 0.6 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg index 90249026a4..a7b625eec8 100644 --- a/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = HT 0.6 weight = -2 diff --git a/resources/quality/ultimaker_method/um_method_1a_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1a_um-pla-175_0.2mm.inst.cfg index 8d66532574..a6d0a1d4aa 100644 --- a/resources/quality/ultimaker_method/um_method_1a_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_1a_um-pla-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1A weight = -2 diff --git a/resources/quality/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm.inst.cfg index 6037ef01b1..7f1207d6a0 100644 --- a/resources/quality/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_method/um_method_1c_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1c_um-pla-175_0.2mm.inst.cfg index 0914456ebc..4df98061b6 100644 --- a/resources/quality/ultimaker_method/um_method_1c_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_1c_um-pla-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_method/um_method_2a_um-pva-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_2a_um-pva-175_0.2mm.inst.cfg index 99457a0867..734b268a75 100644 --- a/resources/quality/ultimaker_method/um_method_2a_um-pva-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_2a_um-pva-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pva_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 2A weight = -2 diff --git a/resources/quality/ultimaker_method/um_method_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_method/um_method_global_Draft_Quality.inst.cfg index 433d839545..9246d0c546 100644 --- a/resources/quality/ultimaker_method/um_method_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm.inst.cfg index 26ad40893d..b00e471d81 100644 --- a/resources/quality/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_method/um_method_labs_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_um-pla-175_0.2mm.inst.cfg index 8e29548abf..e5ab8a6c28 100644 --- a/resources/quality/ultimaker_method/um_method_labs_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_labs_um-pla-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm.inst.cfg index 0954cd9362..7c1e543496 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1A weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg index f88e970e86..70fd51de0b 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg index 9b3f5994a4..c78b0cb2db 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg index de573c160b..483031f426 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg index 038dee5842..37d8915285 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm.inst.cfg index cd94a847a3..2d283ea5d0 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg index bd0bc29c93..1b92a32784 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg index 426294338c..940d880111 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_2a_um-pva-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2a_um-pva-175_0.2mm.inst.cfg index 9c2e0c66ed..b75f9fd84d 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2a_um-pva-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2a_um-pva-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pva_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 2A weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg index 4185387c5a..ba82e64436 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_rapidrinse_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg index 44f221726d..55991815c7 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_sr30_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg index f3d1eea204..553df1225d 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg index 6e2b803865..e4303f474a 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg index af00dbfeb3..72ad0c001f 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg index 4db0b6b7ec..bf42fae1bd 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg index 00b5775c9b..7eafa3745c 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm.inst.cfg index d4e56ee166..7b4ab84da8 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm.inst.cfg index d4c3f1fad2..8c67f40d4d 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1A weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg index cafdccde66..b76ddd81ca 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg index 8917031687..5d217bd440 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg index 9a1f0e2aa6..5c843cda76 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg index e930693690..21ed2c9417 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm.inst.cfg index 5e2b40209c..7c61f97aca 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg index e002c7fa64..75e6f3687b 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg index bfb99a0484..d0bdc20d3d 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2a_um-pva-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2a_um-pva-175_0.2mm.inst.cfg index 9534302ee2..d879e4a530 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2a_um-pva-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2a_um-pva-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pva_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 2A weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg index 50ba0208f7..398597b6b8 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_rapidrinse_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg index d4e0c0dd1a..f17ea820a1 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_sr30_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg index 115568be2c..eebf2b4097 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg index 139736f7a3..4725a4440c 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg index 1d48bca467..e376d6d4a6 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg index 657f43af9c..4cca4b0bcf 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg index d65d25f15e..c9fc81b62f 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm.inst.cfg index 52b9b334a5..9f4259db75 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg index 8eba38b4cc..2a97656acb 100644 --- a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg index 7fb577145e..a8fbcc8120 100644 --- a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg index c7d9e9707e..23867dfeba 100644 --- a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg index 0014913d10..22be07318a 100644 --- a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg index d865eb9860..3064042a6f 100644 --- a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg index cc7eda9652..4bbaf7fa65 100644 --- a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg index bfb1174912..5f09a59af2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg index 8f8cd8f46e..9851fed578 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg index e0fcdf5530..a45d879c9e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg index 2135e5deaf..cd1ab52329 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg index 7f7b9da311..138af772de 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg index ed70f807c8..330594233e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg index 75740231e3..d438644d81 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg index fb8f230a5f..06bc1abc17 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index a84295c169..1d4323f5f5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg index 054bcf2b44..8c08ddb87a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg index 6cb160cbef..dc4b1b80d8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg index f1b85fc195..6835996b05 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg index b86675ae95..026a234904 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg index 7ec6ff5bba..97a0345ff0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg index a51bbfd3e5..6df6638e0a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg index ff2b386de6..3fd13b6736 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg index d7cc2fd346..bd14ea572b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg index 205434e462..5ffe8c2b1c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg index 0e7c3a6500..05cbf475f7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg index 51e698affa..f07b525949 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg index 348f6de988..d12241dbb9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg index 6d9947b294..d4f6a27855 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg index 3566b82f90..895d9adc4a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg index f720fa71c1..a14dca21b1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg index 5e94d1f585..56dd6c4cf8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg index c0767352a9..7445d117bb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg index 7c5f9caab4..07d3839391 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg index 191290bdec..19d74bfdc9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg index b33a421c02..f6fdc13905 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg index bf59d60973..1d593bf930 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg index 31ce3c3928..72e9fb6e0e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg index 7a30166c37..ce70446a32 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg index 04f83b8aef..74a1450dff 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg index 87eb067985..c000e2a629 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg index a78b80f786..9df97ece9f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg index 1f5f8ba874..bbabcb79e4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg index 43480fb647..9b9fe92dbe 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg index 70f9815aae..417b93cbe5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg index cab7619421..513c82c67a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg index ae89f04511..2498051aa5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg index 3bdd528ea2..84dec48261 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg index 09b62fda68..29479e7442 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg index ae9436c02e..824f69d098 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg index f51a43350a..e9491f261d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg index ea29968088..73d2af5c43 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg index ab6b521213..84e8b6f13e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg index 8f535a445c..a0b28392b9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg index d1de0713db..e0c02023be 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg index 5ee4b4ea78..b453401530 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg index 45489cdfe1..be7abdfafe 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg index c9e2ca784e..77dcc0d247 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg index 98120114f5..9e373a2075 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg index 90a53df66a..9e52ee093e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg index fe574fc80b..2d9b8b8d43 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg index 6b66454bc7..e8820c2fea 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg index 8e3ab5173e..4702785d8d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg index 7469d30453..e9dcfa19be 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg index 4c702e3b27..5da5361a1d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index 602fe454b2..8c3f15978f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index a349a726af..3d9b8f95a9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index 9ca4211c14..8ab526fd93 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 36778c2c61..d39d1c35c7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index 55cf6e1567..2b6c6cf7e8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg index fc111b08c5..94b99d4c81 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index 3e9b93f899..638af7af9c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg index 43e91a53bc..f38514787e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index 4d2ca6a1b1..6902d70460 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index e8155d504f..099aa7bfb4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index ae0b95e9a5..04605d949b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index f1fcd1845b..bfa34efe30 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index d562e3da55..dc34784fa6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index e12b58fc5e..7e3b8cf71e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index 53c19ef901..78fdb8f7e6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index 4fe9eb1058..1aa7cd9bef 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index 7a8bb668c5..b02f291202 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index afc9e7f629..3d60327a51 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index b14d3228d7..a528a42a66 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index 2dc9b448cb..d356b87a64 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg index 13aa3ea916..b47de5bd90 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg index 3b51b39fdd..71d7cb33f4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg index b15ed15d51..eec2b1b074 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg index 6125cdd468..6b6c547363 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg index b57bbfcfd4..194eda4bf5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg index 63cb5c6b62..759cef2b24 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg index 572d6a14c1..e2c25c89e8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg index bf36800e96..337e1df5b0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg index 54c1872876..f34e21939d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg index b93480ecac..31948077ba 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg index 90156ac8a3..649001ca7f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg index f2d50ef529..ec43bd0da4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg index f3e73ac51f..2850caf1a7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg index 61227b58c0..0e541fad0a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg index 0fb4f697ff..06d877fcf3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg index 1b559783ef..0603e2e7e5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg index 588ff80120..b51a1b04d9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg index 246aa7f2e0..c247811ace 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg index f1d084d5b9..daca4e31e3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg index 7d3603b7b2..8238496cca 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg index 8345c85825..6996da75af 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg index 65a7d476c3..1bfaff9982 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg index f3e3c1f062..8e89ad69c8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg index f091059d19..2fdf1873b2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg index 788182ad91..235c8ef073 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg index d18423fb20..671c116962 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg index 52006ce801..16de1723d7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index cc082aa98b..7df271bc90 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 60b74e9e8b..fe96b48972 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index d2112a066d..560c156cf4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index f81a8e8036..51e31772bf 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index c32d5a2ced..489d7ee7e6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index 7b53c58c63..98dfc86e52 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index 6d29fb456b..6b6bd8a233 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index 846849481f..387599f71f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index fe03ad75e0..e32687384f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index 6008ccfd82..250592f68e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index f41ed952ba..ba08a3826e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index ab876bc815..58c1d4e05a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index 86acb0e63e..b781046b9d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index f7fc9ae731..cc1e133b13 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index cf55675d59..47e05892d5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg index de72bf59ff..d49b9457b8 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg index 93217e726e..6fabc5b47e 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg index d4ad0a9904..25e6602a6f 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg index 90f45b02e8..573476809e 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg index ae7a28fbc6..86ee7c5557 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg index 2b3b2bb338..365cb07880 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg index cbbe1b5e01..4a9f4e9cdd 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg index 1ba661d82a..560c48274e 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg index 9ab5d05612..3d6e3b4e5d 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg index a6dbc29c7d..20179d93fe 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg index 827c8d2ef9..5f561acb05 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg index 7359087b44..4f8d391a58 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg index 956b60d524..bb60950b8e 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg index 6703851171..6c96084008 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg index 3a3d53aa32..cea44d502a 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg index ae5a395ffb..261fe8ad40 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg index d13d630f5e..a279ad09be 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg index e89e9de845..967899ef90 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg index f6f2b8bacd..f7c3f7ee8d 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg index b71b3f481d..51a3894422 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg index f1d114fe46..de9df35031 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg index ea1a1021a7..edff3ce9c2 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg index aa60eec702..7680674cce 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg index eeaf1e492c..a34143c818 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg index cee7f7c04f..9136158c7b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg index 43dd326538..860dce3257 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg index 300d5b02b3..639fbb0049 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg index d7b2c39468..9b349ab795 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg index 502f5fa11b..365f37b0b7 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg index f5398069b1..676d07501e 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg index a0822a4be1..32d246ae78 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg index d83764aefa..2a308b4721 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg index e289c8c014..1fdc82cfa4 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg index 0758e70506..3405e857e2 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg index 292e8f458f..079b380932 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg index af119d34d3..dd514a1ccf 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg index fe51a0fc67..59ba1f2618 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg index 32dfff4185..f3ccb58d98 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg index a90aaceab8..723c334572 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg index 049396232a..b5fac7e1cb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg index 6977685699..9029f64005 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg index 54be78e034..e3e9f903e1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg index 0d9a1ed982..2c231aa480 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg index 0907b2f03e..d1a44267cb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg index e2d1105294..53679bfcf8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg index ec510c886d..1f9cf3d27a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg index 3b414db092..9f317da290 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index d968c3f056..0e34585eda 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg index 78e41e520b..b8b74a4e2b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg index 34ceff41c4..efbe72b05e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg index b9b5fb5a0f..71ccfbd328 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg index 6aa6f23365..d3c137a0d7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg index 72e3d668db..dace9fb21b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg index f1c40d435f..e1b14af7d6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg index ac070dcf59..0de29cabfa 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg index e1d20b4786..684c12752d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg index 808bdd3de3..7e151b4a52 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg index 4d30a7c10d..73fa01da85 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg index 65f11b5736..d2f3f906c6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg index c4bf1775bb..e925d92b6e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg index c262d3ae31..ee478accae 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg index fec5e0a4c0..8806fdbb50 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg index 25ed3adb96..713dae2bd0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg index d16b3578f8..40639e2794 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg index c9448b8e9a..2a8fe65d9b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg index 6672a867bf..043723e2a8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg index 4aa5049046..7e927d092a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg index 2f6b9483d3..8b8d13cd70 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg index 656822b80b..94ad982ce3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg index 950170017f..c707b011e3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg index 911fb56357..0573427ba4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg index 7b30fd474e..73736d1172 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg index 1442f1b180..6ab6df8f2f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg index fb1502f4f1..3f1891c616 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg index 920e807c30..48c08d71bc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg index f9e78aeea6..21f9ce3850 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg index 32daf56a05..3378d6d09a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg index e311a70015..d8b92a9748 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg index 3d3f08ee59..a20c0eb0d1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg index c78b64128e..b72cb14d8f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg index c7c5c6582c..92b9b13312 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg index 786701bf52..348f04ff40 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg index 7889fa288c..f2d67cdfdf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg index d5d07d2118..d3e6076b75 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg index 9d616ae31a..4d5b74d9a8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg index 67b52cb861..05d9b1f88c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg index 238da07637..bcde0a6a09 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg index 8a36acf81c..5cff4ac368 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg index cec826b2b2..c19934e99a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg index 928699193b..0a06f09d76 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg index 1cd2ca0af6..d43219d329 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg index a127f1bafc..0b5b3a35e2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg index f8b8b835ca..f0ae2e5339 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg index f475ac6484..3aedfd4c67 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg index bf5504f7e5..27a59044b2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg index 095b9a5524..530d3bf36e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg index 618f0c1043..16e8ba0495 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index 2654bd2d40..58de85a36a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index f4e10c3833..5dc5f24dbd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index 13d8b3c4ef..d32e47e14d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index 2f690ce044..03724e1121 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index fe4fb9cdd1..b91ad614e7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg index 386745d6e9..56332276d9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index 8fbbf3b6b8..e44956d40f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg index 9333073ede..a6a6be6dc2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 79bdcf5b20..8dabbc9c80 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index 21079c5b3f..46fc15ba53 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index 93bb855a80..cd2fddcb68 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index 8100de75aa..e5d020ccec 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg index 223e74c38d..411e7d31b6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index 539732d456..83de547156 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index f5f0a531a8..c79ffcdd61 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index 8878caf4c7..c414cbd981 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index 702d91f3b9..b8b3eb44c5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index 0d18de8d71..f8cea0d2a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index 5078538dc6..9a71171546 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index 7d96d6abb8..aaa4fed8b8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg index a57f3d1db1..263b5524e0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg index 3617a0f320..f5346900d2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg index c0960ecbb8..ae249c68a1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg index 36793d479c..ab3f148e39 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg index 35959b5b46..3755bce86f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg index 42e8ebafa7..88b0fa5fcb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg index e4f905a7bd..9f887b6f2c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg index 36fde0b907..6449feb068 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg index 9aed2a8c55..44b38bce5d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg index 4498143d4b..5d11b1613f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg index 02c9ecd708..021e0855e3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg index 7a84fe749c..a65fe78b6a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg index 492b4683f1..83b63d3db9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg index 09092de98c..b76000fb65 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg index c943037a96..01e1c0047c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg index 0700bad762..920d1d5de2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg index f0fee5fb38..24859c3caa 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg index b39cbb1f44..eaa83566da 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg index 16856d2826..cb488dbf2c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg index 44d9b20567..6fdf48589e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg index b490c59430..c9818edbf1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg index 6c7ccf90f3..efd3c1a439 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg index 09c4b04702..c4a038507b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg index 7905d94304..b3c86288c8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg index 50c25a914b..e6e4798549 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg index 864c0dde9b..80c957e091 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg index 0df55e9799..c8f00e1ffd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index 9aa0eed853..3d7ebbabe1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index 759cf36e2f..0af071ddea 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index 118c2524ce..3ec49282e8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index eba4ace386..40331426f1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index 2838efbdd7..c1c73dd825 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index e703fb64d1..0a469aa9cb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index 5b6bd77b61..222890918f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index c19e138144..577a4f0d25 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index d5b889e61a..4dab713193 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index 78d63336fe..cbaadbe5b0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index 4c2089a98b..b12c471f4b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index dc6bf3ebf6..37eb5f5265 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 766194ac04..f7e13cd642 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index 00b743dec2..d083c50d97 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index 676ec0d8af..c72bd24d51 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg index 4a74cd6227..059c188f81 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg index e4a35cd961..3371bc8be8 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg index 41f5d71c4d..02312421ae 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg index 248e54863f..eeb95d4d32 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg index 056b3bb327..76a10ef77f 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg index 8bc8491beb..d3b0e8ca33 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg index 7f42564da8..6146780c89 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg index 8115c6148c..2630a776e9 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg index 2446ef813d..11048a93e8 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg index 9f206ee50c..84629c7699 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg index e20af2439a..bf7dbdba21 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg index 09ee04d1a0..c1859204c9 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg index ba21c26c55..495e09fa2c 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg index 5be5e1e49e..fbb6ef70b4 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg index 0f3360608b..95cc85c64c 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg index 68824a8916..760385ab50 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg index 7c3e86ee84..479925bfa3 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg index 56346c81df..c2f8d87ab7 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg index ee7e43e2b6..fbf6b79a82 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg index 52bf2b2bb5..1d68d30c5c 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg index 3c9ad8f923..ffe5568aae 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg index aa57f9bc05..7f8aafcb6a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg index 863d292ddd..a2879e208a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg index 958256683b..4ba35167d2 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg index 57f79f7742..71ec78990c 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg index 69639343f5..06c6bc76c8 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg index e82826f87a..db48436afe 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg index f2cbe9b3e5..9b171e203d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg index d241e2c86e..f64e9bc98e 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg index ba11a298b7..3cf8b03ac4 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg index 945ee51843..7d9796454a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg index 479bc2693f..9c9576009d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg index 281689ebbb..fec0fff5d5 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg index 2342971e46..626ed841de 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg index 7ee5274878..f3c945d7b7 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg index 7a1f7698d5..9ffe5028a1 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg index 0cbe93963c..86c13d06c8 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg index 601c994b95..0b539e333c 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg index cb1c88548a..92d7a563a5 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..850af7aff1 --- /dev/null +++ b/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-pla-175_0.2mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_sketch +name = Fast +version = 4 + +[metadata] +material = ultimaker_pla_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm +weight = -2 + +[values] +support_z_distance = =layer_height + diff --git a/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..55824119eb --- /dev/null +++ b/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_sketch +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm +weight = -2 + +[values] +support_z_distance = =layer_height + diff --git a/resources/quality/ultimaker_sketch/um_sketch_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_sketch/um_sketch_global_Draft_Quality.inst.cfg new file mode 100644 index 0000000000..01222c6f9d --- /dev/null +++ b/resources/quality/ultimaker_sketch/um_sketch_global_Draft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 23 +type = quality +weight = -2 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..5574fceb66 --- /dev/null +++ b/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-pla-175_0.2mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_sketch_large +name = Fast +version = 4 + +[metadata] +material = ultimaker_pla_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm +weight = -2 + +[values] +support_z_distance = =layer_height * 0.75 + diff --git a/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..319ef2cae0 --- /dev/null +++ b/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_sketch_large +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm +weight = -2 + +[values] +support_z_distance = =layer_height * 0.75 + diff --git a/resources/quality/ultimaker_sketch_large/um_sketch_large_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_sketch_large/um_sketch_large_global_Draft_Quality.inst.cfg new file mode 100644 index 0000000000..d62a7f666a --- /dev/null +++ b/resources/quality/ultimaker_sketch_large/um_sketch_large_global_Draft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch_large +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 23 +type = quality +weight = -2 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg index d076e5e9bc..38bcbfef68 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg index 58796f169c..c7946fa67d 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg index ea995b18df..075edc80c0 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg index 037722df8f..584c8c023c 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg index 8647807691..3e4ba7ddce 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg index ead1a20886..99d13ecdb1 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg index a5d5f5e1bb..2958299f37 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg index ef28599bf2..ecab993ea0 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg index d14443bfb8..2212d4c9fe 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg index 7945311f47..b9e0f85a5c 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg index 897d3b0ba2..377ad0e0d2 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg index d15a3bdf71..c10abb31d8 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg index 34f5d3cf26..edeb4127d7 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg index eadeb1bf75..7329732508 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg index dcbe57dd5e..f21c5af4ae 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg index ce50864b51..f377f6989f 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg index 0a0e16f7eb..2bcd274105 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg index afbbe01541..c255556e97 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg index 276ab9c4ce..7669ad4830 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg index ee3de82b74..8a562a89fa 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg index f6333c6e59..0cac53cb9b 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg index ecc3aec007..5dbc5d3b19 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg index c653bed0e7..40beb070be 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg index bdc1bc20e4..1d049e982b 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg index 54f27659ed..e2bd625f1a 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg index 4620fa5712..4d06c89084 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg index 6bd9406ccc..943fcc5308 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg index bb4d584e6d..d852bd4ef3 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/layer_0.05.inst.cfg b/resources/quality/uni_base/layer_0.05.inst.cfg index e641d64fc7..e0f8dffad7 100644 --- a/resources/quality/uni_base/layer_0.05.inst.cfg +++ b/resources/quality/uni_base/layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q005 -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/uni_base/layer_0.10.inst.cfg b/resources/quality/uni_base/layer_0.10.inst.cfg index 2527e5b3d4..52fb3a5ce6 100644 --- a/resources/quality/uni_base/layer_0.10.inst.cfg +++ b/resources/quality/uni_base/layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q010 -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/uni_base/layer_0.15.inst.cfg b/resources/quality/uni_base/layer_0.15.inst.cfg index 3bc9d1ff87..49d34713e2 100644 --- a/resources/quality/uni_base/layer_0.15.inst.cfg +++ b/resources/quality/uni_base/layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/uni_base/layer_0.20.inst.cfg b/resources/quality/uni_base/layer_0.20.inst.cfg index 05f9ad6151..4ed770c2f4 100644 --- a/resources/quality/uni_base/layer_0.20.inst.cfg +++ b/resources/quality/uni_base/layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/uni_base/layer_0.25.inst.cfg b/resources/quality/uni_base/layer_0.25.inst.cfg index 200a80d416..034486279c 100644 --- a/resources/quality/uni_base/layer_0.25.inst.cfg +++ b/resources/quality/uni_base/layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/uni_base/layer_0.30.inst.cfg b/resources/quality/uni_base/layer_0.30.inst.cfg index 217cc39d13..084ac2366b 100644 --- a/resources/quality/uni_base/layer_0.30.inst.cfg +++ b/resources/quality/uni_base/layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q030 -setting_version = 23 +setting_version = 24 type = quality weight = -6 diff --git a/resources/quality/uni_base/layer_0.35.inst.cfg b/resources/quality/uni_base/layer_0.35.inst.cfg index 8eff4a4b8b..fdbc4e872e 100644 --- a/resources/quality/uni_base/layer_0.35.inst.cfg +++ b/resources/quality/uni_base/layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q035 -setting_version = 23 +setting_version = 24 type = quality weight = -7 diff --git a/resources/quality/uni_base/layer_0.40.inst.cfg b/resources/quality/uni_base/layer_0.40.inst.cfg index cd353afa3b..2ff48b1917 100644 --- a/resources/quality/uni_base/layer_0.40.inst.cfg +++ b/resources/quality/uni_base/layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q040 -setting_version = 23 +setting_version = 24 type = quality weight = -8 diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg index de0913379d..b93282d5eb 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg index 1c2e9d9953..16a8554c6a 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg index 35de218dcb..5b5102ce65 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg index 5b68da394b..26e5a3b741 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg index 2769e9c11b..c519caf517 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg index b370177f2a..6b27d427e6 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg index 9b09314896..d2da315c92 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg index 4175b3b882..f2fde9c343 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg index 513cc23f41..8dfb4f40cc 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg index 12556d6daa..ca5037b296 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg index efb0f497aa..f09284b7e4 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg index 60149a698a..a03617b226 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg index 14c0ae80bb..ca0a2e703b 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg index 0caae6620c..833ed5c078 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg index 4d34852923..508a979f2a 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg index 508e79e005..4c0d5173cb 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg index 2d427ac506..015efaec27 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg index 96e5a7e923..97253d196b 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg index 0807042bb0..bb898c8a0f 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg index 7a680d07dd..a2f543c5e8 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg index 90dae71153..195458e3a3 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg index 4dd470095b..f0ab6a97c0 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg index cf55c91bd7..8c63947a55 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg index 880a254708..6f866199b5 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg index 4ef63d7b08..a494bd6477 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg index f06d526431..260901790c 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg index 2ff7650db7..d7a574de24 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg index 6f4fb83eab..5d3854ac58 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg index 1c6e89f0fc..14c29f7be3 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = extreme -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg index 6d0017cbe4..4628d02053 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg index 0f99d857c6..bbbd51f5ba 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg index 93eee7b63e..74f646e245 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extreme -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg index 1c65c533e8..2dbc8e5361 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg index d169d4d59a..b9bf6ecd35 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg index 17ddd32edb..5b8483e9ad 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = extreme -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg index bd1c5850c6..c18fa9ae92 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg index e9dc246067..dd0fa013fa 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg index 95b43d256e..ad5e0b80a9 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = extreme -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg index ed5f38c330..c324c9aebc 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg index 22072f12b4..937b2f3fe9 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg index ff7abe36f5..113e1e7607 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = extreme -setting_version = 23 +setting_version = 24 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg index 02a59ad0f5..0696d15600 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg index 468668bc59..781ecb3cec 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg index d568325cce..85943f416b 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg index 6b5c2865d8..b20c4a4172 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg index 17a4f24cb2..e99491ed68 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg index cf540a9932..9273b6bfdd 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg index d9b7be615c..f97cb26027 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg index 0d2405589c..82369e0a7b 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg index 3f2515bbf5..42ed9bbb58 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg index d6064b9a59..50ba5e5445 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg index a0083995a5..bd85d44b0b 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg index f6545fa60c..83757f7936 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg index 28d9186b29..6a0076a7de 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg index 7f65012c93..737be7f1c2 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg index 4949b12a62..74717d10f9 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg index 745f3df40e..705b68035a 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg index cfc4942cbb..bb1048818a 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg index e00e416f06..293202ab7c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg index 3a25826127..6bb9345e5a 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg index 29081be573..9a32ea92f8 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg index a200039cdc..40c88d1bc0 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg index eef989fadb..95b223bc3a 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg index 02690c101d..2e3463c6cc 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg index 53bc180c21..2ae0412e21 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg index 290a06a2c4..88b3c4e255 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg index 8f0e13f144..b6b70cdb7d 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg index c90b701134..1ded03a473 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg index 857497278e..c92eb4cfcb 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg index 79e9a7d18c..2a9e6643db 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg index 17664cded0..8ae6e4f0e6 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg index c672c86d72..256b97001b 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg index 8d7a5a486e..8b2d9643fb 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg index 2d6cbc5e52..3378265264 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg index d12c7e66e3..08f10d10d3 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg index 564190eb44..1050172a2e 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg index 086845dc3c..8e865a9a73 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg index 83ca684136..8a63aebf48 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg index df1455f308..06a2e33710 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg index 301acfa939..4210b523e2 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg index 7241dd65f3..b95b356ca5 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg index 95b8201f1d..361f53fe07 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg index 40c59a6dac..56dfb57be4 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg index 77739985e9..caae508e0c 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg index 25abb907f4..f3a7096ea0 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg index 58732f9d7e..5d318089b6 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg index 6b57e6b6c9..784f3c4eb1 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg index 8e02902a41..169bd70398 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg index 494a384e4a..18831b46c4 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg index 5b4c240f01..d3974bd12f 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg index f0ddd4e581..a5328de939 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg index e0351ea270..c37a545600 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg index d9362f1fde..430ac6edff 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg index e4d0f933e1..66e8f92892 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg index 1ccfed86f9..200e90475b 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg index 15252d1ccf..23a423ec65 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg index ba247803be..7e58ef97b3 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg index c1449e986a..510fdcbf0d 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg index 8e83bb561c..2a65f54ce6 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg index f196808f60..e66f7e371f 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg index 68b4d68f35..206aa969af 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg index 64fa8215bd..e4a279d57b 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg index 5dc644e22b..2ae87762a0 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg index 807605532b..95a74ae024 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg index 69b811b413..67f9260e9b 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg index bbacab15ac..e99f5497b5 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg index 464b184e9a..41a817ac98 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg index fd88d032b4..3e5057f7c5 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg index e08d8b6842..5fe45e945f 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg index 8039e2d102..27b98bb76f 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg index 91b42d6988..a0b02f1bf7 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg index 7017c58fb3..c309692591 100644 --- a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg index dfb030a717..0702e3781b 100644 --- a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg index 46e4c52640..c824996a2a 100644 --- a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg index 067d541bbd..4932476cc9 100644 --- a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg index 20be9356b5..11cfeb9d9b 100644 --- a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg index 84663c26f8..f1787331be 100644 --- a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_coarse.inst.cfg b/resources/quality/volumic/sh65_coarse.inst.cfg index 4ee607642d..3bb5229cb5 100644 --- a/resources/quality/volumic/sh65_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/volumic/sh65_draft.inst.cfg b/resources/quality/volumic/sh65_draft.inst.cfg index d20069ba37..bd7508c2e0 100644 --- a/resources/quality/volumic/sh65_draft.inst.cfg +++ b/resources/quality/volumic/sh65_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/volumic/sh65_extra_coarse.inst.cfg b/resources/quality/volumic/sh65_extra_coarse.inst.cfg index aaf4f6d4b9..fd235d96f7 100644 --- a/resources/quality/volumic/sh65_extra_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_fast.inst.cfg b/resources/quality/volumic/sh65_fast.inst.cfg index 0e91710410..475473cda0 100644 --- a/resources/quality/volumic/sh65_fast.inst.cfg +++ b/resources/quality/volumic/sh65_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/volumic/sh65_high.inst.cfg b/resources/quality/volumic/sh65_high.inst.cfg index f077f59a21..e2f6c1a31b 100644 --- a/resources/quality/volumic/sh65_high.inst.cfg +++ b/resources/quality/volumic/sh65_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/volumic/sh65_normal.inst.cfg b/resources/quality/volumic/sh65_normal.inst.cfg index 4dfe95931e..4080e05358 100644 --- a/resources/quality/volumic/sh65_normal.inst.cfg +++ b/resources/quality/volumic/sh65_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg index f17c733d65..0cd7292ec0 100644 --- a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg index 811f769693..147cd7cb84 100644 --- a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg index b95a225cbf..6ebfee48c8 100644 --- a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg index fcc2659b55..becd7299e7 100644 --- a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg index 79b8722ad7..a74625fa4c 100644 --- a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg index dc39fc3c8c..a768206b32 100644 --- a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg index 3226c97f8e..a854b2cccd 100644 --- a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg index 2e326bcff8..83b197148d 100644 --- a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg index 19cc0ddcef..cf12986f91 100644 --- a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg index 58edf8244a..002bf57229 100644 --- a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg index 3a2f4ebc8e..88ba6424b0 100644 --- a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg index de4a217293..2c9acf4d67 100644 --- a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg index f9d939edde..431da6340a 100644 --- a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg index c89e1d95f9..dd698906ba 100644 --- a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg index 808ff582c6..c29600a38c 100644 --- a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg index 8e8c03caa9..d68cb35aff 100644 --- a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg index 6d22eff318..fe55143a53 100644 --- a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg index 03689321a1..4502186ff3 100644 --- a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30mk3_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_coarse.inst.cfg index 7da72446a1..e851554be7 100644 --- a/resources/quality/volumic/stream30mk3_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30mk3_draft.inst.cfg b/resources/quality/volumic/stream30mk3_draft.inst.cfg index 21122e0148..f85cfd47bf 100644 --- a/resources/quality/volumic/stream30mk3_draft.inst.cfg +++ b/resources/quality/volumic/stream30mk3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg index 9c046df8d0..cb60a74151 100644 --- a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30mk3_fast.inst.cfg b/resources/quality/volumic/stream30mk3_fast.inst.cfg index a9a0abfe44..53788c73a1 100644 --- a/resources/quality/volumic/stream30mk3_fast.inst.cfg +++ b/resources/quality/volumic/stream30mk3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30mk3_high.inst.cfg b/resources/quality/volumic/stream30mk3_high.inst.cfg index 59b18958ea..9880615400 100644 --- a/resources/quality/volumic/stream30mk3_high.inst.cfg +++ b/resources/quality/volumic/stream30mk3_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30mk3_normal.inst.cfg b/resources/quality/volumic/stream30mk3_normal.inst.cfg index 13236aa24e..dab76eb227 100644 --- a/resources/quality/volumic/stream30mk3_normal.inst.cfg +++ b/resources/quality/volumic/stream30mk3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg index 093717c0cf..1706b46cfb 100644 --- a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg index fc6ad396c7..3e3b87bf86 100644 --- a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg index af4cbf94cf..aa699a915b 100644 --- a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg index 2e85dd0709..7c313e9f14 100644 --- a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg index a88bbec9ea..c95ef5e2e6 100644 --- a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg index a4d5156c75..2ddee5e12d 100644 --- a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_coarse.inst.cfg index c88987710a..76f98c5f61 100644 --- a/resources/quality/volumic/stream30ultra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultra_draft.inst.cfg b/resources/quality/volumic/stream30ultra_draft.inst.cfg index da798b475f..a17a7e5a36 100644 --- a/resources/quality/volumic/stream30ultra_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultra_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg index 6c0c43ef21..38f971f469 100644 --- a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultra_fast.inst.cfg b/resources/quality/volumic/stream30ultra_fast.inst.cfg index 874cdaab8f..8471bb5b90 100644 --- a/resources/quality/volumic/stream30ultra_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultra_high.inst.cfg b/resources/quality/volumic/stream30ultra_high.inst.cfg index 7480719656..702d90a893 100644 --- a/resources/quality/volumic/stream30ultra_high.inst.cfg +++ b/resources/quality/volumic/stream30ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultra_normal.inst.cfg b/resources/quality/volumic/stream30ultra_normal.inst.cfg index 0d46173ef4..a24bde590c 100644 --- a/resources/quality/volumic/stream30ultra_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultra_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg index 32dbfe249b..7a62da4f79 100644 --- a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg index 3e0e6513e9..b16307b7a0 100644 --- a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg index 89bb2c6fb3..408a51cfc6 100644 --- a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg index 260247659b..ca4bd8111e 100644 --- a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg index a747b2cb40..73e12694d6 100644 --- a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg index 843d7b584f..eec10eac72 100644 --- a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg index f8a7d60eb2..cfe5b14d10 100644 --- a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg index 25342c4205..4b65385b5b 100644 --- a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg index 5fe5874ef5..ed264b0393 100644 --- a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg index ca187fd969..1c4617753d 100644 --- a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc_high.inst.cfg b/resources/quality/volumic/stream30ultrasc_high.inst.cfg index 41170d0261..1317a8b044 100644 --- a/resources/quality/volumic/stream30ultrasc_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg index 1ef8a67370..7d78298b98 100644 --- a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg index ca793bd4cd..db52a921be 100644 --- a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg index ce40e62445..4db2e8466d 100644 --- a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg index 0449c493fa..d9772b744a 100644 --- a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg index 6f29ec5055..6f49b0163c 100644 --- a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg index e3d8fbbd5a..94b3aaef4b 100644 --- a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg index 1ace1241f1..42d864d3e4 100644 --- a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg index f294ceb8bb..4fe61f3c61 100644 --- a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg index 999e2cf9db..defc0687bb 100644 --- a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality [values] diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg index d875200d07..4f72a485bd 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg index 41fa3934fd..e9fac7668d 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg index 7cacd10f62..f6e4b28b39 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg index 27c9b2baa4..5c6e6a2678 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg index 6aaa0a5cec..bc9ce7f7d3 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg index 20c0c54627..8ad5503553 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg index 98433b300a..08eb3114c8 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg index c52e1edc69..8c08d74db4 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg index 7701363d27..bc1a124e94 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg index db3304c8bd..0a200c238a 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg index 2340ac5eb5..f80e07e9c2 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg index 8cb43102a9..a69c4c1857 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg index 1da2730641..50b834343a 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg index e880dfde90..234c52da77 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg index 64eb944a8e..73fcda4d84 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg index 16b89df09d..a2ad731a2a 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg index 5ab36fdc1d..2e2b0b4596 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg index 128f4f3519..1117ad7363 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg index bef1c297b9..69add02e09 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg index 0fbe2717ff..f2009d6ff6 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg index 8c340b4972..a53ea5f7c7 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg index b618f27185..193c7658e2 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg index 5fc1baf868..d40a9f6d07 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg index 0e79604c85..21050c70d4 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg index aab9828c89..8acdbfb1c0 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg index 5e68a88b28..569dad15cd 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg index 47cc7bd3aa..342bb087c2 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg index c265542a59..87c56351f5 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg index 2eda5bfb6d..79b821e90d 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg index a1891a441d..cdea82fafd 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg index cb5a8185c6..350edb7530 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg index 3871631972..d8cc75d2cc 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg index b3540539e9..9396dbaa6b 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg index 8d0a0683e4..d94230e69d 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg index 1e1f83bcd8..4d60ce8477 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg index 25eeb9671a..533d99c978 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg index a2fdab44e1..88a496cac1 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg index 0d90f4563f..057680e7ec 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg index 38be216020..f36c61cf8f 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg index a85824d26e..54ef832dab 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg index f4b4c53530..4841360c49 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg index 765f525e3a..4824e5d0f0 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg index 79147ed396..e7b3a565c3 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg index bccc0df919..40959b8deb 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg index e66e09de2e..5e05658a19 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg index ffa5c7474d..75407aacf4 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg index 8c4ff0e135..d72e650ede 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg index aa522f9bf1..03a1babbc3 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg index 46218916ca..6636312240 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg index 96efd1e41e..ed826f529c 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg index dbcc850ccd..cee47d27b4 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg index 0653734b26..bcdd3e6059 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg index 2c68fe3d54..7b16f7429b 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg index 2d6094cb4c..dbdabc3cd8 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg index 7a665711e0..cb7d372bc7 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg index 0d53194339..ca427be449 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg index beb9e63487..740066ce8a 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg index f0ae26fdec..0cb4693558 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg index afab315860..e3f22bc60e 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg index c28857b565..db3ac83603 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg index cc3433b18e..4830997a5b 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg index 3f0760ac52..349d1e91b7 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg index ae4eb6a72a..0f59691516 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg index d44de8b675..fae026ec50 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg index 5d95725925..cce701b1f2 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg index 393ebdc42f..d6086a86ea 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg index a702679bd3..ca60914c15 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg index 9c187e99e6..5c04de9056 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg index c92c574d3c..0432af3962 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg index a1694ce160..9bcd75bfbf 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg index 3c45b57b03..4394f91794 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg index 087ba0b07a..add5e7cd4e 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg index 15223eb5e7..4010ce7b88 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg index cfe44ff106..09842c95ad 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg index d2a81b81c0..4ae38a98a3 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg index 595c1a9966..8d32213081 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg index 203f6be569..6ec353e3f7 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg index 9ac625d685..1d2fe994f6 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg index 1792fcafd2..baeb51298b 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg index cfbbb3e9c4..3532ef6423 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg index 5f5347c9c2..80d5e676bc 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg index 67461a9d8c..f3222ad0e0 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg index 5772fc5a71..324d296a43 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg index e6977e5443..5030083052 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg index cbf5f70b5a..5b37256db7 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg index 0e5a6959e8..e3938f5cda 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg index 0ccd36651d..6abcae9919 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg index c0aae829e5..30b3c93b52 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg index 322d1bcf21..9ba4b1bb5f 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg index 1b1bb7fe60..3905cf302c 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg index ff9950d542..0239e06a36 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg index 84da32fd55..df71180af2 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg index 1dc52397a4..82eca29543 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg index a0c6f2b9a1..38e89c7616 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg index 5a959cf640..01f3c7de1b 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg index 9b52a77ee3..fc219b3f67 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg index a8aaecefdc..11874c204e 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg index 9dcf32c5f2..795d3f289b 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg index cd8c3d5e9a..074b00fba1 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg index 0efae053b7..504dd94c83 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg index b22db49755..e8581489eb 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg index d7b5010821..e08ea1c865 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg index 1f6a1c8c55..4c2f05714a 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg index 1d206a3b7d..3e69eaf2be 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg index bc76b30b69..7a89c6c149 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg index c39253d040..4db86b3e4f 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg index b77ca6d386..82ec506317 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg index 8cf6106b62..391543f542 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg index 309c742ef0..0fa2c30f9b 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg index 519cb6d205..be8825fdd4 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg index 6643111182..e9a5573969 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg index ef77e1bd65..f5f345c70c 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg index ab46c7db25..64854d6101 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg index e6dd968958..096bf75ed4 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg index 4ff5f02702..204b6818bb 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg index e55e5e9495..e273045b66 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg index 845df53022..f0207d70ac 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg index 1ed64c7b52..ffe8a2d249 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg index c8f280ef00..d07ec6b391 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg index 920a63bd22..9b45d480ec 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg index 3bfc1889cf..95967d2c61 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg index 465756d926..2d6a22bb54 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg index 10726885f6..9aebcd9d76 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg index 2b9ff22a15..8ce8c88933 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg index 6729522329..b8344a3ea8 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg index ac05f4a859..291ef61c0c 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg index ea91d0e747..5a0391b764 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg index 59c5ec6556..9884bc7fee 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg index a20ea38fc1..6226de2978 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg index fb9a3747e6..53bea2d726 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg index 7f52ed666a..c98e4591cb 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg index 461496d938..63dfc80b95 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg index d399a9ddc0..dc7ecfb02f 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg index 2d8cdd34b2..89cf619313 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg index 5ee59d8f8d..a9aec9bb70 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg index 6469d5fba1..ac1e7159d3 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg index a49742d3fc..3800d019eb 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg index 400d3d25ad..bb02e26500 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg index 81b6163b52..5e64ee8e20 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg index 94c1c4419d..44b81593b1 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg index c7f8225bf8..f1ae424a2c 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg index 31c38aa2eb..affdf46ce4 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg index 9b3c4a3187..e940fe63ac 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg index e21c2d9cec..9d8cf0ef9d 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg index e54b55903e..a88abf1e3b 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg index a324716f29..6fe5780a1b 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg index a6af14319a..e49662761d 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg index 0f0cacd9bf..371c90bcef 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg index e9d99c608d..470eea0706 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg index 0ea66c9ef3..35d0d525d3 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg index b5459490ce..fa33b76889 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg index 5cc95ff206..12e3f5b852 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg index a656bf8e13..a08d1271b9 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg index 8fad6d93ee..56c2733a7e 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg index 9b49097136..4f75a00b15 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg index 4aa795e5f3..0f0ae36b19 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg index 0e666729f9..e25753be2e 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg index be5e2a7e27..ff5417f3e7 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg index 333fe0c706..a8b3ca724d 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg index d6f3f60056..0b1c60cab1 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg index d90b2b2a04..e4ee206d11 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg index a228f481df..54e925f111 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg index a1be60d0d0..76f928540b 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg index a78bd40fea..0a745979f5 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg index 498a142787..b115386c8b 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg index e67efe5ac4..421f927912 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg index ca4c177dbe..acdf83d75d 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg index 062a9e73e8..92158545ef 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg index 3927460cf0..d998763ea0 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg index b217a395ad..cdbbe2fe9e 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg index 380dd8b8c5..403845d42a 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg index 49e4ebc455..bce7721e00 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg index 86db81b3e7..569672d376 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg index 479eebde1c..1c6ab5eb25 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg index 84da896303..b486c6640c 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg index 28a398c085..5cde24f7de 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg index a06c882cfa..5c43334752 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg index 5c48659507..74871b5b49 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg index 37d3341676..125434dc98 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg index 8bf4e535e7..c6d72263c1 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg index 06fe686ef5..ba8b0d125e 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg index c227238979..afe691284f 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg index 9d34cef806..b95173eca3 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg index 62fefa64b5..490eb4a99a 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg index 00d88a23a3..9cef2cb5f3 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg index 4dc2b48b24..b0106ea37c 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg index b469ab4c26..7be14aeaab 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg index 130b7b2948..7da8620287 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg index 8b837d1658..89b782b836 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg index 58f6a27190..994c7ed054 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg index 1706d2be72..255290c26a 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg index e948d3bbc8..b213ee5999 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg index 6257674f48..9766bfd1f5 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg index 5f386d2122..33eca72de4 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg index 2c907beb2d..784551e2d7 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg index 71b308a408..18530244c6 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg index 37afa42967..13a385b82f 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg index c829d0d079..adaf1f8fa5 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg index c7c996050c..00663b917c 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg index 6960fad501..1ca90d56ba 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 23 +setting_version = 24 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg index c38a8e3c4d..5e9deab4bd 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg index d159ef3b05..f29ce470a4 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg index 58e66cebb6..5a0fc918f6 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg index 3e140ef0f9..ea05defa4b 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg index bc05a7a3fb..14f9804428 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg index 25ab4e1a3d..36ecf0a008 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg index ab3e231391..cbc4029573 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg index 5dcdb4806d..908d085a7e 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg index a3fe0bad61..fbac8d8277 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg index 8ab320354a..ad263208da 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg index 0e7a2a0c55..e6c20caf19 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg index be687eaae3..163a5ceee6 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg index 335be4aaf8..d5cd194d05 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg index 03f442d950..a9f2ae2d70 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg index bae54fd0a4..46e233d374 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg index 45d2fbb4a4..3c8de3e5bb 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg index 99ede3bb4a..5111bbdf22 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg index 2bb7d54289..b23a121d06 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg index 0f858c688f..c21670df1f 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg index ad91d8fa08..8d0b554778 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg index 7129c6ed93..779dd2a82d 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg index f31af997b7..9ee602621f 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg index f96705db92..e739fac168 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg index fd16a17ea0..e2d462f373 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg index a1520959d7..202b84e5c6 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg index 3b1b532f46..96eeaf4802 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg index 897eeaa440..5004349aae 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg index bb24ea5426..a0548ded20 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg index e5c3a2f82f..a4c2c39913 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg index 1c0cf0ea19..0651f2f6e2 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg index d592874219..81ddfc0b17 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg index dc3d6c66f6..28196d0e3a 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg index 8703ce746e..93193a436d 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg index 3ed5fbad9e..3b084b97b5 100644 --- a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg index 885c0e1f1f..0977d2dade 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg index 0b775f9a7a..706d886561 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg index 8a95360b48..90947fff16 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg index 00fe2eea35..70b3cf1bf4 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg index 8afa3b3c11..194ee7d0b7 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg index 63af2d3ecc..56973d7a71 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg index 5d5803b7ef..25edb79adb 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg index d807851a31..4827062e2f 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg index ffc89f4389..1d140cd963 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg index 959cd5f697..b8d5f83a2c 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg index 2ec0991fdf..ebd42c86b6 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg index 223dac0ef8..25f9cc2498 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg index aa02d0471c..d3bd1d37cb 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg index 72b9fd211c..4db069cdbb 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg index 68b0ac18da..6d718ce355 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg index d846803c71..1797225194 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg index b5941d2cdf..9a305df3fb 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg index 95ad976385..ac7a3a1c67 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg index f7e01b9d1f..d6fbcf6f19 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg index 2435b9c9f4..246b4352cd 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg index 6e695dd07d..beaff7e7c2 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg index c9f1bedd3c..a16bb125e4 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg index b8e8471993..1ee4a719eb 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg index 698ae5c327..029e9831ca 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg index 5d7c1e64e0..82f7bcdf20 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg index 72f1b0afb3..234777e3c4 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg index 2b1a6836db..fa7a69605d 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg index 286bd3af69..080262cb93 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg index 3f89d1d8cd..c3b9106d91 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg index 663740a782..7510721847 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg index 949ce8e1bf..5e5a945134 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg index 3fc5b428a3..d7f074df5b 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg index 8b7ddcb334..4085888303 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg index c663ba030f..287463dbaa 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg index f20d1f0faf..dc88658f13 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg index 0257e3cc51..aca40bb482 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg index 26b174bfd8..c0be5aa73a 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg index 773b7624cb..830113c384 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg index 6e1e26c272..e88fff419b 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg index e0c652f62d..a17a9ecd30 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg index adff9d37bc..643908628f 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg index afdd46b8c2..3cfd6aadb1 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg index 2d034d9796..d634255acc 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg index f4c791a5e4..26d90905fd 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg index f4653302e1..383eb56641 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg index 300a60fd84..5121e77a5e 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg index a3ddc5b6a1..a04f30e765 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg index ffefba7323..00ad045338 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg index f26406f11c..1e6b11d0fb 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg index 530ca4e81f..529fee58f6 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg index 2fa4ad5ed4..e95b594d60 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg index c8f07d26d6..336f633e45 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg index db31efadb2..903937f57e 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg index f2d7cf6f50..1db9919389 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg index 8cc077a9d9..c1d37f7bea 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg index 44d307e8b8..2c14818d55 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg index 7957687ef1..b50be1261e 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg index 414112a49b..82d6e3f1a2 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg index 8240cf57a6..aabae7847d 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg index c686638790..c53ac71ece 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg index c77a6912f8..5ca9bdf0a4 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg index 9cd86ac164..e2c84bec94 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg index 95962ed7d4..3be167cdaa 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg index 8c86c131c5..25769b7594 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg index f82a374f6d..aa441cfaa3 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg index 097d431c16..14d438326f 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg index 5d9ac91bcc..3b3268c947 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg index 2b9e75ae8b..2c83f0bebc 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg index 7d4b01c724..0540f344e4 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg index 2665e85c0b..c7a213cac3 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg index e7d80cd0d9..198dab4844 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg index 06fd7b2fb1..4d33c1b36d 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg index 554c311566..9332c43d76 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg index f959799678..ca95ea6808 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg index 8842f5b91a..eb0ceefc45 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg index 4438ee4a35..53176fe3c2 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg index 2f17f7a12d..5af2eb4142 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg index 9c23e0e7b0..23a30ada5d 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg index 9519418da0..edf6fb8b1e 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 24 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg index 6a5bd488c2..882c11c968 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg index 8d76e83f6a..68c699e3e9 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg index f20f206402..3dc9b1d099 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg index 97148aba4b..a5dabeb502 100644 --- a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg index d974febf49..c6c9bd6c70 100644 --- a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg index 81835248ff..a59eb963cf 100644 --- a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg index 7d807d7d08..2868d3929a 100644 --- a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg index 4c8bc6cfa3..07b4cc2382 100644 --- a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg index 90f100d429..275f03a60c 100644 --- a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg index 42f779cf2c..8b5959ac2f 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg index 0a161802d1..c4eddda6ba 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg index c370f585a9..9a00120f96 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg index dec810299c..e435cc4dc0 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg index f5d825fb07..f3246a3c80 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg index e7d32af044..268bddfbb0 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg index 92d3321776..a361039fad 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg index cd66505617..773eb7034d 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg index 80a3505ce0..40687065b3 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg index 47f485baab..ad8cc12175 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg index b9b4633a4e..27542e32ee 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg index 00f715e849..bc328d140c 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg index 5433fee3f0..b5a8778a95 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg index 935bb04771..bab94afdb3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg index 499ca8a49d..05d5c83388 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg index cc4726085a..9d3576f761 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg index 4b4a59f4c3..fd66a8f7a6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg index 3fca0ffe2c..3063954eed 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg index 8af0c87fa7..ea32f2ce22 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg index d13ecc6139..a343c603c0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg index a52b581ae6..6cd7739828 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg index 2f3762e422..4a13b23e9d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg index 15198eb8bc..6bfd0bcf63 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg index f8fb28dd1f..8dc7c11ebc 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg index eee4be2ad9..912f5ee954 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg index 8fb7cd4f13..5fb7b4577d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg index 3cbc4d6550..7212966d7c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg index d47b0d621b..7be7e434c3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg index d4f84c3497..214e2473af 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg index 9da7c5afa2..62e3891fb4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg index 498eda6c6f..1fef9a2479 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg index 88d4dae71d..de9395c926 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg index d98c37c97d..1927e59c8a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg index 3f4371cdc0..3a5076caf3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg index 56dd8c7c10..83d6cf665d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg index a22c9344b2..669063537d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg index 3504f38cc6..b5e9eb5ff7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg index a7f8b8d5a2..8e727490a0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg index 96c636c4a8..b4228af0c5 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg index b3868b1060..a5409aca61 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg index e5510ab98d..f0d6df8602 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg index c8c695a118..ceb6659e92 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg index 513ed1bbaa..a338e97067 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg index a25f5ae6ab..b06f1db877 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg index b230eeb8ec..72377206b7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg index 8ca8ed63d7..6a9bfbf9be 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg index 7521a10a83..2f2cd77c32 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg index 75103814be..676bd1be6c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg index 0be067404a..825b988d68 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg index e9a5d045c5..e79956f674 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg index 785d08ee2c..0cad9f72e7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg index e8d3699d32..3d626abec3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg index 7b42c6fbc7..fe0fe66391 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg index 90596e627b..9046c2edfc 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg index 34af6eca5b..7b3ad7c882 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg index 316dc4eae9..6161e69dde 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg index ac02d341b3..1b6a8bf1bf 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg index 11fabf6a1e..4a05b4d80d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg index a0aba43e09..21d82fce79 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg index 72778821cf..f2ca3ba36a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg index bae5ea6857..8a7f4742bd 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg index be23f5feb5..301e1568ea 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg index b84c435327..8a38901362 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg index a9b6f0b08c..99776eb836 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg index e12e5f79af..794398e8a7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg index 3d2aa46120..26952bb345 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg index 6cb80412b6..32f20b5f99 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg index 37b75b7be1..fd9ee24e67 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg index 9fc8c83ffa..7b27c50034 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg index 75469d5848..92a42fed92 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg index bbf29ad1d2..6ac9a05134 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg index afbcfa28fe..287821869f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg index 3a5f26f739..f2b6df7739 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg index 574f50beb9..b39f48fbd2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg index abbaa923f4..c7d994b5f8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg index 1e99dce591..894282563a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg index bb53a5837c..2a14426bf1 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg index 49646d89f7..badbec910b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg index 5cc87733b6..387f6def9d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg index 59a94add3f..4294c0b660 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg index 6d7c083a55..140572f631 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg index 3fc2eaab34..3c27a960e9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg index cbdf1352c4..4c99675926 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg index dfb740c32e..e6de6114b1 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg index f127f9d48a..f0d2b26657 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg index c095cdb9c8..aea817e8c0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg index 1049791434..1f44008aed 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg index 3789c153c3..a28831179b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg index 9bc86cf2cd..77f098109a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg index 372d21826e..2ad6499ea6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg index fd5b25d0e6..cb55cfd5cd 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg index b3ebc040d6..f96794e4ec 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg index 8a856b77e9..1e54c8202c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg index cb06e79556..8954b6f8ee 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg index b29f952e49..b4e341cb14 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg index 40b97d7bd4..abbe200465 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg index 7b2c4a584d..b840d75869 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg index 5f9976a518..ad06d09666 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg index 51b90f2496..edc33ee3c3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg index 71c535b8a7..428a0765a2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg index ffbd55c80b..20feac2517 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg index 22cba0bd81..17328714bb 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg index 74d3c6af5b..5b5ea65d00 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg index cf6cc5fd79..1216fd4e4a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg index 6c863df0d1..929aeb65a4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg index 5b16bb04fa..2c2271936a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg index 6b82c29636..9ca7e378d0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg index 0905caa1aa..03c8b5a6e8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg index 0ef7cb5899..d5ab0b433d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg index 69b8330c07..61aff68339 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg index 7dc376d99c..e2c50a8f96 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg index 4982856b12..9cc63dddb4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg index f79b1f49fa..8d731f739d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg index af316f211c..c3ea5e9825 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg index 4c217b8003..a8c73c0eaa 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg index 8db5563256..551a1a647f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg index 94c943bc12..3898084435 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg index 34e40cde51..abdc9a2111 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg index ab8b2fba65..12ddd17f44 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg index 8c30df2bfd..5159809f19 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg index ef72c98cc8..55f7b6efdf 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg index 4d0ea19afd..fa7f6e166f 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg index d9d0eeb7bd..c38526de08 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg index 27af18c4aa..895e574a18 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra fine -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg index 2d751b4be9..fa49eaef38 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg index 9d166c4ca1..14f782d854 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg index 8b055da1b1..8c28d724de 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg index 87ea2bd2df..eddb31b02a 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg index f4b70421fd..3381fd86dd 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg index 962ae53a1a..9e087bcd16 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg index 69a13819c3..137f7e521b 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg index b49e2f34d9..d726c7d572 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg index a35585cfb1..f56bcf97d8 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg index eeff179d11..b25fcbe254 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg index 7b12352a7c..3871e8ba3c 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg index 89cbbb4fbe..fa4d25e3df 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg index 14025817de..2241ee95a8 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg index 5ff20c78ef..507dc73557 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg index 7faa4375ae..15a8fdaecf 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg index 8f18363093..14c775b08f 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg index ee66705aa2..50b81d784f 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg index 6f83a22200..e1b98f4dc8 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg index be14abacb1..aec63d1d59 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg index f6bb53dabb..7d9f233408 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg index ae119642c3..5521724c4b 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg index cbc5acead1..7465e26faa 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg index a5c2bf5f8b..9a7400a961 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg index 0e584bb8bc..640ad15385 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg index c2006b0252..80290e0da3 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg index 867ae36869..3971068991 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg index 17dfa7acab..d9b51af459 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg index 26bce43c53..fbd781a7cf 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg index ce0b7f2448..c333c79eb4 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg index 8a4b330496..caad15fb68 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg index 9eee8d2cd5..358ef8a4fa 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg index d82776c5e9..b49c36d780 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg index 58de7bf052..bfa3f97d03 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg index c51bafa804..afcbb4c03c 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg index 8835eacb70..e258570607 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg index c3d5d45deb..99b356bce9 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg index 679f33704b..969af8538a 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg index 270eb086c3..f282ff1863 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg index d57f1a22ab..7068850e08 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg index 45c021ec8e..f7db240fd9 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg index 9b60b89354..004639058b 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg index 0384c51471..d0db71fdd9 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg index 74641c118f..05cb898ead 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg index 29a162272e..612a91a2e6 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg index 942fcf77b2..58c04ed147 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg index 51b5d8fd6e..de497cb3fd 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 0a8cef554f..58d09889df 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 706578940a..30f496584f 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg index 74c1601253..110ca60623 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg index 76400c36d6..ee085e0931 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg index 78c2a6b784..b2306988d1 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg index 77b40d3b1d..7185599584 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg index a3e88b9228..3df7107b73 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg index 7f6e4ef3aa..485d11907a 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg index 0196554b9e..1aeb718e93 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg index 0aa156be81..2c97cc4a61 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg index deb85910bf..9dbce1ad79 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg index 83faffbff3..b8b6d705f4 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 6113f03bbf..cea9365fd4 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 0f78dffbd3..1671cb6c6f 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg index e8a71e84e4..3157699f66 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg index 960c9b0482..6ebe2037f4 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg index 1a156620c5..eafc473ced 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg index 5d94712c7b..d760910800 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg index 2c0fad134f..576e53271c 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg index fbb4f8b733..a1c17b65cc 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg index 167899a216..39149b8dd4 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg index 7b0fc58417..547abf53cd 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg index 3f1871d124..9b5dacabc5 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg index d2369fb6df..e233428057 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg index e99a362f11..6721efd4cb 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg index 48190a39c8..59730985de 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg index 158a0afe4d..b26a4dbd5b 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg index 809dad450a..12cd2002d1 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg index 40be1a66f3..9c7c356a15 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg index 078db5939d..9226b5ced8 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg index fc620a8ad8..db12ec6412 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg index 0420440d2d..f3da81fb55 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg index d0510dbbb2..7453511424 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg index 3c1dacf0bf..39bb50e554 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg index 6f38cef91d..950359fe9a 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg index 754e0c043f..f18c3b6c89 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg index baf535b6aa..9ff12ff691 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg index d1ca554b51..827714688c 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg index 14cc24c2ac..c3c4e097a0 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg index 5862641cf9..9fc42629cd 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg index 27089f1134..265d8f641a 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg index 6a7add5173..d0bf545ab4 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg index 3dfd802dba..c18714080b 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg index af7890163b..4a44478231 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg index fa3e586ac2..8ac73ccde4 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg index ae0696ee27..5ed790c4fe 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg index dc6520596b..f73a750858 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg index eb2a9cbc5b..8d07b794ab 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg index 945026a4cf..0b78234539 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg index 667a5c90d3..c50aefacca 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg index b074312e87..2a0cf4a95c 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg index d6d37c2fc2..74083d80ca 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg index 3bb8528ffb..2c0fb2f1d3 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg index e771ca6ff2..99aa04bcd8 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg index 3407585e4c..3044d5f25f 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg index 0c77e17bb0..c626e23a82 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg index 5192822dce..91f34ff527 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg index c98a39242a..a57477067a 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg index ae56ea638c..dcb1afef1e 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg index aef3cf163b..1c1d6c592e 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg index 0cd062ec0a..b6a2352ae6 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg index 343efe3d12..389297b44c 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg index 74131501ea..32e67bac47 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg index 8e193ffcd2..254b87d846 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg index 6eb370cdcf..4bf9031fd7 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg index 5b4cede195..1b2cb2249b 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg index a79fc05fcd..3f256c0151 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg index ea6ce880d6..38cb3aa700 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg index 1ae2f24a97..3df85c1393 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg index 9743f42e5d..69b5c2f509 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg index 31f6987cb4..f812117129 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg index d4ce99974d..809b7316c0 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg index 85d0e69024..227c14ce70 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg index 57fff56e16..f68e9179db 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg index 79f268fb7d..7b4ba12802 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg index 5c091c8703..214ae04977 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg index 02eefc3a33..611e828c97 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg index 834c345fb3..679bde0474 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg index e2678f5e21..e36bf64501 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg index 0843e0b105..3c2658182c 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg index 0d7abc9a99..83b0e2d542 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg index 300bc57cb5..7726d98651 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg index 5ecafd0fac..87e21a51d3 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg index e8a3635933..a11bdff5af 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg index 4dd6934bca..273c9e2179 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg index 5bd32e2d49..a218d49bbb 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg index 540a7bc605..d8576ee715 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg index 29721774e9..f3b1a80391 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg index 8c8107eaa0..345ecd7a98 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg index 2e1c873b2a..b98533e834 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg index e173522f32..9c2da73c22 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg index 5a588a8a45..b41fb346a1 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg index 5423fe1023..19d9e4b150 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg index 0512ed8cb6..46041fd570 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg index 8c494c4f7a..5f17f14796 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg index f9611a31a4..6453b6b8a7 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg index 5c28312b17..191aedee72 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg index f640948b9d..8670841f3c 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg index 4d981c4d72..b9a838f668 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg index f4843e7b45..17d11d9381 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg index e954e29f54..331d41173f 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg index 27897985dd..70cc9eb7d8 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg index 9d0762f876..72d21a1483 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg index 2679df5548..b6b9c7a97c 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg index 35d69b02d5..afc9c71e76 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg index 79add5b99c..6972497671 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg index ee06416687..fb95beb77e 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg index bde5f0bedd..d540bf9f89 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg index d63aa38742..2f030ebe8c 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg index 3d3aed671c..6f3ee8b651 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg index 36a96d351a..c0a0056177 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg index 7f7cf37556..445d848dd0 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg index 4bb90e8a88..0269e6a69f 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg index 4018aec054..8fd72a2919 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg index 31399b5bf9..ce42c4a9fc 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg index ff52f3200b..71bbb25ddd 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg index 0421fe3308..3a95deb564 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg index 3ce44a0a64..d08179907c 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg index 1a36437faa..2440fe2172 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg index 144940c8a7..58b07639db 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg index 6292722fa6..b8d66cf1a2 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg index 4718b09f2c..4d5fe379ed 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg index 4aea2ba978..7b2032e6c0 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg index cc4d4001e0..405d1ccc88 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg index c173ee2e9e..5c5412f893 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg index b7acd4e087..a77f5f1ff2 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg index 7c949cfd45..3d6b49c3ca 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg index 18c4be3745..cce8981ef0 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg index 996379feb9..eaed0fa4bf 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg index ba9991dcfb..a18bf2dad6 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg index e90ffd5dfc..2f3dfbcca4 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg index be9b7a6636..8f15376030 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg index 3fa9a52cf2..7e9ad0c9f0 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg index 3fb1b5e82b..5c2cc7954a 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg index b4124b7ee3..cf9f130c6b 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg index 6564a1bfc4..4c823ccb66 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg index 6615eb0ef1..97a7f22f7e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg index 8484320f12..49288e6966 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg index b1bb184f24..750b33b29a 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg index ac966a5f21..b91ca38730 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg index 0c8078074d..2cd13c361a 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg index ddf88b56c7..2383cb430d 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg index a420b19839..346a34064d 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg index 88a42a943e..4a14d79170 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg index 0c72737a09..1521b36ff2 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg index 8509d110d2..d6bc94e5a8 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg index 84f2d5f220..9f1a2bb496 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg index e2604f6cd1..9b634104e7 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg index 8163b0f4f0..52e12e44de 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg index 2b3a677da0..7bdf946f70 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg index 2de8dcd257..7aa5eb51ed 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg index b92efb4bb4..b478c6b112 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg index 84f2b863ea..8b79bd4773 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg index 7d396bdb4b..4ccd0448da 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg index 239ce61a85..4bdecbf636 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg index bf1e456e9d..3fa278ce42 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg index c05ce1ef16..dd2bd51804 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg index c2412a4b10..3aba2571b7 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg index 62c827e31f..bcb5856dbb 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg index 920960b1f1..c37695b8d5 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg index 86255b299c..f8247d2e84 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg index f699ade12e..6839733edb 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg index c8b2419858..fc8d87a13c 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg index 986f61603c..4ee85f03ad 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg index 1a55a0d7dc..32c288ba34 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg index 72c1d0c0a2..6b304b35d8 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg index 2e404b0f08..16d2dd32c3 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg index bb7c76089c..07a65e1111 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg index 9f50854c98..8f133329b7 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg index 5075d97c65..d9a1fe1c07 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg index 176a28b188..e11f197052 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg index c2dd1c4990..be5ad50e20 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg index b5144668cb..4d9c961e92 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg index bb678333dc..820f146be8 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg index ad54549155..93b707fd3b 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg index fb8cba3041..4231d1c7e7 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg index 1943eef0f4..6d7a53ef7f 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg index 55a39c03a7..cb91097d8b 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg index 9826104ccb..8197d15587 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg index 053d09767e..5d26a39dd3 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg index c5ada4d590..5448f991de 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg index 8bb07d0664..bc11ef3401 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg index 2a06b48905..ee7d4d1ff5 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg index ff0cb4a7e0..526540c2f6 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg index 1a90f61f46..0d47974429 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg index 9970928d62..9ae0d8fced 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg index a6822bb56a..cec174fc3c 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg index 343d413403..dfa40ff1e4 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg index 0232e0222f..59b9306d93 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg index 05d60959ad..7d357cd507 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg index 6cddf912ce..c3ecfc6be2 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg index 9036f08350..8f5c9bf166 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg index 72b2ac34b5..dff807a93a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg index 9c6e1ca45b..526cc4bc2f 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg index b2fd3b1fb6..c2cfe90c79 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg index 1d6b2ff0d1..f0ff6081a7 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg index a372b5d37a..0889cb9f9b 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg index a2cf5f780b..522cd32e9f 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg index 77a9bcf447..fe1231f5f9 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg index b760682e22..862d0645e1 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg index 958918c010..0bca6ca10a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg index 40c39e7460..756482effb 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg index 5f01b400ce..1beee5ef09 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg index 7918d01247..15079bfc34 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg index a28c2a05e2..0d421cb901 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg index 6438abd22c..e6706c60b8 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg index 481574e409..9ea99fa539 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg index e0b0d18bb5..77562c127a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg index 30a5507237..7aac4777b9 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg index e4ba451bc1..ca66fdf994 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg index 65139b3993..3b57a8b555 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg index b0997befe9..4eda326b2a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg index 25e85a7c50..14476a9c26 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 24 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg index d8bb913ee6..6aae5fd7fd 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg index 9616f723f6..93a3c79264 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg index 8fb86d315a..3da5a4fd30 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg index 05bd6ed4e7..907b3cf700 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg index 4bd1827021..c2b2987c41 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg index 7e7466769e..e6fd4d0bd8 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg index 9e1db971ff..05ac28b2bc 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg index 282894c439..5e7398994b 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg index a7e3033804..f40c886dd1 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg index 5fbe8655d3..7238a2ecdb 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg index e7ce094065..5c1ae0c4c0 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg index 3fa7f90376..8f046d77c7 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg index df6be87726..d655f29352 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg index 6c2f48d4aa..0d645a6112 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg index 409463370d..23c61a3bae 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg index 775fb209f3..91c6fc434c 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg index 1eb05bd482..47be73b0ad 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg index 186e4ae790..38bce82ef4 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg index baf5abbb09..faa7f64a04 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg index ad5f65c5d1..0ba5477fa4 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg index 6b1e439029..1352f16970 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg index fae81972e9..3e8f5316ec 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg index 3d842adac0..135feb5f43 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg index bba35f5e6c..2e73748b49 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg index e9aafef0b3..926c27e1e3 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg index 9e8ac0fe07..4a13716e5f 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg index e7aa39026e..2ada812e86 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg index 4a119a3b78..5b3ff8e2d4 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg index 8c7652f358..a51d4427a7 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg index 9a2b2bbb45..7f1a1e438a 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg index 3cea25782b..48e0b3e1da 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg index fb28d98eb8..4ab49b81b9 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg index 23178b5adf..adb9ee4bb5 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg index 59622fc319..4c21e2a785 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg index d59245ae3b..61ff0ebb2e 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg index a97a6833bc..aab21392eb 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg index b9e10a6bf0..a3d43ebe22 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg index 9e29238068..7bcf2cc4bb 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg index e8ef2edd8f..d2e34b6649 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg index 1b10439afc..9a99d6406d 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg index 67b6a26a72..408e617590 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg index f6405d5cec..8787ae331a 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg index 228ddddc13..3a67eb87f3 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg index 725e885a1e..61652061df 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg index 42a8cf6770..8d89a07a0c 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg index 3a8189a242..f5d9765d73 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 24 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg index 96f8ac2ba8..bec64ce123 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg index 1c52225879..b21dcda1d0 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg index 42d6059b2b..b29a339662 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg index 0f300418d4..2a9148dfb8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg index 0841a4e683..ce777e869a 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg index d6293b8dd6..dd3d327693 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg index 3cae06a912..fff8009a40 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg index 85515279fa..c535ae2d28 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg index dc76ed4260..216d732dba 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg index 2f93ba6669..46d8d5f2f8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg index d566aa424a..47e092b2b9 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg index 5799506d1e..7792a07763 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg index 0c29bd477b..df6cf6ca36 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg index bb4cb5e531..58d481083c 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg index 4f7b41945e..69ab5c5acc 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg index abaa1eedb6..eb719e9696 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg index 992234ba25..ea60da1f96 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg index 73e2a07a8f..8758b27900 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg index c00e9ecb00..f7952ae2b6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg index 101fe44c82..4ca25d96cf 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg index 6b084130db..3e60c4ca02 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg index 948eefca17..b30f8fc69e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg index 40dde2cf31..1f9972965e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg index 4090f8f855..cb96d61597 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg index 5d6045a8e8..8e0d86c486 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg index 7ecdefdfe1..c85d8885b0 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg index 149e4d4109..a1e6c6dc32 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg index da20e0651c..ad8eaa4b5c 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg index 79a5566f67..7bf2af0832 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg index 2726c46ff6..3990502927 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg index ab747e927c..91a8cca7ac 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg index c85a32723d..cd6085285e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg index dd474c0aac..cb621cd398 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg index 83cd051b09..8613fd9a46 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg index ab9d4ebe1c..933949e0d4 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg index 9ad7853cdc..aa0be0b5a7 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg index 724a51b8d8..ba3ad1f64b 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg index 3c4d788df8..a0442291e2 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg index 5644483fde..c078dcc061 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg index 57d99f35de..4b4b3bb61f 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg index e75f3c35b0..311b560126 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg index 368647795b..8772607b26 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg index dd82a4775b..9ea4ffc6a1 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg index d7d4fbe412..10795b9627 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg index 91033d2bf5..5317fae150 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg index f01da6ca32..ab26bc71df 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 24 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg index 4eb395fb9a..e19a1cc159 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg index 6f88469db6..3865d80e6c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg index ba7ecfa53c..be1187bc83 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg index f6aa3822ca..6da40b72f8 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg index 195a34ba43..553ca09b42 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg index 2c438ce53c..9c5d16a78a 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg index d343990b9d..a6df8505ae 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg index 5b49c34064..57fc0ad2df 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg index e4f58831b6..47a69036e4 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg index 3122c05e65..63dda2439c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg index fc174af370..cd440ba18c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg index 33df915b4c..dbee2c504a 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg index 048565919e..f3eade32a3 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg index d08823a809..b9cca8878e 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg index afaf24bd2a..5a8be15af5 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg index cb71636a84..4e9a583d32 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg index 14c9525787..190576a107 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg index 38c899216f..a62c3b50ff 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg index caddf1980a..0c0266c047 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg index 610a8011d8..bc75cd3d1d 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg index ea4244d490..eb1806cad8 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg index b2adf228fb..acb2c712a2 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg index ee133982c2..faa080a815 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg index 0ac2b0afd1..dee68bb3e4 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg index 7513244497..fc7786ef08 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg index ac57d8b074..28058a1ea3 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg index 5f718f55f1..9436e66c3b 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg index 8ac9a8b343..03ac570067 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg index 5f5b9fd44e..3dc20c42b7 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg index 6036838282..600f0b1892 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg index 9e7ca6b7fe..72560aa6a3 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg index 7f1d758472..4dc606d1db 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg index 78b351455e..daf952946c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg index 2dcc08eaaf..9e966eaaf6 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg index c5c89b9df0..f63fa5101f 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg index 556df5c158..1a376d600b 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 24 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg index 98284b527a..42b8c5149f 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg index d3304afba1..d3f9f2d8b9 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg index aec24595d4..30e074ee02 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg index e8ab9c5148..87c120dce6 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg index 4e99df0786..86e3d59296 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 24 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg index 88000bd7fb..711a25c677 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg index b30b616a7c..385ab4a0bf 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg index 1d2bb10612..4bba61cf1b 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg index e3c4c6ed7b..ce6d675536 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 24 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/zav_layer_0.05.inst.cfg b/resources/quality/zav_base/zav_layer_0.05.inst.cfg index 20bdc01950..4b0174c32b 100644 --- a/resources/quality/zav_base/zav_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 24 type = quality weight = -1 diff --git a/resources/quality/zav_base/zav_layer_0.10.inst.cfg b/resources/quality/zav_base/zav_layer_0.10.inst.cfg index b3a6325f86..07f1e688b6 100644 --- a/resources/quality/zav_base/zav_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 24 type = quality weight = -2 diff --git a/resources/quality/zav_base/zav_layer_0.15.inst.cfg b/resources/quality/zav_base/zav_layer_0.15.inst.cfg index d5c16701a2..ddd8b4f6cc 100644 --- a/resources/quality/zav_base/zav_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 24 type = quality weight = -3 diff --git a/resources/quality/zav_base/zav_layer_0.20.inst.cfg b/resources/quality/zav_base/zav_layer_0.20.inst.cfg index bf855f6fe7..844b7cb00d 100644 --- a/resources/quality/zav_base/zav_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 24 type = quality weight = -4 diff --git a/resources/quality/zav_base/zav_layer_0.25.inst.cfg b/resources/quality/zav_base/zav_layer_0.25.inst.cfg index 8cd4816530..7adc26b031 100644 --- a/resources/quality/zav_base/zav_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 24 type = quality weight = -5 diff --git a/resources/quality/zav_base/zav_layer_0.30.inst.cfg b/resources/quality/zav_base/zav_layer_0.30.inst.cfg index 9121f83414..f46229de32 100644 --- a/resources/quality/zav_base/zav_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 24 type = quality weight = -6 diff --git a/resources/quality/zav_base/zav_layer_0.35.inst.cfg b/resources/quality/zav_base/zav_layer_0.35.inst.cfg index c3e37d97d9..047b0d734d 100644 --- a/resources/quality/zav_base/zav_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 24 type = quality weight = -7 diff --git a/resources/quality/zav_base/zav_layer_0.40.inst.cfg b/resources/quality/zav_base/zav_layer_0.40.inst.cfg index bbb88a8e86..5d7f3ffeed 100644 --- a/resources/quality/zav_base/zav_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 24 type = quality weight = -8 diff --git a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg index 8532b1d9cb..d74be3faaa 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg index 5358ee99ac..a9a4a240c0 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg index 2356a128b0..2195c8502b 100644 --- a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg index b18d8a6729..361f2fac21 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg index 920c92633d..701d52d5e2 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg index e893ca4af1..fe8c98ce0d 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg index 3b3ed24376..ab4ccc5da2 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg index 347e3ccd74..cc9cd193de 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 24 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg index 9af81dc520..b6a4f1dffd 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 24 type = quality weight = 0 diff --git a/resources/variants/arjun/arjun300_0.2.inst.cfg b/resources/variants/arjun/arjun300_0.2.inst.cfg index 93a9cda252..f568aa93e4 100644 --- a/resources/variants/arjun/arjun300_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.3.inst.cfg b/resources/variants/arjun/arjun300_0.3.inst.cfg index 6680413525..3f25adddd1 100644 --- a/resources/variants/arjun/arjun300_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.4.inst.cfg b/resources/variants/arjun/arjun300_0.4.inst.cfg index f0e78bd67b..2113a64255 100644 --- a/resources/variants/arjun/arjun300_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.5.inst.cfg b/resources/variants/arjun/arjun300_0.5.inst.cfg index f5287a2848..e9faa51e93 100644 --- a/resources/variants/arjun/arjun300_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.6.inst.cfg b/resources/variants/arjun/arjun300_0.6.inst.cfg index acfb70d426..b974b92020 100644 --- a/resources/variants/arjun/arjun300_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.8.inst.cfg b/resources/variants/arjun/arjun300_0.8.inst.cfg index 081b1fe613..6640641d01 100644 --- a/resources/variants/arjun/arjun300_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg index c09ec180e8..64640fdf04 100644 --- a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg index bf777b0e82..b1aa2e9ae8 100644 --- a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg index 0c83b6b21c..45c2356a1c 100644 --- a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg index a5fa970308..954714988e 100644 --- a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg index 23019db4c2..9126462427 100644 --- a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg index 0a44cd4a89..26bd0d7e82 100644 --- a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg index ab3c18911b..5d96bf92fe 100644 --- a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg index 29999d094a..11a2f6deef 100644 --- a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg index bc6a26bbae..a091308381 100644 --- a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg index 2cb3776d91..d902d3d8de 100644 --- a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg index 64193bc333..d61ab74d0f 100644 --- a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg index a00eb4737d..ffc380c8ac 100644 --- a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg index af032b8d32..7e3514e167 100644 --- a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg index 94679d0310..bcf13771f0 100644 --- a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg index c4e63bff05..ee234ef90d 100644 --- a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg index 9647cc0ddf..39be824113 100644 --- a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg index 6b8ff4aee4..5f840f6c36 100644 --- a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg index 75df806b08..e23475e896 100644 --- a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_0.2.inst.cfg index 810c6887b1..bd78f705b2 100644 --- a/resources/variants/arjun/arjunpro300_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_0.3.inst.cfg index 36a3c1bab6..77d43c0344 100644 --- a/resources/variants/arjun/arjunpro300_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_0.4.inst.cfg index 75a58cd978..9e933b25ec 100644 --- a/resources/variants/arjun/arjunpro300_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_0.5.inst.cfg index 19c08457c5..8fb91f4654 100644 --- a/resources/variants/arjun/arjunpro300_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_0.6.inst.cfg index 8d4d1d914a..e8328c3729 100644 --- a/resources/variants/arjun/arjunpro300_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_0.8.inst.cfg index 52f028cba0..28b75e35af 100644 --- a/resources/variants/arjun/arjunpro300_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg index 4373356eea..d1a58e2035 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg index 8f78856b63..f6ae902eee 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg index 00467ec737..08ff8419ea 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg index c4860fbcc9..7e071dea1c 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg index 45c2c5392c..1a1cb4a64c 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg index c396dd139c..d9e71de25a 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg index cc3d0e8c52..55044c9447 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg index 9ece24fc84..6a0b007821 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg index 2489d0d4fc..e89e80c1ee 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg index c8864fbb17..51304d45c7 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg index bf2019c7a2..dd8698fc37 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg index 13ed3b65e7..6a136adc18 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg index cc0c010ce2..8100b2a397 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg index 9204d755cc..80fd71980c 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg index 2b36ddec9c..0f7ef0dc02 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg index 167eaaf99d..683a438fbd 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg index 4cf68ad45a..afd3432ed4 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg index cb05da3c8a..80e8e8c134 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.2.inst.cfg b/resources/variants/artillery/artillery_base_0.2.inst.cfg index 4e78b919d9..f87102564b 100644 --- a/resources/variants/artillery/artillery_base_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.3.inst.cfg b/resources/variants/artillery/artillery_base_0.3.inst.cfg index 3b1fdb4c30..fdeddded9d 100644 --- a/resources/variants/artillery/artillery_base_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.4.inst.cfg b/resources/variants/artillery/artillery_base_0.4.inst.cfg index d64f66e110..56262b55b1 100644 --- a/resources/variants/artillery/artillery_base_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.6.inst.cfg b/resources/variants/artillery/artillery_base_0.6.inst.cfg index 89753a6342..8f4d4cb15b 100644 --- a/resources/variants/artillery/artillery_base_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.8.inst.cfg b/resources/variants/artillery/artillery_base_0.8.inst.cfg index 0c217a6d95..a19fc112eb 100644 --- a/resources/variants/artillery/artillery_base_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_1.0.inst.cfg b/resources/variants/artillery/artillery_base_1.0.inst.cfg index d484d54347..22a1297472 100644 --- a/resources/variants/artillery/artillery_base_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.2.inst.cfg b/resources/variants/artillery/artillery_genius_0.2.inst.cfg index 97e014d9df..d2416bd63f 100644 --- a/resources/variants/artillery/artillery_genius_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.3.inst.cfg b/resources/variants/artillery/artillery_genius_0.3.inst.cfg index d2debe768f..4190ea537b 100644 --- a/resources/variants/artillery/artillery_genius_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.4.inst.cfg b/resources/variants/artillery/artillery_genius_0.4.inst.cfg index ad3ec300ad..7e20d7bdce 100644 --- a/resources/variants/artillery/artillery_genius_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.5.inst.cfg b/resources/variants/artillery/artillery_genius_0.5.inst.cfg index 048d51b35b..ef3aeb2e36 100644 --- a/resources/variants/artillery/artillery_genius_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.6.inst.cfg b/resources/variants/artillery/artillery_genius_0.6.inst.cfg index 8206e862e9..cb2685f916 100644 --- a/resources/variants/artillery/artillery_genius_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.8.inst.cfg b/resources/variants/artillery/artillery_genius_0.8.inst.cfg index d5b9ba26fe..4905381e56 100644 --- a/resources/variants/artillery/artillery_genius_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_1.0.inst.cfg b/resources/variants/artillery/artillery_genius_1.0.inst.cfg index 5bd5ee157c..66f9c4679d 100644 --- a/resources/variants/artillery/artillery_genius_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_genius_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg index b489bb232f..f573be9dcf 100644 --- a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg index 1b2d03d446..30ea51bd15 100644 --- a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg index 15601bce9f..ab4cdaba5c 100644 --- a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg index 625732f8be..c66c2d7601 100644 --- a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg index ee5b4d5b73..dad2a6f5d6 100644 --- a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg index ad3c82bc2b..36227943f2 100644 --- a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg index c3b43f462a..643923d5d7 100644 --- a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg index b7cedae983..691e522c86 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg index 0b0b9c52d4..0e3b7c5655 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg index ca7d41cc6a..b381aa1fdd 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg index 344852dbe6..e3c0dd6e70 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg index 2796719d49..68896a8c78 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg index f18dc59570..ce186f5817 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg index f5ded16281..807ffe7b6c 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg index efc2f44195..5ad709ff33 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg index 2d98543eb4..10efd20b92 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg index 8804919288..50617dc194 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg index 4c4e32aea8..ec8f6faf13 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg index 0c40d52a3f..4f204e7b24 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg index a5f670c7d9..b6931e9291 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg index 3f8339500a..67ab821529 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg index 667962e5de..400b0f94ae 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg index 69bb3f9c70..fd010624c1 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg index f8cb3c1f84..a00e141d74 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg index 1d319e7f03..ec56585375 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg index c70d0c1ecb..16e5eb36bb 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg index 38174decad..2ded7d886b 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg index 6725cedd8a..f431d53497 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg index 4ea72f75db..c2c6446742 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg index b28e7ddfc0..82273c608c 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg index 27678a3b2e..bbecbc04d8 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg index 901d036966..0019b9dcc5 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg index 386d623a52..de40a8962f 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg index 06c58bb883..8b15567b12 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg index dfeba978de..0debb5f2e6 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg index dfac869cec..3db6b9bd0a 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg index 8aae3a6eb6..98e88080dd 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg index 6558650b25..298cff6f58 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg index 4a1f710176..f3832fa615 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg index 2c6c67e10f..1ed51c2266 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg index 37107ab53b..b59ac2d30e 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg index 25865d3408..dd13625fa6 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg index c6fcc777e2..e3da410a90 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg index 2b9a166b81..257c7b0b86 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg index a889384895..e03391ec40 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg index 9ffd271caa..226c466686 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg index 8b1fcf08d1..0b4ceefa96 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg index e2dee19e6c..0f8aae48f9 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg index 1c80d91604..4d3edc6c20 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg index b8a92d06f3..bbe2f054ab 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg index ae11da958a..eb33b7ae90 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_0.2.inst.cfg index 33cc8cddf0..0d5202f914 100755 --- a/resources/variants/biqu/biqu_b1_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_0.3.inst.cfg index 5eda2edd83..47947ac466 100755 --- a/resources/variants/biqu/biqu_b1_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_0.4.inst.cfg index 20e5e4e90a..63827497c4 100755 --- a/resources/variants/biqu/biqu_b1_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_0.5.inst.cfg index 6fa7a4543b..cbe7754287 100755 --- a/resources/variants/biqu/biqu_b1_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_0.6.inst.cfg index fbeeb8ba59..be1acc9455 100755 --- a/resources/variants/biqu/biqu_b1_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_0.8.inst.cfg index 39b4ffdc2b..bc477ab6ac 100755 --- a/resources/variants/biqu/biqu_b1_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg index f5fd67b87d..6992b40be0 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg index d6cfb2a776..297bcedc09 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg index 6cde06bf35..cc34e4bd77 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg index 8fcb3f9788..000ab2cae0 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg index 40bf791ec5..48c7829f4b 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg index 514a379232..f92530c2a0 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.2.inst.cfg b/resources/variants/biqu/biqu_base_0.2.inst.cfg index b42d0c87f3..ba92000b40 100755 --- a/resources/variants/biqu/biqu_base_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.3.inst.cfg b/resources/variants/biqu/biqu_base_0.3.inst.cfg index f486854eeb..ce9587713c 100755 --- a/resources/variants/biqu/biqu_base_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.4.inst.cfg b/resources/variants/biqu/biqu_base_0.4.inst.cfg index 4236b86178..8c39d6ad17 100755 --- a/resources/variants/biqu/biqu_base_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.5.inst.cfg b/resources/variants/biqu/biqu_base_0.5.inst.cfg index 37f5505bde..0149ea06b0 100755 --- a/resources/variants/biqu/biqu_base_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.6.inst.cfg b/resources/variants/biqu/biqu_base_0.6.inst.cfg index 9793718e5d..ac142ef429 100755 --- a/resources/variants/biqu/biqu_base_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.8.inst.cfg b/resources/variants/biqu/biqu_base_0.8.inst.cfg index f720f7fd9c..889b156b5e 100755 --- a/resources/variants/biqu/biqu_base_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg index 5498de417a..c60d6e6257 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg index 86be976e20..5082b06c97 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg index 8c04da610d..1eabd26896 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg index f886e6b106..01929257b7 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg index 74e59e38c8..c75080916d 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg index 70d8d131b4..2355a530d1 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg index cb199db026..27d7df9604 100755 --- a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg index d3ceab8f55..c9c8679028 100755 --- a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg index a4ef00cc0e..e263ddc99a 100755 --- a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg index 045a3f99cc..59e7963d20 100755 --- a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg index a69f4fa816..c58c484119 100755 --- a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg index 8bad103e9d..1e44590ef5 100755 --- a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg index c4fe2e68f2..3b8d7c4396 100644 --- a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg index 5351019fc3..39a6b4df60 100644 --- a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg index 2b7a2edf75..1b7394a3ff 100644 --- a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg index 8a186ad31a..6f63d0982f 100644 --- a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg index 9ee17968fc..7dbd50e609 100644 --- a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg index d2847e5410..7c65795d2c 100644 --- a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.20.inst.cfg b/resources/variants/blocks/blocks_one_0.20.inst.cfg index f85d14be4f..f91a2ef980 100644 --- a/resources/variants/blocks/blocks_one_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.30.inst.cfg b/resources/variants/blocks/blocks_one_0.30.inst.cfg index da4aecc1ff..246794affb 100644 --- a/resources/variants/blocks/blocks_one_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.40.inst.cfg b/resources/variants/blocks/blocks_one_0.40.inst.cfg index fc00de5356..44414524ed 100644 --- a/resources/variants/blocks/blocks_one_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.50.inst.cfg b/resources/variants/blocks/blocks_one_0.50.inst.cfg index af4d3206f1..16d9cbf44e 100644 --- a/resources/variants/blocks/blocks_one_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.60.inst.cfg b/resources/variants/blocks/blocks_one_0.60.inst.cfg index ef2c7d5e8d..bd8bb80bf1 100644 --- a/resources/variants/blocks/blocks_one_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.80.inst.cfg b/resources/variants/blocks/blocks_one_0.80.inst.cfg index 933a875b53..58064eb095 100644 --- a/resources/variants/blocks/blocks_one_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg index b927508991..d9fff455c3 100644 --- a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg index 8c68a6ced7..fd65a0cf34 100644 --- a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg index e3994bfe5e..3328c3e8f9 100644 --- a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg index df4c5e7047..2401de771b 100644 --- a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg index ea3718470a..c70078175c 100644 --- a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg index 88cb2d46b2..5443702ed8 100644 --- a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg index f5b36fcb86..694b775cd8 100644 --- a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg index 72a17f4c66..dcdfff9b8b 100644 --- a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg index e8b9735ebb..39d49b4277 100644 --- a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg index c7eda94955..1fd90acc72 100644 --- a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg index 6a8101f419..04491eb90a 100644 --- a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg index b63d6d4930..b3b12c25d7 100644 --- a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg index f01cdae873..0628b25dee 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg index 953c109864..e8607666f2 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg index f37090cc34..982e3e0140 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg index 884d6985e8..6212a7ff84 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg index 503e7dbc37..296002606f 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg index 92520d7412..2a41564dac 100644 --- a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg index c3ef274234..dff4861cf9 100644 --- a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg index 0a70809ed4..0cd4a40bcc 100644 --- a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg index 72280956ca..3221ce377a 100644 --- a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg index b0a2437841..afc4d6766e 100644 --- a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg index 0f4f86afc6..b2e6fa2944 100644 --- a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg index 65c00081e6..9d5a9d3854 100644 --- a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg index f7550f5709..c6a9284707 100644 --- a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg index ac3cfb8a77..e2ce295b26 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg index 930ef1c956..277d714097 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg index ee7c7af568..7b366e52ea 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg index cd4a03a63f..84c99f28bd 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg index ed2b2c05e8..ee2218a718 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg index 3c6659b877..fe0f22f47a 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg index b6479ccf55..7fad623404 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg index fedb0eb3cb..06580d1c88 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg index 4706b13264..98d7c298ab 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg index f3438683c3..6babd846f5 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg index e3392fef46..ee894afd76 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg index f0267d0801..411e367e12 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg index f59324621b..cab82dc007 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg index 91c2314f6c..b7e22b7d67 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg index 4615f9296d..d14012da9b 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg index 0b9a42a44f..57269eb29e 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg index ec94cf4700..560d151bde 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg index f2ea9ceac0..ef790f9ee7 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg index 6cd7003c11..bdecea9daa 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg index b47b774176..0e1635c817 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg index 23bfc0aedd..913652b418 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg index 9734deca27..6601c6a189 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg index 556ca65c96..c68df08286 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg index 7a4ce91202..aac22098e6 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg index d0f4b458fe..fa2b5a1af2 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg index 1b7173778e..adfdaf0fb3 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg index bc964011f8..affd27d5b1 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg index 07e845e9d6..419c7e6eac 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg index 725cb8c639..39b9fe7630 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg index 0d0f9628f7..d44e37ea4f 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg index 00e1b1c48c..de32af9058 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg index a61baae115..b2306d00d1 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg index 2e13045b90..a62325f0bf 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg index 85e6363e90..1598825a31 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg index cf56050d82..c17d3d3036 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg index d3e8d29a65..e65302492b 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg index 5a13d8d69f..f1acc3c11e 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg index eb1272e9f3..b7da45da58 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg index f59324621b..cab82dc007 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.20.inst.cfg b/resources/variants/blocks/blocks_zero_0.20.inst.cfg index 426cb0ef77..6e325aedff 100644 --- a/resources/variants/blocks/blocks_zero_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.30.inst.cfg b/resources/variants/blocks/blocks_zero_0.30.inst.cfg index 150e957f36..a4e2a82e93 100644 --- a/resources/variants/blocks/blocks_zero_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.40.inst.cfg b/resources/variants/blocks/blocks_zero_0.40.inst.cfg index f58f3c4b46..6a946f3039 100644 --- a/resources/variants/blocks/blocks_zero_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.50.inst.cfg b/resources/variants/blocks/blocks_zero_0.50.inst.cfg index 5114247fe1..0839506451 100644 --- a/resources/variants/blocks/blocks_zero_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.60.inst.cfg b/resources/variants/blocks/blocks_zero_0.60.inst.cfg index 26bedb1448..fe4f50ff94 100644 --- a/resources/variants/blocks/blocks_zero_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.80.inst.cfg b/resources/variants/blocks/blocks_zero_0.80.inst.cfg index 525ab6dca8..af492a5e6d 100644 --- a/resources/variants/blocks/blocks_zero_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.25.inst.cfg b/resources/variants/cartesio/cartesio_0.25.inst.cfg index acff9bda4d..93d5ac7227 100644 --- a/resources/variants/cartesio/cartesio_0.25.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.4.inst.cfg b/resources/variants/cartesio/cartesio_0.4.inst.cfg index 10b56a610e..dbc682d50d 100644 --- a/resources/variants/cartesio/cartesio_0.4.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.8.inst.cfg b/resources/variants/cartesio/cartesio_0.8.inst.cfg index 3e4662c89c..b0aa7f7958 100644 --- a/resources/variants/cartesio/cartesio_0.8.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg index eb4548b7b5..43165a094f 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg index 3b2312d0b4..3b2c899f02 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.2.inst.cfg b/resources/variants/creality/creality_base_0.2.inst.cfg index 8e7c299409..8af97732ba 100644 --- a/resources/variants/creality/creality_base_0.2.inst.cfg +++ b/resources/variants/creality/creality_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.3.inst.cfg b/resources/variants/creality/creality_base_0.3.inst.cfg index d2422e5d80..e00b4b3405 100644 --- a/resources/variants/creality/creality_base_0.3.inst.cfg +++ b/resources/variants/creality/creality_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.4.inst.cfg b/resources/variants/creality/creality_base_0.4.inst.cfg index 652c9b3f65..0d300b1ed9 100644 --- a/resources/variants/creality/creality_base_0.4.inst.cfg +++ b/resources/variants/creality/creality_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.5.inst.cfg b/resources/variants/creality/creality_base_0.5.inst.cfg index 59c011bf86..ed86de54df 100644 --- a/resources/variants/creality/creality_base_0.5.inst.cfg +++ b/resources/variants/creality/creality_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.6.inst.cfg b/resources/variants/creality/creality_base_0.6.inst.cfg index 2c2c36bf6a..57b20cea05 100644 --- a/resources/variants/creality/creality_base_0.6.inst.cfg +++ b/resources/variants/creality/creality_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.8.inst.cfg b/resources/variants/creality/creality_base_0.8.inst.cfg index 88c2f2427c..cb58fbfd5d 100644 --- a/resources/variants/creality/creality_base_0.8.inst.cfg +++ b/resources/variants/creality/creality_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_base_1.0.inst.cfg b/resources/variants/creality/creality_base_1.0.inst.cfg index 5954b7fcd0..b64d0be757 100644 --- a/resources/variants/creality/creality_base_1.0.inst.cfg +++ b/resources/variants/creality/creality_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr100_0.4.inst.cfg b/resources/variants/creality/creality_cr100_0.4.inst.cfg index 5d28b0baa9..af78b0e23e 100644 --- a/resources/variants/creality/creality_cr100_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr100_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.2.inst.cfg b/resources/variants/creality/creality_cr10_0.2.inst.cfg index 3b2924a758..dcd1f24b84 100644 --- a/resources/variants/creality/creality_cr10_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.3.inst.cfg b/resources/variants/creality/creality_cr10_0.3.inst.cfg index 0cc70a0ec7..908ed8e4b8 100644 --- a/resources/variants/creality/creality_cr10_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.4.inst.cfg b/resources/variants/creality/creality_cr10_0.4.inst.cfg index 19b8b2abb7..5bdb5865e5 100644 --- a/resources/variants/creality/creality_cr10_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.5.inst.cfg b/resources/variants/creality/creality_cr10_0.5.inst.cfg index 78805b4af7..ffdbea074b 100644 --- a/resources/variants/creality/creality_cr10_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.6.inst.cfg b/resources/variants/creality/creality_cr10_0.6.inst.cfg index 3059d671e5..28e4f0035e 100644 --- a/resources/variants/creality/creality_cr10_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.8.inst.cfg b/resources/variants/creality/creality_cr10_0.8.inst.cfg index 48c85895be..704dc262f7 100644 --- a/resources/variants/creality/creality_cr10_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_1.0.inst.cfg b/resources/variants/creality/creality_cr10_1.0.inst.cfg index d58fca26f2..2fbdee062b 100644 --- a/resources/variants/creality/creality_cr10_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.2.inst.cfg b/resources/variants/creality/creality_cr10max_0.2.inst.cfg index 1fcb49f147..e9ed1a0a15 100644 --- a/resources/variants/creality/creality_cr10max_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.3.inst.cfg b/resources/variants/creality/creality_cr10max_0.3.inst.cfg index ec92685f22..cccb5601e4 100644 --- a/resources/variants/creality/creality_cr10max_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.4.inst.cfg b/resources/variants/creality/creality_cr10max_0.4.inst.cfg index 4aab97419c..b7375f706f 100644 --- a/resources/variants/creality/creality_cr10max_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.5.inst.cfg b/resources/variants/creality/creality_cr10max_0.5.inst.cfg index b7b503a1d5..47d979dccd 100644 --- a/resources/variants/creality/creality_cr10max_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.6.inst.cfg b/resources/variants/creality/creality_cr10max_0.6.inst.cfg index 0caad2868d..312fad1263 100644 --- a/resources/variants/creality/creality_cr10max_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.8.inst.cfg b/resources/variants/creality/creality_cr10max_0.8.inst.cfg index 8b379f0c6e..7189534ab8 100644 --- a/resources/variants/creality/creality_cr10max_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_1.0.inst.cfg b/resources/variants/creality/creality_cr10max_1.0.inst.cfg index dc9507c40d..e00df1f870 100644 --- a/resources/variants/creality/creality_cr10max_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg index 8d17b56802..7858830ef2 100644 --- a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg index 5a97059d3f..3d5effea80 100644 --- a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg index eca0fb5f31..f32e88c489 100644 --- a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg index bb8052aa0f..88a875eb80 100644 --- a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg index d0bd98cf24..df14ee06e0 100644 --- a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg index 6024084037..139c9f72e5 100644 --- a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg index 3d2285791e..f4ff0274dd 100644 --- a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg index cbd53e4a05..0fa2789f36 100644 --- a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg index 7189e5d3e0..3647859b17 100644 --- a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg index 2429c773e7..5e95b0d502 100644 --- a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg index 5382fb830a..4f5a37715c 100644 --- a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg index 4b65a1c311..2b70c20a0c 100644 --- a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg index 50460847e4..8d96e96af5 100644 --- a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg index 590003b0a7..775c94c229 100644 --- a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg index 1e2afc21ed..fdc12961ed 100644 --- a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg index 481adf21a5..f0fbc2cafc 100644 --- a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg index 8edccc6fbc..fcbc425f99 100644 --- a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg index be31c1a175..25038ff0f5 100644 --- a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg index 55f55cc02c..9b5ff40c7e 100644 --- a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg index 79117e9970..1b4d1b9b8a 100644 --- a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg index dab7748925..0d828f7137 100644 --- a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.2.inst.cfg b/resources/variants/creality/creality_cr10s_0.2.inst.cfg index eb7dbfb848..26628ea057 100644 --- a/resources/variants/creality/creality_cr10s_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.3.inst.cfg b/resources/variants/creality/creality_cr10s_0.3.inst.cfg index 164abd5f84..308ab7a4d8 100644 --- a/resources/variants/creality/creality_cr10s_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.4.inst.cfg b/resources/variants/creality/creality_cr10s_0.4.inst.cfg index 9a17bb77ff..c209d9f79b 100644 --- a/resources/variants/creality/creality_cr10s_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.5.inst.cfg b/resources/variants/creality/creality_cr10s_0.5.inst.cfg index f4e6e0a728..f31a54f427 100644 --- a/resources/variants/creality/creality_cr10s_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.6.inst.cfg b/resources/variants/creality/creality_cr10s_0.6.inst.cfg index ed90ef591a..328cac4b26 100644 --- a/resources/variants/creality/creality_cr10s_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.8.inst.cfg b/resources/variants/creality/creality_cr10s_0.8.inst.cfg index 359440b6da..ac2516a4cc 100644 --- a/resources/variants/creality/creality_cr10s_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_1.0.inst.cfg b/resources/variants/creality/creality_cr10s_1.0.inst.cfg index 06c6ed0c84..e42105111e 100644 --- a/resources/variants/creality/creality_cr10s_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg index 6684f0c83d..9f811e30eb 100644 --- a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg index 32e8f48e30..bd451988b2 100644 --- a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg index 0e6e105f38..b6f91cd023 100644 --- a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg index 9e32aed915..a4c5bd27e9 100644 --- a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg index 7ebd75a340..1c6cdd10f6 100644 --- a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg index 8877a93996..0ab6ab7712 100644 --- a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg index ee740ac8ba..ac225f1bc9 100644 --- a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg index 13be034c1b..8c05d4d25c 100644 --- a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg index 2f11107b6b..42a5bab534 100644 --- a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg index cc38161b0f..c317b4c42b 100644 --- a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg index 60cefb9afb..9a23a7efa4 100644 --- a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg index 33f16b154d..cc13f72a25 100644 --- a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg index 8c90a1cb5d..33866f8329 100644 --- a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg index 8f57bfa8e6..2348f7c966 100644 --- a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.2.inst.cfg b/resources/variants/creality/creality_cr20_0.2.inst.cfg index e8335c4e20..e5a845c675 100644 --- a/resources/variants/creality/creality_cr20_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.3.inst.cfg b/resources/variants/creality/creality_cr20_0.3.inst.cfg index 81f8627095..2c6eaa9498 100644 --- a/resources/variants/creality/creality_cr20_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.4.inst.cfg b/resources/variants/creality/creality_cr20_0.4.inst.cfg index 6d75fb33e2..75154a4a17 100644 --- a/resources/variants/creality/creality_cr20_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.5.inst.cfg b/resources/variants/creality/creality_cr20_0.5.inst.cfg index 6e3d6331da..853dfb0df9 100644 --- a/resources/variants/creality/creality_cr20_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.6.inst.cfg b/resources/variants/creality/creality_cr20_0.6.inst.cfg index 0b8d92acba..17d3a4e628 100644 --- a/resources/variants/creality/creality_cr20_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.8.inst.cfg b/resources/variants/creality/creality_cr20_0.8.inst.cfg index 734c9090f5..c065fd0d62 100644 --- a/resources/variants/creality/creality_cr20_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_1.0.inst.cfg b/resources/variants/creality/creality_cr20_1.0.inst.cfg index 8ac15853b3..bc2104f55d 100644 --- a/resources/variants/creality/creality_cr20_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg index 96506c3289..10fe9e065f 100644 --- a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg index d9aa9b276b..3e983c9160 100644 --- a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg index 0aa80d1fae..aa4d6f6d41 100644 --- a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg index 2bb70c7b7a..7eb695467b 100644 --- a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg index b43b8e29ff..f5ba3259c0 100644 --- a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg index d006d966de..525b1cbd17 100644 --- a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg index 6c8be83737..1382122b99 100644 --- a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.2.inst.cfg b/resources/variants/creality/creality_cr6se_0.2.inst.cfg index 9932ff2a43..9a01c0f971 100644 --- a/resources/variants/creality/creality_cr6se_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.3.inst.cfg b/resources/variants/creality/creality_cr6se_0.3.inst.cfg index 2c0a808113..b2cfe163f7 100644 --- a/resources/variants/creality/creality_cr6se_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.4.inst.cfg b/resources/variants/creality/creality_cr6se_0.4.inst.cfg index 0e8580d9d3..a49a39474e 100644 --- a/resources/variants/creality/creality_cr6se_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.5.inst.cfg b/resources/variants/creality/creality_cr6se_0.5.inst.cfg index dbfff554e6..fecc63daca 100644 --- a/resources/variants/creality/creality_cr6se_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.6.inst.cfg b/resources/variants/creality/creality_cr6se_0.6.inst.cfg index 11b763d74c..00a93051cc 100644 --- a/resources/variants/creality/creality_cr6se_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.8.inst.cfg b/resources/variants/creality/creality_cr6se_0.8.inst.cfg index 431baae79c..52d84df3d3 100644 --- a/resources/variants/creality/creality_cr6se_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_1.0.inst.cfg b/resources/variants/creality/creality_cr6se_1.0.inst.cfg index ac7d9dbcb6..b864c8bd45 100644 --- a/resources/variants/creality/creality_cr6se_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr6se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_crm4_0.2.inst.cfg b/resources/variants/creality/creality_crm4_0.2.inst.cfg index 4f9f76ac7a..370d5b0e27 100644 --- a/resources/variants/creality/creality_crm4_0.2.inst.cfg +++ b/resources/variants/creality/creality_crm4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_crm4_0.3.inst.cfg b/resources/variants/creality/creality_crm4_0.3.inst.cfg index f4145b1c5c..3ebc10a4aa 100644 --- a/resources/variants/creality/creality_crm4_0.3.inst.cfg +++ b/resources/variants/creality/creality_crm4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_crm4_0.4.inst.cfg b/resources/variants/creality/creality_crm4_0.4.inst.cfg index 083efae740..e89642c6f2 100644 --- a/resources/variants/creality/creality_crm4_0.4.inst.cfg +++ b/resources/variants/creality/creality_crm4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_crm4_0.5.inst.cfg b/resources/variants/creality/creality_crm4_0.5.inst.cfg index 1eea25e779..2fa19837c5 100644 --- a/resources/variants/creality/creality_crm4_0.5.inst.cfg +++ b/resources/variants/creality/creality_crm4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_crm4_0.6.inst.cfg b/resources/variants/creality/creality_crm4_0.6.inst.cfg index d24f24eece..1a9416692e 100644 --- a/resources/variants/creality/creality_crm4_0.6.inst.cfg +++ b/resources/variants/creality/creality_crm4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_crm4_0.8.inst.cfg b/resources/variants/creality/creality_crm4_0.8.inst.cfg index f76a54078b..588c17409c 100644 --- a/resources/variants/creality/creality_crm4_0.8.inst.cfg +++ b/resources/variants/creality/creality_crm4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_crm4_1.0.inst.cfg b/resources/variants/creality/creality_crm4_1.0.inst.cfg index f8734d6f3c..0ea8f7a463 100644 --- a/resources/variants/creality/creality_crm4_1.0.inst.cfg +++ b/resources/variants/creality/creality_crm4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.2.inst.cfg b/resources/variants/creality/creality_ender2_0.2.inst.cfg index 8f30d0f6fe..04fe761557 100644 --- a/resources/variants/creality/creality_ender2_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.3.inst.cfg b/resources/variants/creality/creality_ender2_0.3.inst.cfg index 0784478a1b..ec2122860f 100644 --- a/resources/variants/creality/creality_ender2_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.4.inst.cfg b/resources/variants/creality/creality_ender2_0.4.inst.cfg index 2ac7aba90f..58f43da8fb 100644 --- a/resources/variants/creality/creality_ender2_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.5.inst.cfg b/resources/variants/creality/creality_ender2_0.5.inst.cfg index b580a5cde6..debbf68d2f 100644 --- a/resources/variants/creality/creality_ender2_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.6.inst.cfg b/resources/variants/creality/creality_ender2_0.6.inst.cfg index c0907e9ad7..547900d628 100644 --- a/resources/variants/creality/creality_ender2_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.8.inst.cfg b/resources/variants/creality/creality_ender2_0.8.inst.cfg index e3c6805cce..454703de31 100644 --- a/resources/variants/creality/creality_ender2_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_1.0.inst.cfg b/resources/variants/creality/creality_ender2_1.0.inst.cfg index 8b0eb7362c..96bca77b18 100644 --- a/resources/variants/creality/creality_ender2_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.2.inst.cfg b/resources/variants/creality/creality_ender3_0.2.inst.cfg index 454ec0377b..15385c2e20 100644 --- a/resources/variants/creality/creality_ender3_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.3.inst.cfg b/resources/variants/creality/creality_ender3_0.3.inst.cfg index e534020341..4e29cecb12 100644 --- a/resources/variants/creality/creality_ender3_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.4.inst.cfg b/resources/variants/creality/creality_ender3_0.4.inst.cfg index 1ac41b3714..0223a947c7 100644 --- a/resources/variants/creality/creality_ender3_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.5.inst.cfg b/resources/variants/creality/creality_ender3_0.5.inst.cfg index c5eb7768b0..515b53e7c3 100644 --- a/resources/variants/creality/creality_ender3_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.6.inst.cfg b/resources/variants/creality/creality_ender3_0.6.inst.cfg index e5c98ee7a7..1556a365c9 100644 --- a/resources/variants/creality/creality_ender3_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.8.inst.cfg b/resources/variants/creality/creality_ender3_0.8.inst.cfg index 06c3fbf5b9..d998ca055c 100644 --- a/resources/variants/creality/creality_ender3_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_1.0.inst.cfg b/resources/variants/creality/creality_ender3_1.0.inst.cfg index 9107793f15..7e5e75dcdb 100644 --- a/resources/variants/creality/creality_ender3_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.2.inst.cfg b/resources/variants/creality/creality_ender3max_0.2.inst.cfg index 17e74e4b97..91af1162a9 100644 --- a/resources/variants/creality/creality_ender3max_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.3.inst.cfg b/resources/variants/creality/creality_ender3max_0.3.inst.cfg index 1f55310dc8..f427dbd136 100644 --- a/resources/variants/creality/creality_ender3max_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.4.inst.cfg b/resources/variants/creality/creality_ender3max_0.4.inst.cfg index 55baed7323..2b7540aefa 100644 --- a/resources/variants/creality/creality_ender3max_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.5.inst.cfg b/resources/variants/creality/creality_ender3max_0.5.inst.cfg index 844a1eca5c..fdb9ce4a2d 100644 --- a/resources/variants/creality/creality_ender3max_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.6.inst.cfg b/resources/variants/creality/creality_ender3max_0.6.inst.cfg index 3c6c0fb6b4..aec1dfc3ed 100644 --- a/resources/variants/creality/creality_ender3max_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.8.inst.cfg b/resources/variants/creality/creality_ender3max_0.8.inst.cfg index ae0afbc280..d00862775d 100644 --- a/resources/variants/creality/creality_ender3max_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_1.0.inst.cfg b/resources/variants/creality/creality_ender3max_1.0.inst.cfg index 7da936ffa8..16f6150b26 100644 --- a/resources/variants/creality/creality_ender3max_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg index 8ecf20846a..570d1f6238 100644 --- a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg index 6b3576a42d..4c676ed6d9 100644 --- a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg index 299550c19b..7f7dd6edb7 100644 --- a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg index 99a817f8b9..061c4fde0a 100644 --- a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg index 89022bcea6..6a276e5672 100644 --- a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg index 874c63ba24..553fce273c 100644 --- a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg index 93c2ec2187..d503298a88 100644 --- a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg index 8d9e1a1e8c..5a661c334c 100644 --- a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg index 5ed26fdbad..5e36c009ea 100644 --- a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg index 1658bf59e3..e5241e375d 100644 --- a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg index 2ac65e3abc..3adac12d40 100644 --- a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg index 62112135a7..9621012951 100644 --- a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg index a9b60bbefc..ce1d3706ae 100644 --- a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg index 30820921fd..db5bcedd69 100644 --- a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg index 95c7c83ab8..7d7dcd08e4 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg index 75095886a1..208b2f17fe 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg index 041139f89c..2f0243e33b 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg index ceb15fe521..e6495b1eca 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg index dc316c8e45..c5cad190e5 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg index 800e70cb81..d78aa77c01 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg index 12652aa70d..f9b60e19d6 100644 --- a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg index 1c0454ec61..338becbda3 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg index 91e2ebfc3d..c9c48a08f4 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg index 74ef00ec76..786754f692 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg index 31c82d1cf0..3a8048b79a 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg index ee34266719..5ba06cfaac 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg index f65002a11a..7820146012 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg index 945953dfc0..612920c326 100644 --- a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg index d198308616..f48675d4b0 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg index 061112ebad..5983ae7c1e 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg index cfd6f021d7..0b856dbbb8 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg index 3d0682c270..100814b19f 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg index 0f8264dabe..8ca24a3f2a 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg index 639f4fd4f2..a5038a28a0 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg index 638e75887d..de15580919 100644 --- a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.2.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.2.inst.cfg index 7d92d94a8c..6e7b7a5eb2 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.3.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.3.inst.cfg index dc779a977f..c9e8a0e1a4 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.4.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.4.inst.cfg index 745880b4c5..ee8fb72926 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.5.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.5.inst.cfg index e58eaeef03..d17adfd503 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.6.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.6.inst.cfg index 6b90f99126..0486507cae 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.8.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.8.inst.cfg index e4dfb23e5f..867285388c 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_1.0.inst.cfg b/resources/variants/creality/creality_ender3v3ke_1.0.inst.cfg index 30758942af..bb4c3c32ac 100644 --- a/resources/variants/creality/creality_ender3v3ke_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg index b523a38f41..be69558b9e 100644 --- a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg index 6cf40ce999..2184b2dcd9 100644 --- a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg index fd870564ec..923d6ee9c8 100644 --- a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg index 45ca3a0184..637b40eeb0 100644 --- a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg index 4b7379635e..0e7ed8592c 100644 --- a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg index 0978a0e801..362c7e123a 100644 --- a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg index e2c6b803b9..9261fa4dae 100644 --- a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.2.inst.cfg b/resources/variants/creality/creality_ender4_0.2.inst.cfg index 0034158d3f..74e2f10508 100644 --- a/resources/variants/creality/creality_ender4_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.3.inst.cfg b/resources/variants/creality/creality_ender4_0.3.inst.cfg index c54a86e293..e0ba97b083 100644 --- a/resources/variants/creality/creality_ender4_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.4.inst.cfg b/resources/variants/creality/creality_ender4_0.4.inst.cfg index 0152f1c957..74a15a0ecb 100644 --- a/resources/variants/creality/creality_ender4_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.5.inst.cfg b/resources/variants/creality/creality_ender4_0.5.inst.cfg index 37c216cbfa..448b215aec 100644 --- a/resources/variants/creality/creality_ender4_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.6.inst.cfg b/resources/variants/creality/creality_ender4_0.6.inst.cfg index aa48e63e09..a540f1ff1e 100644 --- a/resources/variants/creality/creality_ender4_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.8.inst.cfg b/resources/variants/creality/creality_ender4_0.8.inst.cfg index 1a980e4ada..f2818875a4 100644 --- a/resources/variants/creality/creality_ender4_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_1.0.inst.cfg b/resources/variants/creality/creality_ender4_1.0.inst.cfg index 35ed12644d..0ebc4b0d7b 100644 --- a/resources/variants/creality/creality_ender4_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.2.inst.cfg b/resources/variants/creality/creality_ender5_0.2.inst.cfg index a371ccb35b..8a13d9a409 100644 --- a/resources/variants/creality/creality_ender5_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.3.inst.cfg b/resources/variants/creality/creality_ender5_0.3.inst.cfg index 2075784b2c..7114a8b1f9 100644 --- a/resources/variants/creality/creality_ender5_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.4.inst.cfg b/resources/variants/creality/creality_ender5_0.4.inst.cfg index 96733fd527..4c87a9bcba 100644 --- a/resources/variants/creality/creality_ender5_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.5.inst.cfg b/resources/variants/creality/creality_ender5_0.5.inst.cfg index ee184b97a4..e177651303 100644 --- a/resources/variants/creality/creality_ender5_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.6.inst.cfg b/resources/variants/creality/creality_ender5_0.6.inst.cfg index e3cf08f93e..6b14d79fb7 100644 --- a/resources/variants/creality/creality_ender5_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.8.inst.cfg b/resources/variants/creality/creality_ender5_0.8.inst.cfg index 990162becc..516b92ed0e 100644 --- a/resources/variants/creality/creality_ender5_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_1.0.inst.cfg b/resources/variants/creality/creality_ender5_1.0.inst.cfg index 8bb5a67d24..0076d52891 100644 --- a/resources/variants/creality/creality_ender5_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg index a0c1b19d19..a52cdd0ab5 100644 --- a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg index 30c7d397ce..70cfc68768 100644 --- a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg index 40ac79b50e..6d5633130c 100644 --- a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg index a0cb2b6572..b798987f6d 100644 --- a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg index 89cfdab22e..48e68d4317 100644 --- a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg index 3a343352f1..87075e1c12 100644 --- a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg index 8af92e62cd..dd1558dc11 100644 --- a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg index abddcdccfb..439f1d1359 100644 --- a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg index b7e32ab75b..051c8ee016 100644 --- a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg index 488dbcd893..9682f8d861 100644 --- a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg index 61a51c7cd1..89ab36e326 100644 --- a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg index 60a69f9b4c..c7eb940a32 100644 --- a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg index 04d29eedc6..2f8f85e4b1 100644 --- a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg index f5d8bb3adb..171f66962a 100644 --- a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.2.inst.cfg b/resources/variants/creality/creality_ender6_0.2.inst.cfg index 5057234c7f..dac3d56b41 100644 --- a/resources/variants/creality/creality_ender6_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.3.inst.cfg b/resources/variants/creality/creality_ender6_0.3.inst.cfg index ffd82833b0..83e0925e92 100644 --- a/resources/variants/creality/creality_ender6_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.4.inst.cfg b/resources/variants/creality/creality_ender6_0.4.inst.cfg index bf288d354d..25679caca9 100644 --- a/resources/variants/creality/creality_ender6_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.5.inst.cfg b/resources/variants/creality/creality_ender6_0.5.inst.cfg index 01cb313eb8..ea0e673ac1 100644 --- a/resources/variants/creality/creality_ender6_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.6.inst.cfg b/resources/variants/creality/creality_ender6_0.6.inst.cfg index 12044c5a15..f10d598532 100644 --- a/resources/variants/creality/creality_ender6_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.8.inst.cfg b/resources/variants/creality/creality_ender6_0.8.inst.cfg index 3f3bf9f0d4..fcc2119a1d 100644 --- a/resources/variants/creality/creality_ender6_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_1.0.inst.cfg b/resources/variants/creality/creality_ender6_1.0.inst.cfg index 5221d2db3c..7edb878791 100644 --- a/resources/variants/creality/creality_ender6_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_k1_max_0.4.inst.cfg b/resources/variants/creality/creality_k1_max_0.4.inst.cfg index 40b05dae6d..06243cd6d7 100755 --- a/resources/variants/creality/creality_k1_max_0.4.inst.cfg +++ b/resources/variants/creality/creality_k1_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_k1_max_0.6.inst.cfg b/resources/variants/creality/creality_k1_max_0.6.inst.cfg index b91dde92c0..426cb39317 100755 --- a/resources/variants/creality/creality_k1_max_0.6.inst.cfg +++ b/resources/variants/creality/creality_k1_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_k1_max_0.8.inst.cfg b/resources/variants/creality/creality_k1_max_0.8.inst.cfg index de60d921f9..880f49475b 100755 --- a/resources/variants/creality/creality_k1_max_0.8.inst.cfg +++ b/resources/variants/creality/creality_k1_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg index b123de554e..8889916120 100644 --- a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg index 89358a5324..77b076aa50 100644 --- a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg index c42bd666b8..55ad7394f9 100644 --- a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg index abbf292092..57ea4d50ad 100644 --- a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg index 9e11dbbd85..bb76c6f56c 100644 --- a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg index 3d8ab3bde2..42fbaf987e 100644 --- a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg index d2fc1cc66a..ea242cc165 100644 --- a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg index d83b26b9b5..32a708e65a 100644 --- a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg index fb2873bfca..6fd9021cc9 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg index 33b2f0c757..21cf4b3ac2 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg index b672317c15..94b697f890 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg index 9c5397b535..b5e8f44b6d 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg index 4d3bb38df9..9cb5cbccdf 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg index 71cd43dc29..77a72a580a 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg index 3862119ecd..8082ec6aa9 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg index a3010896eb..2fe50a1482 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg index 572e3a0a05..8fdc20581e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg index b91da5cce5..b162bee9a7 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg index 1790d9ef27..05e17069c6 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg index 566688fedc..e9156ddd8d 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg index 17f5f768c5..74a7cf120c 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg index c78ce86030..0fa441f273 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg index fe5aab9f9c..0834fef264 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg index 2684177443..3a2e4617e6 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg index 91c59f0e6d..f52c7ca4a8 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg index 431d7eb7e1..49472a04d4 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg index eae1a408f4..dccd8a8bd8 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg index 754bb93c02..6372452679 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg index 8ea81a3972..1f9e19d0e9 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg index 84eca0f253..a0d5ae4a57 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg index 3ac5e34205..677d696b0f 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg index f9ae98aa0f..153a3eef6f 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg index e1749cb429..a53b42cf17 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg index cb0d9a6d61..e512ccf5bd 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg index f5995c20dc..935750124e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg index f907b89e87..33b544be29 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg index badcdc87f7..f0188cab49 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg index 65c35eea1e..f3dd546c7c 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg index 021c0f141c..584b30fb0a 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg index 25f25029a0..9261d65e3b 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg index b9cbe805d4..2b706dcf6f 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg index 431f06f81f..dd5741da03 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg index 46cad40b28..bce016041a 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg index 567cf160cc..7c76e66ed4 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg index a509a37310..406a3648c6 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg index 42c01ad004..d4adbd0cb9 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg index 6498a7a26b..1d405a5561 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg index 82e80ddd92..7a599f5348 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg index 8df2ac5bf5..25cc82a0f6 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg index 33d9585241..7874697d81 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg index 7ad9767f09..b3038de7a3 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg index dd991034be..9695a9e3e1 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg index 9eeb0d5798..63e51a7949 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg index aceb33a763..f09984ab74 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg index 2eba3d6b5f..81c63d6863 100755 --- a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg index a617f78b93..c1fe49d365 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg index a5c92a83dd..9ff38e3b2f 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg index 2dedb7fa94..f9f9d10303 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg index 0972964ca5..42e71f2932 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg index 20cb7fb960..242a54c31c 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg index e24cd0ea6d..51c86e48b1 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg index 3ae6090e66..0975c71b8f 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg index c40597cb87..43f8a296e2 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg index 6742aedfc9..e81a0a459c 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg index 0e03d17023..b4e15667a5 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg index 60a4286938..73c5ffcbb9 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg index dc2925f77c..0e8aefcc67 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg index 15e4915e2a..ab593cb5db 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg index 6d49118119..8928d57111 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg index 1cdcb390e9..f417cc93a1 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg index da67df45fd..0d7bc080aa 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg index cf4e85908d..995a14cc6e 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg index 150e4a17b5..230ef472ce 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg index 4854a810f8..77d98c00a0 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg index d8195ef346..59cfe7dc0c 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg index a033fefc15..fefc6462a8 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg index c37b96738a..9d14894dc3 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg index 3e95332396..5cf6bafe33 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg index 0daf1de438..49668a4ff9 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg index 070d8421e8..cbadf56bde 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg index 7131e12280..24e9e1f1d2 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg index a441f1a043..95d82d72ab 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg index dd9fd9d17d..e347d442a9 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg index 988ec95557..b0788b403b 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/diy/diy220_0.2.inst.cfg b/resources/variants/diy/diy220_0.2.inst.cfg index b7233a9d25..d69c450307 100644 --- a/resources/variants/diy/diy220_0.2.inst.cfg +++ b/resources/variants/diy/diy220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/diy/diy220_0.3.inst.cfg b/resources/variants/diy/diy220_0.3.inst.cfg index 22dd3a3032..6e1b159026 100644 --- a/resources/variants/diy/diy220_0.3.inst.cfg +++ b/resources/variants/diy/diy220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/diy/diy220_0.4.inst.cfg b/resources/variants/diy/diy220_0.4.inst.cfg index bc4ac126c1..129ce7cdc8 100644 --- a/resources/variants/diy/diy220_0.4.inst.cfg +++ b/resources/variants/diy/diy220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/diy/diy220_0.5.inst.cfg b/resources/variants/diy/diy220_0.5.inst.cfg index 13f0d6c617..5bccc926b1 100644 --- a/resources/variants/diy/diy220_0.5.inst.cfg +++ b/resources/variants/diy/diy220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/diy/diy220_0.6.inst.cfg b/resources/variants/diy/diy220_0.6.inst.cfg index f3b1d65bde..3e0d9ec96a 100644 --- a/resources/variants/diy/diy220_0.6.inst.cfg +++ b/resources/variants/diy/diy220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/diy/diy220_0.8.inst.cfg b/resources/variants/diy/diy220_0.8.inst.cfg index ca159b00b9..1c72fbef8f 100644 --- a/resources/variants/diy/diy220_0.8.inst.cfg +++ b/resources/variants/diy/diy220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.25.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.25.inst.cfg index d9dc67d195..f06e4058da 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.25.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.30.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.30.inst.cfg index 348f1c0f8b..57616f8c6d 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.30.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.35.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.35.inst.cfg index d56e3c80e3..290c4ca345 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.35.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.40.inst.cfg index 817bccacfe..cef394f357 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.50.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.50.inst.cfg index 30774fcf86..826b3c43b9 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.50.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.60.inst.cfg index 06841a8187..0a384024c8 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.80.inst.cfg index 037414e04c..411319a320 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.40.inst.cfg index 8b2e14dde6..9a44b1dbe0 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.60.inst.cfg index 0bd7fca9eb..a57aa32ab8 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.80.inst.cfg index 7b6a99d012..5a71de93df 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.00.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.00.inst.cfg index 79a110a357..3ca9bd5b7f 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.00.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.20.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.20.inst.cfg index b30a6d2b22..f9f1e03cf4 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.20.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.25.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.25.inst.cfg index 91cfe55050..acdc2bff33 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.25.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.30.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.30.inst.cfg index a01d46ea83..6212bf7bee 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.30.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.35.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.35.inst.cfg index f7b96d3913..b93ca2907c 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.35.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.40.inst.cfg index 4d533d6923..278110c977 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.50.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.50.inst.cfg index 7732cae34c..9d6020efb1 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.50.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.60.inst.cfg index 65343c2314..01e9f10b1a 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.80.inst.cfg index eef2b9b5cc..840e9a6f11 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.40.inst.cfg index e2924355a5..a31bc18a1a 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.60.inst.cfg index e95b345f1c..ca382bcfbe 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.80.inst.cfg index 3a088ec895..fac73b4d3e 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.00.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.00.inst.cfg index 423c53a7af..c1bdae5e92 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.00.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.20.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.20.inst.cfg index 682d0f32b4..aed02e2b71 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.20.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.25.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.25.inst.cfg index 00ee1e22de..0bbde738f5 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.25.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.30.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.30.inst.cfg index 50b48831f8..5e92ad7d9f 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.30.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.35.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.35.inst.cfg index d6a356a046..3cc8a6d9de 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.35.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.40.inst.cfg index b6cea8053e..0daad693a3 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.50.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.50.inst.cfg index 3b382dee7d..e7c342c684 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.50.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.60.inst.cfg index 327b8f2233..85d30b189d 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.80.inst.cfg index b1db27ccd8..9b46b53933 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.40.inst.cfg index f9ebd89d4a..138b6edaab 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.60.inst.cfg index 1dc02511a7..521261043b 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.80.inst.cfg index 3857baf3a3..d26ce46b25 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.00.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.00.inst.cfg index 79a110a357..3ca9bd5b7f 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.00.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.20.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.20.inst.cfg index 33c94db3e8..05abbf1fe1 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.20.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.25.inst.cfg b/resources/variants/dxu/dxu_0.25.inst.cfg index a488e4d179..54f98a8b94 100644 --- a/resources/variants/dxu/dxu_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.4.inst.cfg b/resources/variants/dxu/dxu_0.4.inst.cfg index 7302b73604..8974e8e802 100644 --- a/resources/variants/dxu/dxu_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.6.inst.cfg b/resources/variants/dxu/dxu_0.6.inst.cfg index b3850a0600..15311bf4b0 100644 --- a/resources/variants/dxu/dxu_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.8.inst.cfg b/resources/variants/dxu/dxu_0.8.inst.cfg index bbdc10ab07..773109c840 100644 --- a/resources/variants/dxu/dxu_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_dual_0.25.inst.cfg index 6983e959b7..8083a0d8cf 100644 --- a/resources/variants/dxu/dxu_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_dual_0.4.inst.cfg index 0dd99cc77d..a45e85cd67 100644 --- a/resources/variants/dxu/dxu_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_dual_0.6.inst.cfg index 5dcac9741e..e62e69c036 100644 --- a/resources/variants/dxu/dxu_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_dual_0.8.inst.cfg index cedb16e925..c256a5efef 100644 --- a/resources/variants/dxu/dxu_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_0.25.inst.cfg index 8f8d06cb5f..1fad98dd4b 100644 --- a/resources/variants/dxu/dxu_umo_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_0.4.inst.cfg index e840ab33f8..3f6eba69b2 100644 --- a/resources/variants/dxu/dxu_umo_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_0.6.inst.cfg index 87cedca49c..f5c3858e3b 100644 --- a/resources/variants/dxu/dxu_umo_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_0.8.inst.cfg index 07945af623..2f6d10d530 100644 --- a/resources/variants/dxu/dxu_umo_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg index 86430accc9..3b57c5a926 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg index 255ffc9dd1..72ac08c746 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg index 5a16beb3c6..a61efcf3a0 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg index 57e7bd70e0..1d5691fcca 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg index 54af683b9c..dd2b9d5991 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg index 3217a1a6ce..943c0d0b2a 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg index bc82566e9c..ea3cd78fd9 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg index 2a33d85bdd..43d45555a0 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg index 17298221b2..73b5468b08 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg index fc59701f7a..ef2d86497d 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg index 0da41f7840..dff17ca284 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg index 7beae5d3e5..7d68a29de8 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg index 9a5939570f..6c82ff5b37 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg index 12ff110d2f..7da8cc0392 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg index b4767809f0..44b37b39e0 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg index 1982bc0cf5..82c0762bb5 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg index 037e20a244..0314e62a98 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg index c10c29be43..e03227331f 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg index cdec82e36c..b7f61089d6 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg index 71b05584c7..bf7868478b 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg index 79905f009e..e03ea177c0 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg index 23fd5dbe3b..b4aa520cd4 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg index 192b22cd3d..03abf94221 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg index 385b107881..68ae76a1c6 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg index e3dece6399..d6014b5eb9 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg index c47b9bd410..33a3220d27 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg index a1eddd732a..83511d6e1d 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg index 7ee345c400..66c67e958d 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg index 7f1bd2395c..d49df1d1ec 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg index 6825ef8695..3287c9d13e 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg index 15bb5938ed..1f8fe15df3 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg index 4c75c5ab10..e11c4389b5 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg index 83c207f638..9cb7a49d2e 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg index c7177f03c4..6ec2e364b9 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg index a953118890..148d45dfcb 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg index 508fba410c..eebb115488 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg index 7f982712ef..c88b2ee8ac 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg index dac5cd8317..668a2e9af8 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg index 4c69919d3d..f66faec2ac 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg index bcb9cc218d..121ad902cf 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg index 8b8fdb67c1..da66c21259 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg index 7bb3f29a7c..cd8c2731cc 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg index 012d6b6ce7..45592fce3b 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg index 9baa55881e..704e55ad49 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg index 474b80a73f..71bb604265 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg index c67b0aeae6..410a91ef85 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg index bb9711b198..14d0f0db6e 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg index 2ffbd30b17..3236d8ecfe 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg index ff0e79e8f9..cd0dd5cf7f 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg index c74a427847..1218f7aaa5 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg index 7737888958..a66116aca0 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg index 37f1b63552..2659a5cf61 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg index 41bfaa08a0..a3c7382ce9 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg index 91f42e476e..9a0ab35ca4 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg index aa13f03c45..a98c036b72 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg index 5808e0a677..ff49026a34 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg index 60ef115b5f..8b4da6c9e2 100644 --- a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg index 56f5164679..9fb22d3cba 100644 --- a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg index cc9f291bde..b2900991bb 100644 --- a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg index 63e13314a6..1619bdda30 100644 --- a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg index ce5beb4e34..23e6b7af18 100644 --- a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg index faad25df65..cf2c621383 100644 --- a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg index 01661cf9a9..d28510f99a 100644 --- a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg index 2806a0e56c..3eeec7f439 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg index c0ed4d0b82..26ac31b1d3 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg index c49f4b8f7f..09cf608114 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg index 7eda0784d3..df2baf6ac2 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg index c32dd5b7ee..b5fd0321b3 100644 --- a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg index c85557732e..06db324dd1 100644 --- a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg index d1d5139ef1..0215fbf010 100644 --- a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg index f3800018ec..4c256e37dd 100644 --- a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.25.inst.cfg b/resources/variants/felix/felixpro2_0.25.inst.cfg index 0517d24161..5a4d7d7f72 100644 --- a/resources/variants/felix/felixpro2_0.25.inst.cfg +++ b/resources/variants/felix/felixpro2_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.35.inst.cfg b/resources/variants/felix/felixpro2_0.35.inst.cfg index e9265c414e..c2a5050db3 100644 --- a/resources/variants/felix/felixpro2_0.35.inst.cfg +++ b/resources/variants/felix/felixpro2_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.50.inst.cfg b/resources/variants/felix/felixpro2_0.50.inst.cfg index 8a69b37e2d..9f0f9bbcdf 100644 --- a/resources/variants/felix/felixpro2_0.50.inst.cfg +++ b/resources/variants/felix/felixpro2_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.70.inst.cfg b/resources/variants/felix/felixpro2_0.70.inst.cfg index e0b6765315..40f26eb996 100644 --- a/resources/variants/felix/felixpro2_0.70.inst.cfg +++ b/resources/variants/felix/felixpro2_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.25.inst.cfg b/resources/variants/felix/felixtec4_0.25.inst.cfg index 9e3586ebe9..4922936f9f 100644 --- a/resources/variants/felix/felixtec4_0.25.inst.cfg +++ b/resources/variants/felix/felixtec4_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.35.inst.cfg b/resources/variants/felix/felixtec4_0.35.inst.cfg index 84090ef30c..fe605d565d 100644 --- a/resources/variants/felix/felixtec4_0.35.inst.cfg +++ b/resources/variants/felix/felixtec4_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.50.inst.cfg b/resources/variants/felix/felixtec4_0.50.inst.cfg index 09086168e0..150a664c4b 100644 --- a/resources/variants/felix/felixtec4_0.50.inst.cfg +++ b/resources/variants/felix/felixtec4_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.70.inst.cfg b/resources/variants/felix/felixtec4_0.70.inst.cfg index c9f492ecfe..f39b751d6e 100644 --- a/resources/variants/felix/felixtec4_0.70.inst.cfg +++ b/resources/variants/felix/felixtec4_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg index 6eb9b886f0..bfaf823069 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg index 5c7a08ba03..1474a0f063 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg index c05e475880..2393139875 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg index c8d7535ede..4853836721 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg index f3b9aa3bf2..64e7c7307c 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg index 974b554bf4..7d6ac6a936 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg index 4c41f5e767..5fab6237e8 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg index afb2a463a9..80aa4f9a6b 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg index efdc18da4c..eada68df1f 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg index 208cb50e2c..4d8f82f346 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg index 7a74b5a839..47e7f03162 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg index 674858edad..7a5a9659b9 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg index 142c5293dc..0a50c8d5ac 100644 --- a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg index d533d14756..d38641314a 100644 --- a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg index f6c0995f8d..e15e965827 100644 --- a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg index 4562c77885..ca9e497eb4 100644 --- a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg index 80fc272e50..7ce11be9fd 100644 --- a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg index a165b04fb7..89cc79f170 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg index 44d4f6da07..c56d65c006 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg index 5da3632749..b24a2f3251 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg index 0c49c7a554..3117328cfb 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg index 8812d00845..c6b3e964e3 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg index ec850a3512..ef7c1fff26 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg index e360bc54ac..41544d6ebd 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg index 559efcc3e3..adcbe9352f 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg index b24ba7b7f7..749c40401c 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg index dcf4ee1cbb..751e901525 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg index a0eec97673..e793bc97eb 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg index a2bfce3a5e..6c796fee75 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg index eeaaa3c7ec..70185f9a86 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg index 350768d489..8d805c39bd 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg index f999358203..35301e5edf 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg index 68da0ebe58..3ea142d6d7 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg index f436165553..d920598aa4 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg index 18e877f049..393c1e7d97 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg index a06bf2b2e7..022314e6e3 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg index dcbc1c5947..8d908f1300 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg index 7b8d3a0950..a946b40497 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg index ed4178c2e6..fcaaf78434 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg index 9b6752cddf..2f04815236 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg index 558ba90c08..2e8e3a66ab 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg index 533e491092..f5946599d2 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg index ee4bfe444e..d05d6c69a7 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg index 0be6244d22..478c807a7c 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg index 2b6fdc91b5..6156a6517d 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg index 2ce93740e6..5e644630df 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.4.inst.cfg b/resources/variants/fusion3/fusion3_0.4.inst.cfg index 032d1df8d6..f021bcf100 100644 --- a/resources/variants/fusion3/fusion3_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.6.inst.cfg b/resources/variants/fusion3/fusion3_0.6.inst.cfg index d71f9bf60a..069d80c228 100644 --- a/resources/variants/fusion3/fusion3_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.8.inst.cfg b/resources/variants/fusion3/fusion3_0.8.inst.cfg index 82d13ac509..7b81f5ee21 100644 --- a/resources/variants/fusion3/fusion3_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg index 032d1df8d6..f021bcf100 100644 --- a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg index d71f9bf60a..069d80c228 100644 --- a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg index 82d13ac509..7b81f5ee21 100644 --- a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg index 073bfde093..2496655100 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg index 35738c38b4..27a02ac89e 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg index 771d388981..28e66114ed 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg index 3def0e3b77..0e2415b838 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg index c3339144f0..0666ae94d0 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg index d9d55c53ba..edca91d7d4 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg index 67928921d4..89b00127f1 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg index b1214cc24b..907bf924c2 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg index 55648cf4be..e31c3f49b8 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg index 8a7aeae477..13be4c6c1b 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg index 7edabf6327..4c69b728a8 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg index ead8c5b891..d08a2caf91 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg index cdfa9fe671..9d207cc075 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg index faee4e113b..9cb21d8e1f 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg index 88156da5e3..c69f09003a 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg index 57da0f5263..6413f7c1ac 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg index 93b6d43e9d..225ed8b380 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg index 51e95b839c..bb706f1abc 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg index e46f80f685..99fbfc7789 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg index bf1850752f..b9323862b3 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg index ae25d00c77..f51988e3e6 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg index 7ce2a570e2..0fc6b84b74 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg index 5029b53c1d..5e58cb0795 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg index 6940fc607c..d0cb9d4fed 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg index 0086d1c603..0e35c1224b 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg index 5b27a712db..5cc946f297 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg index e4dc87a493..cc16338c01 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg index 76cb672eda..37e5cccfd7 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg index 0be00235ea..5f8d13f625 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg index 9cec948b0a..fd84e5f0f8 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg index f35d51b4a1..bb176e3701 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg index 563f8b902b..e27aef4237 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg index d1902b60c7..eb4966a8ac 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg index 50c7f20457..f9b3bc40cf 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg index 207f845af0..0612a60e06 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg index 205ef057b4..f77dafece1 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg index 640fd67b3f..5a1f54f25a 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg index 7737cb527b..09e39c04d9 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg index 8c9d8ec96f..9e97fd3786 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg index c38d74d549..dc354e6fd6 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg index 0b94255036..2df8128e2f 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg index 70e3f7a1e0..8cccb40984 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg index 91a561d459..a39e80632a 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg index a69f11ecf4..f262b757cf 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg index 4b3f2f9a2d..a1dea00b89 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg index b9ea6e9f9f..c20058295b 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg index 87ea7a7951..fd7c466124 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg index 78d066ae44..9eaf0a4c24 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg index 82d05d6f69..3c6b6de630 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg index 2d08c3a349..c4a8f6d2c0 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg index 9c6dfcc9a9..1d3fe732cd 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg index 923ec6db03..444853b3ea 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg index 440c72ca1e..5be30c586f 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg index b853c0ec3a..f58847b182 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg index 66d1be9510..2b3ed197ae 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg index 70dd52e71f..8a0575de09 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg index 3d086a7129..fe154f480f 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg index e7d5a500c8..9218f2aef7 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg index 7c3e19e18e..ed03ed6671 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg index a41b890f1c..b87ebb828c 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg index 9d0968940f..9dedb031f1 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg index 2918812f14..745e392a6e 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg index a7a5cbc516..57f26802b4 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg index 464246ea60..d1a657f10f 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg index 738fc3458d..f131f05f36 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg index 9c0507ee7f..2591db8fd0 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg index c46105ee96..237ae6b11d 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg index 47197c50c4..e3294400d2 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg index 79994015e0..64efa0ccf7 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg index 64473d57c6..e0ef081c77 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg index 94353d4645..47494608dd 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg index 7276bfe5c8..644b18651e 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg index 6ef937964f..a4cd7a3f4c 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg index bbd1a135bf..9e724e83ca 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg index 13f0c386f6..85e1d35897 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg index 7a9f1cd96e..4c48af6586 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg index 16b62b79ec..6a77347899 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg index ac5014f44e..46f461cf6f 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg index 06db268644..a58fdc52df 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg index 66d27fbaeb..a2f057e6fb 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg index 05665e2f1c..c1b62c055a 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg index e19a3b7ac7..5ea5725621 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg index 7edbb4db5f..11dabff2c6 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg index d366f986c0..0fb58cee5c 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg index 7cbba5a681..92e6671f5d 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg index 834c7b9772..26d71197c8 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg index 608d17b7a2..8843227124 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg index 192ccda494..6579004b82 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg index ff70e1b2c5..4301736c48 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg index 9be2fda82d..77f52c3fd2 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg index dd6c2e0344..c49fe2025a 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg index 48dac05f84..b44a005348 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg index 59fac38bda..0e84c8c4cd 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg index e8477d9dbd..7d4ebd98f6 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg index fc26078784..79c8973da1 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg index 974667f462..d9c89a3639 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg index 2d9e169eb5..b39146f919 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg index 3be895b6d7..e6d5a810be 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg index 0ba2b440cd..0b8348d140 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg index 8e3980c13b..bd1124c958 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg index d64df8faf4..6799761a09 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg index 6b41030cdf..1fb3841313 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg index 220550d38b..4140229f73 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg index 46df1945e3..77524b549f 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg index 84f86b7825..d72658294b 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg index feee98341f..ebd2d1469c 100644 --- a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg index ea6031a55f..e38cc254a3 100644 --- a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg index dc2013400a..a9d263681c 100644 --- a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg index 7bb73d376b..79206b4645 100644 --- a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg index 20a68280f5..095746f3db 100644 --- a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg index 5554348466..9b1455591a 100644 --- a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg index e14b37d410..3b91a6a856 100644 --- a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg index da6f85cd78..1c42066521 100644 --- a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg index b83cc5e0cb..098e6a6ca2 100644 --- a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg index 2c5b950fa7..c1ddd41961 100644 --- a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg index f8e5949f32..3c4a508228 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg index ae2c4c2e2c..ed558d38b2 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg index 6dae917b2f..0fd4ae1039 100644 --- a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg index 108db8a2c1..a6185dc29c 100644 --- a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg index 23e1ba2047..1798756965 100644 --- a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg index edd56cb8b0..23f39e6c22 100644 --- a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg index 7313a769ea..d282a58b33 100644 --- a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg +++ b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg index 7ada6238e5..e6b9b1f52b 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg index 5e317ddbaa..95a0cff38b 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg index 2ea4951361..185eaaec4c 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg index 9d4fae1ab8..491cabe588 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg index b4b70b2804..7ce916f942 100644 --- a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg index d78fbb8089..cc0e9f43e6 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg index 45e088df35..d7c6e74664 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg index 070fcb7359..e68a0a0efb 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg index 93681c06e0..49a74b0849 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg index 0fcb2d256f..0c64897be1 100644 --- a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg index 623eb82821..05e3d169d4 100644 --- a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg index 4fdd588922..d91e53cb1d 100644 --- a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg index 53a36b3d1d..7c15b8d11f 100644 --- a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg index 979eb3ee47..1d02cf7485 100644 --- a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg index 8cd6591c7d..1d3a42d4b1 100644 --- a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg index 85cb28cf95..1a5eeac415 100644 --- a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg index 82388a823b..43abd97e69 100644 --- a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg index 6f40759e13..8a0db02921 100644 --- a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg index c521a9e8ba..7b05e30349 100644 --- a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg index 92ef73f8fd..37e09ef968 100644 --- a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg index 4d75934903..17edca00e3 100644 --- a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg index 432f4e4eb1..69f3bea026 100644 --- a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg index 842c973865..89ea7c05d9 100644 --- a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg index 5956dbc848..762c474f6e 100644 --- a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg index 22210336fa..b6570fdee3 100644 --- a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg index db56fd8a68..e343017e95 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg index eab49f6ff2..0c55d178e8 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg index c443ac435f..aa12e0dfb8 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg index 0918d2b0ea..867e6c62bf 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg index 8657cd34a4..9760c943ca 100644 --- a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg index b062904009..5a80383aaa 100644 --- a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg index e2a711bc23..a83302f0c7 100644 --- a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg index ca8d77c73e..a191652dc5 100644 --- a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg index ef0b26c2e1..b358e8fafd 100644 --- a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg index 9039055f48..db1f92ad37 100644 --- a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg index 5df2ea8550..27695cb89b 100644 --- a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg index bcb84bc11f..d12348d3b2 100644 --- a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg index 2926251798..c1b277a4ab 100644 --- a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg index eab2762d8f..877e5a1c77 100644 --- a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg index 7412435143..bbb3f4c9b1 100644 --- a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg index ce14d3252a..9d41ce6761 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg index 647f52efff..b74651186e 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg index 5037e706f3..3de7a3f716 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg index f43062c605..5f3105d3ef 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg index 042d5cbbf0..631dca9633 100644 --- a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg index 660658ba58..adb7a7c922 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg index 1177030f93..f4509db301 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg index 497c117e6e..2a989f11ea 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg index 05ca9eca78..dc5d88c482 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg index 2ba839b340..3794ee1eca 100644 --- a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg index b38b300dcb..783b0f1fe1 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg index ca2dbe6790..6e7a037c6b 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg index 5973febc70..7a61fe4634 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg index 28a472e72f..dfcfde76c0 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg index f5fdec7756..ab82979624 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg index 0a28dd00e1..0829556809 100644 --- a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg index 92c05577b8..f62425ec1c 100644 --- a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg index 71e1c6cb29..f10b2e784d 100644 --- a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg index 94ad9c2e17..46444df723 100644 --- a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg index a34a0f4587..5acadb74eb 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg index d7dd0b3746..1dcaa12e9b 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg index 1944ad5751..61fe6ffdf0 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg index f2e80a208c..bb51d201a5 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg index 5ffb9996d2..18da3c8ae1 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg index 516e0c99c9..4370bdb2e7 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg index 66c473929f..945f80a273 100644 --- a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg index 935e62e059..425508a417 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg index b8918d2b42..c38cec16d1 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg index 4ffeaeee2c..079db03b3b 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg index a4f6abd2a4..8347c0cd03 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg index cc14b87ebb..3827a87908 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg index 7ba0f27162..69e330c0f8 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg index 0c5fa11144..084edae11e 100644 --- a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg index 90409a027e..0e9a0c7d35 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg index d90512fc69..a0702b6da2 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg index ae48963d8a..74f8ab8432 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg index 36b1dcbbc4..70c28e0ff3 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg index 57914a8ab3..4e679ae8c0 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg index fb1a6b5e8f..4b73812244 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg index b05acc5676..7f46e08ad4 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.2.inst.cfg b/resources/variants/kosher/kosher220_0.2.inst.cfg index 5954773084..a9e833758d 100644 --- a/resources/variants/kosher/kosher220_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.3.inst.cfg b/resources/variants/kosher/kosher220_0.3.inst.cfg index cc5cd3e508..cdc9680971 100644 --- a/resources/variants/kosher/kosher220_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.4.inst.cfg b/resources/variants/kosher/kosher220_0.4.inst.cfg index 07992ddbb5..7c9a2cc075 100644 --- a/resources/variants/kosher/kosher220_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.5.inst.cfg b/resources/variants/kosher/kosher220_0.5.inst.cfg index dd80c290dd..bdf9904587 100644 --- a/resources/variants/kosher/kosher220_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.6.inst.cfg b/resources/variants/kosher/kosher220_0.6.inst.cfg index d42d48ceeb..81dc3064fd 100644 --- a/resources/variants/kosher/kosher220_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.8.inst.cfg b/resources/variants/kosher/kosher220_0.8.inst.cfg index dcd90b0864..67775f8f8c 100644 --- a/resources/variants/kosher/kosher220_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg index 009eb8114d..fb9080473b 100644 --- a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg index 26ff2fcad9..2f25036698 100644 --- a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg index 50fe460de2..f0cd5c86ab 100644 --- a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg index c3bf8c8dba..da6d49b9f6 100644 --- a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg index 617dfb541f..d350e4bed5 100644 --- a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg index 5c44545199..ccb658334d 100644 --- a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg index c8e377c8e7..31089ef07a 100644 --- a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg index 6c457bf607..42b2b3855b 100644 --- a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg index b2f718d277..08c6b9bd11 100644 --- a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg index 14a534767a..e6421a710a 100644 --- a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg index f0fae06951..e636c15a47 100644 --- a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg index 369569c1f2..e9f693a97e 100644 --- a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg index 200d961bf6..91654a27d1 100644 --- a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg index d5fee60813..1a5c57c851 100644 --- a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg index 15470c782a..2a64a08c83 100644 --- a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg index 56f719ce12..86d4a41ed9 100644 --- a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg index 4c2d7bcae3..e34625b05e 100644 --- a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg index 83ea1b5781..ef30872025 100644 --- a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg index df90214208..e7c0bc3fe3 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg index 0b8d012a9e..1df143ad2f 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo04.inst.cfg b/resources/variants/liquid/liquid_vo04.inst.cfg index 684f763c77..a8b498732a 100644 --- a/resources/variants/liquid/liquid_vo04.inst.cfg +++ b/resources/variants/liquid/liquid_vo04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo06.inst.cfg b/resources/variants/liquid/liquid_vo06.inst.cfg index 318ded1861..17d91d67f3 100644 --- a/resources/variants/liquid/liquid_vo06.inst.cfg +++ b/resources/variants/liquid/liquid_vo06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo08.inst.cfg b/resources/variants/liquid/liquid_vo08.inst.cfg index f6c3e346e9..16679de29f 100644 --- a/resources/variants/liquid/liquid_vo08.inst.cfg +++ b/resources/variants/liquid/liquid_vo08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg index e30e219078..e908525dad 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg index a405b36c2f..111458a484 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg index 80bf9215ec..77630b0889 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg index b14753a615..9bd172349e 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg index bffc914485..6aac4a1ba0 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg index 7bcab41a1c..8f14525558 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg index 6fc8d120c2..d925b04e24 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg index ef8bd0cda8..8397e8f997 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg index 35dedaae3c..bd7d52dfa3 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg index 9dce1e88c8..1196071445 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg index e4a79bb457..2114ecdaf3 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg index 9a2eaa51d2..9d400b3939 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg index d6f8a1aa37..c1ac713160 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg index 0c78cf88fa..820e1a4f15 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg index 023e077f16..1c0a95d6af 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg index 187a2891b9..cf2792c332 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/longer/longer_base_0.4.inst.cfg b/resources/variants/longer/longer_base_0.4.inst.cfg index 33d9f1dd4b..b7599786b3 100644 --- a/resources/variants/longer/longer_base_0.4.inst.cfg +++ b/resources/variants/longer/longer_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/longer/longer_cube2_0.4.inst.cfg b/resources/variants/longer/longer_cube2_0.4.inst.cfg index 38ad1f1ddc..ceb3f99031 100644 --- a/resources/variants/longer/longer_cube2_0.4.inst.cfg +++ b/resources/variants/longer/longer_cube2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/longer/longer_lk1_0.4.inst.cfg b/resources/variants/longer/longer_lk1_0.4.inst.cfg index 4ed47af870..2e7f8a2a66 100644 --- a/resources/variants/longer/longer_lk1_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg index a84646565d..aec9d304e4 100644 --- a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg index 5f00991b40..c922e2c56a 100644 --- a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/longer/longer_lk4_0.4.inst.cfg b/resources/variants/longer/longer_lk4_0.4.inst.cfg index e7ac3ea123..92e7e83199 100644 --- a/resources/variants/longer/longer_lk4_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg index 89bd3df55e..c19f1e8019 100644 --- a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/longer/longer_lk4x_0.4.inst.cfg b/resources/variants/longer/longer_lk4x_0.4.inst.cfg index c8f5cd4dbf..4cee219369 100644 --- a/resources/variants/longer/longer_lk4x_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/longer/longer_lk5_0.4.inst.cfg b/resources/variants/longer/longer_lk5_0.4.inst.cfg index 22b3e76ab0..5b74ea8308 100644 --- a/resources/variants/longer/longer_lk5_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg index f6dfd5e62c..dda553b43a 100644 --- a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg index 8dec02c101..7290fad0a9 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg index 1553f9338d..9ea97f96f4 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg index 7f9792a752..031adee11e 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg index 76df010856..a44d06effe 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg index 1e76c76b36..5abc2f80bc 100644 --- a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg index e8c15d58d6..e1cd48dd7d 100644 --- a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg index c94caecd4a..53fe26bacf 100644 --- a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg index d2e0591d39..fddf738d05 100644 --- a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg index 5259e59ca4..cc67b2a19c 100644 --- a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg index e821bcf124..f04b25ba67 100644 --- a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg index 1e35828ec9..64679a9330 100644 --- a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.2.inst.cfg b/resources/variants/mingda/mingda_4h_0.2.inst.cfg index b39905c685..467a014898 100644 --- a/resources/variants/mingda/mingda_4h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.3.inst.cfg b/resources/variants/mingda/mingda_4h_0.3.inst.cfg index ad6d817f5b..1f70ba8b5e 100644 --- a/resources/variants/mingda/mingda_4h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.4.inst.cfg b/resources/variants/mingda/mingda_4h_0.4.inst.cfg index c7207e9e72..580da87b91 100644 --- a/resources/variants/mingda/mingda_4h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.5.inst.cfg b/resources/variants/mingda/mingda_4h_0.5.inst.cfg index 994d0c587c..6e4e99e1fa 100644 --- a/resources/variants/mingda/mingda_4h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.6.inst.cfg b/resources/variants/mingda/mingda_4h_0.6.inst.cfg index a455e254dc..455651df70 100644 --- a/resources/variants/mingda/mingda_4h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.8.inst.cfg b/resources/variants/mingda/mingda_4h_0.8.inst.cfg index 9fcc105149..6afee83ba0 100644 --- a/resources/variants/mingda/mingda_4h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_1.0.inst.cfg b/resources/variants/mingda/mingda_4h_1.0.inst.cfg index ecff382b36..4fc2821064 100644 --- a/resources/variants/mingda/mingda_4h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_4h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg index 0990e20414..5aade6d612 100644 --- a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg index fc41b19424..842553a818 100644 --- a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg index 485604b550..18644706a0 100644 --- a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg index f0d1a8b4a7..df0d6424d1 100644 --- a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg index a024f70e88..e7fc2611bb 100644 --- a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg index e8aa246222..c7d04e9e04 100644 --- a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg index 70fa4471bd..87291083b5 100644 --- a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.2.inst.cfg b/resources/variants/mingda/mingda_6h_0.2.inst.cfg index b7d394f037..35c1643fb4 100644 --- a/resources/variants/mingda/mingda_6h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.3.inst.cfg b/resources/variants/mingda/mingda_6h_0.3.inst.cfg index 2a162da44b..e8871daaf6 100644 --- a/resources/variants/mingda/mingda_6h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.4.inst.cfg b/resources/variants/mingda/mingda_6h_0.4.inst.cfg index 6bed347374..152df5c231 100644 --- a/resources/variants/mingda/mingda_6h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.5.inst.cfg b/resources/variants/mingda/mingda_6h_0.5.inst.cfg index 80d7243cd3..d6b169a31d 100644 --- a/resources/variants/mingda/mingda_6h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.6.inst.cfg b/resources/variants/mingda/mingda_6h_0.6.inst.cfg index d6333520c5..6127da21c6 100644 --- a/resources/variants/mingda/mingda_6h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.8.inst.cfg b/resources/variants/mingda/mingda_6h_0.8.inst.cfg index 0c776ca48f..85389cc3ce 100644 --- a/resources/variants/mingda/mingda_6h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_1.0.inst.cfg b/resources/variants/mingda/mingda_6h_1.0.inst.cfg index c19a0113df..d80bc55c66 100644 --- a/resources/variants/mingda/mingda_6h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_6h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.2.inst.cfg b/resources/variants/mingda/mingda_base_0.2.inst.cfg index ecf6c85f7a..0a15686e0e 100644 --- a/resources/variants/mingda/mingda_base_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.3.inst.cfg b/resources/variants/mingda/mingda_base_0.3.inst.cfg index 4ad14e631b..99fa94227f 100644 --- a/resources/variants/mingda/mingda_base_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.4.inst.cfg b/resources/variants/mingda/mingda_base_0.4.inst.cfg index 7819e22a0c..f7fb8d5df2 100644 --- a/resources/variants/mingda/mingda_base_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.6.inst.cfg b/resources/variants/mingda/mingda_base_0.6.inst.cfg index 458f415aa6..10beb41312 100644 --- a/resources/variants/mingda/mingda_base_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.8.inst.cfg b/resources/variants/mingda/mingda_base_0.8.inst.cfg index d477a9f169..1d2ad177b1 100644 --- a/resources/variants/mingda/mingda_base_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_1.0.inst.cfg b/resources/variants/mingda/mingda_base_1.0.inst.cfg index 4f4415b48f..116c9aa14a 100644 --- a/resources/variants/mingda/mingda_base_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.2.inst.cfg b/resources/variants/mingda/mingda_d2_0.2.inst.cfg index d5affb8e53..e21b3cd2b7 100644 --- a/resources/variants/mingda/mingda_d2_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.3.inst.cfg b/resources/variants/mingda/mingda_d2_0.3.inst.cfg index d1c5787a32..b2a547bdd8 100644 --- a/resources/variants/mingda/mingda_d2_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.4.inst.cfg b/resources/variants/mingda/mingda_d2_0.4.inst.cfg index a93871b21c..5376de9e12 100644 --- a/resources/variants/mingda/mingda_d2_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.5.inst.cfg b/resources/variants/mingda/mingda_d2_0.5.inst.cfg index b1cac2e520..d789d3ae12 100644 --- a/resources/variants/mingda/mingda_d2_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.6.inst.cfg b/resources/variants/mingda/mingda_d2_0.6.inst.cfg index fb12d1eea9..4882facb36 100644 --- a/resources/variants/mingda/mingda_d2_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.8.inst.cfg b/resources/variants/mingda/mingda_d2_0.8.inst.cfg index d5615fd39a..29988563a4 100644 --- a/resources/variants/mingda/mingda_d2_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_1.0.inst.cfg b/resources/variants/mingda/mingda_d2_1.0.inst.cfg index 0fc96e5c06..8d6b600933 100644 --- a/resources/variants/mingda/mingda_d2_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg index 7f7853c047..fc4f1c7691 100644 --- a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg index f51c153ac6..3902fe9382 100644 --- a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg index 3b78e26d93..df885a6d8c 100644 --- a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg index 819d3651df..1e7ea3edf3 100644 --- a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg index b6ceb3d219..943447b373 100644 --- a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg index 5a1796de7e..ba78f3ad3b 100644 --- a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg index 331e3c320b..cdf19e1f32 100644 --- a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg index 44f8f26bb7..5e22ddbdba 100644 --- a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg index 43f510e304..524f1fabf3 100644 --- a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg index 50593d35e8..419b20a788 100644 --- a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg index 3727fb8c90..951ff142d8 100644 --- a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg index e4dbd96907..29ae9047fe 100644 --- a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg index 8010b5cd71..be06af09d1 100644 --- a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg index 8ab02e4b73..95133a78e5 100644 --- a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg index dc6281101d..3b55c8db00 100644 --- a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg index 27a268c2ce..9d4366a870 100644 --- a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg index 3d37b97f89..865b5c38a7 100644 --- a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg index 1b72c3ebe5..e3cf72f3b6 100644 --- a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg index 7808993454..966f5130a4 100644 --- a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg index 0d7f764ad7..5dd6d00fa0 100644 --- a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg index 11ef656d49..24bb35a1c1 100644 --- a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg index d7ed29cccc..9ef8ce19fe 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg index 07d83ef87f..67f1431eb5 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg index c4fc96a6ee..aa6aab046c 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg index 62eb622e30..b839ec1d0c 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg index d2efcf7a54..da1e42c611 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg index 1f790ea81b..dbbaf8e3d2 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg index 96784fcc42..07ad59b957 100644 --- a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg index 9b225512fd..d5894003c9 100644 --- a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg index e82d82deed..d099488477 100644 --- a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg index 3efa1acda7..42bf1a2aea 100644 --- a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg index 141ec15e98..7650d95391 100644 --- a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg index 6fbac0e0ec..cf857c1f20 100644 --- a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg index 7592d1b7e0..870de4153a 100644 --- a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg index a6aac74b09..5a41d9d0f2 100644 --- a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg index 77dbeccb88..defcd8f933 100644 --- a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg index 6ff94a3e13..800871dd75 100644 --- a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg index 6f4ad9490a..f8359902be 100644 --- a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg index 41803b2884..b805f04df1 100644 --- a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg index cbd52b2814..850f67b5e8 100644 --- a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg index 9fb0b2b199..8eb5216db6 100644 --- a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg index e8f7d62672..8447b72e9f 100644 --- a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.4.inst.cfg b/resources/variants/modix/modix_v3_base_0.4.inst.cfg index a5f23659c7..5b37750868 100644 --- a/resources/variants/modix/modix_v3_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.6.inst.cfg b/resources/variants/modix/modix_v3_base_0.6.inst.cfg index ec1144d4b1..dbabf98492 100644 --- a/resources/variants/modix/modix_v3_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.8.inst.cfg b/resources/variants/modix/modix_v3_base_0.8.inst.cfg index b1074fc87b..6ef8ec5499 100644 --- a/resources/variants/modix/modix_v3_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.0.inst.cfg b/resources/variants/modix/modix_v3_base_1.0.inst.cfg index bd4ffc1d0e..a8595dfa38 100644 --- a/resources/variants/modix/modix_v3_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.2.inst.cfg b/resources/variants/modix/modix_v3_base_1.2.inst.cfg index 08371bbe60..4e828e7e60 100644 --- a/resources/variants/modix/modix_v3_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.4.inst.cfg b/resources/variants/modix/modix_v3_base_1.4.inst.cfg index e9fa4ae5fc..37e3bb0e75 100644 --- a/resources/variants/modix/modix_v3_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg index 93c61e90af..fe6cc2a83b 100644 --- a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg index 3b77f92263..168de9019b 100644 --- a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg index ed33a50293..46796e2465 100644 --- a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg index 31a29baaaa..97baaec494 100644 --- a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg index 67239ec5e8..0e50bc74a4 100644 --- a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg index 093d6b2367..ee6b626fac 100644 --- a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg index e4094352be..f5616c932c 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg index 19fdc4d8a2..f8409808e2 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg index 54a1d3f6d7..ad3e029d6b 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg index 1c11bb230c..406ed15e9f 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg index e841cc9841..f4ed85fb32 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg index 522c6bddd5..52e9f2db7c 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg index 9cc8cc9115..4bcc744db8 100644 --- a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg index 64538b559a..c90221d762 100644 --- a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg index 4961c0e72d..03743ef7e7 100644 --- a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg index dfec34fff2..4d13145ef9 100644 --- a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg index 8b97f86daf..75c60cba24 100644 --- a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg index b4c7ac8998..12f9087065 100644 --- a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg index 7f610622eb..334b3fdd25 100644 --- a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg index 86778410ab..a4d8f198a6 100644 --- a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg index 08b13addba..a4bede2ab3 100644 --- a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg index 3b71773371..7fa480344f 100644 --- a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg index dd844eaad8..f909bb1664 100644 --- a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg index 9ebc22a272..8ca72bd87b 100644 --- a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg index 2dc9247c3c..c167d9a364 100644 --- a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg index 9b10cbf5ea..77d2e7d869 100644 --- a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg index bbdc550ae9..f78eb2cd46 100644 --- a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg index a40f3641e6..3a29eb04c7 100644 --- a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg index 5d625d132e..57442605e6 100644 --- a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg index 24e54939a5..eec4b0c020 100644 --- a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg index 5f6eade748..80d289f0ec 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg index f91a2591ec..32f79fb5c2 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg index af13575ebb..be9a3bc5aa 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg index e623a4ad3a..fd415db78c 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg index 4d0db84138..7af93b9ca8 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg index dc5374c87c..1ec078a15b 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.4.inst.cfg b/resources/variants/modix/modix_v4_base_0.4.inst.cfg index 968712e72e..20b290f8e0 100644 --- a/resources/variants/modix/modix_v4_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.6.inst.cfg b/resources/variants/modix/modix_v4_base_0.6.inst.cfg index f83f4e23a4..0a7686fa94 100644 --- a/resources/variants/modix/modix_v4_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.8.inst.cfg b/resources/variants/modix/modix_v4_base_0.8.inst.cfg index ad87dfa4cc..b6138fe8a5 100644 --- a/resources/variants/modix/modix_v4_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.0.inst.cfg b/resources/variants/modix/modix_v4_base_1.0.inst.cfg index fdc01c05e6..0b8d452de9 100644 --- a/resources/variants/modix/modix_v4_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.2.inst.cfg b/resources/variants/modix/modix_v4_base_1.2.inst.cfg index a72ca94779..6646ebb240 100644 --- a/resources/variants/modix/modix_v4_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.4.inst.cfg b/resources/variants/modix/modix_v4_base_1.4.inst.cfg index 62967ea303..c4566049ce 100644 --- a/resources/variants/modix/modix_v4_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg index 9b3b9b5024..102956cec2 100644 --- a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg index 6046383104..73383523c6 100644 --- a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg index d7cc3a4cdf..183cc591cb 100644 --- a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg index 963e9f8ac7..ebd03d757b 100644 --- a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg index 7e84bd034d..e68a57f107 100644 --- a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg index 73d57eedfa..0e9d0c1e11 100644 --- a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg index 1c6672972c..f08b205ec4 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg index 6f0d1c42ae..43030ca973 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg index 36d79c6509..44ad98e724 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg index 6a6a9de9bf..802a77ae4a 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg index 64955ea44f..86dd3c2906 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg index 8b9f425894..887631b977 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg index 64086a3a2b..d85ecc11f0 100644 --- a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg index 5240e89085..4fb2db25a1 100644 --- a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg index 71d1f66537..4223ff5800 100644 --- a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg index 5b69f2036c..1dc41b42c4 100644 --- a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg index f5d5004a37..7438130301 100644 --- a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg index 5fee5b3ee9..0b1b855c5d 100644 --- a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg index a04deb4f41..10cc2ef81a 100644 --- a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg index 07ab30b98d..b75287ea77 100644 --- a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg index 1d0c073349..819a728255 100644 --- a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg index 540a57a2ca..0ebcac7c8c 100644 --- a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg index 051131ac0a..82d5c02894 100644 --- a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg index c109c6e8ee..6431039985 100644 --- a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg index 1c132afabd..6ca14d9e4f 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg index 8258617bf8..659a5ea367 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg index 1db24a8191..dfb7e5a7d8 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg index 9cb4c333f1..9da496c2fd 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg index 54ffc66c2b..b1c0c1ecff 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg index 5cb242da14..1bcfd49dce 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg index 9164f9ea78..d15fcb3e33 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg index e07fbeee22..83c5074fe0 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg index 1c3771a1ce..4a18c9bbd9 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg index 74f748a20e..6bfb893fba 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg index 31e027a18e..836fe73aa7 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg index c46b934fb1..07b3075706 100644 --- a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg index 3c31742b45..c129987d8a 100644 --- a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg index 553f869f01..b93296bb10 100644 --- a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg index 7aaabc3477..d5aeb9f7a2 100644 --- a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg index 1e79ffca33..f2f848bd74 100644 --- a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg index 901033a2ef..c2b8efa783 100644 --- a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg index 59e891f8c1..9983a672c0 100644 --- a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg index 19c37d1768..59ea5a5b43 100644 --- a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg index 6352cdb6bc..1d3c211360 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg index 4a351bd9f4..b51f31f74b 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg index 3a0200217f..72a1e4af82 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg index 44df899221..2d2d6c1894 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg index a0d8c92598..8f7d5e564f 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg index 0753222b53..eb661c46b1 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg index f4c80c3389..5dcb9c0f21 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg index f062f4c7c8..ddde0f5d57 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg index 1a67b8c307..c48c804ca7 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg index 2eca8c927a..e28e46c6f3 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg index 1a7ca3c932..e4313d8cd4 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg index 1af12f82cd..ca5cf526c3 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg index 4b6f94ffba..d2555557bd 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg index c8f002caaa..c2b7a604af 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg index baa8fe1efe..92cebf9f16 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg index 645e14a199..c61fb54785 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg index 48815a8897..4c98005e8f 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg index dc88ce1850..82a99fea57 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg index cf77712b11..26bd2694fb 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg index 80d7a6bbf0..b717ddba37 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg index 0d3801a983..57a264c46f 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg index fba4902ba2..eb143104e6 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg index f4e761ea36..077b12a047 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg index 11de67bfdb..9c0e92ba6a 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg index 191326cae9..6d77055e37 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg index 6e3619f095..a679df4dfa 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg index 5ea05dfa9b..bed8f18029 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg index c2ee92e944..28e451c474 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg index a24e0c6723..cd9d68d198 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg index fbabf642fe..18f4348173 100644 --- a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg index 8681f4a8a1..347bf57f24 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg index c3b364aa41..a442ef7bde 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg index e1c5ce38c8..c55491dee6 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg index 4d5ee05f26..830d27b50d 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg index 2c9a63fd2f..935da59f2c 100644 --- a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg index 28a7abf81a..726ef664a7 100644 --- a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg +++ b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg index 7af87e50c4..8d65c33356 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg index 70ca42b414..c2ef057314 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg index 7b253ecf4b..ac75064b33 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg index c4e1a6771e..3ad815cd8b 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg index e0ec053bda..90c2438996 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg index 93ba24d86e..eb8c5bdbb5 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg index 707b302ed6..a53a7b24b3 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg index 26d51c1bf0..e1e2b3e69a 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg index 7d5eada60a..04e61306df 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg index ecb5cb827f..cfad171f0f 100644 --- a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg index 871a337348..3f43e09a3a 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg index 2c265e3b05..bcb4b874e3 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg index f1479e8199..fa393a1dd0 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg index 287933123f..4654151fb2 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg index bade0df4be..b3480ed5e9 100644 --- a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg index d8cd4cf305..c0cb8fb333 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg index 6162c38a7e..8edd931fdb 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg index e3cde95994..4d7e7f8219 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg index 427f6b3c07..9b5ca24bdb 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg index 0972aeccb6..3677985d8b 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg index 235a3a4558..f8438cedd6 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg index c2af0c2532..89315291b3 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg index 37c7b58f08..c13b23ac8e 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg index b9c1fb3d95..066a4d98ae 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg index 95676e994a..715ac3a152 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg index 7cfc3efc57..3d8d363038 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg index 4c49dec402..0ca3bb0e23 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg index 91bb80628e..5a7c9b526f 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg index 9c0e6ecddc..7b330e1c3a 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg index b078d6089e..bf3340b14c 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg index 40fcf0f556..49a66c4c3a 100644 --- a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg index 95676e994a..715ac3a152 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg index 7cfc3efc57..3d8d363038 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg index 4c49dec402..0ca3bb0e23 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg index 91bb80628e..5a7c9b526f 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg index 9c0e6ecddc..7b330e1c3a 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg index b078d6089e..bf3340b14c 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg index 40fcf0f556..49a66c4c3a 100644 --- a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg index 95676e994a..715ac3a152 100644 --- a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg index 7cfc3efc57..3d8d363038 100644 --- a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg index 4c49dec402..0ca3bb0e23 100644 --- a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg index 91bb80628e..5a7c9b526f 100644 --- a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg index 9c0e6ecddc..7b330e1c3a 100644 --- a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg index b078d6089e..bf3340b14c 100644 --- a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg index 40fcf0f556..49a66c4c3a 100644 --- a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg index 4675382ac7..81349da76a 100644 --- a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg index 1f4dc19dbc..4057f69177 100644 --- a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg index 8a9ff336d6..6b9291bd8d 100644 --- a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg index 18cf8af243..94a629f913 100644 --- a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg index 076b31f4ea..61e30e4eab 100644 --- a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg index 02088701c9..504bad109e 100644 --- a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg index 67c4921b41..e78dd88fd6 100644 --- a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg index f7ef67df9a..33de9ee4d4 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg index 66418fccdd..0213eb636e 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg index b665199027..aaac55d69f 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg index 3ac09cd534..07ccd2a147 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg index 2b4ba7a8e6..1c87439119 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg index d19443e26a..8d70b39c83 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg index 79db65ef8c..9ff8dbaea8 100644 --- a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg index b27c368ba7..7666e55bdc 100644 --- a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg index c0e0ea8e03..c44b266597 100644 --- a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg index 88fe704558..de3a7d5169 100644 --- a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg index aa3b6dcbd6..5967b4af8e 100644 --- a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg index d42f878ed6..a38a7066dc 100644 --- a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg index 6eb0061d4c..f7b13532a7 100644 --- a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg index 72800bf3a1..e50faf0cdf 100644 --- a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg index bbb14c2961..5a5ec666fe 100644 --- a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg index 429aa18024..540734e4fe 100644 --- a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg index d3b7102606..a25f23a876 100644 --- a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg index 398012ed4f..ca6f3c3026 100644 --- a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg index df3b34602a..7abbd4ace5 100644 --- a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg index 80b859c9ff..d05ac30f33 100644 --- a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg index 08a03569a5..0cde8b85d6 100644 --- a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg index e8bb5f9823..0830f9df57 100644 --- a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg index e56a618f9e..b2ea48d0e8 100644 --- a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg index 729f0a8099..6ea8fb50c5 100644 --- a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg index 697c0a8cbd..f2f6b69427 100644 --- a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg index 76afaa4115..7f56a55acb 100644 --- a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg index 57aaba95d0..b543e01be6 100644 --- a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg index 1def6c310d..8d6f97a724 100644 --- a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg index 801913f2a8..dd60026a44 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg index 24746b4b00..d6149d81fe 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg index 36c4c01724..fc09cb8d51 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg index a4ab21f715..50ffbca4ef 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg index d502887d21..4284116889 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg index 4d27ed19d4..7841966848 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg index f45e0f73d0..393ad4a391 100644 --- a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg index 5e1ead766f..f5ab158b09 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg index 87265e5a16..e5dc368f30 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg index 9f04f01e67..4782061a5e 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg index 4ef793240b..2c60f9dabc 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg index fc5ace3f86..40848c0635 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg index 0c4514dfd5..4ed7d93352 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg index 4ed76619dd..3fbe087218 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg index 0ffce60431..07bef503ac 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg index 3f71d27404..8bfa389a3a 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg index 5910177288..134db7ed30 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg index 49688ae6f4..264ecbcb51 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg index 92748d4d3d..e6e34b7ed5 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg index dd9958c48b..7d7a49725c 100644 --- a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg index 37cf713a15..7f8a881e0f 100644 --- a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg index 269c25aaa5..75d5fac372 100644 --- a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg index 58441eba1e..bb98512e0a 100644 --- a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg index 4ab3b3926d..166d91ad4f 100644 --- a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg index 94a250cae2..b92da94bc4 100644 --- a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg index a062e40eaa..3d1713b770 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg index 4f7c872f83..0c4f5532d0 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg index bac385cd61..8da66cdc59 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg index 2200d028c1..0f257dc992 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg index c82ea7b8ce..2cfe6d67ae 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg index a3b6e8ab7a..64c3401b00 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg index 6e59413f39..2fd01c920a 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg index c6f6a59cc9..f563b9747c 100644 --- a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg index 1bcc6f9f80..32aafdd521 100644 --- a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg index 0184650eac..165709bc54 100644 --- a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg index 85f310a75c..7537a54a53 100644 --- a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg index c11278805f..4986fea8f0 100644 --- a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg index db57e2489d..f046b59a42 100644 --- a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg index 25919c41cb..d6e6fa04b6 100644 --- a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg index b74479ed9b..7f8d5d77f7 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg index e423042aba..242fe82db8 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg index 849ff5b549..2ca860adcc 100644 --- a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg index f21aaeb9c4..af7366d0dc 100644 --- a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg index 1b96c65430..cc76b37afe 100644 --- a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg index 5dd314fc6e..51f9a131b6 100644 --- a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg index 4d63f1e315..96f5114cb3 100644 --- a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg index 6eb8ad3808..087154ec4b 100644 --- a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg index e28afbbd31..53180ed703 100644 --- a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg index 4ebd9d8b25..7f08cf6739 100644 --- a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg index 3350cbd461..abbd5b9104 100644 --- a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg index bfc8757ad3..fc404041f9 100644 --- a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg index 34763768cb..306b3bd20e 100644 --- a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg index b8a463eb60..76176419ea 100644 --- a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg index 825d760120..85c480ba5f 100644 --- a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg index c42982fa97..ba011964c3 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg index 518bd27d4f..772fa6b0e7 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg index b503848059..e5e912289d 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg index c64ca108d2..2d64d65753 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg index c02e91690d..a3e76b42bd 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg index 6b486043aa..9ce85d1948 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg index 5c037481a1..a2a9d650c0 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg index 3c571bdb8d..b794afc5cc 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg index d84021788f..b03d79727c 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg index f8b83d537f..c3ad6a0a01 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg index 1e9d8b7813..3c567f55e9 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg index 918b620ec5..3d30a210eb 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg index 151b1b0472..5fc265b73d 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg index b479c96437..68ed73d5a0 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg index bf8a8c4193..45c0699239 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg index 0d1fc72a92..30cc999c85 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg index b90788f72b..dd0797312d 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg index 8671621b0d..b2e05e4e3c 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg index a5a48065b7..8d00fc53a0 100644 --- a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg index 55be830f9a..c3f74b2ff2 100644 --- a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg index bca306577f..983bb2707a 100644 --- a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg index da9038083f..e7738de1e9 100644 --- a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg index d235caf8ba..6076e5e8c9 100644 --- a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg index 6e6a213099..d8b25ad224 100644 --- a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg index 28a372882a..8d27ec1260 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg index bb0bc6c05d..45d827e269 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg index 6e1a243fcd..364269c801 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg index 6f23af4bef..8bb71de169 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg index c4ac917258..43ba1f3f67 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg index dd253d02b3..235383392d 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg index 997eeec980..20cf89220b 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg index b039c68bf9..fde0cc5d1f 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg index 16a41c96f5..80c47be2ec 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg index 0d6fc5596a..0420e531c3 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg index 234f4967b5..a9ebf00d95 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg index 4f47a1d6bb..bcd88a44cd 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg index fa88c7cb80..57bc57ddfd 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg index 0fb159eb58..c7be9ad779 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg index 8788191875..620965a2d1 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg index 8949585430..72cf48b306 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg index 881c9cc12d..ec64cfd9f7 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg index 39730a6794..5641c6b70e 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg index b6d369887d..9ab043adea 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg index 3938926d4e..aefb25fccd 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg index 1460fae852..d326fc2c54 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg index 465351877a..1b571820f1 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg index a61dfa6a41..2b91ca38a8 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg index acf463f1a2..f880734f08 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg index 5d00116eb2..f479b2fe44 100644 --- a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg index 432c55a4b2..90f8840bf6 100644 --- a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg index 70d2416030..782611396e 100644 --- a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg index 125370a247..861f89568f 100644 --- a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg index 2f580b6ed9..245baafa0f 100644 --- a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg index 9bb89c1a05..3f79974636 100644 --- a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg index 732abfd791..3eaf50340f 100644 --- a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg index c0cf712a9e..feb93f5606 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg index 3630aecfe7..9809184ded 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg index faa479d6fa..d5dd57c622 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg index 691bee192b..bd82986d7b 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg index c97ce33271..e1674b869b 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg index e391ad8e20..bf8d94935c 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg index 7553db150a..7c0db3674e 100644 --- a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg index b455cba30a..97e7d95400 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg index abdd6c0a70..8dac0aa45e 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg index ee171d1ca9..bd76f69ba7 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg index e9e702b4de..b3c1f48571 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg index 2c123df75c..b3f25ec45f 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg index c0e271e76f..82ba6d1149 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg index 42e4794f6d..17962feb05 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg index e8efa941e0..4dae08470d 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg index bc8495b121..e8c5240665 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg index 49a3b37883..4db6ef7a14 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg index 750c72175f..ec8b1c0e05 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg index 7d65ea1195..2389c297d5 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg index d2d2e961a2..efe3a49320 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg index 59ecdce721..3e1d1359d8 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg index 3016320978..69b18934e0 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg index 73a9f12332..9b4cd7556a 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg index 6f72dc5c88..74646601a8 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg index 56140477f0..561172151f 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg index 6e0aa7a76a..4fbf0fdbc6 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg index dbe99001e1..7e85eeb090 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg index 9c9f41a21a..89e34709f6 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg index 2b41a131bf..3acd33542a 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg index b9da9cb427..9a0c8603e5 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg index d1435a038f..c7073c3de6 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg index 7939329760..2600b5427d 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg index f390522673..42def08544 100644 --- a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg index fe1f3f7cf8..dcf7ed26bf 100644 --- a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg index 7cf05dc5ce..48abd69593 100644 --- a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg index 96bdd72b37..38698bc60c 100644 --- a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_olsson_0.25.inst.cfg index 7ac69be938..7253cfa770 100644 --- a/resources/variants/ultimaker2_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_olsson_0.4.inst.cfg index b3bd76d2bb..280e4c5685 100644 --- a/resources/variants/ultimaker2_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_olsson_0.6.inst.cfg index 1ef825ce73..09cb447486 100644 --- a/resources/variants/ultimaker2_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_olsson_0.8.inst.cfg index 78f9a448d9..4fc4520653 100644 --- a/resources/variants/ultimaker2_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.25.inst.cfg b/resources/variants/ultimaker2_plus_0.25.inst.cfg index 8191646d70..9132729cb4 100644 --- a/resources/variants/ultimaker2_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.4.inst.cfg b/resources/variants/ultimaker2_plus_0.4.inst.cfg index b93a69a37b..0b787e9f8f 100644 --- a/resources/variants/ultimaker2_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.6.inst.cfg b/resources/variants/ultimaker2_plus_0.6.inst.cfg index 7d26c7235c..f220f13f9e 100644 --- a/resources/variants/ultimaker2_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.8.inst.cfg b/resources/variants/ultimaker2_plus_0.8.inst.cfg index dae23df088..416e1d5c2b 100644 --- a/resources/variants/ultimaker2_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg index 25a6d69377..775f1d291f 100644 --- a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg index 4b03127018..a9b2196149 100644 --- a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg index 12ed089c82..632bf806ee 100644 --- a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg index b049720372..1f74ac2fee 100644 --- a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.25.inst.cfg b/resources/variants/ultimaker3_aa0.25.inst.cfg index 134d7d4806..459f404252 100644 --- a/resources/variants/ultimaker3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index eb1ec461e7..0027d89e1f 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker3_aa04.inst.cfg b/resources/variants/ultimaker3_aa04.inst.cfg index 85c2fcba1c..62c67161a3 100644 --- a/resources/variants/ultimaker3_aa04.inst.cfg +++ b/resources/variants/ultimaker3_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 55a93ee5cc..bb978594fa 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker3_bb04.inst.cfg b/resources/variants/ultimaker3_bb04.inst.cfg index 1c095aa262..a8079cce03 100644 --- a/resources/variants/ultimaker3_bb04.inst.cfg +++ b/resources/variants/ultimaker3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg index 26a65b4a11..2f39270d53 100644 --- a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index bff1fd5469..a2fa403555 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa04.inst.cfg b/resources/variants/ultimaker3_extended_aa04.inst.cfg index f57f1f8bbd..c9821b2243 100644 --- a/resources/variants/ultimaker3_extended_aa04.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index 1db324d395..60dcdcf461 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb04.inst.cfg b/resources/variants/ultimaker3_extended_bb04.inst.cfg index 92416cbe6f..260624037b 100644 --- a/resources/variants/ultimaker3_extended_bb04.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_aa0.25.inst.cfg b/resources/variants/ultimaker_factor4_aa0.25.inst.cfg index 38c39ade0b..7e26c4b2a9 100644 --- a/resources/variants/ultimaker_factor4_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_factor4_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_aa0.8.inst.cfg b/resources/variants/ultimaker_factor4_aa0.8.inst.cfg index 236b3ec0c6..1d5f83a85b 100644 --- a/resources/variants/ultimaker_factor4_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_factor4_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_aa04.inst.cfg b/resources/variants/ultimaker_factor4_aa04.inst.cfg index 60e0f78f99..fbd03a581e 100644 --- a/resources/variants/ultimaker_factor4_aa04.inst.cfg +++ b/resources/variants/ultimaker_factor4_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_bb0.8.inst.cfg b/resources/variants/ultimaker_factor4_bb0.8.inst.cfg index 76edb1bfe6..68cd0e04e3 100644 --- a/resources/variants/ultimaker_factor4_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_factor4_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_bb04.inst.cfg b/resources/variants/ultimaker_factor4_bb04.inst.cfg index 6f9d4da1f0..e7e5eb8555 100644 --- a/resources/variants/ultimaker_factor4_bb04.inst.cfg +++ b/resources/variants/ultimaker_factor4_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_cc04.inst.cfg b/resources/variants/ultimaker_factor4_cc04.inst.cfg index 9810c7f401..cd5465a8b3 100644 --- a/resources/variants/ultimaker_factor4_cc04.inst.cfg +++ b/resources/variants/ultimaker_factor4_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_cc06.inst.cfg b/resources/variants/ultimaker_factor4_cc06.inst.cfg index f1ad3342a6..d29320d391 100644 --- a/resources/variants/ultimaker_factor4_cc06.inst.cfg +++ b/resources/variants/ultimaker_factor4_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_dd04.inst.cfg b/resources/variants/ultimaker_factor4_dd04.inst.cfg index 7cd1fd97e1..8af5999be5 100644 --- a/resources/variants/ultimaker_factor4_dd04.inst.cfg +++ b/resources/variants/ultimaker_factor4_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_ht06.inst.cfg b/resources/variants/ultimaker_factor4_ht06.inst.cfg index 932b139817..95380daf73 100644 --- a/resources/variants/ultimaker_factor4_ht06.inst.cfg +++ b/resources/variants/ultimaker_factor4_ht06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_method_1A.inst.cfg b/resources/variants/ultimaker_method_1A.inst.cfg index d8ac36154a..3032f66736 100644 --- a/resources/variants/ultimaker_method_1A.inst.cfg +++ b/resources/variants/ultimaker_method_1A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14 -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_method_1C.inst.cfg b/resources/variants/ultimaker_method_1C.inst.cfg index b881a01fdc..bf1e01b2cf 100644 --- a/resources/variants/ultimaker_method_1C.inst.cfg +++ b/resources/variants/ultimaker_method_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_method_2A.inst.cfg b/resources/variants/ultimaker_method_2A.inst.cfg index b2f16e4472..eace2852f2 100644 --- a/resources/variants/ultimaker_method_2A.inst.cfg +++ b/resources/variants/ultimaker_method_2A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_s -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_method_LABS.inst.cfg b/resources/variants/ultimaker_method_LABS.inst.cfg index b06ef7f25d..3807f7a97c 100644 --- a/resources/variants/ultimaker_method_LABS.inst.cfg +++ b/resources/variants/ultimaker_method_LABS.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_e -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1A.inst.cfg b/resources/variants/ultimaker_methodx_1A.inst.cfg index 886c14c184..b90a75996f 100644 --- a/resources/variants/ultimaker_methodx_1A.inst.cfg +++ b/resources/variants/ultimaker_methodx_1A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14 -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg index 83dd3e9ed8..a0921ef0a2 100644 --- a/resources/variants/ultimaker_methodx_1C.inst.cfg +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg index 8e940228e8..215fdff8c7 100644 --- a/resources/variants/ultimaker_methodx_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_2A.inst.cfg b/resources/variants/ultimaker_methodx_2A.inst.cfg index 49edb9cf3c..c20e731f06 100644 --- a/resources/variants/ultimaker_methodx_2A.inst.cfg +++ b/resources/variants/ultimaker_methodx_2A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_s -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg index d395d17d53..6e678a8aa1 100644 --- a/resources/variants/ultimaker_methodx_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot_s -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_LABS.inst.cfg b/resources/variants/ultimaker_methodx_LABS.inst.cfg index a150a0df5d..2a6c1d5953 100644 --- a/resources/variants/ultimaker_methodx_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodx_LABS.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_e -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1A.inst.cfg b/resources/variants/ultimaker_methodxl_1A.inst.cfg index b7a54d8242..556801c518 100644 --- a/resources/variants/ultimaker_methodxl_1A.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14 -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg index 299d05d029..c4230791ea 100644 --- a/resources/variants/ultimaker_methodxl_1C.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg index 77965ea525..e0b43b5fc3 100644 --- a/resources/variants/ultimaker_methodxl_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_2A.inst.cfg b/resources/variants/ultimaker_methodxl_2A.inst.cfg index 3a93dfdd9f..870932ecab 100644 --- a/resources/variants/ultimaker_methodxl_2A.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_s -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg index 4e929f2853..43a2ee7e46 100644 --- a/resources/variants/ultimaker_methodxl_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot_s -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_LABS.inst.cfg b/resources/variants/ultimaker_methodxl_LABS.inst.cfg index c579f7f8e6..2c3ea5fe37 100644 --- a/resources/variants/ultimaker_methodxl_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodxl_LABS.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_e -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa0.25.inst.cfg b/resources/variants/ultimaker_s3_aa0.25.inst.cfg index 67d10fdd5f..3617d1ba35 100644 --- a/resources/variants/ultimaker_s3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index 68a3eb620d..2b2359c394 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa04.inst.cfg b/resources/variants/ultimaker_s3_aa04.inst.cfg index 340c5d0f86..639451b4fc 100644 --- a/resources/variants/ultimaker_s3_aa04.inst.cfg +++ b/resources/variants/ultimaker_s3_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index a4677452b4..e66e69f296 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index 79f3f7e8c9..076607d723 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s3_cc04.inst.cfg b/resources/variants/ultimaker_s3_cc04.inst.cfg index 3c010ed581..1c6085a237 100644 --- a/resources/variants/ultimaker_s3_cc04.inst.cfg +++ b/resources/variants/ultimaker_s3_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s3_cc06.inst.cfg b/resources/variants/ultimaker_s3_cc06.inst.cfg index 02d19fd112..913b7d826f 100644 --- a/resources/variants/ultimaker_s3_cc06.inst.cfg +++ b/resources/variants/ultimaker_s3_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s3_dd04.inst.cfg b/resources/variants/ultimaker_s3_dd04.inst.cfg index 803ae14982..c6261a5923 100644 --- a/resources/variants/ultimaker_s3_dd04.inst.cfg +++ b/resources/variants/ultimaker_s3_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa0.25.inst.cfg b/resources/variants/ultimaker_s5_aa0.25.inst.cfg index 904c657549..e35d0d2143 100644 --- a/resources/variants/ultimaker_s5_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index 570f335718..557fcbba89 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa04.inst.cfg b/resources/variants/ultimaker_s5_aa04.inst.cfg index fe44ba9d03..c6fb35be29 100644 --- a/resources/variants/ultimaker_s5_aa04.inst.cfg +++ b/resources/variants/ultimaker_s5_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aluminum.inst.cfg b/resources/variants/ultimaker_s5_aluminum.inst.cfg index 3d926cbfc5..cafa8cf8a2 100644 --- a/resources/variants/ultimaker_s5_aluminum.inst.cfg +++ b/resources/variants/ultimaker_s5_aluminum.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index 92953793fa..22d71e4b0a 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 77dfccf3bf..972bf41aac 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s5_cc04.inst.cfg b/resources/variants/ultimaker_s5_cc04.inst.cfg index de9d490ad8..d6ae99a5af 100644 --- a/resources/variants/ultimaker_s5_cc04.inst.cfg +++ b/resources/variants/ultimaker_s5_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s5_cc06.inst.cfg b/resources/variants/ultimaker_s5_cc06.inst.cfg index d4cd9c6616..1fc5227a73 100644 --- a/resources/variants/ultimaker_s5_cc06.inst.cfg +++ b/resources/variants/ultimaker_s5_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s5_dd04.inst.cfg b/resources/variants/ultimaker_s5_dd04.inst.cfg index 6c0be44f46..a11aefaa31 100644 --- a/resources/variants/ultimaker_s5_dd04.inst.cfg +++ b/resources/variants/ultimaker_s5_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s5_glass.inst.cfg b/resources/variants/ultimaker_s5_glass.inst.cfg index 9cddb47195..2b9cd6158e 100644 --- a/resources/variants/ultimaker_s5_glass.inst.cfg +++ b/resources/variants/ultimaker_s5_glass.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa0.25.inst.cfg b/resources/variants/ultimaker_s7_aa0.25.inst.cfg index 2654143fb8..ded7687d4e 100644 --- a/resources/variants/ultimaker_s7_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa0.8.inst.cfg b/resources/variants/ultimaker_s7_aa0.8.inst.cfg index ffe01b344a..2f51663c89 100644 --- a/resources/variants/ultimaker_s7_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa04.inst.cfg b/resources/variants/ultimaker_s7_aa04.inst.cfg index 7616226964..98beb24b32 100644 --- a/resources/variants/ultimaker_s7_aa04.inst.cfg +++ b/resources/variants/ultimaker_s7_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg index 2f4fb50a8b..6d99ac59c0 100644 --- a/resources/variants/ultimaker_s7_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s7_bb04.inst.cfg b/resources/variants/ultimaker_s7_bb04.inst.cfg index e44142b3ed..e4c061960e 100644 --- a/resources/variants/ultimaker_s7_bb04.inst.cfg +++ b/resources/variants/ultimaker_s7_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s7_cc04.inst.cfg b/resources/variants/ultimaker_s7_cc04.inst.cfg index 30ffef58b6..774aa6d787 100644 --- a/resources/variants/ultimaker_s7_cc04.inst.cfg +++ b/resources/variants/ultimaker_s7_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s7_cc06.inst.cfg b/resources/variants/ultimaker_s7_cc06.inst.cfg index f752b63cf3..6c52067bd7 100644 --- a/resources/variants/ultimaker_s7_cc06.inst.cfg +++ b/resources/variants/ultimaker_s7_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_s7_dd04.inst.cfg b/resources/variants/ultimaker_s7_dd04.inst.cfg index 7ea915f610..4f99e3a92e 100644 --- a/resources/variants/ultimaker_s7_dd04.inst.cfg +++ b/resources/variants/ultimaker_s7_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/ultimaker_sketch_0.4mm.inst.cfg b/resources/variants/ultimaker_sketch_0.4mm.inst.cfg new file mode 100644 index 0000000000..26ab646015 --- /dev/null +++ b/resources/variants/ultimaker_sketch_0.4mm.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch +name = 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = sketch_extruder +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = 0.4mm +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_sketch_large_0.4mm.inst.cfg b/resources/variants/ultimaker_sketch_large_0.4mm.inst.cfg new file mode 100644 index 0000000000..3d9edf5382 --- /dev/null +++ b/resources/variants/ultimaker_sketch_large_0.4mm.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch_large +name = 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = sketch_l_extruder +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = 0.4mm +machine_nozzle_size = 0.4 + diff --git a/resources/variants/uni/uni_200_0.30.inst.cfg b/resources/variants/uni/uni_200_0.30.inst.cfg index 69ea894c63..7bd3c61166 100644 --- a/resources/variants/uni/uni_200_0.30.inst.cfg +++ b/resources/variants/uni/uni_200_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.40.inst.cfg b/resources/variants/uni/uni_200_0.40.inst.cfg index 499866af30..f1d07a2af0 100644 --- a/resources/variants/uni/uni_200_0.40.inst.cfg +++ b/resources/variants/uni/uni_200_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.50.inst.cfg b/resources/variants/uni/uni_200_0.50.inst.cfg index e1948488d3..03585e31ac 100644 --- a/resources/variants/uni/uni_200_0.50.inst.cfg +++ b/resources/variants/uni/uni_200_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.30.inst.cfg b/resources/variants/uni/uni_250_0.30.inst.cfg index 1e2d3e3690..35bd6b6a62 100644 --- a/resources/variants/uni/uni_250_0.30.inst.cfg +++ b/resources/variants/uni/uni_250_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.40.inst.cfg b/resources/variants/uni/uni_250_0.40.inst.cfg index 4ae51548ab..323def1969 100644 --- a/resources/variants/uni/uni_250_0.40.inst.cfg +++ b/resources/variants/uni/uni_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.50.inst.cfg b/resources/variants/uni/uni_250_0.50.inst.cfg index bd91f0063f..2e0a93d581 100644 --- a/resources/variants/uni/uni_250_0.50.inst.cfg +++ b/resources/variants/uni/uni_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.30.inst.cfg b/resources/variants/uni/uni_300_0.30.inst.cfg index 920200412f..c977b273a6 100644 --- a/resources/variants/uni/uni_300_0.30.inst.cfg +++ b/resources/variants/uni/uni_300_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.40.inst.cfg b/resources/variants/uni/uni_300_0.40.inst.cfg index 3d808fc4c0..5fa43f5b0a 100644 --- a/resources/variants/uni/uni_300_0.40.inst.cfg +++ b/resources/variants/uni/uni_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.50.inst.cfg b/resources/variants/uni/uni_300_0.50.inst.cfg index d391121563..1b50c906d3 100644 --- a/resources/variants/uni/uni_300_0.50.inst.cfg +++ b/resources/variants/uni/uni_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.30.inst.cfg b/resources/variants/uni/uni_base_0.30.inst.cfg index e0fec2e1eb..7131785ace 100644 --- a/resources/variants/uni/uni_base_0.30.inst.cfg +++ b/resources/variants/uni/uni_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.40.inst.cfg b/resources/variants/uni/uni_base_0.40.inst.cfg index 090dd0de50..fe4c07ea30 100644 --- a/resources/variants/uni/uni_base_0.40.inst.cfg +++ b/resources/variants/uni/uni_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.50.inst.cfg b/resources/variants/uni/uni_base_0.50.inst.cfg index 094826b97e..56354fe6b4 100644 --- a/resources/variants/uni/uni_base_0.50.inst.cfg +++ b/resources/variants/uni/uni_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.30.inst.cfg b/resources/variants/uni/uni_mini_0.30.inst.cfg index 66adcf1808..3058e8f57e 100644 --- a/resources/variants/uni/uni_mini_0.30.inst.cfg +++ b/resources/variants/uni/uni_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.40.inst.cfg b/resources/variants/uni/uni_mini_0.40.inst.cfg index 0aa9d3e787..03eee536f1 100644 --- a/resources/variants/uni/uni_mini_0.40.inst.cfg +++ b/resources/variants/uni/uni_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.50.inst.cfg b/resources/variants/uni/uni_mini_0.50.inst.cfg index 68fd46d45f..f01147ff67 100644 --- a/resources/variants/uni/uni_mini_0.50.inst.cfg +++ b/resources/variants/uni/uni_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg index d3aead1fe3..85fcebd3ac 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg index ea89fd1110..ef2bda9c98 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg index c30afb6068..f7828ebd95 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg index a4c832975e..dd30ac44f3 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg index e341327f84..37f3e62277 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg index db442efed8..4175213171 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg index 85e144fc67..29b5c6c0a0 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg index 63bf4722b0..72df6c9676 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg index 1c050856b2..5ed27649c5 100644 --- a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg index be6ea9cbab..0efa075d08 100644 --- a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg index e1a6ac0585..b266be0aeb 100644 --- a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg index 527524441e..f04c35c070 100644 --- a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg index 30e7438572..4021c2e8e4 100644 --- a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg index dfd412c82b..88fd09b73c 100644 --- a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg index 115fb34cb5..7b61b4f820 100644 --- a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg index 6d4ac7b9d5..d1d99a7f5f 100644 --- a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg index 344b485789..d7f1e293fe 100644 --- a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg index d0f1014583..d724eb5c1d 100644 --- a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg index 16723a1fe5..7762f29547 100644 --- a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg index 9e4c7061eb..8164c250de 100644 --- a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg index 9841269b46..e490586104 100644 --- a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg index 700a55fecb..c9b3a49e3c 100644 --- a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg index c87b19d995..d6b82aa404 100644 --- a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg index 327bbb42a8..6dc046e777 100644 --- a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg index 8329f46a89..ef1532eb7f 100644 --- a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg index dd51720e8e..6f81edb245 100644 --- a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg index bcac7fb2cb..4594ada324 100644 --- a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg index cb37b9bb50..cf370377d3 100644 --- a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg index 334d665eb2..770283cec5 100644 --- a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg index 584f52bd6c..148eb41889 100644 --- a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg index ee394e8e02..6d2456885c 100644 --- a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg index 9b83eb69b4..546dcba2f4 100644 --- a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg index e027745876..0ec4517885 100644 --- a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg index 0b905e7f38..936cd2153c 100644 --- a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg index e9788c559c..2112eefb2d 100644 --- a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg index ea1154d368..2176d494e6 100644 --- a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg index b1fe306794..9a0b748405 100644 --- a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg index 5d0d2bc2ba..0c1155d9b9 100644 --- a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg index 747fc478ec..1a13da3f24 100644 --- a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg index 4ed5b5f478..766c23ca01 100644 --- a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg index e4cefb2673..33c6f55623 100644 --- a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg index cf3189d2d8..2fcb767454 100644 --- a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg index 1d5840d134..5579136750 100644 --- a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg index 0f2f798723..d834f3282f 100644 --- a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg index 092ebaf869..afdd82386b 100644 --- a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg index c4e67a6e4b..a430efd03e 100644 --- a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg index e214e4a39a..7de610e381 100644 --- a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg index 16fb67b22f..6b2d4f4ca3 100644 --- a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg index 603ca7f7f5..6da5135d5f 100644 --- a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg index e8289b7588..f24b59c0eb 100644 --- a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg index a640cb732d..284f6bfd1f 100644 --- a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg index 2574e3e45c..6f1392d56b 100644 --- a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg index 26e7ac3149..bcb6816e57 100644 --- a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg index d6eb771afa..252cdb1203 100644 --- a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg index 310833dbc0..086e2c7dae 100644 --- a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg index 05aaa43d32..a8398d5808 100644 --- a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg index e662fd7edf..616d567339 100644 --- a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg index 61b74ca313..6a4c18cf26 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg index 4b533d4b6a..50503e6923 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg index 2b66bd9a3c..5133d4291c 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg index ccb7fd0776..6ea28727eb 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg index 0c83605ce1..fc9c6c08f9 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.25.inst.cfg b/resources/variants/voron/voron_trident_250_0.25.inst.cfg index 20c74f4145..307d3ab940 100644 --- a/resources/variants/voron/voron_trident_250_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.40.inst.cfg b/resources/variants/voron/voron_trident_250_0.40.inst.cfg index 2c8a35bc3a..4f599df031 100644 --- a/resources/variants/voron/voron_trident_250_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.50.inst.cfg b/resources/variants/voron/voron_trident_250_0.50.inst.cfg index ca6224ff72..5d0b38e68d 100644 --- a/resources/variants/voron/voron_trident_250_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.60.inst.cfg b/resources/variants/voron/voron_trident_250_0.60.inst.cfg index 2487a87fa1..390a8b1554 100644 --- a/resources/variants/voron/voron_trident_250_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.80.inst.cfg b/resources/variants/voron/voron_trident_250_0.80.inst.cfg index c513b2ccb3..59b579d0fd 100644 --- a/resources/variants/voron/voron_trident_250_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.25.inst.cfg b/resources/variants/voron/voron_trident_300_0.25.inst.cfg index 120e03f615..420ca69dd5 100644 --- a/resources/variants/voron/voron_trident_300_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.40.inst.cfg b/resources/variants/voron/voron_trident_300_0.40.inst.cfg index 2c522afeb6..0334c98e01 100644 --- a/resources/variants/voron/voron_trident_300_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.50.inst.cfg b/resources/variants/voron/voron_trident_300_0.50.inst.cfg index 3ab11833a5..106f1419ec 100644 --- a/resources/variants/voron/voron_trident_300_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.60.inst.cfg b/resources/variants/voron/voron_trident_300_0.60.inst.cfg index 1623f6c293..264f7471b3 100644 --- a/resources/variants/voron/voron_trident_300_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.80.inst.cfg b/resources/variants/voron/voron_trident_300_0.80.inst.cfg index 45aafd8265..1d1de0ea22 100644 --- a/resources/variants/voron/voron_trident_300_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.25.inst.cfg b/resources/variants/voron/voron_trident_350_0.25.inst.cfg index 3ae6061c8b..e594988131 100644 --- a/resources/variants/voron/voron_trident_350_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.40.inst.cfg b/resources/variants/voron/voron_trident_350_0.40.inst.cfg index dee2a7ba3d..cec7a6362a 100644 --- a/resources/variants/voron/voron_trident_350_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.50.inst.cfg b/resources/variants/voron/voron_trident_350_0.50.inst.cfg index 7a058f6d24..9b6a72f8d9 100644 --- a/resources/variants/voron/voron_trident_350_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.60.inst.cfg b/resources/variants/voron/voron_trident_350_0.60.inst.cfg index 910119a1ab..83ddbea0b8 100644 --- a/resources/variants/voron/voron_trident_350_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.80.inst.cfg b/resources/variants/voron/voron_trident_350_0.80.inst.cfg index 28780c7817..7c0f0ba738 100644 --- a/resources/variants/voron/voron_trident_350_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg index a9257c1330..4528a11dce 100644 --- a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg index f7465c1b0f..0860527812 100644 --- a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg index 5e6946a90e..2f22e62a84 100644 --- a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg index 431859e537..c62d62aa7e 100644 --- a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg index a1b50cd27d..b805ef4420 100644 --- a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg index fe74be22a5..9c3bba171e 100644 --- a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg index 05c8252433..be46bb1bc9 100644 --- a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg index c24abe0c1e..15c0cc88f7 100644 --- a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg index c660618cb6..e82cb698a3 100644 --- a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg index 628179d054..425b25deb2 100644 --- a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg index 2cd1016035..e77e2e0bb0 100644 --- a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg index b4dd2d553b..9893dc80b5 100644 --- a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg index 763c2896ef..7122a35583 100644 --- a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg index 81e8965c38..462daa79cf 100644 --- a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg index 8f222cf3b6..feaf56a257 100644 --- a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg index 6d0ca279d4..d694068b67 100644 --- a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg index c96251e4de..fcb6aec137 100644 --- a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg index 5f423faf6d..bd51d113f7 100644 --- a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg index b6a7ba7cd2..37348590fd 100644 --- a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg index f1f8ce8dde..d689d57e0a 100644 --- a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg index d6e97c5dc6..a6162892ef 100644 --- a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg index 842899a87d..5a04f0e44d 100644 --- a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg index e4d1d430be..29b5a8e0dd 100644 --- a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg index 0deed9bddc..cd65329364 100644 --- a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg index 2c1b78428d..b9e3d298ab 100644 --- a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg index 4497514788..873d9044c2 100644 --- a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg index 8c9fc89fde..7825999a5b 100644 --- a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg index 6c068f79b1..c1853b2ab1 100644 --- a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg index 9d05b2fb23..97e1230e2b 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg index 815369bc27..6a8426db7d 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg index da97849b69..44fc7fb7f6 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg index 17e90ab90e..24eca7647a 100644 --- a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg index 020b6c5a43..8d23a7076c 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg index cf7cbea347..9907ec397f 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg index 9f40514694..0e220fdbd4 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg index a6e75293f3..11c2199f06 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg index 70b3254b58..6d11d2b8d7 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg index 9a064a3773..ab1bf9f222 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg index bc19df88e0..f7b4aa31c3 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg index b9d1015754..92c2fa5342 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg index eb89d9c434..b348680c52 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg index b2e4e94d33..a129c436a5 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg index 13c4eadee7..7ab6fe1592 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg index fab6b115f0..dde9f355a8 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg index 0614a7c60a..8cb091e813 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.20.inst.cfg b/resources/variants/zav/zav_base_0.20.inst.cfg index ad0e738e39..b009bce850 100644 --- a/resources/variants/zav/zav_base_0.20.inst.cfg +++ b/resources/variants/zav/zav_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.25.inst.cfg b/resources/variants/zav/zav_base_0.25.inst.cfg index f383c876ef..4fe06833f9 100644 --- a/resources/variants/zav/zav_base_0.25.inst.cfg +++ b/resources/variants/zav/zav_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.30.inst.cfg b/resources/variants/zav/zav_base_0.30.inst.cfg index 65da7fa142..5d5b1abd8f 100644 --- a/resources/variants/zav/zav_base_0.30.inst.cfg +++ b/resources/variants/zav/zav_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.35.inst.cfg b/resources/variants/zav/zav_base_0.35.inst.cfg index a2dfed7389..19b8e25064 100644 --- a/resources/variants/zav/zav_base_0.35.inst.cfg +++ b/resources/variants/zav/zav_base_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.40.inst.cfg b/resources/variants/zav/zav_base_0.40.inst.cfg index 8a9ae2ab91..8eac67a42b 100644 --- a/resources/variants/zav/zav_base_0.40.inst.cfg +++ b/resources/variants/zav/zav_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.45.inst.cfg b/resources/variants/zav/zav_base_0.45.inst.cfg index 9df3434ecf..c26f63f0cb 100644 --- a/resources/variants/zav/zav_base_0.45.inst.cfg +++ b/resources/variants/zav/zav_base_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.50.inst.cfg b/resources/variants/zav/zav_base_0.50.inst.cfg index 4e94f54a22..802ab4a555 100644 --- a/resources/variants/zav/zav_base_0.50.inst.cfg +++ b/resources/variants/zav/zav_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.60.inst.cfg b/resources/variants/zav/zav_base_0.60.inst.cfg index 5198dc479a..cfc4044c63 100644 --- a/resources/variants/zav/zav_base_0.60.inst.cfg +++ b/resources/variants/zav/zav_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.80.inst.cfg b/resources/variants/zav/zav_base_0.80.inst.cfg index 4fc53197d4..af6e2a1b07 100644 --- a/resources/variants/zav/zav_base_0.80.inst.cfg +++ b/resources/variants/zav/zav_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_base_1.00.inst.cfg b/resources/variants/zav/zav_base_1.00.inst.cfg index a4995d2ad0..e6b8935b03 100644 --- a/resources/variants/zav/zav_base_1.00.inst.cfg +++ b/resources/variants/zav/zav_base_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.20.inst.cfg b/resources/variants/zav/zav_big_0.20.inst.cfg index 10fd2eaf80..5fba01efd9 100644 --- a/resources/variants/zav/zav_big_0.20.inst.cfg +++ b/resources/variants/zav/zav_big_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.25.inst.cfg b/resources/variants/zav/zav_big_0.25.inst.cfg index d52f66eb51..b208dd49e1 100644 --- a/resources/variants/zav/zav_big_0.25.inst.cfg +++ b/resources/variants/zav/zav_big_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.30.inst.cfg b/resources/variants/zav/zav_big_0.30.inst.cfg index 70a15fb6a1..796def65dc 100644 --- a/resources/variants/zav/zav_big_0.30.inst.cfg +++ b/resources/variants/zav/zav_big_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.35.inst.cfg b/resources/variants/zav/zav_big_0.35.inst.cfg index d57c6c0fef..568ca80b31 100644 --- a/resources/variants/zav/zav_big_0.35.inst.cfg +++ b/resources/variants/zav/zav_big_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.40.inst.cfg b/resources/variants/zav/zav_big_0.40.inst.cfg index bb82e0db54..62ffd582c3 100644 --- a/resources/variants/zav/zav_big_0.40.inst.cfg +++ b/resources/variants/zav/zav_big_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.45.inst.cfg b/resources/variants/zav/zav_big_0.45.inst.cfg index 904d4911e2..ad3656eee7 100644 --- a/resources/variants/zav/zav_big_0.45.inst.cfg +++ b/resources/variants/zav/zav_big_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.50.inst.cfg b/resources/variants/zav/zav_big_0.50.inst.cfg index 00de9e8790..9df5f9a8e2 100644 --- a/resources/variants/zav/zav_big_0.50.inst.cfg +++ b/resources/variants/zav/zav_big_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.60.inst.cfg b/resources/variants/zav/zav_big_0.60.inst.cfg index 67c856f703..97965e7915 100644 --- a/resources/variants/zav/zav_big_0.60.inst.cfg +++ b/resources/variants/zav/zav_big_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.80.inst.cfg b/resources/variants/zav/zav_big_0.80.inst.cfg index 0b18636938..20f5f87b64 100644 --- a/resources/variants/zav/zav_big_0.80.inst.cfg +++ b/resources/variants/zav/zav_big_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_big_1.00.inst.cfg b/resources/variants/zav/zav_big_1.00.inst.cfg index a726d9d05b..230092454f 100644 --- a/resources/variants/zav/zav_big_1.00.inst.cfg +++ b/resources/variants/zav/zav_big_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.20.inst.cfg b/resources/variants/zav/zav_bigplus_0.20.inst.cfg index 331dd6f067..70b79abd7c 100644 --- a/resources/variants/zav/zav_bigplus_0.20.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.25.inst.cfg b/resources/variants/zav/zav_bigplus_0.25.inst.cfg index 8097438232..0716b057bf 100644 --- a/resources/variants/zav/zav_bigplus_0.25.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.30.inst.cfg b/resources/variants/zav/zav_bigplus_0.30.inst.cfg index 838d6f4394..398b9280b6 100644 --- a/resources/variants/zav/zav_bigplus_0.30.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.35.inst.cfg b/resources/variants/zav/zav_bigplus_0.35.inst.cfg index 1525949e3b..7a3720b58f 100644 --- a/resources/variants/zav/zav_bigplus_0.35.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.40.inst.cfg b/resources/variants/zav/zav_bigplus_0.40.inst.cfg index b463d344ad..57e340d2fa 100644 --- a/resources/variants/zav/zav_bigplus_0.40.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.45.inst.cfg b/resources/variants/zav/zav_bigplus_0.45.inst.cfg index 15b91bf090..456e5421c0 100644 --- a/resources/variants/zav/zav_bigplus_0.45.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.50.inst.cfg b/resources/variants/zav/zav_bigplus_0.50.inst.cfg index 7fbdcae3dc..d565643a99 100644 --- a/resources/variants/zav/zav_bigplus_0.50.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.60.inst.cfg b/resources/variants/zav/zav_bigplus_0.60.inst.cfg index a017964412..460852033a 100644 --- a/resources/variants/zav/zav_bigplus_0.60.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.80.inst.cfg b/resources/variants/zav/zav_bigplus_0.80.inst.cfg index 7d05464c35..e41050574e 100644 --- a/resources/variants/zav/zav_bigplus_0.80.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_1.00.inst.cfg b/resources/variants/zav/zav_bigplus_1.00.inst.cfg index 9df217c9d2..b421037b6b 100644 --- a/resources/variants/zav/zav_bigplus_1.00.inst.cfg +++ b/resources/variants/zav/zav_bigplus_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.20.inst.cfg b/resources/variants/zav/zav_l_0.20.inst.cfg index 36c221e17e..4f5775559c 100644 --- a/resources/variants/zav/zav_l_0.20.inst.cfg +++ b/resources/variants/zav/zav_l_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.25.inst.cfg b/resources/variants/zav/zav_l_0.25.inst.cfg index 5c70cc59e2..1f9078aa99 100644 --- a/resources/variants/zav/zav_l_0.25.inst.cfg +++ b/resources/variants/zav/zav_l_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.30.inst.cfg b/resources/variants/zav/zav_l_0.30.inst.cfg index b3b27911ac..d60a46f990 100644 --- a/resources/variants/zav/zav_l_0.30.inst.cfg +++ b/resources/variants/zav/zav_l_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.35.inst.cfg b/resources/variants/zav/zav_l_0.35.inst.cfg index 363456995d..5bbf78ee11 100644 --- a/resources/variants/zav/zav_l_0.35.inst.cfg +++ b/resources/variants/zav/zav_l_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.40.inst.cfg b/resources/variants/zav/zav_l_0.40.inst.cfg index c6669ad9a4..fa72ee7006 100644 --- a/resources/variants/zav/zav_l_0.40.inst.cfg +++ b/resources/variants/zav/zav_l_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.45.inst.cfg b/resources/variants/zav/zav_l_0.45.inst.cfg index 65db0556ea..a421c23e8d 100644 --- a/resources/variants/zav/zav_l_0.45.inst.cfg +++ b/resources/variants/zav/zav_l_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.50.inst.cfg b/resources/variants/zav/zav_l_0.50.inst.cfg index e3f2ef936d..2dbc1b9f2d 100644 --- a/resources/variants/zav/zav_l_0.50.inst.cfg +++ b/resources/variants/zav/zav_l_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.60.inst.cfg b/resources/variants/zav/zav_l_0.60.inst.cfg index 4931819d79..0d607963d7 100644 --- a/resources/variants/zav/zav_l_0.60.inst.cfg +++ b/resources/variants/zav/zav_l_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.80.inst.cfg b/resources/variants/zav/zav_l_0.80.inst.cfg index e142040df6..ec2d548e9d 100644 --- a/resources/variants/zav/zav_l_0.80.inst.cfg +++ b/resources/variants/zav/zav_l_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_l_1.00.inst.cfg b/resources/variants/zav/zav_l_1.00.inst.cfg index 32bd8bc3ab..080b46bb82 100644 --- a/resources/variants/zav/zav_l_1.00.inst.cfg +++ b/resources/variants/zav/zav_l_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.20.inst.cfg b/resources/variants/zav/zav_max_0.20.inst.cfg index b7d24f2b1b..803b670873 100644 --- a/resources/variants/zav/zav_max_0.20.inst.cfg +++ b/resources/variants/zav/zav_max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.25.inst.cfg b/resources/variants/zav/zav_max_0.25.inst.cfg index d3b54f4cbd..96738b8b4b 100644 --- a/resources/variants/zav/zav_max_0.25.inst.cfg +++ b/resources/variants/zav/zav_max_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.30.inst.cfg b/resources/variants/zav/zav_max_0.30.inst.cfg index cc335e2d23..3054ecf793 100644 --- a/resources/variants/zav/zav_max_0.30.inst.cfg +++ b/resources/variants/zav/zav_max_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.35.inst.cfg b/resources/variants/zav/zav_max_0.35.inst.cfg index a5daa9a266..e0e18071dd 100644 --- a/resources/variants/zav/zav_max_0.35.inst.cfg +++ b/resources/variants/zav/zav_max_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.40.inst.cfg b/resources/variants/zav/zav_max_0.40.inst.cfg index f0d48219f4..f052c26bcd 100644 --- a/resources/variants/zav/zav_max_0.40.inst.cfg +++ b/resources/variants/zav/zav_max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.45.inst.cfg b/resources/variants/zav/zav_max_0.45.inst.cfg index 1ec70c2d33..fa8c6c01a8 100644 --- a/resources/variants/zav/zav_max_0.45.inst.cfg +++ b/resources/variants/zav/zav_max_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.50.inst.cfg b/resources/variants/zav/zav_max_0.50.inst.cfg index 6e3c61c142..9ab9fac927 100644 --- a/resources/variants/zav/zav_max_0.50.inst.cfg +++ b/resources/variants/zav/zav_max_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.60.inst.cfg b/resources/variants/zav/zav_max_0.60.inst.cfg index 56dcfa5b4e..c2cb5c9ead 100644 --- a/resources/variants/zav/zav_max_0.60.inst.cfg +++ b/resources/variants/zav/zav_max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.80.inst.cfg b/resources/variants/zav/zav_max_0.80.inst.cfg index 7899a7d321..981a4152c4 100644 --- a/resources/variants/zav/zav_max_0.80.inst.cfg +++ b/resources/variants/zav/zav_max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_max_1.00.inst.cfg b/resources/variants/zav/zav_max_1.00.inst.cfg index c14b0b25a0..aa3f942513 100644 --- a/resources/variants/zav/zav_max_1.00.inst.cfg +++ b/resources/variants/zav/zav_max_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.20.inst.cfg b/resources/variants/zav/zav_maxpro_0.20.inst.cfg index 2f693153e2..d69fdc3bd8 100644 --- a/resources/variants/zav/zav_maxpro_0.20.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.25.inst.cfg b/resources/variants/zav/zav_maxpro_0.25.inst.cfg index 07b3cbb299..d3540a8899 100644 --- a/resources/variants/zav/zav_maxpro_0.25.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.30.inst.cfg b/resources/variants/zav/zav_maxpro_0.30.inst.cfg index becb97fbaf..e489a70853 100644 --- a/resources/variants/zav/zav_maxpro_0.30.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.35.inst.cfg b/resources/variants/zav/zav_maxpro_0.35.inst.cfg index bf9ad26e28..3b91dee797 100644 --- a/resources/variants/zav/zav_maxpro_0.35.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.40.inst.cfg b/resources/variants/zav/zav_maxpro_0.40.inst.cfg index bd99c76885..7b10cc1b87 100644 --- a/resources/variants/zav/zav_maxpro_0.40.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.45.inst.cfg b/resources/variants/zav/zav_maxpro_0.45.inst.cfg index 8848639582..4c40addeae 100644 --- a/resources/variants/zav/zav_maxpro_0.45.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.50.inst.cfg b/resources/variants/zav/zav_maxpro_0.50.inst.cfg index 9aba2b9fbb..5295e71b5b 100644 --- a/resources/variants/zav/zav_maxpro_0.50.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.60.inst.cfg b/resources/variants/zav/zav_maxpro_0.60.inst.cfg index 027a4fc96a..dbfd2a7951 100644 --- a/resources/variants/zav/zav_maxpro_0.60.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.80.inst.cfg b/resources/variants/zav/zav_maxpro_0.80.inst.cfg index 1ef39b3663..0ed41a07ca 100644 --- a/resources/variants/zav/zav_maxpro_0.80.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_1.00.inst.cfg b/resources/variants/zav/zav_maxpro_1.00.inst.cfg index 15872422f6..4297f0ae49 100644 --- a/resources/variants/zav/zav_maxpro_1.00.inst.cfg +++ b/resources/variants/zav/zav_maxpro_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.20.inst.cfg b/resources/variants/zav/zav_mini_0.20.inst.cfg index f66717ae19..b908f49b38 100644 --- a/resources/variants/zav/zav_mini_0.20.inst.cfg +++ b/resources/variants/zav/zav_mini_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.25.inst.cfg b/resources/variants/zav/zav_mini_0.25.inst.cfg index fe43c80041..e4338815cc 100644 --- a/resources/variants/zav/zav_mini_0.25.inst.cfg +++ b/resources/variants/zav/zav_mini_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.30.inst.cfg b/resources/variants/zav/zav_mini_0.30.inst.cfg index d393760b57..9d1f070611 100644 --- a/resources/variants/zav/zav_mini_0.30.inst.cfg +++ b/resources/variants/zav/zav_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.35.inst.cfg b/resources/variants/zav/zav_mini_0.35.inst.cfg index f33ef12e6f..4eef0a1c35 100644 --- a/resources/variants/zav/zav_mini_0.35.inst.cfg +++ b/resources/variants/zav/zav_mini_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.40.inst.cfg b/resources/variants/zav/zav_mini_0.40.inst.cfg index 3d16bc3a11..1428ccbd4a 100644 --- a/resources/variants/zav/zav_mini_0.40.inst.cfg +++ b/resources/variants/zav/zav_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.45.inst.cfg b/resources/variants/zav/zav_mini_0.45.inst.cfg index 827aa1fe3b..51f2214014 100644 --- a/resources/variants/zav/zav_mini_0.45.inst.cfg +++ b/resources/variants/zav/zav_mini_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.50.inst.cfg b/resources/variants/zav/zav_mini_0.50.inst.cfg index 70e5fe2fd7..588085d74a 100644 --- a/resources/variants/zav/zav_mini_0.50.inst.cfg +++ b/resources/variants/zav/zav_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.60.inst.cfg b/resources/variants/zav/zav_mini_0.60.inst.cfg index d7f4915d17..679effa7b5 100644 --- a/resources/variants/zav/zav_mini_0.60.inst.cfg +++ b/resources/variants/zav/zav_mini_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.80.inst.cfg b/resources/variants/zav/zav_mini_0.80.inst.cfg index f1518d7e77..78f39678fe 100644 --- a/resources/variants/zav/zav_mini_0.80.inst.cfg +++ b/resources/variants/zav/zav_mini_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values] diff --git a/resources/variants/zav/zav_mini_1.00.inst.cfg b/resources/variants/zav/zav_mini_1.00.inst.cfg index 3e85f4c25f..3ebc1b8b97 100644 --- a/resources/variants/zav/zav_mini_1.00.inst.cfg +++ b/resources/variants/zav/zav_mini_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 24 type = variant [values]