From 1889aa7407d5656d4144aa07c5c7e4abe8b8d061 Mon Sep 17 00:00:00 2001 From: Samuel Lopez <85613111+Samuelopez-ansys@users.noreply.github.com> Date: Mon, 16 Dec 2024 20:48:34 +0100 Subject: [PATCH 01/11] FIX: Allow non graphical mode for Import GDSII in 3D (#5571) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sébastien Morais <146729917+SMoraisAnsys@users.noreply.github.com> --- src/ansys/aedt/core/application/analysis_3d.py | 8 ++++---- tests/system/general/test_20_HFSS.py | 5 ++++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/ansys/aedt/core/application/analysis_3d.py b/src/ansys/aedt/core/application/analysis_3d.py index 9a4e2c7afae..42a22969d7d 100644 --- a/src/ansys/aedt/core/application/analysis_3d.py +++ b/src/ansys/aedt/core/application/analysis_3d.py @@ -1333,7 +1333,7 @@ def import_dxf( >>> oEditor.ImportDXF """ - if self.desktop_class.non_graphical and self.desktop_class.aedt_version_id < "2024.2": + if self.desktop_class.non_graphical and self.desktop_class.aedt_version_id < "2024.2": # pragma: no cover self.logger.error("Method is supported only in graphical mode.") return False dxf_layers = self.get_dxf_layers(file_path) @@ -1376,7 +1376,7 @@ def import_dxf( return True @pyaedt_function_handler(gds_file="input_file", gds_number="mapping_layers", unit="units") - def import_gds_3d(self, input_file, mapping_layers, units="um", import_method=1): # pragma: no cover + def import_gds_3d(self, input_file: str, mapping_layers: dict, units: str = "um", import_method: int = 1) -> bool: """Import a GDSII file. Parameters @@ -1385,7 +1385,7 @@ def import_gds_3d(self, input_file, mapping_layers, units="um", import_method=1) Path to the GDS file. mapping_layers : dict Dictionary keys are GDS layer numbers, and the value is a tuple with the thickness and elevation. - units : string, optional + units : str, optional Length unit values. The default is ``"um"``. import_method : integer, optional GDSII import method. The default is ``1``. Options are: @@ -1414,7 +1414,7 @@ def import_gds_3d(self, input_file, mapping_layers, units="um", import_method=1) """ - if self.desktop_class.non_graphical: + if self.desktop_class.non_graphical and self.desktop_class.aedt_version_id < "2024.1": # pragma: no cover self.logger.error("Method is supported only in graphical mode.") return False if not os.path.exists(input_file): diff --git a/tests/system/general/test_20_HFSS.py b/tests/system/general/test_20_HFSS.py index e4df99e6860..5968ce166e5 100644 --- a/tests/system/general/test_20_HFSS.py +++ b/tests/system/general/test_20_HFSS.py @@ -1698,13 +1698,16 @@ def test_67_transient_composite(self, add_app): assert aedtapp.solution_type == "Transient Composite" aedtapp.close_project(save=False) - @pytest.mark.skipif(config["NonGraphical"], reason="Test fails on build machine") def test_68_import_gds_3d(self): self.aedtapp.insert_design("gds_import_H3D") gds_file = os.path.join(TESTS_GENERAL_PATH, "example_models", "cad", "GDS", "gds1.gds") assert self.aedtapp.import_gds_3d(gds_file, {7: (100, 10), 9: (110, 5)}) + assert len(self.aedtapp.modeler.solid_names) == 3 + assert len(self.aedtapp.modeler.sheet_names) == 0 assert self.aedtapp.import_gds_3d(gds_file, {7: (0, 0), 9: (0, 0)}) + assert len(self.aedtapp.modeler.sheet_names) == 3 assert self.aedtapp.import_gds_3d(gds_file, {7: (100e-3, 10e-3), 9: (110e-3, 5e-3)}, "mm", 0) + assert len(self.aedtapp.modeler.solid_names) == 6 assert not self.aedtapp.import_gds_3d(gds_file, {}) gds_file = os.path.join(TESTS_GENERAL_PATH, "example_models", "cad", "GDS", "gds1not.gds") assert not self.aedtapp.import_gds_3d(gds_file, {7: (100, 10), 9: (110, 5)}) From 75afcb87ff12a3608cc109c07bb955b79a394e96 Mon Sep 17 00:00:00 2001 From: gmalinve <103059376+gmalinve@users.noreply.github.com> Date: Tue, 17 Dec 2024 11:39:54 +0100 Subject: [PATCH 02/11] CHORE: refacto maxwell 2d tests (#5577) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sébastien Morais <146729917+SMoraisAnsys@users.noreply.github.com> --- src/ansys/aedt/core/application/analysis.py | 2 +- src/ansys/aedt/core/maxwell.py | 4 +- .../TMaxwell/External_Circuit.aedt | 2111 - ...R2019R3_231.aedt => Maxwell_2D_Tests.aedt} | 163943 +++++++-------- .../TMaxwell/Motor_EM_R2019R3.aedt | 117461 ----------- .../TMaxwell/Motor_EM_R2019R3.jpg | Bin 22351 -> 0 bytes .../TMaxwell/Motor_EM_R2019R3_231.jpg | Bin 20521 -> 0 bytes tests/system/general/test_27_Maxwell2D.py | 1127 +- 8 files changed, 71461 insertions(+), 213187 deletions(-) delete mode 100644 tests/system/general/example_models/TMaxwell/External_Circuit.aedt rename tests/system/general/example_models/TMaxwell/{Motor_EM_R2019R3_231.aedt => Maxwell_2D_Tests.aedt} (73%) delete mode 100644 tests/system/general/example_models/TMaxwell/Motor_EM_R2019R3.aedt delete mode 100644 tests/system/general/example_models/TMaxwell/Motor_EM_R2019R3.jpg delete mode 100644 tests/system/general/example_models/TMaxwell/Motor_EM_R2019R3_231.jpg diff --git a/src/ansys/aedt/core/application/analysis.py b/src/ansys/aedt/core/application/analysis.py index 9858bf136f7..b7568fc1e19 100644 --- a/src/ansys/aedt/core/application/analysis.py +++ b/src/ansys/aedt/core/application/analysis.py @@ -1658,7 +1658,7 @@ def get_object_material_properties(self, assignment=None, prop_names=None): dict = {} for entry in assignment: mat_name = self.modeler[entry].material_name - mat_props = self._materials[mat_name] + mat_props = self.materials.material_keys[mat_name] if prop_names is None: dict[entry] = mat_props._props else: diff --git a/src/ansys/aedt/core/maxwell.py b/src/ansys/aedt/core/maxwell.py index 779e331c36c..cf458e729f1 100644 --- a/src/ansys/aedt/core/maxwell.py +++ b/src/ansys/aedt/core/maxwell.py @@ -1667,7 +1667,7 @@ def assign_current_density( bool ``True`` when successful, ``False`` when failed. """ - if self.solution_type in ["EddyCurrent", "Magnetostatic"]: + if self.solution_type in ["EddyCurrent", "Magnetostatic", "Transient"]: if current_density_name is None: current_density_name = generate_unique_name("CurrentDensity") if re.compile(r"(\d+)\s*(\w+)").match(phase).groups()[1] not in ["deg", "degmin", "degsec", "rad"]: @@ -1722,7 +1722,6 @@ def assign_current_density( props[current_density_group_names[0]] = dict( { "Objects": objects_list, - "Phase": phase, "Value": current_density_2d, "CoordinateSystem": "", } @@ -1732,7 +1731,6 @@ def assign_current_density( props = dict( { "Objects": objects_list, - "Phase": phase, "Value": current_density_2d, "CoordinateSystem": "", } diff --git a/tests/system/general/example_models/TMaxwell/External_Circuit.aedt b/tests/system/general/example_models/TMaxwell/External_Circuit.aedt deleted file mode 100644 index 9e89e71841d..00000000000 --- a/tests/system/general/example_models/TMaxwell/External_Circuit.aedt +++ /dev/null @@ -1,2111 +0,0 @@ -$begin 'AnsoftProject' - Created='Mon Jul 15 13:02:34 2024' - Product='ElectronicsDesktop' - FileOwnedByWorkbench=false - $begin 'Desktop' - Version(2024, 1) - InfrastructureVersion(1, 0) - $begin 'FactoryHeader' - $begin 'geometry3deditor' - KernelVersion(2, 0) - ProjectContainsGeometry3D='1' - $end 'geometry3deditor' - $end 'FactoryHeader' - $end 'Desktop' - UsesAdvancedFeatures=false - NextUniqueID=0 - MoveBackwards=false - $begin 'HFSSEnvironment' - Version(1, 0) - $end 'HFSSEnvironment' - $begin 'PlanarEMEnvironment' - Version(1, 0) - $end 'PlanarEMEnvironment' - $begin 'Q3DEnvironment' - Version(1, 0) - $end 'Q3DEnvironment' - $begin '2DExtractorEnvironment' - Version(1, 0) - $end '2DExtractorEnvironment' - $begin 'NexximEnvironment' - Version(1, 0) - $end 'NexximEnvironment' - $begin 'NexximNetlistEnvironment' - Version(1, 0) - $end 'NexximNetlistEnvironment' - $begin 'EmitEnvironment' - Version(1, 0) - $end 'EmitEnvironment' - $begin 'Maxwell3DEnvironment' - Version(1, 0) - $end 'Maxwell3DEnvironment' - $begin 'Maxwell2DEnvironment' - Version(1, 0) - $end 'Maxwell2DEnvironment' - $begin 'RMxprtEnvironment' - Version(1, 0) - $end 'RMxprtEnvironment' - $begin 'MaxCirEnvironment' - Version(1, 0) - $end 'MaxCirEnvironment' - $begin 'SimplorerEnvironment' - Version(1, 0) - $end 'SimplorerEnvironment' - $begin 'IcepakEnvironment' - Version(1, 0) - $end 'IcepakEnvironment' - $begin 'MechanicalEnvironment' - Version(1, 0) - $end 'MechanicalEnvironment' - $begin 'SchematicEnvironment' - Version(1, 0) - $end 'SchematicEnvironment' - $begin 'geometry3deditor' - Version(1, 0) - $end 'geometry3deditor' - ReadVersion=11 - $begin 'DesignMgrEnvironment' - CompInstCounter=58881 - GPortCounter=0 - NetCounter=0 - Alias('Ieee;Simplorer Elements\\Ieee', 'Std;Simplorer Elements\\Std', 'Basic_VHDLAMS;Simplorer Elements\\Basic Elements VHDLAMS\\Basic Elements VHDLAMS', 'Digital_Elements;Simplorer Elements\\Digital Elements\\Digital Elements', 'Transformations;Simplorer Elements\\Tools\\Transformations\\Transformations', 'HEV_VHDLAMS;Simplorer Elements\\HEV VHDLAMS\\HEV VHDLAMS', 'automotive_vda;Simplorer Elements\\VDALibs VHDLAMS\\automotive_vda', 'example_boardnet;Simplorer Elements\\VDALibs VHDLAMS\\example_boardnet', 'example_ecar;Simplorer Elements\\VDALibs VHDLAMS\\example_ecar', 'fundamentals_vda;Simplorer Elements\\VDALibs VHDLAMS\\fundamentals_vda', 'hybrid_emc_vda;Simplorer Elements\\VDALibs VHDLAMS\\hybrid_emc_vda', 'megma;Simplorer Elements\\VDALibs VHDLAMS\\megma', 'modelica_rotational;Simplorer Elements\\VDALibs VHDLAMS\\modelica_rotational', 'modelica_thermal;Simplorer Elements\\VDALibs VHDLAMS\\modelica_thermal', 'modelica_translational;Simplorer Elements\\VDALibs VHDLAMS\\modelica_translational', 'spice2vhd;Simplorer Elements\\VDALibs VHDLAMS\\spice2vhd', 'spice2vhd_devices;Simplorer Elements\\VDALibs VHDLAMS\\spice2vhd_devices', 'aircraft_electrical_vhdlams;Simplorer Elements\\Aircraft Electrical VHDLAMS\\Aircraft Electrical VHDLAMS', 'power_system_vhdlams;Simplorer Elements\\Power System VHDLAMS\\Power System VHDLAMS') - $end 'DesignMgrEnvironment' - $begin 'ProjectDatasets' - NextUniqueID=0 - MoveBackwards=false - DatasetType='ProjectDatasetType' - $begin 'DatasetDefinitions' - $end 'DatasetDefinitions' - $end 'ProjectDatasets' - VariableOrders[0:] - $begin 'Definitions' - $begin 'Materials' - $begin 'vacuum' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=230 - Green=230 - Blue=230 - Transparency=0.949999988079071 - $end 'MatAppearanceData' - $end 'AttachedData' - permittivity='1' - ModTime=1499970477 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'vacuum' - $end 'Materials' - $begin 'SurfaceMaterials' - $end 'SurfaceMaterials' - $begin 'Scripts' - $end 'Scripts' - $begin 'Symbols' - $begin 'm2d' - ModTime=1721036263 - Library='' - ModSinceLib=false - LibLocation='Project' - HighestLevel=1 - Normalize=true - InitialLevels(0, 1) - $begin 'Graphics' - Rect(0, 0, 0, 0, 0.00254, 0.00254, 0.00508, 0.00508, 0, 0, 0) - Rect(0, 1, 0, 0, 0.000423333333333333, 0.00254, 0.000423333333333333, 0.000423333333333334, 0, 0, 0) - $end 'Graphics' - $end 'm2d' - $begin 'winding' - ModTime=1120762804 - Library='Maxwell Circuit Elements\\MaxCir' - ModSinceLib=false - LibLocation='SysLibrary' - HighestLevel=1 - Normalize=true - InitialLevels(0, 1) - $begin 'PinDef' - Pin('n1', -0.00508, 0, 0, 'N', 0, 0, false, 0, true, '', false, false, 'n1', true) - $end 'PinDef' - $begin 'PinDef' - Pin('n2', 0.00508, 0, 3.14159, 'N', 0, 0, false, 0, true, '', false, false, 'n2', true) - $end 'PinDef' - $begin 'Graphics' - Circle(0, 1, 12566272, -0.004572, 0.001016, 0.000254, 12566272) - Arc(0, 1, 12566272, 0, 0, 0.001524, 0, 3.14159, 12566272, 0, 0, true, 0, 0) - Arc(0, 1, 12566272, -0.002032, 0, 0.001524, 0, 3.14159, 12566272, 0, 0, true, 0, 0) - Arc(0, 1, 12566272, -0.001016, 0, 0.000508, 3.14159, 0, 12566272, 0, 0, true, 0, 0) - Arc(0, 1, 12566272, 0.002032, 0, 0.001524, 0, 3.14159, 12566272, 0, 0, true, 0, 0) - Arc(0, 1, 12566272, 0.001016, 0, 0.000508, 3.14159, 0, 12566272, 0, 0, true, 0, 0) - Line(0, 1, 12566272, 0.003556, 0, 0.00508, 0, End=0, Join=0, LineStyle=0, BeginObj=0, EndObj=0) - Line(0, 1, 12566272, -0.00508, 0, -0.003556, 0, End=0, Join=0, LineStyle=0, BeginObj=0, EndObj=0) - $end 'Graphics' - $begin 'PropDisplayMap' - LabelID(4, 5, 0, Text(0, -0.00359481, 0, 5, 5, false, 'Arial', 0, '***', false, false, ExtentRect(0, 0, 0, 0, 0, -0.00271286555555203, 0.00194956140351657, 0.00176388888889594, 0, 0, 0))) - $end 'PropDisplayMap' - $end 'winding' - $end 'Symbols' - $begin 'DefInfo' - m2d(1002, 0, 0, 0, '', 1721036263, '', 'm2d', '', '', '', '', '', 'Design.bmp', '', 'Project', '', '', 1721036263, '', 0, 0) - Winding(0, 2, 'Ansoft built-in component', 1420901167, '', 'Maxwell Circuit Elements\\MaxCir:winding', '', '', 'Winding', 'Winding.htm', 'maxcir.chm', 'choke.bmp', 'Maxwell Circuit Elements\\Dedicated Elements', 'SysLibrary', '', '', 1102358561, '', 0) - $end 'DefInfo' - $begin 'Compdefs' - $begin 'm2d' - Library='' - CircuitEnv=0 - Refbase='U' - NumParts=1 - ModSinceLib=true - $begin 'Properties' - TextProp('Representation', 'SRD', '', 'm2d') - TextProp('Owner', 'SRD', '', 'Maxwell 2D') - $end 'Properties' - CompExtID=6 - $begin 'Parameters' - MenuProp('CoSimulator', 'D', '', 'DefaultNetlist', 0) - ButtonProp('CosimDefinition', 'D', '', 'Edit', 'Edit', 40501, ButtonPropClientData()) - $end 'Parameters' - $begin 'CosimDefinitions' - $begin 'CosimDefinition' - CosimulatorType=4 - CosimDefName='DefaultNetlist' - IsDefinition=true - Connect=true - Data() - GRef() - $end 'CosimDefinition' - DefaultCosim='DefaultNetlist' - $end 'CosimDefinitions' - $end 'm2d' - $begin 'Winding' - Library='Maxwell Circuit Elements\\Dedicated Elements' - CircuitEnv=2 - Refbase='L' - NumParts=1 - ModSinceLib=false - Terminal('n1', '', 'A', true, 0, 1, '', 'Electrical', '0') - Terminal('n2', '', 'A', true, 1, 1, '', 'Electrical', '0') - CompExtID=1 - $begin 'Parameters' - TextProp('Name', 'D', 'Name of the winding (from Maxwell)', 'WindingName') - ButtonProp('MaxCirNetlist', 'HD', '', 'L@Name %0 %1 1 Winding', 'L@Name %0 %1 1 Winding', 1, ButtonPropClientData()) - TextProp('ModelName', 'SRHD', '', 'L') - TextProp('LabelID', 'HD', '', 'L@(Name)') - $end 'Parameters' - $end 'Winding' - $end 'Compdefs' - $end 'Definitions' - DesignIDServer=12 - MoveBackwards=false - $begin 'Maxwell2DModel' - RepRewriteV2=true - Name='m2d' - DesignID=0 - 'Perform Minimal validation'=false - $begin 'TemperatureSettings' - IncludeTemperatureDependence=false - EnableFeedback=false - Temperatures(6, '22cel', 12, '22cel', 18, '22cel', 26, '22cel', 32, '22cel', 38, '22cel') - $end 'TemperatureSettings' - ObjsEnabledForDeformation() - PerfectConductorThreshold=1e+30 - InsulatorThreshold=1 - ModelDepth='1meter' - BackgroundMaterialName='vacuum' - SolveFraction=false - Multiplier='1' - SolutionType='EddyCurrent' - GeometryMode='XY' - SolutionType='EddyCurrent' - GeometryMode='XY' - $begin 'OutputVariable' - NextUniqueID=0 - MoveBackwards=false - $end 'OutputVariable' - $begin 'ModelSetup' - $begin 'DesignDatasets' - NextUniqueID=0 - MoveBackwards=false - DatasetType='DesignDatasetType' - $begin 'DatasetDefinitions' - $end 'DatasetDefinitions' - $end 'DesignDatasets' - VariableOrders[0:] - $begin 'Editor3D Doc Preferences' - BackgroundColorVersion=1 - 'Plane Background'=0 - 'Need Lights'=true - 'Ambient Light'=8355711 - 'Num Lights'=1 - Light0[4: 16777215, 0.75, -0.150000005960464, -0.629999995231628] - Ver=2 - $end 'Editor3D Doc Preferences' - SnapMode=31 - WorkingCS=1 - $begin 'GeometryCore' - BlockVersionID=3 - DataVersion=3 - NativeKernel='PARASOLID' - NativeKernelVersionID=24 - Units='mm' - ModelExtents=10000 - InstanceID=-1 - $begin 'ValidationOptions' - EntityCheckLevel='Strict' - IgnoreUnclassifiedObjects=false - SkipIntersectionChecks=false - $end 'ValidationOptions' - ContainsGeomLinkUDM=false - $begin 'GeometryOperations' - BlockVersionID=2 - $begin 'AnsoftRangedIDServerManager' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=0 - IDServerRangeMin=0 - IDServerRangeMax=2146483647 - NextUniqueID=43 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=1 - IDServerRangeMin=2146483648 - IDServerRangeMax=2146485547 - NextUniqueID=2146483654 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $end 'AnsoftRangedIDServerManager' - StartBackGroundFaceID=2146483648 - $begin 'CoordinateSystems' - $end 'CoordinateSystems' - $begin 'OperandCSs' - $end 'OperandCSs' - $begin 'SubModelDefinitions' - $end 'SubModelDefinitions' - $begin 'Groups' - $end 'Groups' - $begin 'UserDefinedModels' - $end 'UserDefinedModels' - $begin 'OperandUserDefinedModels' - $end 'OperandUserDefinedModels' - $begin 'ToplevelParts' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil1' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=5 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=24 - XCenter='0mm' - YCenter='0mm' - ZCenter='0mm' - Radius='10mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=6 - StartFaceID=-1 - StartEdgeID=7 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=9 - $begin 'LocalOperationParameters' - KernelVersion=24 - LocalOpPart=6 - $end 'LocalOperationParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=10 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=10 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=314.159265358979 - FcUVMid(0, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=5 - $end 'Operation' - $end 'Operations' - $begin 'SubregionDependencyInformation' - ChildSubregions[0:] - $end 'SubregionDependencyInformation' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil2' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=11 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=24 - XCenter='10mm' - YCenter='0mm' - ZCenter='0mm' - Radius='10mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=12 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=12 - StartFaceID=-1 - StartEdgeID=13 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=15 - $begin 'LocalOperationParameters' - KernelVersion=24 - LocalOpPart=12 - $end 'LocalOperationParameters' - ParentPartID=12 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=16 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=16 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=314.159265358979 - FcUVMid(10, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=11 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=23 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=24 - TargetID=12 - TranslateVectorX='10mm' - TranslateVectorY='0mm' - TranslateVectorZ='0mm' - $end 'TranslateParameters' - ParentPartID=12 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=15 - $end 'Operation' - $end 'Operations' - $begin 'SubregionDependencyInformation' - ChildSubregions[0:] - $end 'SubregionDependencyInformation' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil3' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=17 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=24 - XCenter='-10mm' - YCenter='0mm' - ZCenter='0mm' - Radius='10mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=18 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=18 - StartFaceID=-1 - StartEdgeID=19 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=21 - $begin 'LocalOperationParameters' - KernelVersion=24 - LocalOpPart=18 - $end 'LocalOperationParameters' - ParentPartID=18 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=22 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=22 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=314.159265358979 - FcUVMid(-10, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=17 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=24 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=24 - TargetID=18 - TranslateVectorX='-10mm' - TranslateVectorY='0mm' - TranslateVectorZ='0mm' - $end 'TranslateParameters' - ParentPartID=18 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=21 - $end 'Operation' - $end 'Operations' - $begin 'SubregionDependencyInformation' - ChildSubregions[0:] - $end 'SubregionDependencyInformation' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil4' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=25 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=24 - XCenter='-10mm' - YCenter='0mm' - ZCenter='0mm' - Radius='10mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=26 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=26 - StartFaceID=-1 - StartEdgeID=27 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=28 - $begin 'LocalOperationParameters' - KernelVersion=24 - LocalOpPart=26 - $end 'LocalOperationParameters' - ParentPartID=26 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=29 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=29 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=314.159265358979 - FcUVMid(-10, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=25 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=30 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=24 - TargetID=26 - TranslateVectorX='-10mm' - TranslateVectorY='20mm' - TranslateVectorZ='0mm' - $end 'TranslateParameters' - ParentPartID=26 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=28 - $end 'Operation' - $end 'Operations' - $begin 'SubregionDependencyInformation' - ChildSubregions[0:] - $end 'SubregionDependencyInformation' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil5' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=31 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=24 - XCenter='10mm' - YCenter='0mm' - ZCenter='0mm' - Radius='10mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=32 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=32 - StartFaceID=-1 - StartEdgeID=33 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=34 - $begin 'LocalOperationParameters' - KernelVersion=24 - LocalOpPart=32 - $end 'LocalOperationParameters' - ParentPartID=32 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=35 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=35 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=314.159265358979 - FcUVMid(10, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=31 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=36 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=24 - TargetID=32 - TranslateVectorX='10mm' - TranslateVectorY='20mm' - TranslateVectorZ='0mm' - $end 'TranslateParameters' - ParentPartID=32 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=34 - $end 'Operation' - $end 'Operations' - $begin 'SubregionDependencyInformation' - ChildSubregions[0:] - $end 'SubregionDependencyInformation' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil6' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=37 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=24 - XCenter='0mm' - YCenter='0mm' - ZCenter='0mm' - Radius='10mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=38 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=38 - StartFaceID=-1 - StartEdgeID=39 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=40 - $begin 'LocalOperationParameters' - KernelVersion=24 - LocalOpPart=38 - $end 'LocalOperationParameters' - ParentPartID=38 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=41 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=41 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=314.159265358979 - FcUVMid(0, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=37 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=42 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=24 - TargetID=38 - TranslateVectorX='0mm' - TranslateVectorY='20mm' - TranslateVectorZ='0mm' - $end 'TranslateParameters' - ParentPartID=38 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=40 - $end 'Operation' - $end 'Operations' - $begin 'SubregionDependencyInformation' - ChildSubregions[0:] - $end 'SubregionDependencyInformation' - $end 'GeometryPart' - $end 'ToplevelParts' - $begin 'OperandParts' - $end 'OperandParts' - $begin 'Planes' - $end 'Planes' - $begin 'Points' - $end 'Points' - $begin 'GeometryEntityLists' - $end 'GeometryEntityLists' - $begin 'CachedNames' - $begin 'allobjects' - allobjects(-1) - $end 'allobjects' - $begin 'coil' - coil(1, 2, 3, 4, 5, 6) - $end 'coil' - $begin 'global' - global(-1) - $end 'global' - $begin 'model' - model(-1) - $end 'model' - $end 'CachedNames' - $end 'GeometryOperations' - $begin 'GeometryDependencies' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 5) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 9) - DependencyObject('GeometryBodyOperation', 5) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 11) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 15) - DependencyObject('GeometryBodyOperation', 11) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 23) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 15) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 17) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 21) - DependencyObject('GeometryBodyOperation', 17) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 24) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 21) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 25) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 28) - DependencyObject('GeometryBodyOperation', 25) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 30) - DependencyObject('GeometryBodyOperation', 28) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 31) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 34) - DependencyObject('GeometryBodyOperation', 31) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 36) - DependencyObject('GeometryBodyOperation', 34) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 37) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 40) - DependencyObject('GeometryBodyOperation', 37) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 42) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 40) - $end 'DependencyInformation' - $end 'GeometryDependencies' - $end 'GeometryCore' - $begin 'AssignedEntities' - AssignedObject[6: 6, 12, 18, 26, 32, 38] - $end 'AssignedEntities' - GroupByMaterial=true - GroupSheetByMaterial=true - GroupCompByDefID=true - DoNotOrganizeUnderGroup=false - DoNotOrganizeUnderComponent=false - OrganizeLightweight=false - ShowGroup=true - $begin 'LastUserInputs' - $end 'LastUserInputs' - $end 'ModelSetup' - $begin '3DComponent' - $end '3DComponent' - $begin 'BoundarySetup' - $begin 'GlobalBoundData' - CoreLossObjectIDs[0:] - ExternalCircuitFile[0:] - ExternalCircuitFileExtenstion='' - InductorNames[0:] - SourceNames[0:] - SourceType[0:] - OriginalPath='' - OriginalDesign='' - CurrentProbes() - VoltageProbes() - $begin 'ParamValues' - $end 'ParamValues' - $begin 'EddyEffect' - $end 'EddyEffect' - $end 'GlobalBoundData' - $begin 'Boundaries' - NextUniqueID=16 - MoveBackwards=false - $begin 'Coil_QDNQUJ' - ID=0 - BoundType='Coil' - IsComponent=false - Objects(6) - ParentBndID=-1 - 'Conductor number'='1' - Winding=-1 - PolarityType='Positive' - $end 'Coil_QDNQUJ' - $begin 'Coil_L88EO0' - ID=1 - BoundType='Coil' - IsComponent=false - Objects(12) - ParentBndID=-1 - 'Conductor number'='1' - Winding=-1 - PolarityType='Positive' - $end 'Coil_L88EO0' - $begin 'Coil_DQWEMN' - ID=2 - BoundType='Coil' - IsComponent=false - Objects(18) - ParentBndID=-1 - 'Conductor number'='1' - Winding=-1 - PolarityType='Positive' - $end 'Coil_DQWEMN' - $begin 'Coil_RUKBLQ' - ID=4 - BoundType='Coil' - IsComponent=false - Objects(6) - ParentBndID=3 - 'Conductor number'='1' - Winding=3 - PolarityType='Positive' - $end 'Coil_RUKBLQ' - $begin 'Coil_A22MAD' - ID=6 - BoundType='Coil' - IsComponent=false - Objects(12) - ParentBndID=5 - 'Conductor number'='1' - Winding=5 - PolarityType='Positive' - $end 'Coil_A22MAD' - $begin 'Coil_ZT5ET5' - ID=8 - BoundType='Coil' - IsComponent=false - Objects(18) - ParentBndID=7 - 'Conductor number'='1' - Winding=7 - PolarityType='Positive' - $end 'Coil_ZT5ET5' - $begin 'Coil_DQWEMN1' - ID=9 - BoundType='Coil' - IsComponent=false - Objects(26) - ParentBndID=15 - 'Conductor number'='1' - Winding=15 - PolarityType='Positive' - $end 'Coil_DQWEMN1' - $begin 'Coil_A22MAD1' - ID=12 - BoundType='Coil' - IsComponent=false - Objects(32) - ParentBndID=15 - 'Conductor number'='1' - Winding=15 - PolarityType='Positive' - $end 'Coil_A22MAD1' - $begin 'Coil_QDNQUJ1' - ID=13 - BoundType='Coil' - IsComponent=false - Objects(38) - ParentBndID=15 - 'Conductor number'='1' - Winding=15 - PolarityType='Positive' - $end 'Coil_QDNQUJ1' - $begin 'Winding1' - ID=3 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='External' - IsSolid=true - Current='0mA' - Resistance='0ohm' - Inductance='0nH' - Voltage='0V' - ParallelBranchesNum='1' - Phase='0deg' - $end 'Winding1' - $begin 'Winding2' - ID=5 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='External' - IsSolid=true - Current='0mA' - Resistance='0ohm' - Inductance='0nH' - Voltage='0V' - ParallelBranchesNum='1' - Phase='0deg' - $end 'Winding2' - $begin 'Winding3' - ID=7 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='External' - IsSolid=true - Current='0mA' - Resistance='0ohm' - Inductance='0nH' - Voltage='0V' - ParallelBranchesNum='1' - Phase='0deg' - $end 'Winding3' - $begin 'Winding4' - ID=15 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Current' - IsSolid=true - Current='1mA' - Resistance='0ohm' - Inductance='0nH' - Voltage='0mV' - ParallelBranchesNum='1' - Phase='0deg' - $end 'Winding4' - $end 'Boundaries' - $begin 'ProductSpecificData' - $end 'ProductSpecificData' - $end 'BoundarySetup' - $begin 'MaxwellParameterSetup' - $begin 'MaxwellParameters' - NextUniqueID=0 - MoveBackwards=false - $end 'MaxwellParameters' - MotionParams() - $end 'MaxwellParameterSetup' - $begin 'MeshSetup' - $begin 'MeshSettings' - $begin 'GlobalSurfApproximation' - CurvedSurfaceApproxChoice='UseSlider' - SliderMeshSettings=5 - $end 'GlobalSurfApproximation' - $begin 'GlobalModelRes' - UseAutoLength=true - $end 'GlobalModelRes' - $begin 'GlobalLengthMeshSetup' - RefineInside=true - ID=-1 - Type='LengthBased' - IsComponent=false - Enabled=false - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='1mm' - ApplyToInitialMesh=false - IsGlobal=true - $end 'GlobalLengthMeshSetup' - $end 'MeshSettings' - $begin 'MeshOperations' - NextUniqueID=0 - MoveBackwards=false - $end 'MeshOperations' - $end 'MeshSetup' - $begin 'AnalysisSetup' - $begin 'SolveSetups' - NextUniqueID=0 - MoveBackwards=false - $end 'SolveSetups' - $end 'AnalysisSetup' - $begin 'Optimetrics' - $begin 'OptimetricsSetups' - NextUniqueID=0 - MoveBackwards=false - $end 'OptimetricsSetups' - $end 'Optimetrics' - $begin 'Solutions' - $end 'Solutions' - $begin 'FieldsReporter' - $begin 'FieldsCalculator' - Line_Discretization=1000 - 'Show Stack'=true - $end 'FieldsCalculator' - $begin 'PlotDefaults' - Default_SolutionId=-1 - Default_PlotFolder='Automatic' - $end 'PlotDefaults' - $begin 'FieldsPlotManagerID' - NextUniqueID=0 - MoveBackwards=false - NumQuantityType=0 - NumPlots=0 - $end 'FieldsPlotManagerID' - $begin 'Report3dInGeomWnd' - Report3dNum=0 - $end 'Report3dInGeomWnd' - $begin 'Report2dInGeomWnd' - Report2dNum=0 - $end 'Report2dInGeomWnd' - $begin 'AntennaParametersInGeomWnd' - AntennaParametersNum=0 - $end 'AntennaParametersInGeomWnd' - AntennaParametersPlotTablesOrder() - $end 'FieldsReporter' - $begin 'SolutionManager' - $begin 'Version ID Map' - V=41 - $end 'Version ID Map' - ValidationCacheHeader='' - $end 'SolutionManager' - $begin 'UserDefinedSolutionMgr' - NextUniqueID=1000000 - MoveBackwards=false - $end 'UserDefinedSolutionMgr' - $begin 'DatasetSolutionMgr' - NextUniqueID=2000000 - MoveBackwards=false - $end 'DatasetSolutionMgr' - Notes=$begin_cdata$ $end_cdata$ - $begin 'AnimationSetups' - $end 'AnimationSetups' - CacheHeaderFile='HDR663F1477217210413541.tmp' - $end 'Maxwell2DModel' - $begin 'DataInstances' - DesignEditor='TopLevel' - Refdes('0', 'U1') - Refdes('1', 'U2') - Refdes('3', 'U4') - Refdes('58880', 'U6') - Refdes('2', 'U3') - Refdes('4', 'U5') - $begin 'CompInstances' - $begin 'Compinst' - ID='0' - Status='Status' - CompName='m2d' - GatesInUse() - $begin 'Properties' - TextProp('ID', 'SRID', '', '0') - $end 'Properties' - $begin 'Parameters' - MenuProp('CoSimulator', 'OHD', '', 'DefaultNetlist', 0) - ButtonProp('CosimDefinition', 'OHD', '', 'Edit', 'Edit', 40501, ButtonPropClientData()) - $end 'Parameters' - $end 'Compinst' - $end 'CompInstances' - $begin 'Instance' - DesignEditor='m2d' - ID='0' - $begin 'Maxwell2DDesignInstance' - DesignInstanceID=1 - $begin 'WindowPosition' - $begin 'EditorWindow' - Circuit(Editor3d(View('View Orientation Gadget'=1, WindowPos(3, -1, -1, -16, -72, 0, 0, 2627, 811), OrientationMatrix(0.0425531007349491, 0, 0, 0, 0, 0.0425531007349491, 2.30103514020641e-09, 0, 0, 2.30103514020641e-09, 0.0425531007349491, 0, 3.9850835520383e-08, -3.16649675369263e-08, -5.15090227127075, 1, 0, -3.14851474761963, 3.14851474761963, -1, 1, -2.52046775817871, 12.8222713470459), Drawings[10: 'Coil1', 'Coil2', 'Coil3', 'Coil4', 'Coil5', 'Coil6', 'Winding1', 'Winding2', 'Winding3', 'Winding4'], 'View Data'('Render Mode'=1, 'Show Ruler'=1, 'Coordinate Systems View Mode'=1, 'CS Triad View Mode'=0, 'Render Facets'=1, GridVisible=1, GridAutoAdjust=1, GridAutoExtents=1, GridType='Rect', GridStyle='Line', NumPixels=30, dXForGrid=2, dYForGrid=2, dZForGrid=2, dRForGrid=2, dThetaForGrid=10), ClipPlanes(ClipPlaneOptions(DisableWhenDrawingNewPlane=true, ForceOpqaueForUnclipped=false, ShowClipped=false, Transparency=0, HandleColor=16776960))))) - $end 'EditorWindow' - $end 'WindowPosition' - $begin 'ReportSetup' - $begin 'ReportManager' - $begin 'Reports' - $end 'Reports' - NextUniqueID=0 - MoveBackwards=false - $begin 'NextVersID' - NextUniqueID=0 - MoveBackwards=false - $end 'NextVersID' - $end 'ReportManager' - $begin 'Reports' - $end 'Reports' - $begin 'ReportsWindowInfoList' - $end 'ReportsWindowInfoList' - $end 'ReportSetup' - $begin 'Properties' - $end 'Properties' - $begin 'UserDefinedDocument' - $begin 'Data' - $end 'Data' - $end 'UserDefinedDocument' - $end 'Maxwell2DDesignInstance' - $end 'Instance' - $begin 'SODInfo' - $begin 'm2d' - $begin 'CosimDefinition' - CosimDefName='DefaultNetlist' - $begin 'SODInstanceMap' - $end 'SODInstanceMap' - SODComponentList() - $end 'CosimDefinition' - $end 'm2d' - $end 'SODInfo' - $end 'DataInstances' - $begin 'WBSystemIDToDesignInstanceIDMap' - $end 'WBSystemIDToDesignInstanceIDMap' - $begin 'WBSysIDSysDetails' - $end 'WBSysIDSysDetails' - $begin 'WBConnIDConnDetails' - $end 'WBConnIDConnDetails' - $begin 'WBMaterialGuidDetails' - WBMaterialGuidMap() - $end 'WBMaterialGuidDetails' - $begin 'MinervaProjectSettingsBlk' - MinervaRemoteFilePath='' - FolderContainerString='' - $end 'MinervaProjectSettingsBlk' -$end 'AnsoftProject' -$begin 'AllReferencedFilesForProject' -$end 'AllReferencedFilesForProject' -$begin 'ProjectPreview' - IsEncrypted=false - Thumbnail64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCABgAGADASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAooooAKKKKACiiigAooooAKKKKACvnP\ -/hZ/jv4q/u/2fLLw5b+FV+S7+N3xO0HxnJ4RuZn/wBN0+b4U/D+2XRbn46eHLvTYYGPiK18R6B4YNt4\ -q07UvDuteL5LbVtIsqn7S/j628MaJ4T8LXHi1vA2meMta1XU/iN42s9Wm0vUPh98Cvhn4a1b4i/GDxp\ -PdafNDe+H/D91pegaR4Lm8R2l5ps/hnUfjNpGrWWopq8Wl2l7/MT+0H/wc2W3gvWZPh/+xR+zf4Kb4a\ -+DYYPDfhTxZ8Ujq2l6XqWi6NFFpunJ4c+FfgmfSz4T8NR2dqiWEMuqed9l8kS2OnujWqgH9QP/AAjH7\ -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\ -8gi++yfY/tf+leZ9mT9fqKKAP//Z' - $begin 'DesignInfo' - DesignName='m2d' - Notes='' - Factory='Maxwell 2D' - IsSolved=false - 'Nominal Setups'[0:] - 'Nominal Setup Types'[0:] - 'Optimetrics Setups'[0:] - 'Optimetrics Experiment Types'[0:] - Image64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCADIAMgDASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAooooAKKKKACiiigAooooAKKKKACiii\ -gAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiis/VtV03QtL1LW9ZvrbTNI0bT7zVdV1K8\ -lWCz0/TdOt5Lu+vrudyBDbRWsMskjk4VYyTwKAP50/8Agsd/wWl+K/7Anxv+HnwM/Z68J/B7xl4kufA\ -Unjj4oXHxR0bxj4gi0Ua9qkll4K0XSI/B/j7Qjp2omx0fWby9W6N0ZLfV9MeEQDeZ/D/+CXX/AAXw+O\ -n7XP7Xfg/9nf8AaO8EfAjwh4c+JOg+J9P8F658M/D/AI+8P6rH8RNJsB4g0bTtVu/F3xN1u2m0m80fS\ -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\ -UUAFFFFABRRRQAUUUUAFFFFAH//Z' - $end 'DesignInfo' -$end 'ProjectPreview' diff --git a/tests/system/general/example_models/TMaxwell/Motor_EM_R2019R3_231.aedt b/tests/system/general/example_models/TMaxwell/Maxwell_2D_Tests.aedt similarity index 73% rename from tests/system/general/example_models/TMaxwell/Motor_EM_R2019R3_231.aedt rename to tests/system/general/example_models/TMaxwell/Maxwell_2D_Tests.aedt index ebb7a26fb84..bc90ef4a373 100644 --- a/tests/system/general/example_models/TMaxwell/Motor_EM_R2019R3_231.aedt +++ b/tests/system/general/example_models/TMaxwell/Maxwell_2D_Tests.aedt @@ -3,7 +3,7 @@ $begin 'AnsoftProject' Product='ElectronicsDesktop' FileOwnedByWorkbench=false $begin 'Desktop' - Version(2023, 2) + Version(2024, 2) InfrastructureVersion(1, 0) $begin 'FactoryHeader' $begin 'geometry3deditor' @@ -63,7 +63,7 @@ $begin 'AnsoftProject' $begin 'geometry3deditor' Version(1, 0) $end 'geometry3deditor' - ReadVersion=11 + ReadVersion=12 $begin 'DesignMgrEnvironment' CompInstCounter=35 GPortCounter=0 @@ -118,6 +118,7 @@ $begin 'AnsoftProject' $end 'BHCoordinates' $begin 'Temperatures' $end 'Temperatures' + RecoilPermeability='1' $end 'permeability' conductivity='1960000' $begin 'magnetic_coercivity' @@ -247,6 +248,7 @@ $begin 'AnsoftProject' $end 'BHCoordinates' $begin 'Temperatures' $end 'Temperatures' + RecoilPermeability='1' $end 'permeability' conductivity='1694915.25424' $begin 'core_loss_type' @@ -290,6 +292,7 @@ $begin 'AnsoftProject' $end 'BHCoordinates' $begin 'Temperatures' $end 'Temperatures' + RecoilPermeability='1' $end 'permeability' conductivity='555555.5556' $begin 'magnetic_coercivity' @@ -344,6 +347,7 @@ $begin 'AnsoftProject' $end 'BHCoordinates' $begin 'Temperatures' $end 'Temperatures' + RecoilPermeability='1' $end 'permeability' conductivity='1960000' $begin 'core_loss_type' @@ -377,6 +381,7 @@ $begin 'AnsoftProject' $end 'BHCoordinates' $begin 'Temperatures' $end 'Temperatures' + RecoilPermeability='1' $end 'permeability' conductivity='1960000' $begin 'core_loss_type' @@ -435,19 +440,6 @@ $begin 'AnsoftProject' Rect(0, 1, 0, 0, 0.000423333333333333, 0.00254, 0.000423333333333333, 0.000423333333333334, 0, 0, 0) $end 'Graphics' $end 'Basis_Model_For_Test' - $begin 'design_for_test' - ModTime=1534323268 - Library='' - ModSinceLib=false - LibLocation='Project' - HighestLevel=1 - Normalize=true - InitialLevels(0, 1) - $begin 'Graphics' - Rect(0, 0, 0, 0, 0.00254, 0.00254, 0.00508, 0.00508, 0, 0, 0) - Rect(0, 1, 0, 0, 0.000423333333333333, 0.00254, 0.000423333333333333, 0.000423333333333334, 0, 0, 0) - $end 'Graphics' - $end 'design_for_test' $begin 'Sinusoidal' ModTime=1664804519 Library='' @@ -479,7 +471,6 @@ $begin 'AnsoftProject' Basis_Model_For_Test(1002, 0, 0, 0, '', 1534323268, '', 'Basis_Model_For_Test', '', '', '', '', '', 'Design.bmp', '', 'Project', '', '', 1534323268, '', 0, 0) Y_Connections(1002, 0, 0, 0, '', 1534323268, '', 'Y_Connections', '', '', '', '', '', 'Design.bmp', '', 'Project', '', '', 1534323268, '', 0, 0) Sinusoidal(1002, 0, 0, 0, '', 1664804519, '', 'Sinusoidal', '', '', '', '', '', 'Design.bmp', '', 'Project', '', '', 1664804519, '', 0, 0) - design_for_test(1002, 0, 0, 0, '', 1534323268, '', 'design_for_test', '', '', '', '', '', 'Design.bmp', '', 'Project', '', '', 1534323268, '', 0, 0) $end 'DefInfo' $begin 'Compdefs' $begin 'Basis_Model_For_Test' @@ -494,7 +485,7 @@ $begin 'AnsoftProject' $end 'Properties' CompExtID=6 $begin 'Parameters' - ButtonProp('CosimDefinition', 'D', '', '', 'Edit', 40501, ButtonPropClientData()) + ButtonProp('CosimDefinition', 'D', '', 'Edit', 'Edit', 40501, ButtonPropClientData()) MenuProp('CoSimulator', 'D', '', 'DefaultNetlist', 0) $end 'Parameters' $begin 'CosimDefinitions' @@ -521,7 +512,7 @@ $begin 'AnsoftProject' $end 'Properties' CompExtID=6 $begin 'Parameters' - ButtonProp('CosimDefinition', 'D', '', '', 'Edit', 40501, ButtonPropClientData()) + ButtonProp('CosimDefinition', 'D', '', 'Edit', 'Edit', 40501, ButtonPropClientData()) MenuProp('CoSimulator', 'D', '', 'DefaultNetlist', 0) $end 'Parameters' $begin 'CosimDefinitions' @@ -548,7 +539,7 @@ $begin 'AnsoftProject' $end 'Properties' CompExtID=6 $begin 'Parameters' - ButtonProp('CosimDefinition', 'D', '', '', 'Edit', 40501, ButtonPropClientData()) + ButtonProp('CosimDefinition', 'D', '', 'Edit', 'Edit', 40501, ButtonPropClientData()) MenuProp('CoSimulator', 'D', '', 'DefaultNetlist', 0) $end 'Parameters' $begin 'CosimDefinitions' @@ -563,33 +554,6 @@ $begin 'AnsoftProject' DefaultCosim='DefaultNetlist' $end 'CosimDefinitions' $end 'Sinusoidal' - $begin 'design_for_test' - Library='' - CircuitEnv=0 - Refbase='U' - NumParts=1 - ModSinceLib=true - $begin 'Properties' - TextProp('Representation', 'SRD', '', 'design_for_test') - TextProp('Owner', 'SRD', '', 'Maxwell 2D') - $end 'Properties' - CompExtID=6 - $begin 'Parameters' - ButtonProp('CosimDefinition', 'D', '', '', 'Edit', 40501, ButtonPropClientData()) - MenuProp('CoSimulator', 'D', '', 'DefaultNetlist', 0) - $end 'Parameters' - $begin 'CosimDefinitions' - $begin 'CosimDefinition' - CosimulatorType=4 - CosimDefName='DefaultNetlist' - IsDefinition=true - Connect=true - Data() - GRef() - $end 'CosimDefinition' - DefaultCosim='DefaultNetlist' - $end 'CosimDefinitions' - $end 'design_for_test' $end 'Compdefs' $end 'Definitions' DesignIDServer=103 @@ -616,6 +580,10 @@ $begin 'AnsoftProject' BackgroundMaterialName='vacuum' SolveFraction=false Multiplier='8' + ObjsEnabledForStressName() + Enabled2DXYStressXXObjects() + Enabled2DXYStressYYObjects() + Enabled2DXYStressXYObjects() SolutionType='Transient' GeometryMode='XY' SolutionType='Transient' @@ -673,9 +641,8 @@ $begin 'AnsoftProject' $end 'Properties' VariableOrders[17: 'speed_mech', 'Ipeak', 'pole_pairs', 'freq_elec', 'gamma', 'R_measure', 'N_pts', 'AngleStep', 'Tooth_Arc_length', 'Tooth_segment', 'N_segments', 'min_N_segment', 'Tstep', 'Init_Pos', 'R_stator', 'R_rotor', 'test'] $begin 'Editor3D Doc Preferences' - 'Plane Background'=true - BackgroundColor1=16777215 - BackgroundColor2=0 + BackgroundColorVersion=1 + 'Plane Background'=0 'Need Lights'=true 'Ambient Light'=9671571 'Num Lights'=4 @@ -691,7 +658,7 @@ $begin 'AnsoftProject' BlockVersionID=3 DataVersion=57 NativeKernel='PARASOLID' - NativeKernelVersionID=23 + NativeKernelVersionID=24 Units='mm' ModelExtents=10000 InstanceID=-1 @@ -938,10 +905,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -982,6 +954,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -999,10 +974,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1043,6 +1023,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1060,10 +1043,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1104,6 +1092,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1121,10 +1112,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1165,6 +1161,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1182,10 +1181,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1226,6 +1230,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1243,10 +1250,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1287,6 +1299,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1304,10 +1319,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1348,6 +1368,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1365,10 +1388,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1409,6 +1437,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1426,10 +1457,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1470,6 +1506,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1487,10 +1526,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1531,6 +1575,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1548,10 +1595,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1592,6 +1644,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1609,10 +1664,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1653,6 +1713,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1670,10 +1733,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1714,6 +1782,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1731,10 +1802,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1775,6 +1851,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1792,10 +1871,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1836,6 +1920,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1853,10 +1940,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1897,6 +1989,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1914,10 +2009,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -1958,6 +2058,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -1975,10 +2078,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2019,6 +2127,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2036,10 +2147,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2080,6 +2196,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2097,10 +2216,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2141,6 +2265,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2158,10 +2285,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2202,6 +2334,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2219,10 +2354,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2263,6 +2403,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $end 'ToplevelParts' $begin 'OperandParts' @@ -2282,10 +2425,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2339,6 +2487,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2356,10 +2507,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2413,6 +2569,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2430,10 +2589,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2487,6 +2651,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2504,10 +2671,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2561,6 +2733,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2578,10 +2753,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2635,6 +2815,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2652,10 +2835,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2709,6 +2897,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2726,10 +2917,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2783,6 +2979,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2800,10 +2999,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2857,6 +3061,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2874,10 +3081,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -2931,6 +3143,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -2948,10 +3163,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -3005,6 +3225,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -3022,10 +3245,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -3079,6 +3307,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -3096,10 +3327,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -3153,6 +3389,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $end 'OperandParts' $begin 'Planes' @@ -4282,6 +4521,7 @@ $begin 'AnsoftProject' MinTimeStep='0.001s' MaxTimeStep='0.003s' TimeStepErrTolerance=0.0001 + RelaxationFactor=1 $end 'Setup1' $end 'SolveSetups' $end 'AnalysisSetup' @@ -4534,6 +4774,7 @@ $begin 'AnsoftProject' Operation('/') $end 'Named_Expression' Line_Discretization=1000 + 'Show Stack'=true $end 'FieldsCalculator' $begin 'PlotDefaults' Default_SolutionId=44 @@ -4565,6 +4806,7 @@ $begin 'AnsoftProject' LimitFieldValuePrecision=false FieldValuePrecisionDigits=4 dB=false + AnimationStaticScale=false ScaleType=0 UserSpecifyValues(16, 1, 7.59999990463257, 14.1999998092651, 20.7999992370605, 27.3999996185303, 34, 40.5999984741211, 47.2000007629395, 53.7999992370605, 60.3999977111816, 67, 73.5999984741211, 80.1999969482422, 86.7999954223633, 93.4000015258789, 100) ValueNumberFormatTypeAuto=0 @@ -4754,7 +4996,7 @@ $begin 'AnsoftProject' SweptContinous=false $end 'Setup_1' $end 'AnimationSetups' - CacheHeaderFile='HDR2DB93084017059352103.tmp' + CacheHeaderFile='HDR55935276017343355753.tmp' $end 'Maxwell2DModel' $begin 'Maxwell2DModel' RepRewriteV2=true @@ -4778,6 +5020,10 @@ $begin 'AnsoftProject' BackgroundMaterialName='vacuum' SolveFraction=false Multiplier='8' + ObjsEnabledForStressName() + Enabled2DXYStressXXObjects() + Enabled2DXYStressYYObjects() + Enabled2DXYStressXYObjects() SolutionType='Transient' GeometryMode='XY' SolutionType='Transient' @@ -4835,9 +5081,8 @@ $begin 'AnsoftProject' $end 'Properties' VariableOrders[17: 'speed_mech', 'Ipeak', 'pole_pairs', 'freq_elec', 'gamma', 'R_measure', 'N_pts', 'AngleStep', 'Tooth_Arc_length', 'Tooth_segment', 'N_segments', 'min_N_segment', 'Tstep', 'Init_Pos', 'R_stator', 'R_rotor', 'test'] $begin 'Editor3D Doc Preferences' - 'Plane Background'=true - BackgroundColor1=16777215 - BackgroundColor2=0 + BackgroundColorVersion=1 + 'Plane Background'=0 'Need Lights'=true 'Ambient Light'=9671571 'Num Lights'=4 @@ -4853,7 +5098,7 @@ $begin 'AnsoftProject' BlockVersionID=3 DataVersion=57 NativeKernel='PARASOLID' - NativeKernelVersionID=23 + NativeKernelVersionID=24 Units='mm' ModelExtents=10000 InstanceID=-1 @@ -5100,10 +5345,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5144,6 +5394,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5161,10 +5414,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5205,6 +5463,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5222,10 +5483,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5266,6 +5532,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5283,10 +5552,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5327,6 +5601,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5344,10 +5621,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5388,6 +5670,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5405,10 +5690,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5449,6 +5739,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5466,10 +5759,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5510,6 +5808,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5527,10 +5828,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5571,6 +5877,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5588,10 +5897,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5632,6 +5946,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5649,10 +5966,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5693,6 +6015,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5710,10 +6035,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5754,6 +6084,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5771,10 +6104,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5815,6 +6153,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5832,10 +6173,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5876,6 +6222,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5893,10 +6242,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5937,6 +6291,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -5954,10 +6311,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -5998,6 +6360,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6015,10 +6380,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6059,6 +6429,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6076,10 +6449,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6120,6 +6498,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6137,10 +6518,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6181,6 +6567,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6198,10 +6587,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6242,6 +6636,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6259,10 +6656,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6303,6 +6705,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6320,10 +6725,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6364,6 +6774,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6381,10 +6794,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6425,6 +6843,9 @@ $begin 'AnsoftProject' $end 'BodyBlock' $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $end 'ToplevelParts' $begin 'OperandParts' @@ -6444,10 +6865,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6501,6 +6927,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6518,10 +6947,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6575,6 +7009,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6592,10 +7029,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6649,6 +7091,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6666,10 +7111,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6723,6 +7173,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6740,10 +7193,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6797,6 +7255,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6814,10 +7275,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6871,6 +7337,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6888,10 +7357,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -6945,6 +7419,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -6962,10 +7439,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -7019,6 +7501,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -7036,10 +7521,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -7093,6 +7583,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -7110,10 +7603,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -7167,6 +7665,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -7184,10 +7685,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -7241,6 +7747,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -7258,10 +7767,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='NativeBody' @@ -7315,6 +7829,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'SectionToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $end 'OperandParts' $begin 'Planes' @@ -8444,6 +8961,7 @@ $begin 'AnsoftProject' MinTimeStep='0.001s' MaxTimeStep='0.003s' TimeStepErrTolerance=0.0001 + RelaxationFactor=1 $end 'Setup1' $end 'SolveSetups' $end 'AnalysisSetup' @@ -8696,6 +9214,7 @@ $begin 'AnsoftProject' Operation('/') $end 'Named_Expression' Line_Discretization=1000 + 'Show Stack'=true $end 'FieldsCalculator' $begin 'PlotDefaults' Default_SolutionId=44 @@ -8727,6 +9246,7 @@ $begin 'AnsoftProject' LimitFieldValuePrecision=false FieldValuePrecisionDigits=4 dB=false + AnimationStaticScale=false ScaleType=0 UserSpecifyValues(16, 1, 7.59999990463257, 14.1999998092651, 20.7999992370605, 27.3999996185303, 34, 40.5999984741211, 47.2000007629395, 53.7999992370605, 60.3999977111816, 67, 73.5999984741211, 80.1999969482422, 86.7999954223633, 93.4000015258789, 100) ValueNumberFormatTypeAuto=0 @@ -8894,7 +9414,7 @@ $begin 'AnsoftProject' Notes=$begin_cdata$ $end_cdata$ $begin 'AnimationSetups' $end 'AnimationSetups' - CacheHeaderFile='HDR2DB93084017059352104.tmp' + CacheHeaderFile='HDR55965276017343355764.tmp' $end 'Maxwell2DModel' $begin 'Maxwell2DModel' RepRewriteV2=true @@ -8918,6 +9438,10 @@ $begin 'AnsoftProject' BackgroundMaterialName='vacuum' SolveFraction=false Multiplier='SymmetryFactor' + ObjsEnabledForStressName() + Enabled2DXYStressXXObjects() + Enabled2DXYStressYYObjects() + Enabled2DXYStressXYObjects() SolutionType='Transient' GeometryMode='XY' SolutionType='Transient' @@ -9017,9 +9541,8 @@ $begin 'AnsoftProject' $end 'Properties' VariableOrders[39: 'DiaGap', 'DiaStatorYoke', 'DiaStatorInner', 'DiaRotorLam', 'DiaShaft', 'DiaOuter', 'Airgap', 'SlotNumber', 'SlotType', 'Layers', 'ParallelPaths', 'R_Phase', 'WdgExt_F', 'SpanExt', 'SegAngle', 'CoilPitch', 'Coil_SetBack', 'SlotWidth', 'Coil_Edge_Short', 'Coil_Edge_Long', 'NumPoles', 'Model_Length', 'SymmetryFactor', 'Magnetic_Axial_Length', 'Stator_Lam_Length', 'StatorSkewAngle', 'NumTorquePointsPerCycle', 'mapping_angle', 'num_m', 'Section_Angle', 'InitialPositionMD', 'IPeak', 'MachineRPM', 'ElectricFrequency', 'ElectricPeriod', 'BandTicksinModel', 'TimeStep', 'StopTime', 'Theta_i'] $begin 'Editor3D Doc Preferences' - 'Plane Background'=true - BackgroundColor1=16777215 - BackgroundColor2=0 + BackgroundColorVersion=1 + 'Plane Background'=0 'Need Lights'=true 'Ambient Light'=9671571 'Num Lights'=4 @@ -9035,7 +9558,7 @@ $begin 'AnsoftProject' BlockVersionID=3 DataVersion=2 NativeKernel='PARASOLID' - NativeKernelVersionID=23 + NativeKernelVersionID=24 Units='mm' ModelExtents=10000 InstanceID=-1 @@ -9188,10 +9711,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='UserDefinedPrimitive' @@ -17227,6 +17755,9 @@ $begin 'AnsoftProject' ParentOperation=1302 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -17244,10 +17775,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Polyline' @@ -17428,7 +17964,7 @@ $begin 'AnsoftProject' TriangleVertexIndex=-1 hasXYZ=true PositionType='EdgeCenter' - UParam=0 + UParam=0.5 VParam=0 XPosition='48.480194935' YPosition='9.8886608025' @@ -17462,6 +17998,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'CloneToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -17479,10 +18018,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Polyline' @@ -17663,7 +18207,7 @@ $begin 'AnsoftProject' TriangleVertexIndex=-1 hasXYZ=true PositionType='EdgeCenter' - UParam=0 + UParam=0.5 VParam=0 XPosition='60.605254465' YPosition='17.58089256' @@ -17697,6 +18241,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'CloneToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -17714,10 +18261,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='DuplicateBodyMirror' @@ -17791,7 +18343,7 @@ $begin 'AnsoftProject' TriangleVertexIndex=-1 hasXYZ=true PositionType='EdgeCenter' - UParam=0 + UParam=0.5 VParam=0 XPosition='41.2730137020856' YPosition='27.2883354814829' @@ -17810,6 +18362,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'FaceCSHolderOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -17827,10 +18382,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='DuplicateBodyMirror' @@ -17904,7 +18464,7 @@ $begin 'AnsoftProject' TriangleVertexIndex=-1 hasXYZ=true PositionType='EdgeCenter' - UParam=0 + UParam=0.5 VParam=0 XPosition='55.2859547562259' YPosition='30.4228180592497' @@ -17923,6 +18483,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'FaceCSHolderOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -17940,10 +18503,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Rectangle' @@ -18096,6 +18664,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'CloneToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -18113,10 +18684,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='DuplicateBodyAroundAxis' @@ -18163,6 +18739,9 @@ $begin 'AnsoftProject' PlaceHolderOpnId=1050 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -18180,10 +18759,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='DuplicateBodyAroundAxis' @@ -18230,6 +18814,9 @@ $begin 'AnsoftProject' PlaceHolderOpnId=1050 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -18247,10 +18834,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='DuplicateBodyAroundAxis' @@ -18297,6 +18889,9 @@ $begin 'AnsoftProject' PlaceHolderOpnId=1050 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -18314,10 +18909,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='DuplicateBodyAroundAxis' @@ -18364,6 +18964,9 @@ $begin 'AnsoftProject' PlaceHolderOpnId=1050 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -18381,10 +18984,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='DuplicateBodyAroundAxis' @@ -18431,6 +19039,9 @@ $begin 'AnsoftProject' PlaceHolderOpnId=1050 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -18448,10 +19059,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Circle' @@ -18704,6 +19320,9 @@ $begin 'AnsoftProject' ParentOperation=1326 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -18721,10 +19340,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Circle' @@ -18988,6 +19612,9 @@ $begin 'AnsoftProject' ParentOperation=1321 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -19005,10 +19632,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Circle' @@ -19261,6 +19893,9 @@ $begin 'AnsoftProject' ParentOperation=1331 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -19278,10 +19913,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Circle' @@ -19534,6 +20174,9 @@ $begin 'AnsoftProject' ParentOperation=1336 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -19551,10 +20194,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Circle' @@ -19807,6 +20455,9 @@ $begin 'AnsoftProject' ParentOperation=1341 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -19824,10 +20475,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Circle' @@ -20508,6 +21164,9 @@ $begin 'AnsoftProject' ParentOperation=1310 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -20525,10 +21184,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Polyline' @@ -20719,6 +21383,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'CloneToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -20736,10 +21403,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Polyline' @@ -20919,6 +21591,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'CloneToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -20936,10 +21611,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='DuplicateBodyMirror' @@ -20997,6 +21677,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'CloneToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -21014,10 +21697,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='DuplicateBodyMirror' @@ -21075,6 +21763,9 @@ $begin 'AnsoftProject' ReferenceUDMID=-1 $end 'CloneToOperation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $end 'ToplevelParts' $begin 'OperandParts' @@ -21094,10 +21785,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='CloneFrom' @@ -21144,6 +21840,9 @@ $begin 'AnsoftProject' PlaceHolderOpnId=1142 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -21161,10 +21860,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Circle' @@ -21307,6 +22011,9 @@ $begin 'AnsoftProject' ParentOperationID=1153 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -21324,10 +22031,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='Circle' @@ -21424,6 +22136,9 @@ $begin 'AnsoftProject' ParentOperationID=1158 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -21441,10 +22156,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='CloneFrom' @@ -21491,6 +22211,9 @@ $begin 'AnsoftProject' PlaceHolderOpnId=1220 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -21508,10 +22231,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='CloneFrom' @@ -21558,6 +22286,9 @@ $begin 'AnsoftProject' PlaceHolderOpnId=1234 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -21575,10 +22306,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='CloneFrom' @@ -21625,6 +22361,9 @@ $begin 'AnsoftProject' PlaceHolderOpnId=1246 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $begin 'GeometryPart' $begin 'Attributes' @@ -21642,10 +22381,15 @@ $begin 'AnsoftProject' ShellElementThickness='0mm' ReferenceTemperature='20cel' IsMaterialEditable=true + IsSurfaceMaterialEditable=true UseMaterialAppearance=false IsLightweight=false IsAlwaysHidden=false $end 'Attributes' + $begin 'PhysicsAttributes' + SuppressedForPhysics='False' + SuppressedForPhysicsEditable=true + $end 'PhysicsAttributes' $begin 'Operations' $begin 'Operation' OperationType='CloneFrom' @@ -21692,6 +22436,9 @@ $begin 'AnsoftProject' PlaceHolderOpnId=1260 $end 'Operation' $end 'Operations' + $begin 'SubregionDependencyInformation' + ChildSubregions[0:] + $end 'SubregionDependencyInformation' $end 'GeometryPart' $end 'OperandParts' $begin 'Planes' @@ -22300,6 +23047,7 @@ $begin 'AnsoftProject' kID=1141 $begin 'FaceData' ParentObjectID=1137 + NormalValid=false $begin 'FaceGeomTopol' FaceTopol(4, 21, 21, 20) $begin 'FaceGeometry' @@ -22757,6 +23505,7 @@ $begin 'AnsoftProject' MinTimeStep='0.001s' MaxTimeStep='0.003s' TimeStepErrTolerance=0.0001 + RelaxationFactor=1 $end 'MySetupAuto' $end 'SolveSetups' $end 'AnalysisSetup' @@ -22771,6 +23520,7 @@ $begin 'AnsoftProject' $begin 'FieldsReporter' $begin 'FieldsCalculator' Line_Discretization=1000 + 'Show Stack'=true $end 'FieldsCalculator' $begin 'PlotDefaults' Default_SolutionId=60 @@ -22802,6 +23552,7 @@ $begin 'AnsoftProject' LimitFieldValuePrecision=false FieldValuePrecisionDigits=4 dB=false + AnimationStaticScale=false ScaleType=0 UserSpecifyValues(11, 1, 10.8999996185303, 20.7999992370605, 30.6999988555908, 40.5999984741211, 50.5, 60.3999977111816, 70.2999954223633, 80.1999969482422, 90.0999984741211, 100) ValueNumberFormatTypeAuto=0 @@ -22973,87101 +23724,64675 @@ $begin 'AnsoftProject' Notes=$begin_cdata$ $end_cdata$ $begin 'AnimationSetups' $end 'AnimationSetups' - CacheHeaderFile='HDR2DB93084017059352105.tmp' + CacheHeaderFile='HDR55965276017343355765.tmp' $end 'Maxwell2DModel' - $begin 'Maxwell2DModel' - RepRewriteV2=true - Name='design_for_test' - DesignID=95 - 'Perform Minimal validation'=false - $begin 'TemperatureSettings' - IncludeTemperatureDependence=false - EnableFeedback=false - Temperatures(6619, '22cel', 6715, '22cel', 6811, '22cel', 7091, '22cel', 7793, '22cel', 7841, '22cel', 7889, '22cel', 7937, '22cel', 7985, '22cel', 8033, '22cel', 8081, '22cel', 8249, '22cel', 8815, '22cel', 8821, '22cel', 9574, '22cel', 9588, '22cel', 9599, '22cel', 9610, '22cel', 9621, '22cel', 9632, '22cel', 11298, '22cel', 22273, '22cel') - $end 'TemperatureSettings' - ObjsEnabledForDeformation() - PreserveTranSolnAfterDatasetEdit=false - ComputeTransientInductance=false - ComputeIncrementalMatrix=false - PerfectConductorThreshold=1e+30 - InsulatorThreshold=1 - ModelDepth='83.8mm' - UseSkewModel=false - EnableTranTranLinkWithSimplorer=false - BackgroundMaterialName='vacuum' - SolveFraction=false - Multiplier='8' - SolutionType='Transient' - GeometryMode='XY' - SolutionType='Transient' - GeometryMode='XY' - $begin 'OutputVariable' - NextUniqueID=21 - MoveBackwards=false - $begin 'OutputVariables' - F_rad_1(ID=0, 'ExprCache(F_tooth_1_x1)*cos(1*7.5deg)+ExprCache(F_tooth_1_y1)*sin(1*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_tan_1(ID=1, '-ExprCache(F_tooth_1_x1)*sin(1*7.5deg)+ExprCache(F_tooth_1_y1)*cos(1*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_rad_2(ID=2, 'ExprCache(F_tooth_2_x1)*cos(2*7.5deg)+ExprCache(F_tooth_2_y1)*sin(2*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_tan_2(ID=3, '-ExprCache(F_tooth_2_x1)*sin(2*7.5deg)+ExprCache(F_tooth_2_y1)*cos(2*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_tan_3(ID=4, '-ExprCache(F_tooth_3_x1)*sin(3*7.5deg)+ExprCache(F_tooth_3_y1)*cos(3*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_tan_4(ID=5, '-ExprCache(F_tooth_4_x1)*sin(4*7.5deg)+ExprCache(F_tooth_4_y1)*cos(4*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_tan_5(ID=6, '-ExprCache(F_tooth_5_x1)*sin(5*7.5deg)+ExprCache(F_tooth_5_y1)*cos(5*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_rad_3(ID=7, 'ExprCache(F_tooth_3_x1)*cos(3*7.5deg)+ExprCache(F_tooth_3_y1)*sin(3*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_rad_4(ID=8, 'ExprCache(F_tooth_4_x1)*cos(4*7.5deg)+ExprCache(F_tooth_4_y1)*sin(4*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_rad_5(ID=9, 'ExprCache(F_tooth_5_x1)*cos(5*7.5deg)+ExprCache(F_tooth_5_y1)*sin(5*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_rad_0_pos(ID=11, 'ExprCache(F_tooth_0_pos_x1)*cos(0*7.5deg)+ExprCache(F_tooth_0_pos_y1)*sin(0*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_rad_0_neg(ID=12, 'ExprCache(F_tooth_0_neg_x1)*cos(6*7.5deg)+ExprCache(F_tooth_0_neg_y1)*sin(6*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_rad_0(ID=13, 'F_rad_0_neg+F_rad_0_pos', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_tan_0_neg(ID=14, '-ExprCache(F_tooth_0_neg_x1)*sin(6*7.5deg)+ExprCache(F_tooth_0_neg_y1)*cos(6*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_tan_0_pos(ID=15, '-ExprCache(F_tooth_0_pos_x1)*sin(0*7.5deg)+ExprCache(F_tooth_0_pos_y1)*cos(0*7.5deg)', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_tan_0(ID=16, 'F_tan_0_neg+F_tan_0_pos', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - F_tan_sum(ID=17, '(F_tan_0+F_tan_1+F_tan_2+F_tan_3+F_tan_4+F_tan_5)*8*0.0838*R_measure', 1, 'mm', 1, 'mm', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - Airgap_Torque(ID=18, 'ExprCache(Int_Trq_Lines1)*0.0838*8', 1, '', 2, '', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'OutputVariables' - $end 'OutputVariable' - $begin 'ModelSetup' - $begin 'DesignDatasets' - NextUniqueID=0 - MoveBackwards=false - DatasetType='DesignDatasetType' - $begin 'DatasetDefinitions' - $end 'DatasetDefinitions' - $end 'DesignDatasets' - $begin 'Properties' - VariableProp('speed_mech', 'UD', '', '3000rpm') - VariableProp('Ipeak', 'UD', '', '250A') - VariableProp('pole_pairs', 'UD', '', '4') - VariableProp('freq_elec', 'UD', '', 'speed_mech/1per_second*pole_pairs') - VariableProp('gamma', 'UD', '', '60deg') - VariableProp('R_measure', 'UD', '', '80.775mm') - VariableProp('N_pts', 'UD', '', '72') - VariableProp('AngleStep', 'UD', '', '360deg/pole_pairs/(6*N_pts)') - VariableProp('Tooth_Arc_length', 'UD', '', 'R_measure*2*pi/8/6') - VariableProp('Tooth_segment', 'UD', '', 'Tooth_Arc_length/N_pts') - VariableProp('N_segments', 'UD', '', 'max(min_N_segment,8*6*N_pts/2)') - VariableProp('min_N_segment', 'UD', '', '360deg/AngleStep') - VariableProp('Tstep', 'UD', '', '1/freq_elec/N_pts/6') - VariableProp('Init_Pos', 'UD', '', '0deg') - VariableProp('R_stator', 'UD', '', '80.95mm') - VariableProp('R_rotor', 'UD', '', '80mm') - VariableProp('test', 'UD', '', '3') - $end 'Properties' - VariableOrders[17: 'speed_mech', 'Ipeak', 'pole_pairs', 'freq_elec', 'gamma', 'R_measure', 'N_pts', 'AngleStep', 'Tooth_Arc_length', 'Tooth_segment', 'N_segments', 'min_N_segment', 'Tstep', 'Init_Pos', 'R_stator', 'R_rotor', 'test'] - $begin 'Editor3D Doc Preferences' - 'Plane Background'=true - BackgroundColor1=16777215 - BackgroundColor2=0 - 'Need Lights'=true - 'Ambient Light'=9671571 - 'Num Lights'=4 - Light0[4: 6710886, 0, -1, -0.150000005960464] - Light1[4: 6710886, -0.600000023841858, 0.100000001490116, -0.5] - Light2[4: 6710886, 0.5, 0.100000001490116, -0.5] - Light3[4: 6710886, 0.200000002980232, 0.400000005960464, 1] - Ver=2 - $end 'Editor3D Doc Preferences' - SnapMode=31 - WorkingCS=1 - $begin 'GeometryCore' - BlockVersionID=3 - DataVersion=57 - NativeKernel='PARASOLID' - NativeKernelVersionID=23 - Units='mm' - ModelExtents=10000 - InstanceID=-1 - $begin 'ValidationOptions' - EntityCheckLevel='Strict' - IgnoreUnclassifiedObjects=false - SkipIntersectionChecks=false - $end 'ValidationOptions' - ContainsGeomLinkUDM=false - $begin 'GeometryOperations' - BlockVersionID=2 - $begin 'AnsoftRangedIDServerManager' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=0 - IDServerRangeMin=0 - IDServerRangeMax=2146483647 - NextUniqueID=93568 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=1 - IDServerRangeMin=2146483648 - IDServerRangeMax=2146485547 - NextUniqueID=2146483654 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $end 'AnsoftRangedIDServerManager' - StartBackGroundFaceID=2146483648 - $begin 'CoordinateSystems' - $begin 'Operation' - OperationType='CreateRelativeCoordinateSystem' - ID=8726 - ReferenceCoordSystemID=1 - $begin 'RelativeCSParameters' - KernelVersion=10 - Mode='Axis/Position' - OriginX='0mm' - OriginY='0mm' - OriginZ='0mm' - XAxisXvec='40mm' - XAxisYvec='-40mm' - XAxisZvec='0mm' - YAxisXvec='40mm' - YAxisYvec='40mm' - YAxisZvec='0mm' - $end 'RelativeCSParameters' - ParentPartID=-1 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='RelativeCS1' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=8727 - $end 'Operation' - $begin 'Operation' - OperationType='CreateRelativeCoordinateSystem' - ID=10373 - ReferenceCoordSystemID=1 - $begin 'RelativeCSParameters' - KernelVersion=10 - Mode='Axis/Position' - OriginX='0mm' - OriginY='0mm' - OriginZ='0mm' - XAxisXvec='40mm' - XAxisYvec='-40mm' - XAxisZvec='0mm' - YAxisXvec='40mm' - YAxisYvec='40mm' - YAxisZvec='0mm' - $end 'RelativeCSParameters' - ParentPartID=-1 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='RelativeCS2' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=10374 - $end 'Operation' - $begin 'Operation' - OperationType='CreateRelativeCoordinateSystem' - ID=11108 - ReferenceCoordSystemID=1 - $begin 'RelativeCSParameters' - KernelVersion=10 - Mode='Axis/Position' - OriginX='0mm' - OriginY='0mm' - OriginZ='0mm' - XAxisXvec='40mm' - XAxisYvec='-40mm' - XAxisZvec='0mm' - YAxisXvec='40mm' - YAxisYvec='40mm' - YAxisZvec='0mm' - $end 'RelativeCSParameters' - ParentPartID=-1 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='RelativeCS3' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=11109 - $end 'Operation' - $begin 'Operation' - OperationType='CreateRelativeCoordinateSystem' - ID=13199 - ReferenceCoordSystemID=1 - $begin 'RelativeCSParameters' - KernelVersion=10 - Mode='Axis/Position' - OriginX='0mm' - OriginY='0mm' - OriginZ='0mm' - XAxisXvec='40mm' - XAxisYvec='-40mm' - XAxisZvec='0mm' - YAxisXvec='40mm' - YAxisYvec='40mm' - YAxisZvec='0mm' - $end 'RelativeCSParameters' - ParentPartID=-1 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='RelativeCS4' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=13200 - $end 'Operation' - $begin 'Operation' - OperationType='CreateRelativeCoordinateSystem' - ID=23729 - ReferenceCoordSystemID=1 - $begin 'RelativeCSParameters' - KernelVersion=10 - Mode='Axis/Position' - OriginX='0mm' - OriginY='0mm' - OriginZ='0mm' - XAxisXvec='40mm' - XAxisYvec='-40mm' - XAxisZvec='0mm' - YAxisXvec='40mm' - YAxisYvec='40mm' - YAxisZvec='0mm' - $end 'RelativeCSParameters' - ParentPartID=-1 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='RelativeCS5' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=23730 - $end 'Operation' - $begin 'Operation' - OperationType='CreateRelativeCoordinateSystem' - ID=93538 - ReferenceCoordSystemID=1 - $begin 'RelativeCSParameters' - KernelVersion=13 - Mode='Axis/Position' - OriginX='59.4229613684972mm' - OriginY='19.2083406902639mm' - OriginZ='0mm' - XAxisXvec='0.674908888954435mm' - XAxisYvec='0.737901071696125mm' - XAxisZvec='0mm' - YAxisXvec='-0.737901071696125mm' - YAxisYvec='0.674908888954435mm' - YAxisZvec='0mm' - $end 'RelativeCSParameters' - ParentPartID=-1 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='PurgedCS1' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=93539 - $end 'Operation' - $begin 'Operation' - OperationType='CreateRelativeCoordinateSystem' - ID=93542 - ReferenceCoordSystemID=1 - $begin 'RelativeCSParameters' - KernelVersion=13 - Mode='Axis/Position' - OriginX='55.6007268992776mm' - OriginY='28.4360309844235mm' - OriginZ='0mm' - XAxisXvec='0.99900750370391mm' - XAxisYvec='-0.0445421995783893mm' - XAxisZvec='0mm' - YAxisXvec='0.0445421995783893mm' - YAxisYvec='0.99900750370391mm' - YAxisZvec='0mm' - $end 'RelativeCSParameters' - ParentPartID=-1 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='PurgedCS2' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=93543 - $end 'Operation' - $end 'CoordinateSystems' - $begin 'OperandCSs' - $end 'OperandCSs' - $begin 'SubModelDefinitions' - $end 'SubModelDefinitions' - $begin 'Groups' - $end 'Groups' - $begin 'UserDefinedModels' - $end 'UserDefinedModels' - $begin 'OperandUserDefinedModels' - $end 'OperandUserDefinedModels' - $begin 'ToplevelParts' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Magnet1_Section1' - Flags='' - Color='(255 128 128)' - Transparency=0 - PartCoordinateSystem=93538 - UDMId=-1 - GroupId=-1 - MaterialValue='"NdFe35"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93546 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=6619 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0006619.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Magnet2_Section1' - Flags='' - Color='(255 128 128)' - Transparency=0 - PartCoordinateSystem=93542 - UDMId=-1 - GroupId=-1 - MaterialValue='"NdFe35"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93547 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=6715 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0006715.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Rotor_Section1' - Flags='' - Color='(128 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"M19_26G"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93548 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=6811 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=2 - NumCoedges=21 - NumEdges=21 - NumVertices=21 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0006811.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Shaft_Section1' - Flags='' - Color='(0 255 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"steel_stainless"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93549 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=7091 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=3 - NumEdges=3 - NumVertices=3 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0007091.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth30_Section1' - Flags='' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"M19_26G"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93550 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=7793 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=7 - NumEdges=7 - NumVertices=7 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0007793.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth32_Section1' - Flags='' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"M19_26G"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93551 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=7841 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=10 - NumEdges=10 - NumVertices=10 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0007841.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth34_Section1' - Flags='' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"M19_26G"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93552 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=7889 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=10 - NumEdges=10 - NumVertices=10 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0007889.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth36_Section1' - Flags='' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"M19_26G"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93553 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=7937 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=10 - NumEdges=10 - NumVertices=10 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0007937.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth38_Section1' - Flags='' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"M19_26G"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93554 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=7985 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=10 - NumEdges=10 - NumVertices=10 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0007985.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth40_Section1' - Flags='' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"M19_26G"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93555 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=8033 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=10 - NumEdges=10 - NumVertices=10 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0008033.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth42_Section1' - Flags='' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"M19_26G"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93556 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=8081 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=7 - NumEdges=7 - NumVertices=7 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0008081.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Yoke_Section1' - Flags='' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"M19_26G"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93557 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=8249 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=16 - NumEdges=16 - NumVertices=16 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0008249.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Band' - Flags='Wireframe#' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93558 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=8815 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=218 - NumEdges=218 - NumVertices=218 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0008815.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Region' - Flags='Wireframe#' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93559 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=8821 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=3 - NumEdges=3 - NumVertices=3 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0008821.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93560 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=9574 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0009574.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_1' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93561 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=9588 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0009588.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_2' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93562 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=9599 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0009599.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_3' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93563 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=9610 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0009610.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_4' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93564 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=9621 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0009621.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_5' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93565 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=9632 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0009632.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='tooth_1' - Flags='ShowDirection#' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93566 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=11298 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=432 - NumVertices=433 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0011298.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Airgap' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=93567 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=22273 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=219 - NumEdges=219 - NumVertices=219 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0022273.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $end 'ToplevelParts' - $begin 'OperandParts' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Yoke' - Flags='NonModel#' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=5 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=113 - NumWires=0 - NumLoops=124 - NumCoedges=660 - NumEdges=330 - NumVertices=222 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000006.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=8247 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=6 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=6 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth30' - Flags='NonModel#' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=2464 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=2465 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0002465.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=7791 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=2465 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=2465 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth32' - Flags='NonModel#' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=2592 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=2593 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0002593.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=7839 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=2593 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=2593 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth34' - Flags='NonModel#' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=2720 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=2721 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0002721.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=7887 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=2721 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=2721 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth36' - Flags='NonModel#' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=2848 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=2849 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0002849.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=7935 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=2849 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=2849 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth38' - Flags='NonModel#' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=2976 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=2977 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0002977.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=7983 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=2977 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=2977 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth40' - Flags='NonModel#' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=3104 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=3105 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0003105.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=8031 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=3105 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=3105 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator_Teeth42' - Flags='NonModel#' - Color='(128 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=3232 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=3233 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0003233.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=8079 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=3233 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=3233 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Magnet1' - Flags='NonModel#' - Color='(255 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=5329 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=5330 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0005330.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=6617 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=5330 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=5330 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Shaft' - Flags='NonModel#' - Color='(0 255 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=5357 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=5358 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0005358.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=7089 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=5358 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=5358 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Magnet2' - Flags='NonModel#' - Color='(255 128 128)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=5366 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=5367 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0005367.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=6713 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=5367 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=5367 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Rotor' - Flags='NonModel#' - Color='(128 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=false - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=5394 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=10 - SourceFile='D:\\PreSales\\Customer\\Romax\\Recording\\Multiphysics_Motor_Geometry.sat' - $end 'NativeBodyParameters' - ParentPartID=5395 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=140 - NumWires=0 - NumLoops=160 - NumCoedges=824 - NumEdges=412 - NumVertices=276 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0005395.x_b'] - $end 'BodyBlock' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=6809 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=10 - ClonedEntity=5395 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=5395 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $end 'OperandParts' - $begin 'Planes' - $end 'Planes' - $begin 'Points' - $end 'Points' - $begin 'GeometryEntityLists' - $begin 'GeometryEntityListOperation' - OperationType='EntityList' - ID=30947 - $begin 'GeometryEntityListParameters' - EntityType='Object' - EntityList(11298) - $end 'GeometryEntityListParameters' - ParentPartID=-1 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='Objectlist1' - $end 'Attributes' - $end 'GeometryEntityListOperation' - $end 'GeometryEntityLists' - $begin 'CachedNames' - $begin 'airgap' - airgap(-1) - $end 'airgap' - $begin 'allobjects' - allobjects(-1) - $end 'allobjects' - $begin 'band' - band(-1) - $end 'band' - $begin 'coil' - coil(-1) - $end 'coil' - $begin 'coil_' - coil_(1, 2, 3, 4, 5) - $end 'coil_' - $begin 'global' - global(-1) - $end 'global' - $begin 'magnet' - magnet(1, 2) - $end 'magnet' - $begin 'magnet1_section' - magnet1_section(1) - $end 'magnet1_section' - $begin 'magnet2_section' - magnet2_section(1) - $end 'magnet2_section' - $begin 'model' - model(-1) - $end 'model' - $begin 'objectlist' - objectlist(1) - $end 'objectlist' - $begin 'purgedcs' - purgedcs(1, 2) - $end 'purgedcs' - $begin 'region' - region(-1) - $end 'region' - $begin 'relativecs' - relativecs(1, 2, 3, 4, 5) - $end 'relativecs' - $begin 'relativecs1:xy' - 'relativecs1:xy'(-1) - $end 'relativecs1:xy' - $begin 'relativecs1:xz' - 'relativecs1:xz'(-1) - $end 'relativecs1:xz' - $begin 'relativecs1:yz' - 'relativecs1:yz'(-1) - $end 'relativecs1:yz' - $begin 'rotor' - rotor(-1) - $end 'rotor' - $begin 'rotor_section' - rotor_section(1) - $end 'rotor_section' - $begin 'shaft' - shaft(-1) - $end 'shaft' - $begin 'shaft_section' - shaft_section(1) - $end 'shaft_section' - $begin 'stator_teeth' - stator_teeth(30, 32, 34, 36, 38, 40, 42) - $end 'stator_teeth' - $begin 'stator_teeth30_section' - stator_teeth30_section(1) - $end 'stator_teeth30_section' - $begin 'stator_teeth32_section' - stator_teeth32_section(1) - $end 'stator_teeth32_section' - $begin 'stator_teeth34_section' - stator_teeth34_section(1) - $end 'stator_teeth34_section' - $begin 'stator_teeth36_section' - stator_teeth36_section(1) - $end 'stator_teeth36_section' - $begin 'stator_teeth38_section' - stator_teeth38_section(1) - $end 'stator_teeth38_section' - $begin 'stator_teeth40_section' - stator_teeth40_section(1) - $end 'stator_teeth40_section' - $begin 'stator_teeth42_section' - stator_teeth42_section(1) - $end 'stator_teeth42_section' - $begin 'stator_yoke' - stator_yoke(-1) - $end 'stator_yoke' - $begin 'stator_yoke_section' - stator_yoke_section(1) - $end 'stator_yoke_section' - $begin 'tooth_' - tooth_(1) - $end 'tooth_' - $end 'CachedNames' - $end 'GeometryOperations' - $begin 'GeometryDependencies' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93546) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93547) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93548) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93549) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93550) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93551) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93552) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93553) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93554) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93555) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93556) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93557) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93558) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93559) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93560) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93561) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93562) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93563) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93564) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93565) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93566) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 93567) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 5) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 8247) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 2464) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 7791) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 2592) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 7839) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 2720) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 7887) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 2848) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 7935) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 2976) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 7983) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 3104) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 8031) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 3232) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 8079) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 5329) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 6617) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 5357) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 7089) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 5366) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 6713) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 5394) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 6809) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('CoordinateSystem', 8726) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('CoordinateSystem', 10373) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('CoordinateSystem', 11108) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('CoordinateSystem', 13199) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('CoordinateSystem', 23729) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('CoordinateSystem', 93538) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('CoordinateSystem', 93542) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $end 'GeometryDependencies' - $end 'GeometryCore' - $begin 'AssignedEntities' - AssignedObject[21: 6619, 6715, 6811, 7091, 7793, 7841, 7889, 7937, 7985, 8033, 8081, 8249, 8815, 8821, 9574, 9588, 9599, 9610, 9621, 9632, 11298] - $begin 'AssignedEdge' - kID=6814 - $begin 'EdgeData' - ParentObjectID=6811 - ParentFaces[1: 6812] - $begin 'EdgeGeomTopol' - EdgeFaces(6812) - $begin 'EdTolVts' - TolVt(56.7099638511611, 56.7099638511611, 0, 5e-07) - TolVt(80.2, 0, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(74.0951385074053, 30.6912112756802, 0) - $end 'EdgeGeomTopol' - $end 'EdgeData' - $end 'AssignedEdge' - $begin 'AssignedEdge' - kID=7802 - $begin 'EdgeData' - ParentObjectID=7793 - ParentFaces[1: 7794] - $begin 'EdgeGeomTopol' - EdgeFaces(7794) - $begin 'EdTolVts' - TolVt(57.240293937051, 57.240293937051, 0, 5e-07) - TolVt(60.2208390781554, 54.0957765516209, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(58.7516079754489, 55.6879794955713, 0) - $end 'EdgeGeomTopol' - $end 'EdgeData' - $end 'AssignedEdge' - $begin 'AssignedEdge' - kID=7848 - $begin 'EdgeData' - ParentObjectID=7841 - ParentFaces[1: 7842] - $begin 'EdgeGeomTopol' - EdgeFaces(7842) - $begin 'EdTolVts' - TolVt(61.4933765012986, 52.6447257231865, 0, 5e-07) - TolVt(66.7665571801262, 45.7725828669624, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(64.2219528965755, 49.2792376782559, 0) - $end 'EdgeGeomTopol' - $end 'EdgeData' - $end 'AssignedEdge' - $begin 'AssignedEdge' - kID=7893 - $begin 'EdgeData' - ParentObjectID=7889 - ParentFaces[1: 7890] - $begin 'EdgeGeomTopol' - EdgeFaces(7890) - $begin 'EdTolVts' - TolVt(67.8388077298541, 44.1678465152184, 0, 5e-07) - TolVt(72.1698809775583, 36.6662075988925, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(70.1047564363503, 40.475, 0) - $end 'EdgeGeomTopol' - $end 'EdgeData' - $end 'AssignedEdge' - $begin 'AssignedEdge' - kID=7944 - $begin 'EdgeData' - ParentObjectID=7937 - ParentFaces[1: 7938] - $begin 'EdgeGeomTopol' - EdgeFaces(7938) - $begin 'EdTolVts' - TolVt(73.0234981496809, 34.9352432077344, 0, 5e-07) - TolVt(76.3383581021929, 26.9324633530123, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(74.7880481567887, 30.9782238499539, 0) - $end 'EdgeGeomTopol' - $end 'EdgeData' - $end 'AssignedEdge' - $begin 'AssignedEdge' - kID=7993 - $begin 'EdgeData' - ParentObjectID=7985 - ParentFaces[1: 7986] - $begin 'EdgeGeomTopol' - EdgeFaces(7986) - $begin 'EdTolVts' - TolVt(76.958736270228, 25.1048882030867, 0, 5e-07) - TolVt(79.2006647547078, 16.7378971920726, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(78.1916956381001, 20.9514017010491, 0) - $end 'EdgeGeomTopol' - $end 'EdgeData' - $end 'AssignedEdge' - $begin 'AssignedEdge' - kID=8040 - $begin 'EdgeData' - ParentObjectID=8033 - ParentFaces[1: 8034] - $begin 'EdgeGeomTopol' - EdgeFaces(8034) - $begin 'EdTolVts' - TolVt(79.5771890761988, 14.8449816008943, 0, 5e-07) - TolVt(80.7078260746967, 6.25694096955461, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(80.25746152821, 10.5660952602131, 0) - $end 'EdgeGeomTopol' - $end 'EdgeData' - $end 'AssignedEdge' - $begin 'AssignedEdge' - kID=8091 - $begin 'EdgeData' - ParentObjectID=8081 - ParentFaces[1: 8082] - $begin 'EdgeGeomTopol' - EdgeFaces(8082) - $begin 'EdTolVts' - TolVt(80.8340541141109, 4.33107324770416, 0, 5e-07) - TolVt(80.95, 0, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(80.9210083369495, 2.16631247315762, 0) - $end 'EdgeGeomTopol' - $end 'EdgeData' - $end 'AssignedEdge' - $begin 'AssignedEdge' - kID=8822 - $begin 'EdgeData' - ParentObjectID=8821 - ParentFaces[1: 8825] - $begin 'EdgeGeomTopol' - EdgeFaces(8825) - $begin 'EdTolVts' - TolVt(140, 0, 0, 5e-07) - TolVt(98.9949493661166, 98.9949493661167, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(129.34313455158, 53.5756805311126, 0) - $end 'EdgeGeomTopol' - $end 'EdgeData' - $end 'AssignedEdge' - $begin 'AssignedEdge' - kID=9552 - $begin 'EdgeData' - ParentObjectID=8821 - ParentFaces[1: 8825] - $begin 'EdgeGeomTopol' - EdgeFaces(8825) - $begin 'EdTolVts' - TolVt(-5.02429586778808e-15, 0, 0, 5e-07) - TolVt(140, 0, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(70, 0, 0) - $end 'EdgeGeomTopol' - $end 'EdgeData' - $end 'AssignedEdge' - $begin 'AssignedEdge' - kID=9556 - $begin 'EdgeData' - ParentObjectID=8821 - ParentFaces[1: 8825] - $begin 'EdgeGeomTopol' - EdgeFaces(8825) - $begin 'EdTolVts' - TolVt(-5.02429586778808e-15, 0, 0, 5e-07) - TolVt(98.9949493661166, 98.9949493661167, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(49.4974746830584, 49.4974746830584, 0) - $end 'EdgeGeomTopol' - $end 'EdgeData' - $end 'AssignedEdge' - $end 'AssignedEntities' - GroupByMaterial=true - GroupSheetByMaterial=true - GroupCompByDefID=true - DoNotOrganizeUnderGroup=true - DoNotOrganizeUnderComponent=false - OrganizeLightweight=false - ShowGroup=true - $begin 'LastUserInputs' - $begin 'AnalysisLastUserInput' - SliverFaceTol=0 - SmallEdgeTol=0 - SmallFaceAreaTol=0 - SpikeTol=-1 - GashWidthBound=-1 - GashAspectBound=-1 - BoundingBoxScaleFactor=1250 - DetectSliverFaces=false - DetectSmallEdges=false - DetectSmallFaces=false - DetectSpikes=true - DetectGashes=true - HoleRadiusTol=0 - ChamferWidthTol=0 - BlendRadiusTol=0 - DetectHoles=false - DetectChamfers=false - DetectBlends=false - PerformEntityCheckErrors=true - EntityCheckLevel=20 - $end 'AnalysisLastUserInput' - $begin 'HealingLastUserInput' - AutoHeal=true - TolerantStitch=true - SimplifyGeom=true - TightenGaps=true - HealToSolid=false - StopAfterFirstStitchError=false - MaxStitchTol=0.001 - ExplodeAndStitch=true - GeomSimplificationTol=-1 - MaximumGeneratedRadiusForSimplification=-1 - SimplifyType=2 - TightenGapsWidth=1e-06 - RemoveSliverFaces=false - RemoveSmallEdges=false - RemoveSmallFaces=false - SliverFaceTol=0 - SmallEdgeTol=0 - SmallFaceAreaTol=0 - SpikeTol=-1 - GashWidthBound=-1 - GashAspectBound=-1 - BoundingBoxScaleFactor=1250 - RemoveHoles=false - RemoveChamfers=false - RemoveBlends=false - HoleRadiusTol=0 - ChamferWidthTol=0 - BlendRadiusTol=0 - AllowableSurfaceAreaChange=5 - AllowableVolumeChange=5 - $end 'HealingLastUserInput' - $end 'LastUserInputs' - $begin 'MotionSetupList' - NextUniqueID=12 - MoveBackwards=false - $begin 'MotionSetup1' - ID=10 - MotionType='Band' - 'Move Type'='Rotate' - 'Coordinate System'=1 - Axis='Z' - 'Is Positive'=true - InitPos='Init_Pos' - HasRotateLimit=false - NonCylindrical=false - 'Consider Mechanical Transient'=false - 'Angular Velocity'='speed_mech' - Objects(8815) - $end 'MotionSetup1' - $begin 'Moving1' - ID=11 - MotionType='Moving' - BandName=10 - Objects(6619, 6715, 6811, 7091) - $end 'Moving1' - $end 'MotionSetupList' - $end 'ModelSetup' - $begin '3DComponent' - $end '3DComponent' - $begin 'BoundarySetup' - $begin 'GlobalBoundData' - CoreLossObjectIDs[20: 6619, 6715, 6811, 7091, 7793, 7841, 7889, 7937, 7985, 8033, 8081, 8249, 8815, 8821, 9574, 9588, 9599, 9610, 9621, 9632] - ConsiderCoreLossEffectOnField=false - MinimumTimeStep='0ns' - ExternalCircuitFile[0:] - ExternalCircuitFileExtenstion='' - InductorNames[0:] - SourceNames[0:] - SourceType[0:] - OriginalPath='' - OriginalDesign='' - CurrentProbes() - VoltageProbes() - $begin 'ParamValues' - $end 'ParamValues' - ExternalSimulinkCircuitFileExtenstion='' - MaxwellToSimulink[0:] - SimulinkToMaxwell[0:] - SimulinkFile='' - ExternalSimulinkCircuitFile='' - $begin 'EddyEffect' - $begin 'Eddy Effect Data' - 'Object ID'=6619 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=6715 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=6811 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=7091 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=7793 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=7841 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=7889 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=7937 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=7985 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=8033 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=8081 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=8249 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=9574 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=9588 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=9599 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=9610 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=9621 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=9632 - 'Is Eddy Current Solution'=false - 'Eddy Effect'=false - $end 'Eddy Effect Data' - $end 'EddyEffect' - $begin 'OP_Option' - LinkType='None' - $end 'OP_Option' - $begin 'YConnectionData' - $end 'YConnectionData' - $end 'GlobalBoundData' - $begin 'Boundaries' - NextUniqueID=23 - MoveBackwards=false - $begin 'Master1' - ID=20 - BoundType='Independent' - IsComponent=false - Edges(9552) - ParentBndID=-1 - ReverseV=false - $end 'Master1' - $begin 'Slave1' - ID=21 - BoundType='Dependent' - IsComponent=false - Edges(9556) - ParentBndID=-1 - ReverseU=true - Independent=20 - SameAsMaster=false - $end 'Slave1' - $begin 'VectorPotential1' - ID=22 - BoundType='Vector Potential' - IsComponent=false - Edges(8822) - ParentBndID=-1 - Value='0' - CoordinateSystem=-1 - $end 'VectorPotential1' - $begin 'Coil' - ID=3 - BoundType='Coil' - IsComponent=false - Objects(9574) - ParentBndID=9 - 'Conductor number'='8' - Winding=9 - PolarityType='Positive' - $end 'Coil' - $begin 'Coil_1' - ID=4 - BoundType='Coil' - IsComponent=false - Objects(9588) - ParentBndID=9 - 'Conductor number'='8' - Winding=9 - PolarityType='Positive' - $end 'Coil_1' - $begin 'Coil_2' - ID=5 - BoundType='Coil' - IsComponent=false - Objects(9599) - ParentBndID=11 - 'Conductor number'='8' - Winding=11 - PolarityType='Negative' - $end 'Coil_2' - $begin 'Coil_3' - ID=6 - BoundType='Coil' - IsComponent=false - Objects(9610) - ParentBndID=11 - 'Conductor number'='8' - Winding=11 - PolarityType='Negative' - $end 'Coil_3' - $begin 'Coil_4' - ID=7 - BoundType='Coil' - IsComponent=false - Objects(9621) - ParentBndID=10 - 'Conductor number'='8' - Winding=10 - PolarityType='Positive' - $end 'Coil_4' - $begin 'Coil_5' - ID=8 - BoundType='Coil' - IsComponent=false - Objects(9632) - ParentBndID=10 - 'Conductor number'='8' - Winding=10 - PolarityType='Positive' - $end 'Coil_5' - $begin 'Current_1' - ID=12 - BoundType='Current' - IsComponent=false - Objects(6619) - ParentBndID=-1 - Current='0mA' - IsSolid=true - IsPositive=true - $end 'Current_1' - $begin 'Current_2' - ID=13 - BoundType='Current' - IsComponent=false - Objects(6715) - ParentBndID=-1 - Current='0mA' - IsSolid=true - IsPositive=true - $end 'Current_2' - $begin 'PhaseA' - ID=9 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Voltage' - IsSolid=false - Current='Ipeak*cos(2*pi*freq_elec*time-gamma)' - Resistance='1ohm' - Inductance='0nH' - Voltage='0mV' - ParallelBranchesNum='1' - $end 'PhaseA' - $begin 'PhaseB' - ID=10 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Voltage' - IsSolid=false - Current='Ipeak*cos(2*pi*freq_elec*time-gamma-120deg)' - Resistance='1ohm' - Inductance='0nH' - Voltage='0mV' - ParallelBranchesNum='1' - $end 'PhaseB' - $begin 'PhaseC' - ID=11 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Voltage' - IsSolid=false - Current='Ipeak*cos(2*pi*freq_elec*time-gamma-240deg)' - Resistance='1ohm' - Inductance='0nH' - Voltage='0mV' - ParallelBranchesNum='1' - $end 'PhaseC' - $end 'Boundaries' - $begin 'ProductSpecificData' - $end 'ProductSpecificData' - $end 'BoundarySetup' - $begin 'MaxwellParameterSetup' - $begin 'MaxwellParameters' - NextUniqueID=10 - MoveBackwards=false - $begin 'Torque_Stator' - ID=3 - MaxwellParameterType='Torque' - 'Coordinate System'=1 - 'Is Positive'=true - Objects(7793, 7841, 7889, 7937, 7985, 8033, 8081, 8249) - $end 'Torque_Stator' - $begin 'Torque_Coils' - ID=9 - MaxwellParameterType='Torque' - 'Coordinate System'=1 - 'Is Positive'=true - Objects(9574, 9588, 9599, 9610, 9621, 9632) - $end 'Torque_Coils' - $end 'MaxwellParameters' - MotionParams(Moving1=8) - $end 'MaxwellParameterSetup' - $begin 'MeshSetup' - $begin 'MeshSettings' - $begin 'GlobalSurfApproximation' - CurvedSurfaceApproxChoice='UseSlider' - SliderMeshSettings=5 - $end 'GlobalSurfApproximation' - $begin 'GlobalModelRes' - UseAutoLength=true - $end 'GlobalModelRes' - $begin 'GlobalLengthMeshSetup' - RefineInside=true - ID=-1 - Type='LengthBased' - IsComponent=false - Enabled=false - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='1mm' - ApplyToInitialMesh=false - IsGlobal=true - $end 'GlobalLengthMeshSetup' - $end 'MeshSettings' - $begin 'MeshOperations' - NextUniqueID=15 - MoveBackwards=false - $begin 'Length_Rotor' - RefineInside=true - ID=2 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(6811) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='3mm' - ApplyToInitialMesh=false - IsGlobal=false - $end 'Length_Rotor' - $begin 'Length_Stator' - RefineInside=true - ID=3 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(7793, 7841, 7889, 7937, 7985, 8033, 8081) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='2mm' - ApplyToInitialMesh=false - IsGlobal=false - $end 'Length_Stator' - $begin 'Length_Yoke' - RefineInside=true - ID=4 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(8249) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='3mm' - ApplyToInitialMesh=false - IsGlobal=false - $end 'Length_Yoke' - $begin 'Length_coils' - RefineInside=true - ID=5 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(9574, 9588, 9599, 9610, 9621, 9632) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='5mm' - ApplyToInitialMesh=false - IsGlobal=false - $end 'Length_coils' - $begin 'Length_Magnets' - RefineInside=true - ID=6 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(6619, 6715) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='2.5mm' - ApplyToInitialMesh=false - IsGlobal=false - $end 'Length_Magnets' - $begin 'Length_Rotor_edge' - RefineInside=false - ID=7 - Type='LengthBased' - IsComponent=false - Enabled=true - Edges(6814) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='2*pi*R_rotor/8/6/N_pts*2' - ApplyToInitialMesh=false - IsGlobal=false - $end 'Length_Rotor_edge' - $begin 'Length_Region' - RefineInside=true - ID=8 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(8821) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='20mm' - ApplyToInitialMesh=false - IsGlobal=false - $end 'Length_Region' - $begin 'Length_Tooth_Surface' - RefineInside=false - ID=13 - Type='LengthBased' - IsComponent=false - Enabled=true - Edges(7802, 7848, 7893, 7944, 8040, 7993, 8091) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='2*pi*R_stator/8/6/N_pts*2' - ApplyToInitialMesh=false - IsGlobal=false - $end 'Length_Tooth_Surface' - $begin 'CylindricalGap1' - ID=14 - Type='CylindricalGap' - IsComponent=false - Objects(8815) - UseBandMappingAngle=true - BandMappingAngle='3deg' - ID=14 - Type='CylindricalGap' - IsComponent=false - Objects(8815) - $end 'CylindricalGap1' - $end 'MeshOperations' - $end 'MeshSetup' - $begin 'AnalysisSetup' - $begin 'SolveSetups' - NextUniqueID=2 - MoveBackwards=false - $begin 'Setup1' - ID=0 - SetupType='Transient' - Enabled=true - $begin 'MeshLink' - ImportMesh=false - $end 'MeshLink' - NonlinearSolverResidual='1e-07' - TimeIntegrationMethod=0 - SmoothBHCurve=false - StopTime='1/freq_elec*0+2*Tstep' - TimeStep='Tstep' - OutputError=false - OutputPerObjectCoreLoss=false - OutputPerObjectSolidLoss=false - UseControlProgram=false - ControlProgramName='' - ControlProgramArg='' - CallCtrlProgAfterLastStep=true - FastReachSteadyState=false - AutoDetectSteadyState=false - IsGeneralTransient=true - IsHalfPeriodicTransient=false - SaveFieldsType='None' - UseNonLinearIterNum=false - CacheSaveKind='Count' - NumberSolveSteps=1 - RangeStart='0s' - RangeEnd='0.1s' - UseAdaptiveTimeStep=false - InitialTimeStep='0.002s' - MinTimeStep='0.001s' - MaxTimeStep='0.003s' - TimeStepErrTolerance=0.0001 - $end 'Setup1' - $end 'SolveSetups' - $end 'AnalysisSetup' - $begin 'Optimetrics' - $begin 'OptimetricsSetups' - NextUniqueID=1 - MoveBackwards=false - $begin 'ParametricSetup1' - ID=0 - SetupType='OptiParametric' - IsEnabled=true - NextUniqueID=47 - MoveBackwards=false - GoalSetupVersion=0 - Version=46 - $begin 'ProdOptiSetupDataV2' - SaveFields=false - CopyMesh=false - SolveWithCopiedMeshOnly=false - $end 'ProdOptiSetupDataV2' - InterpolationPoints=0 - $begin 'StartingPoint' - $end 'StartingPoint' - 'Sim. Setups'(43) - $begin 'Sweeps' - $begin 'SweepDefinition' - Variable='speed_mech' - Data='LIN 1500rpm 4500rpm 1500rpm' - OffsetF1=false - Synchronize=0 - $end 'SweepDefinition' - $end 'Sweeps' - $begin 'Sweep Operations' - $end 'Sweep Operations' - $begin 'Goals' - $end 'Goals' - $end 'ParametricSetup1' - $end 'OptimetricsSetups' - $end 'Optimetrics' - $begin 'Solutions' - $end 'Solutions' - $begin 'FieldsReporter' - $begin 'FieldsCalculator' - $begin 'Named_Expression' - Name('fdens_x') - ExpressionID(10000) - Fundamental_Quantity(22) - Operation('ScalarX') - Fundamental_Quantity(21) - Operation('ScalarX') - Operation('*') - Fundamental_Quantity(22) - Operation('ScalarY') - Fundamental_Quantity(21) - Operation('ScalarY') - Operation('*') - Operation('-') - Scalar_Constant(2) - Operation('/') - Operation('VecX') - Fundamental_Quantity(22) - Operation('ScalarX') - Fundamental_Quantity(21) - Operation('ScalarY') - Operation('*') - Operation('VecY') - Operation('+') - Operation('2D_Normal') - Operation('Dot') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('fdens_y') - ExpressionID(10001) - Fundamental_Quantity(22) - Operation('ScalarY') - Fundamental_Quantity(21) - Operation('ScalarX') - Operation('*') - Operation('VecX') - Fundamental_Quantity(22) - Operation('ScalarY') - Fundamental_Quantity(21) - Operation('ScalarY') - Operation('*') - Fundamental_Quantity(22) - Operation('ScalarX') - Fundamental_Quantity(21) - Operation('ScalarX') - Operation('*') - Operation('-') - Scalar_Constant(2) - Operation('/') - Operation('VecY') - Operation('+') - Operation('2D_Normal') - Operation('Dot') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('dM') - ExpressionID(10002) - Scalar_Function(FuncValue='X') - NameOfExpression('fdens_y') - Operation('*') - Scalar_Function(FuncValue='Y') - NameOfExpression('fdens_x') - Operation('*') - Operation('-') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('F_tooth_1_x') - ExpressionID(10007) - NameOfExpression('fdens_x') - EnterLine('tooth_1', 11298) - Operation('LineValue') - Operation('Integrate') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('F_tooth_1_y') - ExpressionID(10008) - NameOfExpression('fdens_y') - EnterLine('tooth_1', 11298) - Operation('LineValue') - Operation('Integrate') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('Int_Trq_Lines') - ExpressionID(10017) - NameOfExpression('dM') - EnterLine('Objectlist1', 30947) - Operation('LineValue') - Operation('Integrate') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('Trq_Line1') - ExpressionID(10018) - NameOfExpression('dM') - EnterLine('tooth_1', 11298) - Operation('LineValue') - Operation('Integrate') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('Bx') - ExpressionID(10020) - Fundamental_Quantity(22) - Operation('ScalarX') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('By') - ExpressionID(10021) - Fundamental_Quantity(22) - Operation('ScalarY') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('Br') - ExpressionID(10022) - Fundamental_Quantity(22) - Vector_Function(FuncValueX='0mm', FuncValueY='0mm', FuncValueZ='0mm') - Operation('ToCylindrical') - Operation('ScalarX') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('Bt') - ExpressionID(10023) - Fundamental_Quantity(22) - Vector_Function(FuncValueX='0mm', FuncValueY='0mm', FuncValueZ='0mm') - Operation('ToCylindrical') - Operation('ScalarY') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('mu0') - ExpressionID(10024) - Scalar_Constant(1.25664e-06) - $end 'Named_Expression' - $begin 'Named_Expression' - Name('Fdens_r') - ExpressionID(10025) - NameOfExpression('Br') - NameOfExpression('Br') - Operation('*') - NameOfExpression('Bt') - NameOfExpression('Bt') - Operation('*') - Operation('-') - NameOfExpression('mu0') - Scalar_Constant(2) - Operation('*') - Operation('/') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('Fdens_t') - ExpressionID(10026) - NameOfExpression('Br') - NameOfExpression('Bt') - Operation('*') - NameOfExpression('mu0') - Operation('/') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('B_radial') - ExpressionID(10027) - Fundamental_Quantity(22) - Operation('ScalarX') - Scalar_Function(FuncValue='PHI') - Operation('UMathFunc', 'Cos') - Operation('*') - Fundamental_Quantity(22) - Operation('ScalarY') - Scalar_Function(FuncValue='PHI') - Operation('UMathFunc', 'Sin') - Operation('*') - Operation('+') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('B_tangential') - ExpressionID(10028) - Fundamental_Quantity(22) - Operation('ScalarX') - Scalar_Constant(-1) - Operation('*') - Scalar_Function(FuncValue='PHI') - Operation('UMathFunc', 'Sin') - Operation('*') - Fundamental_Quantity(22) - Operation('ScalarY') - Scalar_Function(FuncValue='PHI') - Operation('UMathFunc', 'Cos') - Operation('*') - Operation('+') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('f_radial') - ExpressionID(10029) - NameOfExpression('B_radial') - Scalar_Constant(2) - Operation('Pow') - NameOfExpression('B_tangential') - Scalar_Constant(2) - Operation('Pow') - Operation('-') - Scalar_Constant(2.51327e-06) - Operation('/') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('f_tangential') - ExpressionID(10030) - NameOfExpression('B_radial') - NameOfExpression('B_tangential') - Operation('*') - Scalar_Constant(1.25664e-06) - Operation('/') - $end 'Named_Expression' - Line_Discretization=1000 - $end 'FieldsCalculator' - $begin 'PlotDefaults' - Default_SolutionId=44 - Default_PlotFolder='Automatic' - $end 'PlotDefaults' - $begin 'FieldsPlotManagerID' - NextUniqueID=8 - MoveBackwards=false - NumQuantityType=1 - $begin 'QuantityFolder_1' - PlotFolder='MeshPlots' - PlotFolderInstance=96 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=90 - m_nLevels=15 - minvalue=1 - maxvalue=100 - log=false - IntrinsicMin=1 - IntrinsicMax=100 - LimitFieldValuePrecision=false - FieldValuePrecisionDigits=4 - dB=false - ScaleType=0 - UserSpecifyValues(16, 1, 7.59999990463257, 14.1999998092651, 20.7999992370605, 27.3999996185303, 34, 40.5999984741211, 47.2000007629395, 53.7999992370605, 60.3999977111816, 67, 73.5999984741211, 80.1999969482422, 86.7999954223633, 93.4000015258789, 100) - ValueNumberFormatTypeAuto=0 - ValueNumberFormatTypeScientific=true - ValueNumberFormatWidth=12 - ValueNumberFormatPrecision=4 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=1 - ArrowMaxMagnitude=0 - ArrowMagnitudeThreshold=0 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=0 - ArrowMaxIntrinsicMagnitude=1 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_1' - NumPlots=1 - $begin 'PlotDefinition_1' - PlotDefinitionType='Mesh_field_type' - PlotName='Mesh1' - PlotDefinitionId=3 - VersionID=1562 - SolutionId=44 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=-1 - PlotFolder='MeshPlots' - FieldType='Fields' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Time=\'-1\'' - FieldPlotGeometry(1, 128, 0, 1, -4) - FilterIds(0) - 'Real time mode'=true - $begin 'MeshSettings' - 'Scale factor'=96 - Transparency=45 - 'Mesh type'='Wire frame' - 'Surface only'=true - 'Add grid'=true - Refinement=0 - 'Use geometry color'=true - 'Mesh line color'(0, 0, 255) - 'Filled color'(255, 255, 255) - $end 'MeshSettings' - EnableGaussianSmoothing=false - SurfaceOnly=false - $end 'PlotDefinition_1' - $end 'FieldsPlotManagerID' - $begin 'Report3dInGeomWnd' - Report3dNum=0 - $end 'Report3dInGeomWnd' - $begin 'Report2dInGeomWnd' - Report2dNum=0 - $end 'Report2dInGeomWnd' - $begin 'AntennaParametersInGeomWnd' - AntennaParametersNum=0 - $end 'AntennaParametersInGeomWnd' - AntennaParametersPlotTablesOrder() - $end 'FieldsReporter' - $begin 'SolutionManager' - $begin 'SimSetup' - TypeName='BaseSetup' - ID=43 - Name='Setup1' - $begin 'Solution' - ID=44 - Name='Transient' - $begin 'SimDataExtractor' - $begin 'QuantityIDs' - NextUniqueID=0 - MoveBackwards=false - IDMap() - $end 'QuantityIDs' - $begin 'Sweeps' - $begin 'PostprocessSweep' - Variable='NormalizedDistance' - RegularSweep=1 - Units='' - Minimum=0 - Maximum=1 - Increment=0.01 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phi' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Theta' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phase' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'Sweep' - Variable='Time' - Column='' - Units='ns' - $end 'Sweep' - $end 'Sweeps' - $end 'SimDataExtractor' - $end 'Solution' - $end 'SimSetup' - $begin 'Version ID Map' - V=20111 - $begin 'Setup' - N='Setup1' - V=20111 - Soln(N='Transient', V=20111) - $end 'Setup' - $end 'Version ID Map' - $begin 'ID Map' - $begin 'Setup' - N='Setup1' - I=43 - Soln(N='Transient', I=44) - $end 'Setup' - $end 'ID Map' - ValidationCacheHeader='' - $end 'SolutionManager' - $begin 'UserDefinedSolutionMgr' - NextUniqueID=1000000 - MoveBackwards=false - $end 'UserDefinedSolutionMgr' - $begin 'DatasetSolutionMgr' - NextUniqueID=2000000 - MoveBackwards=false - $end 'DatasetSolutionMgr' - Notes=$begin_cdata$ $end_cdata$ - $begin 'AnimationSetups' - $end 'AnimationSetups' - CacheHeaderFile='HDR2DB93084017059352106.tmp' - $end 'Maxwell2DModel' - $begin 'DataInstances' - DesignEditor='TopLevel' - Refdes('32', 'U3') - Refdes('34', 'U6') - Refdes('31', 'U2') - Refdes('27', 'U4') - Refdes('30', 'U1') - Refdes('33', 'U5') - $begin 'CompInstances' - $begin 'Compinst' - ID='32' - Status='Status' - CompName='design_for_test' - GatesInUse() - $begin 'Properties' - TextProp('ID', 'SRID', '', '32') - $end 'Properties' - $begin 'Parameters' - MenuProp('CoSimulator', 'OHD', '', 'DefaultNetlist', 0) - ButtonProp('CosimDefinition', 'OHD', '', '', 'Edit', 40501, ButtonPropClientData()) - $end 'Parameters' - $end 'Compinst' - $begin 'Compinst' - ID='31' - Status='Status' - CompName='Sinusoidal' - GatesInUse() - $begin 'Properties' - TextProp('ID', 'SRID', '', '31') - $end 'Properties' - $begin 'Parameters' - MenuProp('CoSimulator', 'OHD', '', 'DefaultNetlist', 0) - ButtonProp('CosimDefinition', 'OHD', '', '', 'Edit', 40501, ButtonPropClientData()) - $end 'Parameters' - $end 'Compinst' - $begin 'Compinst' - ID='27' - Status='Status' - CompName='Basis_Model_For_Test' - GatesInUse() - $begin 'Properties' - TextProp('ID', 'SRID', '', '27') - $end 'Properties' - $begin 'Parameters' - MenuProp('CoSimulator', 'OHD', '', 'DefaultNetlist', 0) - ButtonProp('CosimDefinition', 'OHD', '', '', 'Edit', 40501, ButtonPropClientData()) - $end 'Parameters' - $end 'Compinst' - $begin 'Compinst' - ID='30' - Status='Status' - CompName='Y_Connections' - GatesInUse() - $begin 'Properties' - TextProp('ID', 'SRID', '', '30') - $end 'Properties' - $begin 'Parameters' - MenuProp('CoSimulator', 'OHD', '', 'DefaultNetlist', 0) - ButtonProp('CosimDefinition', 'OHD', '', '', 'Edit', 40501, ButtonPropClientData()) - $end 'Parameters' - $end 'Compinst' - $end 'CompInstances' - $begin 'Instance' - DesignEditor='design_for_test' - ID='32' - $begin 'Maxwell2DDesignInstance' - DesignInstanceID=96 - $begin 'WindowPosition' - $begin 'EditorWindow' - Circuit(Editor3d(View('View Orientation Gadget'=1, WindowPos(5, -1, -1, -9, -38, 78, 78, 2101, 659), OrientationMatrix(0.015422984957695, -1.74899067451051e-10, -2.57870946818173e-10, 0, 2.3283064365387e-10, 0.015422984957695, 4.65661287307739e-10, 0, 0, 4.65661287307739e-10, 0.015422984957695, 0, -1.07960879802704, -0.763398826122284, -6.01099395751953, 1, 0, -2.89366054534912, 2.89366054534912, -1, 1, -0.600233554840088, 12.622220993042), Drawings[31: 'Region', 'Band', 'Stator_Yoke_Section1', 'Shaft_Section1', 'Rotor_Section1', 'Stator_Teeth36_Section1', 'Stator_Teeth34_Section1', 'Stator_Teeth32_Section1', 'Stator_Teeth38_Section1', 'Stator_Teeth40_Section1', 'Magnet1_Section1', 'Magnet2_Section1', 'Stator_Teeth30_Section1', 'Stator_Teeth42_Section1', 'Coil_4', 'Coil_2', 'Coil', 'Coil_3', 'Coil_1', 'Coil_5', 'Airgap', 'tooth_1', 'Length_Rotor', 'Length_Stator', 'Length_Yoke', 'Length_coils', 'Length_Magnets', 'Length_Rotor_edge', 'Length_Region', 'Length_Tooth_Surface', 'CylindricalGap1'], 'View Data'('Render Mode'=1, 'Show Ruler'=1, 'Coordinate Systems View Mode'=1, 'CS Triad View Mode'=0, 'Render Facets'=1, GridVisible=1, GridAutoAdjust=1, GridAutoExtents=1, GridType='Rect', GridStyle='Line', NumPixels=30, dXForGrid=10, dYForGrid=10, dZForGrid=10, dRForGrid=10, dThetaForGrid=10), 'View Solution Context'('Solution ID'=44, 'View IntrinsicVar'='Time=\'-1s\''), ClipPlanes(ClipPlaneOptions(DisableWhenDrawingNewPlane=true, ForceOpqaueForUnclipped=false, ShowClipped=false, Transparency=0, HandleColor=16776960))))) - $end 'EditorWindow' - $end 'WindowPosition' - $begin 'ReportSetup' - $begin 'ReportManager' - $begin 'Reports' - $begin 'Torque' - ReportID=94 - ReportName='Torque' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=95 - SolutionID=44 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=93 - VersionID=12361 - Name='Moving1.Torque' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Moving1.Torque' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='speed_mech' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Ipeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(250) - ParameterType='DoubleParam' - Units='A' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='pole_pairs' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(4) - ParameterType='DoubleParam' - Units='' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='gamma' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1.0471975511966) - ParameterType='DoubleParam' - Units='deg' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='R_measure' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='N_pts' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Init_Pos' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='R_stator' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='R_rotor' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '9' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=96 - $end 'TraceDef' - $end 'Torque' - $end 'Reports' - NextUniqueID=1958 - MoveBackwards=false - $begin 'NextVersID' - NextUniqueID=12399 - MoveBackwards=false - $end 'NextVersID' - $end 'ReportManager' - $begin 'Reports' - $begin 'Torque' - ReportID=94 - $begin 'Report2D' - name='Torque' - ReportID=94 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=93 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=438 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, Stack119_AxisX=121, Stack119_AxisY1=122, Stack119_AxisY10=131, Stack119_AxisY11=132, Stack119_AxisY12=133, Stack119_AxisY13=134, Stack119_AxisY14=135, Stack119_AxisY15=136, Stack119_AxisY16=137, Stack119_AxisY17=138, Stack119_AxisY18=139, Stack119_AxisY19=140, Stack119_AxisY2=123, Stack119_AxisY20=141, Stack119_AxisY3=124, Stack119_AxisY4=125, Stack119_AxisY5=126, Stack119_AxisY6=127, Stack119_AxisY7=128, Stack119_AxisY8=129, Stack119_AxisY9=130, Stack119_Grid=142, Stack147_AxisX=149, Stack147_AxisY1=150, Stack147_AxisY10=159, Stack147_AxisY11=160, Stack147_AxisY12=161, Stack147_AxisY13=162, Stack147_AxisY14=163, Stack147_AxisY15=164, Stack147_AxisY16=165, Stack147_AxisY17=166, Stack147_AxisY18=167, Stack147_AxisY19=168, Stack147_AxisY2=151, Stack147_AxisY20=169, Stack147_AxisY3=152, Stack147_AxisY4=153, Stack147_AxisY5=154, Stack147_AxisY6=155, Stack147_AxisY7=156, Stack147_AxisY8=157, Stack147_AxisY9=158, Stack147_Grid=170, Stack175_AxisX=177, Stack175_AxisY1=178, Stack175_AxisY10=187, Stack175_AxisY11=188, Stack175_AxisY12=189, Stack175_AxisY13=190, Stack175_AxisY14=191, Stack175_AxisY15=192, Stack175_AxisY16=193, Stack175_AxisY17=194, Stack175_AxisY18=195, Stack175_AxisY19=196, Stack175_AxisY2=179, Stack175_AxisY20=197, Stack175_AxisY3=180, Stack175_AxisY4=181, Stack175_AxisY5=182, Stack175_AxisY6=183, Stack175_AxisY7=184, Stack175_AxisY8=185, Stack175_AxisY9=186, Stack175_Grid=198, Stack203_AxisX=205, Stack203_AxisY1=206, Stack203_AxisY10=215, Stack203_AxisY11=216, Stack203_AxisY12=217, Stack203_AxisY13=218, Stack203_AxisY14=219, Stack203_AxisY15=220, Stack203_AxisY16=221, Stack203_AxisY17=222, Stack203_AxisY18=223, Stack203_AxisY19=224, Stack203_AxisY2=207, Stack203_AxisY20=225, Stack203_AxisY3=208, Stack203_AxisY4=209, Stack203_AxisY5=210, Stack203_AxisY6=211, Stack203_AxisY7=212, Stack203_AxisY8=213, Stack203_AxisY9=214, Stack203_Grid=226, Stack231_AxisX=233, Stack231_AxisY1=234, Stack231_AxisY10=243, Stack231_AxisY11=244, Stack231_AxisY12=245, Stack231_AxisY13=246, Stack231_AxisY14=247, Stack231_AxisY15=248, Stack231_AxisY16=249, Stack231_AxisY17=250, Stack231_AxisY18=251, Stack231_AxisY19=252, Stack231_AxisY2=235, Stack231_AxisY20=253, Stack231_AxisY3=236, Stack231_AxisY4=237, Stack231_AxisY5=238, Stack231_AxisY6=239, Stack231_AxisY7=240, Stack231_AxisY8=241, Stack231_AxisY9=242, Stack231_Grid=254, Stack259_AxisX=261, Stack259_AxisY1=262, Stack259_AxisY10=271, Stack259_AxisY11=272, Stack259_AxisY12=273, Stack259_AxisY13=274, Stack259_AxisY14=275, Stack259_AxisY15=276, Stack259_AxisY16=277, Stack259_AxisY17=278, Stack259_AxisY18=279, Stack259_AxisY19=280, Stack259_AxisY2=263, Stack259_AxisY20=281, Stack259_AxisY3=264, Stack259_AxisY4=265, Stack259_AxisY5=266, Stack259_AxisY6=267, Stack259_AxisY7=268, Stack259_AxisY8=269, Stack259_AxisY9=270, Stack259_Grid=282, Stack312_AxisX=314, Stack312_AxisY1=315, Stack312_AxisY10=324, Stack312_AxisY11=325, Stack312_AxisY12=326, Stack312_AxisY13=327, Stack312_AxisY14=328, Stack312_AxisY15=329, Stack312_AxisY16=330, Stack312_AxisY17=331, Stack312_AxisY18=332, Stack312_AxisY19=333, Stack312_AxisY2=316, Stack312_AxisY20=334, Stack312_AxisY3=317, Stack312_AxisY4=318, Stack312_AxisY5=319, Stack312_AxisY6=320, Stack312_AxisY7=321, Stack312_AxisY8=322, Stack312_AxisY9=323, Stack312_Grid=335, Stack342_AxisX=344, Stack342_AxisY1=345, Stack342_AxisY10=354, Stack342_AxisY11=355, Stack342_AxisY12=356, Stack342_AxisY13=357, Stack342_AxisY14=358, Stack342_AxisY15=359, Stack342_AxisY16=360, Stack342_AxisY17=361, Stack342_AxisY18=362, Stack342_AxisY19=363, Stack342_AxisY2=346, Stack342_AxisY20=364, Stack342_AxisY3=347, Stack342_AxisY4=348, Stack342_AxisY5=349, Stack342_AxisY6=350, Stack342_AxisY7=351, Stack342_AxisY8=352, Stack342_AxisY9=353, Stack342_Grid=365, Stack86_AxisX=88, Stack86_AxisY1=89, Stack86_AxisY10=98, Stack86_AxisY11=99, Stack86_AxisY12=100, Stack86_AxisY13=101, Stack86_AxisY14=102, Stack86_AxisY15=103, Stack86_AxisY16=104, Stack86_AxisY17=105, Stack86_AxisY18=106, Stack86_AxisY19=107, Stack86_AxisY2=90, Stack86_AxisY20=108, Stack86_AxisY3=91, Stack86_AxisY4=92, Stack86_AxisY5=93, Stack86_AxisY6=94, Stack86_AxisY7=95, Stack86_AxisY8=96, Stack86_AxisY9=97, Stack86_Grid=109, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=7 - $begin 'CartesianHorizScrollerRenderAttribute' - Visibility=false - ThumbHeightUnits='mm' - BackgroundColor(R=255, G=255, B=255) - ThumbColor(R=190, G=210, B=241) - ThumbTrans=0 - $end 'CartesianHorizScrollerRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.003 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.006 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=5 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=220 - MaxScale=350 - TickSpacing=20 - ManualUnits=false - Units='' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=700 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=88 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=123 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=5 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=240 - MaxScale=310 - TickSpacing=20 - ManualUnits=false - Units='' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=620 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=151 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=5 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=230 - MaxScale=310 - TickSpacing=20 - ManualUnits=false - Units='' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=620 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=235 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=3.5 - MaxScale=4.75 - TickSpacing=0.25 - ManualUnits=false - Units='NewtonMeter' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=9.5 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=-1 - $begin 'StackedDisplayTypeAttribute' - CurveGroupingStrategy='Custom' - $end 'StackedDisplayTypeAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=-1 - $begin 'StackedLayoutModeAttribute' - AutoFitStackMode=true - StackHeightInPix=200 - $end 'StackedLayoutModeAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=109 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=142 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=170 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=198 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=226 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=254 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=282 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=335 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=365 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=59 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=68 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=70 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=72 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=74 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=76 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=311 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=341 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=408 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=412 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=255, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=0, G=25, B=185) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=128, G=64, B=100) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=0, B=128) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=59 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=0, B=200) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=192, G=192, B=192) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=68 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=255, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=0, G=25, B=185) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=70 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=80, G=0, B=80) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalEllipse' - SymbolColor(R=111, G=111, B=111) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=72 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=128, G=128, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalEllipse' - SymbolColor(R=240, G=130, B=19) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=74 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=200, G=0, B=128) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalDownTriangle' - SymbolColor(R=128, G=0, B=0) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=76 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=15, G=160, B=180) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowCircle' - SymbolColor(R=0, G=128, B=128) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=311 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=255, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=0, G=25, B=185) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=341 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=128, B=128) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HorizontalLeftTriangle' - SymbolColor(R=15, G=160, B=180) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=408 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=128, B=128) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HorizontalLeftTriangle' - SymbolColor(R=15, G=160, B=180) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=412 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=128, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=200, G=0, B=128) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=17 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=13 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='Dock Left' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=88 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=89 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=90 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=91 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=92 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=93 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=94 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=95 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=96 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=97 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=98 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=99 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=100 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=101 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=102 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=103 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=104 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=105 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=106 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=107 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=108 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=121 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=122 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=123 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=124 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=125 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=126 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=127 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=128 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=129 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=130 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=131 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=132 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=133 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=134 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=135 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=136 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=137 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=138 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=139 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=140 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=141 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=149 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=150 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=151 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=152 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=153 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=154 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=155 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=156 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=157 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=158 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=159 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=160 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=161 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=162 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=163 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=164 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=165 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=166 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=167 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=168 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=169 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=177 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=178 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=179 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=180 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=181 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=182 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=183 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=184 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=185 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=186 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=187 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=188 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=189 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=190 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=191 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=192 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=193 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=194 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=195 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=196 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=197 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=205 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=206 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=207 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=208 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=209 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=210 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=211 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=212 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=213 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=214 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=215 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=216 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=217 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=218 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=219 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=220 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=221 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=222 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=223 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=224 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=225 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=233 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=234 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=235 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=236 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=237 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=238 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=239 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=240 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=241 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=242 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=243 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=244 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=245 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=246 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=247 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=248 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=249 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=250 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=251 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=252 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=253 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=261 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=262 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=263 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=264 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=265 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=266 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=267 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=268 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=269 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=270 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=271 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=272 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=273 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=274 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=275 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=276 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=277 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=278 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=279 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=280 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=281 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=314 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=315 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=316 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=317 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=318 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=319 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=320 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=321 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=322 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=323 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=324 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=325 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=326 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=327 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=328 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=329 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=330 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=331 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=332 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=333 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=334 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=344 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=345 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=346 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=347 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=348 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=349 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=350 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=351 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=352 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=353 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=354 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=355 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=356 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=357 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=358 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=359 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=360 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=361 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=362 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=363 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=364 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=-1 - $begin 'StackedDisplayTypeAttribute' - CurveGroupingStrategy='Single' - $end 'StackedDisplayTypeAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=1690 - Left=75 - Bottom=9925 - Right=546 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=1690 - Left=9007 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=1690 - Left=806 - Bottom=2302 - Right=9007 - $end 'AxisRect' - $begin 'GridRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=2.5e-06 - X_fwd=4 - X_fpr=2 - Y1_spc=0.200000000000001 - Y1_fwd=5 - Y1_fpr=2 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4193 - Left=0 - Bottom=5807 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=8386 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=1615 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(93, 0, -1, 39) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $begin 'TraceCharacteristicsDataSource' - ID=410 - $begin 'Parameters' - Name='avg' - FunctionName='avg' - $begin 'Range' - Type='Full' - Start='0' - End='1' - $end 'Range' - $end 'Parameters' - $end 'TraceCharacteristicsDataSource' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=86 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 8, 61, 27, 28, 37, 38, 39, 40, 59, 60, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 311, 407, 408, 409, 410, 411, 412, 413) - $end 'PT' - $begin 'PT' - ID=21 - TransSrcDwg(-1, 0, 117, 5, 85, 39, 146, 59, 174, 70, 202, 72, 230, 74, 258, 76, 286, 88, 113, 90, 114, 109, 110, 123, 287, 142, 143, 151, 288, 170, 171, 179, 289, 198, 199, 207, 290, 226, 227, 235, 291, 254, 255, 263, 292, 282, 283, 311, 339, 316, 340, 335, 336, 341, 369, 346, 370, 365, 366) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - PtID(21, 86, 87, 119, 120, 147, 148, 175, 176, 203, 204, 231, 232, 259, 260, 312, 313, 342, 343) - $end 'AllPtSVID' - $begin 'PlotDataSourceGroupManager' - $begin 'CurveGroupingStrategyManager' - $begin 'ExplicitCurveGroupingStrategy' - CurveDSIDGroupIDMap(39, 119, 59, 119, 70, 119, 72, 147, 74, 231, 76, 119, 311, 147) - $end 'ExplicitCurveGroupingStrategy' - $end 'CurveGroupingStrategyManager' - DataSourceIDGroupIDMap(88, 86, 109, 86, 121, 119, 122, 119, 123, 119, 124, 119, 125, 119, 126, 119, 127, 119, 128, 119, 129, 119, 130, 119, 131, 119, 132, 119, 133, 119, 134, 119, 135, 119, 136, 119, 137, 119, 138, 119, 139, 119, 140, 119, 141, 119, 142, 119, 149, 147, 150, 147, 151, 147, 152, 147, 153, 147, 154, 147, 155, 147, 156, 147, 157, 147, 158, 147, 159, 147, 160, 147, 161, 147, 162, 147, 163, 147, 164, 147, 165, 147, 166, 147, 167, 147, 168, 147, 169, 147, 170, 147, 233, 231, 234, 231, 235, 231, 236, 231, 237, 231, 238, 231, 239, 231, 240, 231, 241, 231, 242, 231, 243, 231, 244, 231, 245, 231, 246, 231, 247, 231, 248, 231, 249, 231, 250, 231, 251, 231, 252, 231, 253, 231, 254, 231, 395, 119, 397, 147, 399, 231) - $end 'PlotDataSourceGroupManager' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Torque' - $end 'Reports' - $begin 'ReportsWindowInfoList' - $begin 'Torque' - ReportID=94 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Torque' - $end 'ReportsWindowInfoList' - $end 'ReportSetup' - $begin 'Properties' - $end 'Properties' - $begin 'UserDefinedDocument' - $begin 'Data' - $end 'Data' - $end 'UserDefinedDocument' - $end 'Maxwell2DDesignInstance' - $end 'Instance' - $begin 'Instance' - DesignEditor='Sinusoidal' - ID='31' - $begin 'Maxwell2DDesignInstance' - DesignInstanceID=93 - $begin 'WindowPosition' - $begin 'EditorWindow' - Circuit(Editor3d(View('View Orientation Gadget'=1, WindowPos(3, -1, -1, -16, -72, 130, 130, 1943, 870), OrientationMatrix(0.0218102876096964, -1.98315017185813e-10, 4.87490880995978e-10, 0, -4.65661287307739e-10, 0.0218102857470512, 0, 0, 4.65661287307739e-10, 0, 0.0218102857470512, 0, -1.0796092748642, -0.763399183750153, -6.01099395751953, 1, 0, -1.15598881244659, 1.15598881244659, -1, 1, -0.600235462188721, 12.6222229003906), Drawings[25: 'Region', 'Outer_Band', 'Band', 'Inner_Band', 'Stator', 'Rotor', 'Shaft', 'slot_IM1', 'slot_IM1_1', 'Coil_1', 'Coil_3', 'Coil_2', 'Coil', 'Coil_5', 'Coil_4', 'PM_I1', 'PM_I1_1', 'slot_OM1', 'slot_OM1_1', 'PM_O1', 'PM_O1_1', 'CylindricalGap1', 'coils', 'stator', 'rotor'], 'View Data'('Render Mode'=1, 'Show Ruler'=1, 'Coordinate Systems View Mode'=1, 'CS Triad View Mode'=0, 'Render Facets'=1, GridVisible=1, GridAutoAdjust=1, GridAutoExtents=1, GridType='Rect', GridStyle='Line', NumPixels=30, dXForGrid=2, dYForGrid=2, dZForGrid=2, dRForGrid=2, dThetaForGrid=10), 'View Solution Context'('Solution ID'=60, 'View IntrinsicVar'='Time=\'-1s\''), ClipPlanes(ClipPlaneOptions(DisableWhenDrawingNewPlane=true, ForceOpqaueForUnclipped=false, ShowClipped=false, Transparency=0, HandleColor=16776960))))) - $end 'EditorWindow' - $end 'WindowPosition' - $begin 'ReportSetup' - $begin 'ReportManager' - $begin 'Reports' - $begin 'TorquePlots' - ReportID=1 - ReportName='TorquePlots' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=0 - VersionID=90 - Name='Moving1.Torque' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Moving1.Torque' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'TorquePlots' - $begin 'PhaseVoltages' - ReportID=8 - ReportName='PhaseVoltages' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=2 - VersionID=91 - Name='U_A' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='U_A' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=3 - VersionID=92 - Name='U_B' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='U_B' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=4 - VersionID=93 - Name='U_C' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='U_C' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=5 - VersionID=94 - Name='Ui_A' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Ui_A' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=2 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=6 - VersionID=95 - Name='Ui_B' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Ui_B' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=2 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=7 - VersionID=96 - Name='Ui_C' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Ui_C' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=2 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'PhaseVoltages' - $begin 'Losses' - ReportID=12 - ReportName='Losses' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=9 - VersionID=97 - Name='CoreLoss' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='CoreLoss' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=10 - VersionID=98 - Name='SolidLoss' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='SolidLoss' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=11 - VersionID=99 - Name='ArmatureOhmicLoss_DC' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='ArmatureOhmicLoss_DC' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=2 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'Losses' - $begin 'PhaseCurrents' - ReportID=16 - ReportName='PhaseCurrents' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=13 - VersionID=100 - Name='InputCurrent(Phase_A)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='InputCurrent(Phase_A)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=14 - VersionID=101 - Name='InputCurrent(Phase_B)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='InputCurrent(Phase_B)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=15 - VersionID=102 - Name='InputCurrent(Phase_C)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='InputCurrent(Phase_C)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'PhaseCurrents' - $begin 'PhaseFluxes' - ReportID=20 - ReportName='PhaseFluxes' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=17 - VersionID=103 - Name='FluxLinkage(Phase_A)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='FluxLinkage(Phase_A)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=18 - VersionID=104 - Name='FluxLinkage(Phase_B)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='FluxLinkage(Phase_B)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=19 - VersionID=105 - Name='FluxLinkage(Phase_C)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='FluxLinkage(Phase_C)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'PhaseFluxes' - $begin 'Currents_dq' - ReportID=23 - ReportName='Currents_dq' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=21 - VersionID=106 - Name='I_d' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='I_d' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=22 - VersionID=107 - Name='I_q' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='I_q' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'Currents_dq' - $begin 'Fluxes_dq' - ReportID=26 - ReportName='Fluxes_dq' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=24 - VersionID=108 - Name='Flux_d' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Flux_d' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=25 - VersionID=109 - Name='Flux_q' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Flux_q' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'Fluxes_dq' - $begin 'InducedVoltages_dq' - ReportID=29 - ReportName='InducedVoltages_dq' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=27 - VersionID=110 - Name='Ui_d' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Ui_d' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=28 - VersionID=111 - Name='Ui_q' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Ui_q' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'InducedVoltages_dq' - $begin 'Voltages_dq' - ReportID=32 - ReportName='Voltages_dq' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=30 - VersionID=112 - Name='U_d' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='U_d' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=31 - VersionID=113 - Name='U_q' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='U_q' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'Voltages_dq' - $begin 'PhaseInductances' - ReportID=39 - ReportName='PhaseInductances' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=33 - VersionID=114 - Name='L(Phase_A,Phase_A)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='L(Phase_A,Phase_A)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=34 - VersionID=115 - Name='L(Phase_B,Phase_B)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='L(Phase_B,Phase_B)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=35 - VersionID=116 - Name='L(Phase_C,Phase_C)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='L(Phase_C,Phase_C)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=36 - VersionID=117 - Name='L(Phase_A,Phase_B)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='L(Phase_A,Phase_B)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=37 - VersionID=118 - Name='L(Phase_A,Phase_C)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='L(Phase_A,Phase_C)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=38 - VersionID=119 - Name='L(Phase_B,Phase_C)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='L(Phase_B,Phase_C)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'PhaseInductances' - $begin 'Inductances_dq' - ReportID=42 - ReportName='Inductances_dq' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=40 - VersionID=120 - Name='L_d' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='L_d' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=41 - VersionID=121 - Name='L_q' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='L_q' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'Inductances_dq' - $begin 'CoreLosses' - ReportID=46 - ReportName='CoreLosses' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=43 - VersionID=122 - Name='CoreLoss' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='CoreLoss' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=44 - VersionID=123 - Name='CoreLoss(Stator)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='CoreLoss(Stator)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=45 - VersionID=124 - Name='CoreLoss(Rotor)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='CoreLoss(Rotor)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'CoreLosses' - $begin 'EddyCurrentLosses (Core)' - ReportID=50 - ReportName='EddyCurrentLosses (Core)' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=47 - VersionID=125 - Name='EddyCurrentLoss' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='EddyCurrentLoss' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=48 - VersionID=126 - Name='EddyCurrentLoss(Stator)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='EddyCurrentLoss(Stator)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=49 - VersionID=127 - Name='EddyCurrentLoss(Rotor)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='EddyCurrentLoss(Rotor)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'EddyCurrentLosses (Core)' - $begin 'ExcessLosses (Core)' - ReportID=54 - ReportName='ExcessLosses (Core)' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=51 - VersionID=128 - Name='ExcessLoss' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='ExcessLoss' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=52 - VersionID=129 - Name='ExcessLoss(Stator)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='ExcessLoss(Stator)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=53 - VersionID=130 - Name='ExcessLoss(Rotor)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='ExcessLoss(Rotor)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'ExcessLosses (Core)' - $begin 'HysteresisLosses (Core)' - ReportID=58 - ReportName='HysteresisLosses (Core)' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=55 - VersionID=131 - Name='HysteresisLoss' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='HysteresisLoss' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=56 - VersionID=132 - Name='HysteresisLoss(Stator)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='HysteresisLoss(Stator)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=57 - VersionID=133 - Name='HysteresisLoss(Rotor)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='HysteresisLoss(Rotor)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'HysteresisLosses (Core)' - $begin 'SolidLoss' - ReportID=60 - ReportName='SolidLoss' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=92 - SolutionID=60 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=59 - VersionID=134 - Name='SolidLoss' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='SolidLoss' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaGap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorYoke' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaStatorInner' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.132) - ParameterType='DoubleParam' - Units='mm' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaRotorLam' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.13) - ParameterType='DoubleParam' - Units='mm' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaShaft' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.04445) - ParameterType='DoubleParam' - Units='mm' - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='DiaOuter' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.198) - ParameterType='DoubleParam' - Units='mm' - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Airgap' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.001) - ParameterType='DoubleParam' - Units='mm' - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotNumber' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(48) - ParameterType='DoubleParam' - Units='' - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotType' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(3) - ParameterType='DoubleParam' - Units='' - $end '9' - $begin '10' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Layers' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1) - ParameterType='DoubleParam' - Units='' - $end '10' - $begin '11' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='ParallelPaths' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2) - ParameterType='DoubleParam' - Units='' - $end '11' - $begin '12' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='R_Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.0075) - ParameterType='DoubleParam' - Units='mOhm' - $end '12' - $begin '13' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='WdgExt_F' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.005) - ParameterType='DoubleParam' - Units='mm' - $end '13' - $begin '14' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SpanExt' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.03) - ParameterType='DoubleParam' - Units='mm' - $end '14' - $begin '15' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SegAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.25) - ParameterType='DoubleParam' - Units='' - $end '15' - $begin '16' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='CoilPitch' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(5) - ParameterType='DoubleParam' - Units='' - $end '16' - $begin '17' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_SetBack' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003605732823) - ParameterType='DoubleParam' - Units='mm' - $end '17' - $begin '18' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SlotWidth' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.002814) - ParameterType='DoubleParam' - Units='mm' - $end '18' - $begin '19' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Short' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.003769235435) - ParameterType='DoubleParam' - Units='mm' - $end '19' - $begin '20' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Coil_Edge_Long' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.01537828521) - ParameterType='DoubleParam' - Units='mm' - $end '20' - $begin '21' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumPoles' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '21' - $begin '22' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Model_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.08) - ParameterType='DoubleParam' - Units='mm' - $end '22' - $begin '23' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='SymmetryFactor' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(8) - ParameterType='DoubleParam' - Units='' - $end '23' - $begin '24' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Magnetic_Axial_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0.15) - ParameterType='DoubleParam' - Units='mm' - $end '24' - $begin '25' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Stator_Lam_Length' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='mm' - $end '25' - $begin '26' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='StatorSkewAngle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '26' - $begin '27' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='NumTorquePointsPerCycle' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(30) - ParameterType='DoubleParam' - Units='' - $end '27' - $begin '28' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='num_m' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(16) - ParameterType='DoubleParam' - Units='' - $end '28' - $begin '29' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='IPeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(480) - ParameterType='DoubleParam' - Units='A' - $end '29' - $begin '30' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='MachineRPM' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '30' - $begin '31' - SubsweepType='Regular' - SubsweepChoiceType='Selected' - SweepVariableName='Theta_i' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(2.35619449019234) - ParameterType='DoubleParam' - Units='deg' - $end '31' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=93 - $end 'TraceDef' - $end 'SolidLoss' - $end 'Reports' - NextUniqueID=61 - MoveBackwards=false - $begin 'NextVersID' - NextUniqueID=135 - MoveBackwards=false - $end 'NextVersID' - $end 'ReportManager' - $begin 'Reports' - $begin 'TorquePlots' - ReportID=1 - $begin 'Report2D' - name='TorquePlots' - ReportID=1 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=0 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=39 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=469 - Left=903 - Bottom=9858 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=469 - Left=903 - Bottom=9858 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=469 - Left=903 - Bottom=9858 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=469 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=469 - Left=903 - Bottom=9858 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.1 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(0, 0, -1, 37) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'TorquePlots' - $begin 'PhaseVoltages' - ReportID=8 - $begin 'Report2D' - name='PhaseVoltages' - ReportID=8 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=2 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=3 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=4 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=5 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=6 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=7 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=50 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=43 - $begin 'CurveCartesianAttribute' - YAxis='Y2' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=45 - $begin 'CurveCartesianAttribute' - YAxis='Y2' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=47 - $begin 'CurveCartesianAttribute' - YAxis='Y2' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=181, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=79, G=17, B=25) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=43 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=247, G=147, B=30) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalEllipse' - SymbolColor(R=125, G=155, B=61) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=45 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalEllipse' - SymbolColor(R=198, G=156, B=109) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=47 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=146, B=69) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalDownTriangle' - SymbolColor(R=102, G=102, B=102) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9565 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9565 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9565 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9565 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=49 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=9565 - Left=903 - Bottom=9925 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9565 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.1 - Y1_fwd=2 - Y1_fpr=1 - Y2_spc=0.0001 - Y2_fwd=2 - Y2_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(2, 0, -1, 37) - IDMapItem(3, 0, -1, 39) - IDMapItem(4, 0, -1, 41) - IDMapItem(5, 0, -1, 43) - IDMapItem(6, 0, -1, 45) - IDMapItem(7, 0, -1, 47) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 8, 49, 27, 28, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'PhaseVoltages' - $begin 'Losses' - ReportID=12 - $begin 'Report2D' - name='Losses' - ReportID=12 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=9 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=10 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=11 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=44 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveCartesianAttribute' - YAxis='Y2' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=181, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=79, G=17, B=25) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9565 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9565 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9565 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9565 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=43 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=9565 - Left=903 - Bottom=9925 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9565 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.0001 - Y1_fwd=2 - Y1_fpr=1 - Y2_spc=0.0001 - Y2_fwd=2 - Y2_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(9, 0, -1, 37) - IDMapItem(10, 0, -1, 39) - IDMapItem(11, 0, -1, 41) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 8, 43, 27, 28, 37, 38, 39, 40, 41, 42) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Losses' - $begin 'PhaseCurrents' - ReportID=16 - $begin 'Report2D' - name='PhaseCurrents' - ReportID=16 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=13 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=14 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=15 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=43 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=181, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=79, G=17, B=25) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.0001 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(13, 0, -1, 37) - IDMapItem(14, 0, -1, 39) - IDMapItem(15, 0, -1, 41) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40, 41, 42) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'PhaseCurrents' - $begin 'PhaseFluxes' - ReportID=20 - $begin 'Report2D' - name='PhaseFluxes' - ReportID=20 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=17 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=18 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=19 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=43 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=181, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=79, G=17, B=25) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.1 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(17, 0, -1, 37) - IDMapItem(18, 0, -1, 39) - IDMapItem(19, 0, -1, 41) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40, 41, 42) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'PhaseFluxes' - $begin 'Currents_dq' - ReportID=23 - $begin 'Report2D' - name='Currents_dq' - ReportID=23 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=21 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=22 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=41 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.0001 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(21, 0, -1, 37) - IDMapItem(22, 0, -1, 39) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Currents_dq' - $begin 'Fluxes_dq' - ReportID=26 - $begin 'Report2D' - name='Fluxes_dq' - ReportID=26 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=24 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=25 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=41 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.1 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(24, 0, -1, 37) - IDMapItem(25, 0, -1, 39) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Fluxes_dq' - $begin 'InducedVoltages_dq' - ReportID=29 - $begin 'Report2D' - name='InducedVoltages_dq' - ReportID=29 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=27 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=28 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=41 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.0001 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(27, 0, -1, 37) - IDMapItem(28, 0, -1, 39) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'InducedVoltages_dq' - $begin 'Voltages_dq' - ReportID=32 - $begin 'Report2D' - name='Voltages_dq' - ReportID=32 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=30 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=31 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=41 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.1 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(30, 0, -1, 37) - IDMapItem(31, 0, -1, 39) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Voltages_dq' - $begin 'PhaseInductances' - ReportID=39 - $begin 'Report2D' - name='PhaseInductances' - ReportID=39 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=33 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=34 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=35 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=36 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=37 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=38 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=49 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=43 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=45 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=47 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=181, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=79, G=17, B=25) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=43 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=247, G=147, B=30) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalEllipse' - SymbolColor(R=125, G=155, B=61) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=45 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalEllipse' - SymbolColor(R=198, G=156, B=109) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=47 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=146, B=69) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalDownTriangle' - SymbolColor(R=102, G=102, B=102) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=1e-10 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(33, 0, -1, 37) - IDMapItem(34, 0, -1, 39) - IDMapItem(35, 0, -1, 41) - IDMapItem(36, 0, -1, 43) - IDMapItem(37, 0, -1, 45) - IDMapItem(38, 0, -1, 47) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'PhaseInductances' - $begin 'Inductances_dq' - ReportID=42 - $begin 'Report2D' - name='Inductances_dq' - ReportID=42 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=40 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=41 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=41 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=1e-10 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(40, 0, -1, 37) - IDMapItem(41, 0, -1, 39) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Inductances_dq' - $begin 'CoreLosses' - ReportID=46 - $begin 'Report2D' - name='CoreLosses' - ReportID=46 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=43 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=44 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=45 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=43 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=181, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=79, G=17, B=25) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.0001 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(43, 0, -1, 37) - IDMapItem(44, 0, -1, 39) - IDMapItem(45, 0, -1, 41) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40, 41, 42) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'CoreLosses' - $begin 'EddyCurrentLosses (Core)' - ReportID=50 - $begin 'Report2D' - name='EddyCurrentLosses (Core)' - ReportID=50 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=47 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=48 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=49 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=43 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=181, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=79, G=17, B=25) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.0001 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(47, 0, -1, 37) - IDMapItem(48, 0, -1, 39) - IDMapItem(49, 0, -1, 41) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40, 41, 42) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'EddyCurrentLosses (Core)' - $begin 'ExcessLosses (Core)' - ReportID=54 - $begin 'Report2D' - name='ExcessLosses (Core)' - ReportID=54 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=51 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=52 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=53 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=43 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=181, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=79, G=17, B=25) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.0001 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(51, 0, -1, 37) - IDMapItem(52, 0, -1, 39) - IDMapItem(53, 0, -1, 41) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40, 41, 42) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'ExcessLosses (Core)' - $begin 'HysteresisLosses (Core)' - ReportID=58 - $begin 'Report2D' - name='HysteresisLosses (Core)' - ReportID=58 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=55 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=56 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=57 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=43 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=181, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=79, G=17, B=25) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.0001 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(55, 0, -1, 37) - IDMapItem(56, 0, -1, 39) - IDMapItem(57, 0, -1, 41) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40, 41, 42) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'HysteresisLosses (Core)' - $begin 'SolidLoss' - ReportID=60 - $begin 'Report2D' - name='SolidLoss' - ReportID=60 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=59 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=39 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=706 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=9151 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=903 - Bottom=435 - Right=9151 - $end 'AxisRect' - $begin 'GridRect' - Top=435 - Left=903 - Bottom=9864 - Right=9151 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1e-10 - X_fwd=2 - X_fpr=1 - Y1_spc=0.0001 - Y1_fwd=2 - Y1_fpr=1 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=806 - Bottom=9850 - Right=8306 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(59, 0, -1, 37) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'SolidLoss' - $end 'Reports' - $begin 'ReportsWindowInfoList' - $begin 'TorquePlots' - ReportID=1 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'TorquePlots' - $begin 'PhaseVoltages' - ReportID=8 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'PhaseVoltages' - $begin 'Losses' - ReportID=12 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Losses' - $begin 'PhaseCurrents' - ReportID=16 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'PhaseCurrents' - $begin 'PhaseFluxes' - ReportID=20 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'PhaseFluxes' - $begin 'Currents_dq' - ReportID=23 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Currents_dq' - $begin 'Fluxes_dq' - ReportID=26 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Fluxes_dq' - $begin 'InducedVoltages_dq' - ReportID=29 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'InducedVoltages_dq' - $begin 'Voltages_dq' - ReportID=32 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Voltages_dq' - $begin 'PhaseInductances' - ReportID=39 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'PhaseInductances' - $begin 'Inductances_dq' - ReportID=42 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Inductances_dq' - $begin 'CoreLosses' - ReportID=46 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'CoreLosses' - $begin 'EddyCurrentLosses (Core)' - ReportID=50 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'EddyCurrentLosses (Core)' - $begin 'ExcessLosses (Core)' - ReportID=54 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'ExcessLosses (Core)' - $begin 'HysteresisLosses (Core)' - ReportID=58 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'HysteresisLosses (Core)' - $begin 'SolidLoss' - ReportID=60 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'SolidLoss' - $end 'ReportsWindowInfoList' - $end 'ReportSetup' - $begin 'Properties' - $end 'Properties' - $begin 'UserDefinedDocument' - $begin 'Data' - $end 'Data' - $end 'UserDefinedDocument' - $end 'Maxwell2DDesignInstance' - $end 'Instance' - $begin 'Instance' - DesignEditor='Basis_Model_For_Test' - ID='27' - $begin 'Maxwell2DDesignInstance' - DesignInstanceID=81 - $begin 'WindowPosition' - $begin 'EditorWindow' - Circuit(Editor3d(View('View Orientation Gadget'=1, WindowPos(5, -1, -1, -9, -38, 0, 0, 324, 88), OrientationMatrix(0.0205183941870928, 2.54357923612503e-10, -1.3364001572036e-10, 0, -2.3283064365387e-10, 0.0205183941870928, 0, 0, 0, 9.31322574615479e-10, 0.0205183941870928, 0, -1.43628752231598, -1.01560842990875, -6.22302532196045, 1, 0, -1.30534327030182, 1.30534327030182, -0.99999988079071, 0.99999988079071, -2.5724048614502, 15.0184535980225), Drawings[30: 'Region', 'Band', 'Stator_Yoke_Section1', 'Shaft_Section1', 'Rotor_Section1', 'Stator_Teeth38_Section1', 'Stator_Teeth36_Section1', 'Stator_Teeth32_Section1', 'Stator_Teeth34_Section1', 'Stator_Teeth40_Section1', 'Magnet1_Section1', 'Magnet2_Section1', 'Stator_Teeth30_Section1', 'Stator_Teeth42_Section1', 'Coil_5', 'Coil_1', 'Coil', 'Coil_2', 'Coil_3', 'Coil_4', 'Airgap', 'tooth_1', 'Length_Rotor', 'Length_Stator', 'Length_Yoke', 'Length_coils', 'Length_Magnets', 'Length_Rotor_edge', 'Length_Region', 'Length_Tooth_Surface'], 'View Data'('Render Mode'=1, 'Show Ruler'=1, 'Coordinate Systems View Mode'=0, 'CS Triad View Mode'=0, 'Render Facets'=1, GridVisible=1, GridAutoAdjust=1, GridAutoExtents=1, GridType='Rect', GridStyle='Line', NumPixels=30, dXForGrid=5, dYForGrid=5, dZForGrid=5, dRForGrid=5, dThetaForGrid=10), 'View Solution Context'('Solution ID'=44, 'View IntrinsicVar'='Time=\'-1s\''), ClipPlanes(ClipPlaneOptions(DisableWhenDrawingNewPlane=true, ForceOpqaueForUnclipped=false, ShowClipped=false, Transparency=0, HandleColor=16776960))))) - $end 'EditorWindow' - $end 'WindowPosition' - $begin 'ReportSetup' - $begin 'ReportManager' - $begin 'Reports' - $begin 'Torque' - ReportID=94 - ReportName='Torque' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=80 - SolutionID=44 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=93 - VersionID=12361 - Name='Moving1.Torque' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Moving1.Torque' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='speed_mech' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Ipeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(250) - ParameterType='DoubleParam' - Units='A' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='pole_pairs' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(4) - ParameterType='DoubleParam' - Units='' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='gamma' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1.0471975511966) - ParameterType='DoubleParam' - Units='deg' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='R_measure' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='N_pts' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Init_Pos' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='R_stator' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='R_rotor' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '9' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=81 - $end 'TraceDef' - $end 'Torque' - $end 'Reports' - NextUniqueID=1958 - MoveBackwards=false - $begin 'NextVersID' - NextUniqueID=12399 - MoveBackwards=false - $end 'NextVersID' - $end 'ReportManager' - $begin 'Reports' - $begin 'Torque' - ReportID=94 - $begin 'Report2D' - name='Torque' - ReportID=94 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=93 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=438 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, Stack119_AxisX=121, Stack119_AxisY1=122, Stack119_AxisY10=131, Stack119_AxisY11=132, Stack119_AxisY12=133, Stack119_AxisY13=134, Stack119_AxisY14=135, Stack119_AxisY15=136, Stack119_AxisY16=137, Stack119_AxisY17=138, Stack119_AxisY18=139, Stack119_AxisY19=140, Stack119_AxisY2=123, Stack119_AxisY20=141, Stack119_AxisY3=124, Stack119_AxisY4=125, Stack119_AxisY5=126, Stack119_AxisY6=127, Stack119_AxisY7=128, Stack119_AxisY8=129, Stack119_AxisY9=130, Stack119_Grid=142, Stack147_AxisX=149, Stack147_AxisY1=150, Stack147_AxisY10=159, Stack147_AxisY11=160, Stack147_AxisY12=161, Stack147_AxisY13=162, Stack147_AxisY14=163, Stack147_AxisY15=164, Stack147_AxisY16=165, Stack147_AxisY17=166, Stack147_AxisY18=167, Stack147_AxisY19=168, Stack147_AxisY2=151, Stack147_AxisY20=169, Stack147_AxisY3=152, Stack147_AxisY4=153, Stack147_AxisY5=154, Stack147_AxisY6=155, Stack147_AxisY7=156, Stack147_AxisY8=157, Stack147_AxisY9=158, Stack147_Grid=170, Stack175_AxisX=177, Stack175_AxisY1=178, Stack175_AxisY10=187, Stack175_AxisY11=188, Stack175_AxisY12=189, Stack175_AxisY13=190, Stack175_AxisY14=191, Stack175_AxisY15=192, Stack175_AxisY16=193, Stack175_AxisY17=194, Stack175_AxisY18=195, Stack175_AxisY19=196, Stack175_AxisY2=179, Stack175_AxisY20=197, Stack175_AxisY3=180, Stack175_AxisY4=181, Stack175_AxisY5=182, Stack175_AxisY6=183, Stack175_AxisY7=184, Stack175_AxisY8=185, Stack175_AxisY9=186, Stack175_Grid=198, Stack203_AxisX=205, Stack203_AxisY1=206, Stack203_AxisY10=215, Stack203_AxisY11=216, Stack203_AxisY12=217, Stack203_AxisY13=218, Stack203_AxisY14=219, Stack203_AxisY15=220, Stack203_AxisY16=221, Stack203_AxisY17=222, Stack203_AxisY18=223, Stack203_AxisY19=224, Stack203_AxisY2=207, Stack203_AxisY20=225, Stack203_AxisY3=208, Stack203_AxisY4=209, Stack203_AxisY5=210, Stack203_AxisY6=211, Stack203_AxisY7=212, Stack203_AxisY8=213, Stack203_AxisY9=214, Stack203_Grid=226, Stack231_AxisX=233, Stack231_AxisY1=234, Stack231_AxisY10=243, Stack231_AxisY11=244, Stack231_AxisY12=245, Stack231_AxisY13=246, Stack231_AxisY14=247, Stack231_AxisY15=248, Stack231_AxisY16=249, Stack231_AxisY17=250, Stack231_AxisY18=251, Stack231_AxisY19=252, Stack231_AxisY2=235, Stack231_AxisY20=253, Stack231_AxisY3=236, Stack231_AxisY4=237, Stack231_AxisY5=238, Stack231_AxisY6=239, Stack231_AxisY7=240, Stack231_AxisY8=241, Stack231_AxisY9=242, Stack231_Grid=254, Stack259_AxisX=261, Stack259_AxisY1=262, Stack259_AxisY10=271, Stack259_AxisY11=272, Stack259_AxisY12=273, Stack259_AxisY13=274, Stack259_AxisY14=275, Stack259_AxisY15=276, Stack259_AxisY16=277, Stack259_AxisY17=278, Stack259_AxisY18=279, Stack259_AxisY19=280, Stack259_AxisY2=263, Stack259_AxisY20=281, Stack259_AxisY3=264, Stack259_AxisY4=265, Stack259_AxisY5=266, Stack259_AxisY6=267, Stack259_AxisY7=268, Stack259_AxisY8=269, Stack259_AxisY9=270, Stack259_Grid=282, Stack312_AxisX=314, Stack312_AxisY1=315, Stack312_AxisY10=324, Stack312_AxisY11=325, Stack312_AxisY12=326, Stack312_AxisY13=327, Stack312_AxisY14=328, Stack312_AxisY15=329, Stack312_AxisY16=330, Stack312_AxisY17=331, Stack312_AxisY18=332, Stack312_AxisY19=333, Stack312_AxisY2=316, Stack312_AxisY20=334, Stack312_AxisY3=317, Stack312_AxisY4=318, Stack312_AxisY5=319, Stack312_AxisY6=320, Stack312_AxisY7=321, Stack312_AxisY8=322, Stack312_AxisY9=323, Stack312_Grid=335, Stack342_AxisX=344, Stack342_AxisY1=345, Stack342_AxisY10=354, Stack342_AxisY11=355, Stack342_AxisY12=356, Stack342_AxisY13=357, Stack342_AxisY14=358, Stack342_AxisY15=359, Stack342_AxisY16=360, Stack342_AxisY17=361, Stack342_AxisY18=362, Stack342_AxisY19=363, Stack342_AxisY2=346, Stack342_AxisY20=364, Stack342_AxisY3=347, Stack342_AxisY4=348, Stack342_AxisY5=349, Stack342_AxisY6=350, Stack342_AxisY7=351, Stack342_AxisY8=352, Stack342_AxisY9=353, Stack342_Grid=365, Stack86_AxisX=88, Stack86_AxisY1=89, Stack86_AxisY10=98, Stack86_AxisY11=99, Stack86_AxisY12=100, Stack86_AxisY13=101, Stack86_AxisY14=102, Stack86_AxisY15=103, Stack86_AxisY16=104, Stack86_AxisY17=105, Stack86_AxisY18=106, Stack86_AxisY19=107, Stack86_AxisY2=90, Stack86_AxisY20=108, Stack86_AxisY3=91, Stack86_AxisY4=92, Stack86_AxisY5=93, Stack86_AxisY6=94, Stack86_AxisY7=95, Stack86_AxisY8=96, Stack86_AxisY9=97, Stack86_Grid=109, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=7 - $begin 'CartesianHorizScrollerRenderAttribute' - Visibility=false - ThumbHeightUnits='mm' - BackgroundColor(R=255, G=255, B=255) - ThumbColor(R=190, G=210, B=241) - ThumbTrans=0 - $end 'CartesianHorizScrollerRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.003 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.006 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=5 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=220 - MaxScale=350 - TickSpacing=20 - ManualUnits=false - Units='' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=700 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=88 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=123 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=5 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=240 - MaxScale=310 - TickSpacing=20 - ManualUnits=false - Units='' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=620 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=151 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=5 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=230 - MaxScale=310 - TickSpacing=20 - ManualUnits=false - Units='' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=620 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=235 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=3.5 - MaxScale=4.75 - TickSpacing=0.25 - ManualUnits=false - Units='NewtonMeter' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=9.5 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=-1 - $begin 'StackedDisplayTypeAttribute' - CurveGroupingStrategy='Custom' - $end 'StackedDisplayTypeAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=-1 - $begin 'StackedLayoutModeAttribute' - AutoFitStackMode=true - StackHeightInPix=200 - $end 'StackedLayoutModeAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=109 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=142 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=170 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=198 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=226 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=254 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=282 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=335 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=365 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=59 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=68 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=70 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=72 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=74 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=76 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=311 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=341 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=408 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=412 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=255, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=0, G=25, B=185) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=128, G=64, B=100) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=0, B=128) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=59 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=0, B=200) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=192, G=192, B=192) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=68 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=255, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=0, G=25, B=185) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=70 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=80, G=0, B=80) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalEllipse' - SymbolColor(R=111, G=111, B=111) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=72 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=128, G=128, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalEllipse' - SymbolColor(R=240, G=130, B=19) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=74 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=200, G=0, B=128) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalDownTriangle' - SymbolColor(R=128, G=0, B=0) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=76 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=15, G=160, B=180) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowCircle' - SymbolColor(R=0, G=128, B=128) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=311 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=255, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=0, G=25, B=185) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=341 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=128, B=128) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HorizontalLeftTriangle' - SymbolColor(R=15, G=160, B=180) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=408 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=128, B=128) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HorizontalLeftTriangle' - SymbolColor(R=15, G=160, B=180) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=412 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=128, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=200, G=0, B=128) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=17 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=13 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='Dock Left' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=88 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=89 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=90 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=91 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=92 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=93 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=94 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=95 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=96 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=97 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=98 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=99 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=100 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=101 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=102 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=103 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=104 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=105 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=106 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=107 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=108 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=121 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=122 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=123 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=124 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=125 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=126 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=127 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=128 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=129 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=130 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=131 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=132 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=133 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=134 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=135 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=136 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=137 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=138 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=139 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=140 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=141 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=149 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=150 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=151 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=152 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=153 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=154 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=155 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=156 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=157 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=158 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=159 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=160 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=161 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=162 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=163 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=164 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=165 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=166 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=167 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=168 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=169 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=177 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=178 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=179 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=180 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=181 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=182 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=183 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=184 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=185 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=186 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=187 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=188 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=189 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=190 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=191 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=192 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=193 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=194 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=195 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=196 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=197 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=205 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=206 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=207 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=208 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=209 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=210 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=211 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=212 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=213 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=214 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=215 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=216 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=217 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=218 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=219 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=220 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=221 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=222 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=223 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=224 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=225 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=233 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=234 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=235 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=236 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=237 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=238 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=239 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=240 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=241 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=242 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=243 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=244 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=245 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=246 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=247 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=248 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=249 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=250 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=251 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=252 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=253 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=261 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=262 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=263 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=264 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=265 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=266 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=267 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=268 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=269 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=270 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=271 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=272 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=273 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=274 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=275 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=276 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=277 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=278 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=279 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=280 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=281 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=314 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=315 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=316 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=317 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=318 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=319 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=320 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=321 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=322 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=323 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=324 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=325 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=326 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=327 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=328 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=329 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=330 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=331 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=332 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=333 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=334 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=344 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=345 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=346 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=347 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=348 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=349 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=350 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=351 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=352 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=353 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=354 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=355 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=356 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=357 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=358 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=359 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=360 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=361 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=362 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=363 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=364 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=-1 - $begin 'StackedDisplayTypeAttribute' - CurveGroupingStrategy='Single' - $end 'StackedDisplayTypeAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=1690 - Left=75 - Bottom=9925 - Right=546 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=1690 - Left=9007 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=1690 - Left=806 - Bottom=2302 - Right=9007 - $end 'AxisRect' - $begin 'GridRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=2.5e-06 - X_fwd=4 - X_fpr=2 - Y1_spc=0.200000000000001 - Y1_fwd=5 - Y1_fpr=2 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4193 - Left=0 - Bottom=5807 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=8386 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=1615 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(93, 0, -1, 39) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $begin 'TraceCharacteristicsDataSource' - ID=410 - $begin 'Parameters' - Name='avg' - FunctionName='avg' - $begin 'Range' - Type='Full' - Start='0' - End='1' - $end 'Range' - $end 'Parameters' - $end 'TraceCharacteristicsDataSource' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=86 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 8, 61, 27, 28, 37, 38, 39, 40, 59, 60, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 311, 407, 408, 409, 410, 411, 412, 413) - $end 'PT' - $begin 'PT' - ID=21 - TransSrcDwg(-1, 0, 117, 5, 85, 39, 146, 59, 174, 70, 202, 72, 230, 74, 258, 76, 286, 88, 113, 90, 114, 109, 110, 123, 287, 142, 143, 151, 288, 170, 171, 179, 289, 198, 199, 207, 290, 226, 227, 235, 291, 254, 255, 263, 292, 282, 283, 311, 339, 316, 340, 335, 336, 341, 369, 346, 370, 365, 366) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - PtID(21, 86, 87, 119, 120, 147, 148, 175, 176, 203, 204, 231, 232, 259, 260, 312, 313, 342, 343) - $end 'AllPtSVID' - $begin 'PlotDataSourceGroupManager' - $begin 'CurveGroupingStrategyManager' - $begin 'ExplicitCurveGroupingStrategy' - CurveDSIDGroupIDMap(39, 119, 59, 119, 70, 119, 72, 147, 74, 231, 76, 119, 311, 147) - $end 'ExplicitCurveGroupingStrategy' - $end 'CurveGroupingStrategyManager' - DataSourceIDGroupIDMap(88, 86, 109, 86, 121, 119, 122, 119, 123, 119, 124, 119, 125, 119, 126, 119, 127, 119, 128, 119, 129, 119, 130, 119, 131, 119, 132, 119, 133, 119, 134, 119, 135, 119, 136, 119, 137, 119, 138, 119, 139, 119, 140, 119, 141, 119, 142, 119, 149, 147, 150, 147, 151, 147, 152, 147, 153, 147, 154, 147, 155, 147, 156, 147, 157, 147, 158, 147, 159, 147, 160, 147, 161, 147, 162, 147, 163, 147, 164, 147, 165, 147, 166, 147, 167, 147, 168, 147, 169, 147, 170, 147, 233, 231, 234, 231, 235, 231, 236, 231, 237, 231, 238, 231, 239, 231, 240, 231, 241, 231, 242, 231, 243, 231, 244, 231, 245, 231, 246, 231, 247, 231, 248, 231, 249, 231, 250, 231, 251, 231, 252, 231, 253, 231, 254, 231, 395, 119, 397, 147, 399, 231) - $end 'PlotDataSourceGroupManager' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Torque' - $end 'Reports' - $begin 'ReportsWindowInfoList' - $begin 'Torque' - ReportID=94 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Torque' - $end 'ReportsWindowInfoList' - $end 'ReportSetup' - $begin 'Properties' - $end 'Properties' - $begin 'UserDefinedDocument' - $begin 'Data' - $end 'Data' - $end 'UserDefinedDocument' - $end 'Maxwell2DDesignInstance' - $end 'Instance' - $begin 'Instance' - DesignEditor='Y_Connections' - ID='30' - $begin 'Maxwell2DDesignInstance' - DesignInstanceID=90 - $begin 'WindowPosition' - $begin 'EditorWindow' - Circuit(Editor3d(View('View Orientation Gadget'=1, WindowPos(5, -1, -1, -9, -38, 32, 32, 1059, 464), OrientationMatrix(0.0154229858890176, 7.40010136501823e-11, -1.0045268783454e-10, 0, 0, 0.0154229868203402, 0, 0, 4.65661287307739e-10, 4.65661287307739e-10, 0.015422984957695, 0, -1.07960879802704, -0.763398885726929, -6.01099395751953, 1, 0, -1.23235285282135, 1.23235285282135, -1, 1, -0.600234031677246, 12.6222219467163), Drawings[31: 'Region', 'Band', 'Stator_Yoke_Section1', 'Shaft_Section1', 'Rotor_Section1', 'Stator_Teeth38_Section1', 'Stator_Teeth36_Section1', 'Stator_Teeth32_Section1', 'Stator_Teeth34_Section1', 'Stator_Teeth40_Section1', 'Magnet1_Section1', 'Magnet2_Section1', 'Stator_Teeth30_Section1', 'Stator_Teeth42_Section1', 'Coil_5', 'Coil_1', 'Coil', 'Coil_2', 'Coil_3', 'Coil_4', 'Airgap', 'tooth_1', 'Length_Rotor', 'Length_Stator', 'Length_Yoke', 'Length_coils', 'Length_Magnets', 'Length_Rotor_edge', 'Length_Region', 'Length_Tooth_Surface', 'CylindricalGap1'], 'View Data'('Render Mode'=1, 'Show Ruler'=1, 'Coordinate Systems View Mode'=1, 'CS Triad View Mode'=0, 'Render Facets'=1, GridVisible=1, GridAutoAdjust=1, GridAutoExtents=1, GridType='Rect', GridStyle='Line', NumPixels=30, dXForGrid=10, dYForGrid=10, dZForGrid=10, dRForGrid=10, dThetaForGrid=10), 'View Solution Context'('Solution ID'=44, 'View IntrinsicVar'='Time=\'-1s\''), ClipPlanes(ClipPlaneOptions(DisableWhenDrawingNewPlane=true, ForceOpqaueForUnclipped=false, ShowClipped=false, Transparency=0, HandleColor=16776960))))) - $end 'EditorWindow' - $end 'WindowPosition' - $begin 'ReportSetup' - $begin 'ReportManager' - $begin 'Reports' - $begin 'Torque' - ReportID=94 - ReportName='Torque' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=89 - SolutionID=44 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=93 - VersionID=12361 - Name='Moving1.Torque' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Moving1.Torque' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='speed_mech' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(314.159265358979) - ParameterType='DoubleParam' - Units='rpm' - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Ipeak' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(250) - ParameterType='DoubleParam' - Units='A' - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='pole_pairs' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(4) - ParameterType='DoubleParam' - Units='' - $end '3' - $begin '4' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='gamma' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(1.0471975511966) - ParameterType='DoubleParam' - Units='deg' - $end '4' - $begin '5' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='R_measure' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '5' - $begin '6' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='N_pts' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '6' - $begin '7' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Init_Pos' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '7' - $begin '8' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='R_stator' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '8' - $begin '9' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='R_rotor' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '9' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=90 - $end 'TraceDef' - $end 'Torque' - $end 'Reports' - NextUniqueID=1958 - MoveBackwards=false - $begin 'NextVersID' - NextUniqueID=12399 - MoveBackwards=false - $end 'NextVersID' - $end 'ReportManager' - $begin 'Reports' - $begin 'Torque' - ReportID=94 - $begin 'Report2D' - name='Torque' - ReportID=94 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=93 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=438 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, Stack119_AxisX=121, Stack119_AxisY1=122, Stack119_AxisY10=131, Stack119_AxisY11=132, Stack119_AxisY12=133, Stack119_AxisY13=134, Stack119_AxisY14=135, Stack119_AxisY15=136, Stack119_AxisY16=137, Stack119_AxisY17=138, Stack119_AxisY18=139, Stack119_AxisY19=140, Stack119_AxisY2=123, Stack119_AxisY20=141, Stack119_AxisY3=124, Stack119_AxisY4=125, Stack119_AxisY5=126, Stack119_AxisY6=127, Stack119_AxisY7=128, Stack119_AxisY8=129, Stack119_AxisY9=130, Stack119_Grid=142, Stack147_AxisX=149, Stack147_AxisY1=150, Stack147_AxisY10=159, Stack147_AxisY11=160, Stack147_AxisY12=161, Stack147_AxisY13=162, Stack147_AxisY14=163, Stack147_AxisY15=164, Stack147_AxisY16=165, Stack147_AxisY17=166, Stack147_AxisY18=167, Stack147_AxisY19=168, Stack147_AxisY2=151, Stack147_AxisY20=169, Stack147_AxisY3=152, Stack147_AxisY4=153, Stack147_AxisY5=154, Stack147_AxisY6=155, Stack147_AxisY7=156, Stack147_AxisY8=157, Stack147_AxisY9=158, Stack147_Grid=170, Stack175_AxisX=177, Stack175_AxisY1=178, Stack175_AxisY10=187, Stack175_AxisY11=188, Stack175_AxisY12=189, Stack175_AxisY13=190, Stack175_AxisY14=191, Stack175_AxisY15=192, Stack175_AxisY16=193, Stack175_AxisY17=194, Stack175_AxisY18=195, Stack175_AxisY19=196, Stack175_AxisY2=179, Stack175_AxisY20=197, Stack175_AxisY3=180, Stack175_AxisY4=181, Stack175_AxisY5=182, Stack175_AxisY6=183, Stack175_AxisY7=184, Stack175_AxisY8=185, Stack175_AxisY9=186, Stack175_Grid=198, Stack203_AxisX=205, Stack203_AxisY1=206, Stack203_AxisY10=215, Stack203_AxisY11=216, Stack203_AxisY12=217, Stack203_AxisY13=218, Stack203_AxisY14=219, Stack203_AxisY15=220, Stack203_AxisY16=221, Stack203_AxisY17=222, Stack203_AxisY18=223, Stack203_AxisY19=224, Stack203_AxisY2=207, Stack203_AxisY20=225, Stack203_AxisY3=208, Stack203_AxisY4=209, Stack203_AxisY5=210, Stack203_AxisY6=211, Stack203_AxisY7=212, Stack203_AxisY8=213, Stack203_AxisY9=214, Stack203_Grid=226, Stack231_AxisX=233, Stack231_AxisY1=234, Stack231_AxisY10=243, Stack231_AxisY11=244, Stack231_AxisY12=245, Stack231_AxisY13=246, Stack231_AxisY14=247, Stack231_AxisY15=248, Stack231_AxisY16=249, Stack231_AxisY17=250, Stack231_AxisY18=251, Stack231_AxisY19=252, Stack231_AxisY2=235, Stack231_AxisY20=253, Stack231_AxisY3=236, Stack231_AxisY4=237, Stack231_AxisY5=238, Stack231_AxisY6=239, Stack231_AxisY7=240, Stack231_AxisY8=241, Stack231_AxisY9=242, Stack231_Grid=254, Stack259_AxisX=261, Stack259_AxisY1=262, Stack259_AxisY10=271, Stack259_AxisY11=272, Stack259_AxisY12=273, Stack259_AxisY13=274, Stack259_AxisY14=275, Stack259_AxisY15=276, Stack259_AxisY16=277, Stack259_AxisY17=278, Stack259_AxisY18=279, Stack259_AxisY19=280, Stack259_AxisY2=263, Stack259_AxisY20=281, Stack259_AxisY3=264, Stack259_AxisY4=265, Stack259_AxisY5=266, Stack259_AxisY6=267, Stack259_AxisY7=268, Stack259_AxisY8=269, Stack259_AxisY9=270, Stack259_Grid=282, Stack312_AxisX=314, Stack312_AxisY1=315, Stack312_AxisY10=324, Stack312_AxisY11=325, Stack312_AxisY12=326, Stack312_AxisY13=327, Stack312_AxisY14=328, Stack312_AxisY15=329, Stack312_AxisY16=330, Stack312_AxisY17=331, Stack312_AxisY18=332, Stack312_AxisY19=333, Stack312_AxisY2=316, Stack312_AxisY20=334, Stack312_AxisY3=317, Stack312_AxisY4=318, Stack312_AxisY5=319, Stack312_AxisY6=320, Stack312_AxisY7=321, Stack312_AxisY8=322, Stack312_AxisY9=323, Stack312_Grid=335, Stack342_AxisX=344, Stack342_AxisY1=345, Stack342_AxisY10=354, Stack342_AxisY11=355, Stack342_AxisY12=356, Stack342_AxisY13=357, Stack342_AxisY14=358, Stack342_AxisY15=359, Stack342_AxisY16=360, Stack342_AxisY17=361, Stack342_AxisY18=362, Stack342_AxisY19=363, Stack342_AxisY2=346, Stack342_AxisY20=364, Stack342_AxisY3=347, Stack342_AxisY4=348, Stack342_AxisY5=349, Stack342_AxisY6=350, Stack342_AxisY7=351, Stack342_AxisY8=352, Stack342_AxisY9=353, Stack342_Grid=365, Stack86_AxisX=88, Stack86_AxisY1=89, Stack86_AxisY10=98, Stack86_AxisY11=99, Stack86_AxisY12=100, Stack86_AxisY13=101, Stack86_AxisY14=102, Stack86_AxisY15=103, Stack86_AxisY16=104, Stack86_AxisY17=105, Stack86_AxisY18=106, Stack86_AxisY19=107, Stack86_AxisY2=90, Stack86_AxisY20=108, Stack86_AxisY3=91, Stack86_AxisY4=92, Stack86_AxisY5=93, Stack86_AxisY6=94, Stack86_AxisY7=95, Stack86_AxisY8=96, Stack86_AxisY9=97, Stack86_Grid=109, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=7 - $begin 'CartesianHorizScrollerRenderAttribute' - Visibility=false - ThumbHeightUnits='mm' - BackgroundColor(R=255, G=255, B=255) - ThumbColor(R=190, G=210, B=241) - ThumbTrans=0 - $end 'CartesianHorizScrollerRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.003 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.006 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=5 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=220 - MaxScale=350 - TickSpacing=20 - ManualUnits=false - Units='' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=700 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=88 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=123 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=5 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=240 - MaxScale=310 - TickSpacing=20 - ManualUnits=false - Units='' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=620 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=151 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=5 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=230 - MaxScale=310 - TickSpacing=20 - ManualUnits=false - Units='' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=620 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=235 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=3.5 - MaxScale=4.75 - TickSpacing=0.25 - ManualUnits=false - Units='NewtonMeter' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=9.5 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=-1 - $begin 'StackedDisplayTypeAttribute' - CurveGroupingStrategy='Custom' - $end 'StackedDisplayTypeAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=-1 - $begin 'StackedLayoutModeAttribute' - AutoFitStackMode=true - StackHeightInPix=200 - $end 'StackedLayoutModeAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=109 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=142 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=170 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=198 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=226 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=254 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=282 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=335 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=365 - $begin 'CartesianGridDescAttribute' - ShowXMinor=false - ShowYMinor=false - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=59 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=68 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=70 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=72 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=74 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=76 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=311 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=341 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=408 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=412 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=255, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=0, G=25, B=185) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=128, G=64, B=100) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=0, B=128) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=59 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=0, B=200) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=192, G=192, B=192) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=68 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=255, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=0, G=25, B=185) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=70 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=80, G=0, B=80) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalEllipse' - SymbolColor(R=111, G=111, B=111) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=72 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=128, G=128, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalEllipse' - SymbolColor(R=240, G=130, B=19) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=74 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=200, G=0, B=128) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalDownTriangle' - SymbolColor(R=128, G=0, B=0) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=76 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=15, G=160, B=180) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowCircle' - SymbolColor(R=0, G=128, B=128) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=311 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=255, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=0, G=25, B=185) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=341 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=128, B=128) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HorizontalLeftTriangle' - SymbolColor(R=15, G=160, B=180) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=408 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=128, B=128) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HorizontalLeftTriangle' - SymbolColor(R=15, G=160, B=180) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=412 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=128, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=200, G=0, B=128) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=17 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=13 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='Dock Left' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=88 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=89 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=90 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=91 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=92 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=93 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=94 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=95 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=96 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=97 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=98 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=99 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=100 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=101 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=102 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=103 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=104 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=105 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=106 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=107 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=108 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=121 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=122 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=123 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=124 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=125 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=126 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=127 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=128 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=129 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=130 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=131 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=132 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=133 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=134 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=135 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=136 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=137 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=138 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=139 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=140 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=141 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=149 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=150 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=151 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=152 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=153 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=154 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=155 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=156 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=157 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=158 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=159 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=160 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=161 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=162 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=163 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=164 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=165 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=166 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=167 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=168 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=169 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=177 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=178 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=179 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=180 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=181 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=182 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=183 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=184 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=185 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=186 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=187 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=188 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=189 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=190 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=191 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=192 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=193 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=194 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=195 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=196 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=197 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=205 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=206 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=207 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=208 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=209 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=210 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=211 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=212 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=213 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=214 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=215 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=216 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=217 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=218 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=219 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=220 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=221 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=222 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=223 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=224 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=225 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=233 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=0.005 - TickSpacing=0.0005 - ManualUnits=false - Units='ms' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=0.01 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=234 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=235 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=236 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=237 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=238 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=239 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=240 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=241 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=242 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=243 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=244 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=245 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=246 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=247 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=248 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=249 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=250 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=251 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=252 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=253 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=261 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=262 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=263 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=264 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=265 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=266 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=267 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=268 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=269 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=270 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=271 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=272 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=273 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=274 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=275 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=276 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=277 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=278 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=279 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=280 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=281 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=314 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=315 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=316 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=317 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=318 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=319 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=320 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=321 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=322 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=323 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=324 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=325 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=326 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=327 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=328 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=329 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=330 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=331 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=332 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=333 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=334 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=344 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=345 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=346 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=347 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=348 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=349 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=350 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=351 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=352 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=353 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=354 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=355 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=356 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=357 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=358 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=359 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=360 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=361 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=362 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=363 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=364 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=false - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=-1 - $begin 'StackedDisplayTypeAttribute' - CurveGroupingStrategy='Single' - $end 'StackedDisplayTypeAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=1690 - Left=75 - Bottom=9925 - Right=546 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=1690 - Left=9007 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=1690 - Left=806 - Bottom=2302 - Right=9007 - $end 'AxisRect' - $begin 'GridRect' - Top=2302 - Left=806 - Bottom=9772 - Right=9007 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=2.5e-06 - X_fwd=4 - X_fpr=2 - Y1_spc=0.200000000000001 - Y1_fwd=5 - Y1_fpr=2 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4193 - Left=0 - Bottom=5807 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=8386 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=1615 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(93, 0, -1, 39) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $begin 'TraceCharacteristicsDataSource' - ID=410 - $begin 'Parameters' - Name='avg' - FunctionName='avg' - $begin 'Range' - Type='Full' - Start='0' - End='1' - $end 'Range' - $end 'Parameters' - $end 'TraceCharacteristicsDataSource' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=86 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 8, 61, 27, 28, 37, 38, 39, 40, 59, 60, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 311, 407, 408, 409, 410, 411, 412, 413) - $end 'PT' - $begin 'PT' - ID=21 - TransSrcDwg(-1, 0, 117, 5, 85, 39, 146, 59, 174, 70, 202, 72, 230, 74, 258, 76, 286, 88, 113, 90, 114, 109, 110, 123, 287, 142, 143, 151, 288, 170, 171, 179, 289, 198, 199, 207, 290, 226, 227, 235, 291, 254, 255, 263, 292, 282, 283, 311, 339, 316, 340, 335, 336, 341, 369, 346, 370, 365, 366) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - PtID(21, 86, 87, 119, 120, 147, 148, 175, 176, 203, 204, 231, 232, 259, 260, 312, 313, 342, 343) - $end 'AllPtSVID' - $begin 'PlotDataSourceGroupManager' - $begin 'CurveGroupingStrategyManager' - $begin 'ExplicitCurveGroupingStrategy' - CurveDSIDGroupIDMap(39, 119, 59, 119, 70, 119, 72, 147, 74, 231, 76, 119, 311, 147) - $end 'ExplicitCurveGroupingStrategy' - $end 'CurveGroupingStrategyManager' - DataSourceIDGroupIDMap(88, 86, 109, 86, 121, 119, 122, 119, 123, 119, 124, 119, 125, 119, 126, 119, 127, 119, 128, 119, 129, 119, 130, 119, 131, 119, 132, 119, 133, 119, 134, 119, 135, 119, 136, 119, 137, 119, 138, 119, 139, 119, 140, 119, 141, 119, 142, 119, 149, 147, 150, 147, 151, 147, 152, 147, 153, 147, 154, 147, 155, 147, 156, 147, 157, 147, 158, 147, 159, 147, 160, 147, 161, 147, 162, 147, 163, 147, 164, 147, 165, 147, 166, 147, 167, 147, 168, 147, 169, 147, 170, 147, 233, 231, 234, 231, 235, 231, 236, 231, 237, 231, 238, 231, 239, 231, 240, 231, 241, 231, 242, 231, 243, 231, 244, 231, 245, 231, 246, 231, 247, 231, 248, 231, 249, 231, 250, 231, 251, 231, 252, 231, 253, 231, 254, 231, 395, 119, 397, 147, 399, 231) - $end 'PlotDataSourceGroupManager' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Torque' - $end 'Reports' - $begin 'ReportsWindowInfoList' - $begin 'Torque' - ReportID=94 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Torque' - $end 'ReportsWindowInfoList' - $end 'ReportSetup' - $begin 'Properties' - $end 'Properties' - $begin 'UserDefinedDocument' - $begin 'Data' - $end 'Data' - $end 'UserDefinedDocument' - $end 'Maxwell2DDesignInstance' - $end 'Instance' - $begin 'SODInfo' - $begin 'Basis_Model_For_Test' - $begin 'CosimDefinition' - CosimDefName='DefaultNetlist' - $begin 'SODInstanceMap' - $end 'SODInstanceMap' - SODComponentList() - $end 'CosimDefinition' - $end 'Basis_Model_For_Test' - $begin 'Y_Connections' - $begin 'CosimDefinition' - CosimDefName='DefaultNetlist' - $begin 'SODInstanceMap' - $end 'SODInstanceMap' - SODComponentList() - $end 'CosimDefinition' - $end 'Y_Connections' - $begin 'Sinusoidal' - $begin 'CosimDefinition' - CosimDefName='DefaultNetlist' - $begin 'SODInstanceMap' - $end 'SODInstanceMap' - SODComponentList() - $end 'CosimDefinition' - $end 'Sinusoidal' - $begin 'design_for_test' - $begin 'CosimDefinition' - CosimDefName='DefaultNetlist' - $begin 'SODInstanceMap' - $end 'SODInstanceMap' - SODComponentList() - $end 'CosimDefinition' - $end 'design_for_test' - $end 'SODInfo' - $end 'DataInstances' - $begin 'WBSystemIDToDesignInstanceIDMap' - $end 'WBSystemIDToDesignInstanceIDMap' - $begin 'WBSysIDSysDetails' - $end 'WBSysIDSysDetails' - $begin 'WBConnIDConnDetails' - $end 'WBConnIDConnDetails' - $begin 'WBMaterialGuidDetails' - WBMaterialGuidMap() - $end 'WBMaterialGuidDetails' - $begin 'MinervaProjectSettingsBlk' - MinervaRemoteFilePath='' - FolderContainerString='' - $end 'MinervaProjectSettingsBlk' -$end 'AnsoftProject' -$begin 'AllReferencedFilesForProject' -$begin 'Design_80.setup/NativeGeometryFiles' -NumFiles= 34 -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0000006.x_b -BIN000000142992 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0000006.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0000006.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ @@:0yE> -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ DS@@O SDL/TYSA_DENSITYP!"(#TUNIT=mmO"AEDT_EntityName_V1P#$(#S{Gz?O$AEDT_ExtentScale_V1Q %&F'' ()3 *++Gz濈[0 ףp= -?࿩LXz -,-+{t?3TY?:pΈ?EТ<}EB<k5px?9{Gz? h./jEfݿsZW:pΈڿ )0V 1n2345678nQ5 9:;<6=66>?>+7;@ABn8CD+Ѿ:pΈڿCEF8 -=.?ygL?:pΈ?DG8H`b*?+?伿:pΈڿGIJKLDnHMDN<|:pΈ?McOPQRHnNSHTQQ!?Xv.?:pΈڿSUVWXNnTKNYUiIv?.I,:pΈڿKZ[\GTnY]T^jEfݿsZW?:pΈڿ]4_`abYn^cYd q?:pΈ?cefgh^ndi^j+Ѿ:pΈ?iklmndnjado|࿣<?:pΈڿa6pqr]jnogjs pZ]|?:pΈ?gtuvconswox<?|?:pΈڿwyz{|snx}s~ -=.?ygL?:pΈڿ}"xn~xZQ!Xv.:pΈ?[~n~ ?q:pΈڿnygL? -=.?:pΈ? n>Vp?Xo]xп:pΈڿLnJiܧ)ml8?:pΈ?{nml8?Jiܧ)?:pΈ?nygL -=.ƿ:pΈڿ\nA?:pΈڿA7nml8?Jiܧ)?:pΈڿnq :pΈ?_RnmB1aY:pΈڿrnQQ!?Xv.:pΈڿn<?ʒ|:pΈ?!n`b*?^+??:pΈ?nsZW?jEfݿ:pΈ?naYeB1:pΈڿlnq ?:pΈ?n>Vp?rXo]x?:pΈ? nZ]|? p?:pΈ?njEf?sZW:pΈ?5n q?:pΈڿ:rnQQ!Xv.?:pΈ?n[l8ԿJiܧ)?:pΈ?nmB1aY:pΈ?WnDŽR?_o?:pΈ?n  -`b*?+?伿:pΈ?    n -Z]| p?:pΈڿF -n ->VprXo]xп:pΈ?knZ]|? p:pΈ?#nygL -=.ƿ:pΈ?m !"n#$bt`tiZ:pΈڿ#%&'(n$)* -=.ƿygL?:pΈڿ),+,-.$n*$/>VprXo]x?:pΈ?y012*n/ '*3 `O꿖9:pΈڿ'456#/n3 -7/8DŽR𿨥_oٿ:pΈڿ7b9:;<3n8 3=eB1?aY:pΈڿ>?8n= @8A`b*^+??:pΈ?@uBC2D=nA E=Bʒ|࿣<:pΈ?EQFGHIAnB7AJ+Ѿ?:pΈڿJKBL p?Z]|?:pΈ?KMNOPJnLJQXv.ZQ!?:pΈ?RShLnQLT`v.QQ!:pΈڿpUVQnTWQXPv.?ZQ!:pΈ?W+YZ[\TnXT]_o?DŽR:pΈ?7^_`Xn]aXb߿ T:pΈڿacdef]nb]gq? ?:pΈ?hijbngkblbt`tiZ:pΈ?kmnfognlpgqiO<&~?:pΈڿprstulnqvlw>Vp?Xo]xп:pΈ?vxyz qnw{q{Z]|? p?:pΈڿ{|}~wwn{fwiO;&~:pΈ?fak{n.{+?伿`b*?:pΈڿ.*)n+?伿`b*:pΈڿnZQ!Xv.:pΈڿnn .I,?UiIv?:pΈڿ&n.I,UiIv?:pΈڿ(.n ^+??`b*?:pΈڿ$}n!_o?DŽR?:pΈڿn"-P?CP?:pΈ?n#>VprXo]x?:pΈڿPn$ q:pΈ?UHn%Jiܧ)?ml8Կ:pΈڿn&QQ!Xv.?:pΈڿ@n' -=.?ygL:pΈڿn(<?ʒ|:pΈڿn)ygL? -=.?:pΈڿn*q ?:pΈڿDn+WXv.?QQ!?:pΈڿWSn,sZWjEf?:pΈڿJn-.I,?UiIv:pΈڿn._oٿDŽR:pΈ?MIn/.I,UiIv?:pΈ?n0e-P?CPȿ:pΈڿe(an1mB1?aY?:pΈڿWn2mB1?aY?:pΈ?On3Jiܧ)ml8?:pΈڿNn4;sZWjEfݿ:pΈڿ;d7n5ml8ԿJiܧ):pΈڿ~n6jEf?sZW:pΈڿn7 .I,?UiIv?:pΈ?n8_f3]?yػ?:pΈڿ  - n9 _o?DŽR?:pΈ? n :IjEfݿsZW:pΈ?IOE n; [l8?Jiܧ):pΈڿn<o `O꿖9:pΈ?okn=>Vp?rXo]x?:pΈڿn>q? :pΈ?% !n?O" ?q?:pΈ?O#$Kn"@%Xv.?QQ!?:pΈ?&'("n%A")_f3]?yػ?:pΈ?*+,%n)B-%.UiIv.I,:pΈ?-q/0D")n.C1)2iO<&~?:pΈ?1345.n2D.6ygL -=.?:pΈڿR7892n6E2:Jiܧ)?ml8?:pΈ? ;<6n:F6=aYmB1?:pΈ?>?:n=G@:A<|?:pΈ?@BCD=nAH=E+?伿`b*?:pΈ?FGHAnEIhAIeB1aY?:pΈ?hJKcEnIJvEL|࿣<?:pΈ?vMNOgInLKIPDŽR𿻥_o?:pΈ?}QRDLnPLuLSbtctiZ?:pΈڿuTUp6PnSMVPW+?伿`b*:pΈ?VEXYZ[SnWNS\^+??`b*?:pΈ?]^EWn\OrW_ pZ]|?:pΈڿr8`aa\n_Pt\b߿T?:pΈڿtcd p_nbQ<_eJiܧ)[l8Կ:pΈڿ<`fg7bneRbh`b*+?伿:pΈڿZijkenhSel_oٿDŽR:pΈڿ|mn.hnlThoJiܧ)[l8Կ:pΈ?ipqrlnoUlsjEf?sZW?:pΈ?tuPonsVovrXo]x?>Vp?:pΈڿ wx}snvWsy q:pΈڿtz{|vnyX}v~rXo]x?>Vp:pΈ?};`yn~YjyaY?mB1?:pΈ?j(~nZ~DŽR?_oٿ:pΈ?zn[Z]| p:pΈڿhn\.I,?UiIv:pΈ?A[n]`v.QQ!:pΈ?Yn^-P?CPȿ:pΈ?,mn_!aY?mB1:pΈ?!'\n`/=.ƿygL:pΈڿnaJiܧ)?ml8?:pΈڿAnb[l8ԿJiܧ)?:pΈڿ0b-ncH p⿿Z]|:pΈ?HSEndDUiIv7.I,?:pΈ?Ds@-ne|?<?:pΈڿnf/jEf?sZW?:pΈڿn/g6 `O꿘9?:pΈڿ6u'/nQ1 96T46-'+-+n¸U6+Uu+u-nº6-'-n¶QT 9ni+:pΈڿ?'i=< ?h+ `O꿚9?zGz<?j+lfffffh"f:pΈڿ࿨LXz*\(?nk+:pΈ?Xd' 7 <;-?]]^S޿$I$IQ?"nl+=Y߿O:pΈڿElR 䰼?=yox?H|Gz?ynm+:pΈڿqp7s6L¦AT̹Q?[no+Xv.ZQ!?:pΈ?cnp+:pΈ?P0wn?@,8={A8B+DŽR𿻥_o?:pΈڿ?ACnRDE=B|F=G+O,q?8rR:pΈڿ$aܚl.;G%?!?*?{Gz?FHnIJKBG}LBM+:pΈ?ꜻpfVprXo]x?:pΈڿ?n1DV+rR?O,q?:pΈ?2L?$I$IVp?Xo]xп:pΈڿ?ny+_oٿDŽR:pΈڿ?n+O,qڡrR:pΈ?ncܚl;G%<!)?8|Gz?pn+:pΈڿXd' 7 ?;-?]]^S?$I$I?8<@8A+i|?Jn{~?:pΈ?hE<,P< -"|@.5u?Y{Gz?@BnCD<A<E+Pv.?ZQ!:pΈ?PFnGHAEIA-+Gz?:pΈ?ar^<? -ףp= -?IJnKLE-ME -+:pΈڿp4+in +UiIv7.I,?:pΈ?tn e -+:pΈڿ?(h`윲?t췈8?mp ࿋$I$IQ?n $+<|?:pΈڿ?$ nC  +:pΈ?B[1n^b<AT̹?>L?$I$IVp?rXo]x?:pΈ?n+:pΈڿeF|olDUfв?lRХ:n?@D9=A9B+_oٿDŽR?:pΈ?ACnDE=BF=G+ml8ԿJiܧ):pΈ?FHnIJBG BK+P"?#o:pΈڿ6p8I़?qE=4翓 '?{Gz?mLnM -GK!GN+ZQ!Xv.:pΈ?OnŽPKN"KQ+#^] ֿ:pΈ?LRď^*6᡼z*?FzhC?{Gz?qVnWX -QU$QY+:pΈڿNj?:?wIٔʿ:pΈ?ar^?HiW -bܑ?L]<+O=Y߿:pΈ?hElRVprXo]xп:pΈ?n|M+<|:pΈ?nPNKX+:pΈڿbP0w??wIٔʿ:pΈڿar^<HiW -bܑ?L]Lᅪ$I$IQ?FnX+UiIv?.I,?:pΈڿ?nY+|˿Jn{~:pΈڿ \iryHc0?%[I+ )j?{Gz?nZ+_މ+?:pΈڿar^<𿅂̈́q?֪пSج𓼚?[f+ygL -=.ƿ:pΈڿ?fkn!co\%++??`b*:pΈ?% n!!]"+<?|?:pΈ?#nz$"^P%+aYeB1:pΈڿ?P&n'"%_r"(+ ?#^]:pΈڿQVFg<&6=?O?]@ۿY|Gz?r)n*an%(`%++sZW?jEfݿ:pΈ?,n-E(+a(.+=Y߿O?:pΈڿ6;&Y<e? ?&aI?{Gz?5/n0+.b*+1+=Y?O:pΈ?hElR <G?yox?I9|Gz?*42n3%.1c.4+ ֿ#^]?:pΈڿVFg<$6=?O??@]@?9|Gz?15n6714d18+:pΈڿeF|ol0Ufв?iRХ?JVp:pΈڿ?J>n?F@;gA;+:pΈڿ2%]?}?Q -K?LAT̹?۶m۶mUQ?vunvqtqw+O?=Y߿:pΈ?";&Y;zF<^&aI?!?I9{Gz? xnytw|tz+:pΈڿAPgpڊI?q?ć Ӷm۶mQ?|{n|w wz+w}+sZWjEfݿ:pΈڿ?+~n|(z}z+z$N(~?:pΈ?ar^?s4hпr];{d#q?nƒ}}+:pΈڿ7#G$xt<A?+6Tpb:+T06]?+b2@D]AnQ@ 9b_BAbCD_oٿDŽR?:pΈڿCZEA/=.ƿygL:pΈ?DzAFJiܧ)?ml8Կ:pΈ?zGHvDnF\DIQQ!?Xv.:pΈ?\)J2W!FnIKFLʒ|࿣<:pΈڿKxMN.|InLIO.I,UiIv:pΈڿPLnOPLQ|?<?:pΈ?PRKOnQ[OSeB1?aY:pΈ?[-TUVWQnSQWsZW?jEfݿ:pΈڿX-SnWHSY -=.ƿygL?:pΈ?HZWnY|W[sZW?jEf?:pΈڿ|\]w^Yn[_Y`Xo]xп>Vp:pΈ?_Ia?Z[n`[/rXo]xп>Vp?:pΈ?b4H`n/-`crXo]xп>Vp?:pΈڿc/deB1aY?:pΈڿ<efcnd9cg`b*^+??:pΈڿ9ThijdngdksZW?jEf?:pΈ?lgnkgm+??`b*:pΈ??noknmkp p?Z]|?:pΈڿqrmnpms|?<:pΈ?3tuvpnspw<|:pΈڿfx;snwrsyDŽR𿨥_oٿ:pΈ?rgz{Qwnyw| p?Z]|:pΈڿ}~yn|y>VprXo]xп:pΈڿ^<|nV| ?q:pΈ?V/v[n -_f3]?yػ:pΈڿ -^nDŽR?_oٿ:pΈڿnUiIv?.I,:pΈ? n?:pΈ?Knnn+Ѿ?:pΈ?nlinLygL?/=.ƿ:pΈڿLGnDsZWjEf?:pΈ?D@naYmB1?:pΈڿBnRZ]| p:pΈ?RaMnq? :pΈڿnDŽR𿻥_o?:pΈڿLnQsZWjEfݿ:pΈ?QerMnZ]|? p:pΈڿn|?<:pΈڿnXv.ZQ!?:pΈڿ>nZ]| p?:pΈ?@nrXo]x?>Vp?:pΈ?En(QQ!?Xv.?:pΈ?(jnml8ԿJiܧ):pΈ?K_n^DŽR?_o?:pΈڿ^| -nUiIv?.I,?:pΈ?naYeB1:pΈ?]'nv p?Z]|:pΈ?v1Vn(iO;&~:pΈڿ(#en+??`b*:pΈڿ!n_oٿDŽR?:pΈ?>On| p⿿Z]|:pΈڿ|vsKn2ygL -=.?:pΈ?2w@n~q? ?:pΈڿ~ -X{n\UiIv?.I,?:pΈڿ\KnrXo]x?>Vp:pΈڿn5btctiZ?:pΈ?51njUiIv7.I,?:pΈڿjVk9nF -=.?ygL:pΈ?=}nFC<?|?:pΈ?FnQF 9z-}}-}w-zw+zn-]n+n+n+u+u)r+u-~i+}$+{-}{$-TR~+ nMT{+Tcw+cT|`+z|c-n`QK 9bo+O?=Y?:pΈڿ!;&Yq;zF?^&aI?!9{Gz?n+:pΈ?? mæo< ?p5+ b>?wIٔ?:pΈ?ar^?HiW -bܑL]骼?5n1q+ b>?wIٔ?:pΈڿar^<HiW -bܑL]骼?nr{+:pΈڿh\<>?L?AT̹?#I$I<9Q?:;+|࿣<?:pΈ?g<nqo:;:=+E|?Jn{~:pΈ?ZiryHc0<'[I?* )j?99{Gz?<>n?;=;@+:pΈ?7#G$xtL?AT̹$I$IL9Q?DnEt@C@F+rXo]x?>Vp?:pΈڿ?GGn¯CF@CH+/=.ƿygL:pΈ?@InJFHF8+P"??#o:pΈ?6p8I<`E=4? '?P9{Gz?(JnK$H8oHL+rXo]xп>Vp?:pΈ?L38M+aY?mB1:pΈ?3NnO nLMLP+P"?#o:pΈ?T^*6<"ۘ<𿅦hC?FI9|Gz?\QnRMP#MS+.I,UiIv?:pΈڿ?#Tn; PSPU+Jn{~?|˿:pΈڿ[iry<)RA?+ )j%[I9{Gz?VnWKSUS+3TY?{t:pΈڿ/v-ca-meaifnQeB 9mkgahj>md`+fmij߿ T:pΈ?i[kf.I,UiIv:pΈ?jfl `O꿘9?:pΈ?mo5jnljn<|?:pΈڿHoplnnlq߿T?:pΈ?rs1nnqXntaY?mB1?:pΈڿX uvS~qntqw`b*?^+??:pΈڿx \tnw"ty`b*+?伿:pΈ?"oz{-wnyw|aY?mB1:pΈڿ}Oyn|y~Pv.?ZQ!:pΈڿG|n~O|jEfݿsZW?:pΈ?Ov~n~Xo]xп>Vp:pΈڿn -P?CP?:pΈڿ tn ?q?:pΈڿn`[l8?Jiܧ):pΈ?`9}n,_f3]?yػ:pΈ?,nkEUiIv.I,:pΈڿkXjnE CygL?/=.ƿ:pΈ? v EnQ 9 x  ;-YJ E-JLKW-L;+y E-yv+Ev+E +Es t+sp+[ ts-p [K+  J7+ [GIF-JG 7-ITKF+TIWGK+WT:L+:TW+yW:-T:67+H:-Hzc-y-Hv-z++y+z-mHc+E+76-E----6--+-y--+y+#y+#+y-J--Y-+ #-V  + Y- -$#-!O3-K#!$+K\+KW+O2!K-OO3+2\ +2O-2 -Z\K-(ZWG-Z{z-GZ+GUW -NUU[?H+[ +V+v+?[-v?UH-V -?||- +V- v~+  -~-~uv-y~u-3+3(*+(3%+3*-Ru++_\--_(%3- __-_a*-_+no)(-`+(`)+?}+?+`-|-}-qn-+~n@}?-+s--o?-oo!%-?++[+!-!!o%+^+!*-^--&[b--[CVinb+Y[-"YYV +V+ Z + 7_ +ZG  _VCn   V-     Y-   Z@ -   -    @ +  ?Z -  ?   _J - +  ?- - ?J - -  _7  -   - F -7   - + 7 + I +   7-     F +   n +  -n    -  n  -     I$! -  n.-$   .! +  $GIQ- $ G   ENI +OE Q+OH L+O P+  NEOL- N N   KGI -   Hs, -  N| -s !  |, +  sHPO- "   ! {# +!  s-{$ % # ! -# $ {-$ & $ # % ' -# +' +R( +' ) -) * ) + ' % +) ' + V&( ++ ) W -V, - ( &+ -( , V-, V. , ( - / -- , V  -M-0 1 / - +/ 0 'R-0 '2 '0 / 1 P3 +RB/ +BR3 +BR4 +3 5 BR-5 6 5 7 3 'P1 -5 3 7 }z4 -7 5 ,-}8 9 4 z7 +4 8 }B-8 }: 8 4 9 R~; +9 8 },-< = ; ~9 -; < PR-< > P< ; = M? -M; +Q? +Sr@ +? A M-A B A C ? P= +A ? C Q+@ +C A ;-D E @ ;+C -@ D {Q-D {F {D @ E r:(G -E D {7-:H I G 7{(E +G H :qrS-H :J qH G I g|K +SG +SK T+L +K M gTS-M gN gM O K <q|I -M K O L -O M g9-P Q L O +L P !-P !R !P L Q fS +Q P !-T U S !fQ -S T {-T i{V {T S U "joW -"S +-W +DX +W Y j0"-Y jZ jY [ W {oU +0Y W [ -eX +[ Y 0jk'-\ ] X k0e[ -X \ --\ r^ \ X ] D_ -] \ j-` a _ j] +_ ` CD-` Cb C` _ a @ic +v@_ +v#2c +#vd +c e i@v-e f ie g c 9Ca -e c g 28d -g e i-8h i d g +d h 812#v-h 8j 1h d i k +i h 18-l m k 1i -k l #-l n l k m Do -3#k +3o + 3Dp +o q R3-q Rr q s o Dm +Rq o s Ap +s q Rkj-t u p RAs -p t  3-t v t p u Dw -u t j76-x y w u +w x CD -x z Cx w y @p${ + @w +- { +-| +{ } p@  -} p~ p}  { C$y -} {   | - } pxw- |   +|  --   |  +  wt-  -  ?-- ]? ? : -g- +g. 0+.g ++  g0-   ?: +  +  -  -  S.+g- a S  -  S- S +  K/.- K K hfn +.h /+c +g +  ffh- f f Kn -f c -  ff- f +  uc-  u ga +  ur-a ru -  aNg- ea N vq -v +yO {+y v+  qv{-  q aN + O` +  q]0-` ? ] -  `>Oyv- > > ?DA<-? >`b6-<;Dzy-y<z+6+H2+3 +U W+3 ,GH - BG , ,3)*-G 3, -, G,.U- .G,+  W-   # +  UO- W # -  UR-   W; -U R+U V+CE +  ^VU- ^  \ ;W+^ \8 +\ ^Vlk- ^8\-   -    E -  }kh4-E Cn }  +  EC@-   x +C @+?C D+? <+  xDC- Fx x  -  -  x[-  +  ?<-   k +  [- k -  u@?- u u  -? @+P + K +  - -  u + Pa +  - a -  NP- ) N Kr -  N-r N +  r$K ,- 0$ $ O + ?O ,+, n < -Q p 9, > P9 (#Q , Q>o 9<   Qq 9   R Q  Qr 9  R Q  Qs 9@ > R Q @ Q>t 9<  R Q <> Qu 9D >B R Q D QBv 9@  R Q @B Qw 9 B R Q  Qx 9V T R Q V QTy 9R  R Q RT Qz 9W T R Q W Q{ 9   R Q  -Q| 9  -R Q   - -Q} 9 - -R -Q -   - -Q~ 9z -x -R -Q - z - - -Qx 9v - - -R -Q - vx - - -Q 9{ -x -R - -Q - { - - -Q 9 - -R -Q -  - - -Q 9 - -R -Q -  - - -Q 9 - -R -Q -  - - -Q 9/ -- -R -Q - / - - -Q- 9+ -f -R -Q - +- - - -Qf 90 -- -R -Q - 0f - -! -Q 9 -f," -R -Q -  -# -$ -Q, 9# -% -R" -Q# - , -& -' -Q 9 & -, -( -R% -Q& - # -) -* -Q - 9) -+ -R( -Q) -  -& -, -- -Q 9 , - -2. -R+ -Q, - ) -/ -0 -Q2 9/ -1 -R. -Q/ - 2, -2 -3 -Q 92 -2"4 -R1 -Q2 - / -5 -6 -Q" 95 -u7 -R4 -Q5 - "2 -8 -9 -Qu 98 -": -R7 -Q8 - u5 -; -< -Q 9; -u= -R: -Q; - 8 -> -? -Q 9> -@ -R= -Q> - ; -A -B -Q 9A -C -R@ -QA - > -D -E -Q 9D -F -RC -QD - A -G -H -Q 9G -I -RF -QG - D -J -K -Q 9TJ -RL -RI -QJ - TG -M -N -QR 9M -O -RL -QM - RJ -P -Q -Q 9P -RR -RO -QP - M -S -T -Q 9S -U -RR -QS - P -V -W -Q 9V -X -RU -QV - S -Y -Z -Q 9Y -A[ -RX -QY - V -\ -] -QA 9\ -Q^ -R[ -Q\ - AY -_ -` -QQ 9_ -Aa -R^ -Q_ - Q\ -b -c -Q 9b -Q d -Ra -Qb - _ -e -f -Q  9e -g -Rd -Qe -  b -h -i -Q 9h - j -Rg -Qh - e -k -l -Q 9Pk -Nm -Rj -Qk - Ph -n -o -QN 9Ln -p -Rm -Qn - LNk -q -r -Q 9Qq -Ns -Rp -Qq - Qn -t -u -Q 9 t - -v -Rs -Qt - q -w -x -Q - 9w -6y -Rv -Qw -  -t -z -{ -Q6 9 z - -| -Ry -Qz - 6w -} -~ -Q 9} -6 -R| -Q} - z - - -Q 9 - -R -Q - } - - -Q 9 - -R -Q -  - - -Q 9 - -R -Q -  - - -Q 9 - -R -Q -  - - -Q 9 -> -R -Q -  - - -Q> 9 - -R -Q - > - - -Q 9 -> -R -Q -  - - -Q 9) -' -R -Q - ) - - -Q' 9% -2 -R -Q - %' - - -Q2 9* -' -R -Q - *2 - - -Q 9 -2 -R -Q -  - - -Q 9 - -R -Q -  - - -Q 9 - -R -Q -  - - -Q 9  - -R -Q -  - - -Q 9 -J -R -Q -  - - -QJ 9 - -R -Q - J - - -Q 9$ -J" -R -Q - $ - - -Q" 9 - -R -Q - " - - -Q 9 -"x -R -Q -  - - -Qx 9 - -R -Q - x - - -Q 9 -x -R -Q -  - - -Q 9 - -R -Q -  - - -Q 9 - -R -Q -  - - -Q 9 -D -R -Q -  - - -QD 9 - -R -Q - D - - -Q 9t -Dr -R -Q - - t - - -Qr 9p - -R -Q - - pr - - -Q 9u -r -R -~Q - - u - - -Q 9\ -Z -R -}Q - - \ - - -QZ 9X - -R -|Q - - XZ - - -Q 9] -Z  -R -{Q - - ] - - -Q  9 -: -R -zQ - -   - - -Q: 9 - 5 -R -yQ - - : - -R -xP  -AS -???O -SDL/TYSA_COLOURS -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S~ -???S{ -???Sx -???Su -???Sr -???So -???Sl -???Si -???Sf -???Sc -???S` -???S] -???SZ -???SW -???ST -???SQ -???SN -???SK -???SH -???SE -???SB -???S? -???S< -???S9 -???S6 -???S3 -???S0 -???S- -???S* -???S' -???S$ -???S! -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???Q <> - -Qn 9@ -> -R Q - @ - -Qm 9 -( -R -Q -  - - -Q(l 9v -t -R -Q - v( - - -Qtk 9r -( -R -Q - rt - - -Qj 9 -t -R -Q -  - - -Qi 9 -m -R -Q -  - - -Qmh 9 -J -R -Q - m - - -QJg 9I -km -R -Q - IJ - - -Qkf 9L -J -R -Q - Lk - Qe 9m Zk R -Q m\ - R Q\ Z  S ???Q 6 \ S ???Qc 96 3Z Q 13  - S ???Q3b 91  Q 5  S - ???Qa 95  3 Q    S ??? n 5Q ` 9  Q   S ???Q_ 9 $  Q $   S ???Q$^ 9  Q    S ???Q] 9 $ Q    S ???Q\ 9  Q 2  ! S ???Q[ 92 /" Q -/#  $ S! ???Q/Z 9- i% Q# 1i& ' S$ ???QiY 91# /( Q& ?) # * S' ???QX 9?& =i+ Q) =, & - S* ???Q=W 9) . Q, / ) 0 S- ???QV 9, =1 Q/ , 2 S0 ???QU 9/ 3 Q 4 / 5 S2 ???Q4 6 7 S5 ???QS 94 8 Q6 9 4 : S7 ???QR 96 ; Q9 < 6 = S: ???QQ 99 > Q< ? 9 @ S= ???QP 9< A Q? B < C S@ ???QO 9? D QB E ? F SC ???QN 9B G QE dH B I SF ???QM 9dE bJ QH `bE K SI ???QbL 9`H L Q M H N SK ???QM O P SN ???QJ 9M Q QO R M S SP ???QI 9O PT QR MPOO U SS ???QPH 9MR GV QO DGER W SU ???QE ABX OY SW ???QX ;FZ E[ SY ???QFE 9;X 9B\ QZ 9] X ^ S[ ???Q9D 9Z F_ Q] ` Z a S^ ???QC 9] 9b Q` c ] d Sa ???QB 9` e Qc f ` g Sd ???QA 9c Zh Qf Zi c j Sg ???QZ@ 9f k Qi  l f m Sj ???Q? 9i ZZn Ql ~ Zo i p Sm ???QZ> 9l 3q Qo } m3r l s Sp ???Q3= 9mo jZt Qr | hjZo u Ss ???Qj< 9hr R3v QZ{ lRPr w Su ???QPz MNx Zy Sw ???Qx y Qz P{ Sy ???QQ9 9x N| Qz x (x } S{ ???Q8 9z &Q~ Q(w & z S} ???Q v 7o ( S ???Qo6 97 5& Q u 5  S ???Q55 9 o Q t  S ???Q4 9 /5 Q s / S ???Q/3 9  Q r  S ???Q2 9 / Q q  S ???Q1 9  Q p  S ???Q0 9  Q o  S ???Q/ 9   Q n  S ???Q. 9  Q m  S ???Q- 9  Q l y S ???Q, 9y v Q k tv S ???Qv+ 9t  Q j x S ???Q* 9x 5v Q i 35 S ???Q5) 93 i Q h 7i S ???Qi( 97 5 Q g k S ???Q' 9k i Q f  S ???Q& 9  Q e  S ???Q% 9  Q d  S ???Q$ 9  Q c  S ???Q# 9  Q b  S ???Q" 9 & Q a & S ???Q&! 9  Q `  S ???Q 9 & Q _  S ???Q 9 8 Q ^ 8 S ???Q8 9  Q ]  S ???Q 9 8 Q \  S ???Q 9  Q [  S ???Q 9  Q Z - S ???Q 9- + Q Y + S ???Q+ 9  Q X  S ???Q 9 L+ Q W L S ???QL 9   Q V -  S ???Q  9 - VL Q U V S ???QV 9   Q T X S ???Q 9X V Q S  S ???Q 9   Q R  S ???w n  Q  9  Q Q  S ???Q 9   Q P  S ???Q 9  Q O  S ???Q 9  Q N  S ???Q 9  Q M  S ???Q 9  Q L   S ???Q 9  Q K   S ???Q 9  Q J    S ???Q - 9 ) Q I ) -  S ???Q) 9   Q - H     S ??? nsQ  9 - ) Q G s -  S ???Q 9s p  Q F np   S ???Qp 9n ) Q E r)   S ???Q) 9r p Q D a   S ???Q 9a ^) Q C \^   S ???Q^ 9\   Q B `   ! S ???Q  9` ^" Q A #  $ S! ???Q 9  { % Q# @ |{& ' S$ ???Q{ 9|# y( Q& ? wy) # * S' ???Qy -9w& {+ Q) > {, & - S* ???Q -9{) y. Q, = / ) 0 S- ???Q -9, 1 Q/ < 2 , 3 S0 ???Q -9/ X4 Q2 ; X5 / 6 S3 ???QX -92 7 Q5 : 8 2 9 S6 ???Q -95 X: Q8 9 ; 5 < S9 ???Q -98 5= Q; 8 5> 8 ? S< ???Q5 -9; @ Q> 7 7A ; B S? ???Q -97> 95C QA 6 9D > E SB ???Q9 -9A VF QD 5 VG A H SE ???QV -9D 9I QG 4 KJ D K SH ???Q -9KG HVL QJ 3 FHG M SK ???QH -9FJ N Q2 JJ O SM ???Q1 P Q SO ???QP 0 R S SQ ???Q -9P T QR / U P V SS ???Q -9R W QU . X R Y SV ???Q -9U Z [ QX - WZ \ U ] SY ???WZ n\UQZ -9WX ^^ Q\ , \^_ X ` S] ???Q^ -9\\ gZ a Q_ + gb \ c S` ???Qg -9_ ^d Qb * ?e _ f Sc ???Q -9?b /gg Qe ) /h b i Sf ???Q/ -9e j Qh ( 0k e l Si ???Q -90h `/m Qk ' `n h o Sl ???Q` -9k p Qn & q k r So ???Q -9n `s Qq % t n u Sr ???Q -9q /v Qt $ /w q x Su ???Q/ -9t y Qw # ez t { Sx ???Q -9ew d/| Qz " bd} w ~ S{ ???Qd -9bz  Q} !  z S~ ???Q -9} d Q  } S ???Q -9  Q  = S ???Q -9= < Q  < S ???Q< -9  Q   S ???Q -9 < Q   S ???Q -9 , Q  , S ???Q, -9  Q  E S ???Q -9E C, Q  AC S ???QC -9A i Q  Di S ???Qi -9D C Q   S ???Q -9 ci Q  c S ???Qc -9  Q  $ S ???Q -9$ "c Q  " S ???Q" -9  T Q  #T S ???QT -9#  " Q  ; S ???; n’8#Q -9; :T Q  8: S ???Q: -98   Q   S ???Q -9 : Q   Q -9  Q   S ???Q -9  Q  S ???Q -9  Q  S ???Q -9  Q b S ???Q -9b ` Q - ^` S ???Q` -9^  Q a S ???Q -9a  ` Q    S ???Q  -9   Q   S ???. n±]Q -9   Q   S ???Q -9   Q   S ???Q -9  Q   S ???Q -9 g Q  g S ???Qg -9  Q  } S ???Q -9} g Q   S ???Q -9  Q  S ???Q -9  Q   S ???Q -9 G Q  G S ???QG -9 1 Q  1 S ???Q1 -9 G Q   S ???Q -9 1 Q   S ???Q -9   Q  H S ???HO nU Q -9H F Q  F S ???QF -9   Q   S ???Q -9 F Q    S ???Q -9  Q    S ???Q -9  Q  ;  S ???Q -9; 9 - Q  79  S ???Q9 -97  Q  :   S ???Q -9: 9 Q    S ???Q -9  Q     S ???Q -9  Q     S ???Q -9  Q     S ???Q -9 < Q  <   S ???Q< -9 q Q  oq  ! S ???Qq -9o <" Q  f#  $ S! ???Q -9f dq% Q#  cd& ' S$ ???Qd -9c# e( Q&  ee) # * S' ???Qe -9e& d+ Q)  , & - S* ???Q -9) e. Q,  / ) 0 S- ???Q -9 , 1 Q/  2 , 3 S0 ???Q -9/ 4 Q2  5 / 6 S3 ???Q -92 7 Q5  8 2 9 S6 ???Q -95 I: Q8  @I; 5 < S9 ???QI -9@8 >= Q;  J>> 8 ? S< ???Q> -9J; HI@ Q>  FHA ; B S? ???QH -9F> >C QA  ID > E SB ???Q -9IA rHF QD  ,rG A H SE ???Qr -9,D *I QG  (*J D K SH ???Q* -9(G ~rL QJ  +~M G N SK ???Q~ -9+J ~*O QM  |~P J Q SN ???Q~ -9|M ~R QP  S M T SQ ???Q -9P ~U QS  V P W ST ???Q -9S X QV  Y S Z SW ???Q -9V C[ QY  AC\ V ] SZ ???QC -9AY ^ Q\  E_ Y ` S] ???Q -9E\  -Ca Q_  $ -b \ c S` ???Q - -9$_ #d Qb  #e _ f Sc ???Q# -9b  -g Qe  h b i Sf ???Q -9e &#j Qh  P&k e l Si ???Q& -9Ph Om Qk  On h o Sl ???QO -9k &p Qn  q k r So ???Q -9n  Os Qq   t n u Sr ???Q  -9q v Qt  w q x Su ???Q -9t | y Qw  z|z t { Sx ???Q| -9zw | Qz  ~} w ~ S{ ???Q -9~z #| Q}  # z S~ ???Q# -9}  Q  & } S ???Q -9& ## Q  !# S ???Q# -9!   Q  %  S ???Q  -9% '# Q  ' S ???Q' -9   Q   S ???Q -9 ' Q   S ???Q -9  Q   S ???Q -9  Q   S ???Q -9  Q   S ???Q -9  Q   S ???Q -9 7 Q  o7 S ???Q7 -9o m Q  km S ???Qm -9k %7 Q  n% S ???Q% -9n Nm Q  3N S ???QN -93 1% Q  1 S ???Q1~ -9  N Q   S ??? n^ +0Q } -9  1 Q   S ??? n = + 0Q | -9   Q   S ???  nd  +d0Q { -9   Q  d S ???d n¸ c + 0Q z -9d   Q   S ??? nd* +d*0Q y -9   Q  * S ???* n»  - 0Q x -9*   Q   S ???  n*  -* 0Q w -9   Q   S ???  n  - 0Q v -9   Q   S ???  n h - 0Q u -9   Q   S ???  n   - 0Q t -9   Q   S ??? n  - 0Q s -9   Q   S ???  n  - 0Q r -9   Q   S ???  n  + 0Q q -9   Q    S ???  n + 0Q p -9  Q  S???n  - - 0Qo -9   Q  S???  n-0Q n -9 Q S???n + 0Qm -9 Q S???n-0Ql -9 !Q  "#S??? nr $-r 0Q k -9%&Q" r %'(S#???r %n¬n q )-n 0Q%j -9r "* +Q' n *,"-S(???n *nr v l .-r v 0Q*i -9n '/%0Q, v /1'2S-???v /nn z t 3-n z 0Q/h -9v ,4*5Q1 z 46,7S2???z -4nv ~ x 8-v ~ 0Q4g -9z 19/:Q6 ~ 9;1<S7???~ 9nz } =-z 0Q9f -9~ 6>4?Q; >@6AS<??? >n~ B-~ 0Q>e -9 ;C9DQ@ CE;FSA??? Cn® G- 0QCd -9 @H>IQE HJ@KSF??? Hn² L M- L0QHc -9 ENCOQJ LNPEQSK???LNn¶ RST- R0QNb -9LJUHVQP RUWJXSQ???RUnLYZ-L0QUa -9RP[N\QW []P^SX???![nR_-R0Q[` -9W`UaQ] `bWcS^???%`n d- 0Q`_ -9]e[fQb eg]hSc??? (en i- 0Qe^ -9 bj`kQg jlbmSh??? ,jn n- 0Qj] -9 goepQl oqgrSm??? /on s t- s0Qo\ -9 lujvQq suwlxSr???s2un yz{- y0Qu[ -9sq|o}Qw y|~qSx???y5|ns-s0Q|Z -9ywuQ~ wS???8ny-y0QY -9~|Q ~S???;n€-0QX -9Q S???>n‡ - 0QW -9Q S??? AnŽ - 0QV -9 Q S??? En¨  - 0QU -9 Q S???In¿ - 0QT -9Q S???Mn´+-0QS -9Q S???Qn-0QR -9Q S???Un-0QQ -9Q S???Xn¸ - 0QP -9Q S??? \n˜ - 0QO -9 Q S??? `n† - 0QN -9 Q S??? dnŽ V - V 0QM -9 Q V S???V hnž T - 0QL -9V Q S???lnV -V 0QK -9Q S???on©^ -^ 0QJ -9Q ^ S???^ qn \ -0QI -9^ Q S???un^ -^ 0QH -9Q S???xn-0QG -9Q S???{n - 0QF -9Q  S??? n  - 0QE -9 Q S??? n  -  0QD -9 Q  S??? n F  - F 0QC -9 Q F S???F n N D - N 0QB -9F Q N S???N nF M -F 0QA -9N Q S???nN  --N 0Q@ -9  Q   S???  n - 0Q ? -9 Q ~ S??? n« = - =0Q> -9  Q} = S???=n» ;- 0Q= -9=Q| S???n=-=0Q< -9 Q{ !"S???n#-0Q; -9$%Q!z $&'S"???$nB (-B 0Q$: -9!)*Q&y B )+!,S'???B )nR A --R 0Q)9 -9B &.$/Q+x R .0&1S,???R .nB 2 P 2-B 2 0Q.8 -9R +3)4Q0w 2 35+6S1???2 3nR 0 7-R 0Q37 -92 08.9Q5v 8:0;S6???8n2 <=-2 <0Q86 -95>3?Q:u <>@5AS;???<>n¥j BC-j 0Q>5 -9<:D8EQ@t j DF:GSA???j Dn<Z h H-<Z 0QD4 -9j @I>JQFs Z IK@LSG???Z Inj J Y M-j J 0QI3 -9Z FNDOQKr J NPFQSL???J NnZ : H R-Z : 0QN2 -9J KSITQPq : SUKVSQ???: SnJ * 8 W-J * 0QS1 -9: PXNYQUp * XZP[SV???* Xn:  ) \-:  0QX0 -9* U]S^QZo  ]_U`S[??? ]n*  a-* 0Q]/ -9 ZbXcQ_n bdZeS`???bn b f- b 0Qb. -9_g]hQdm b gi_jSe???b gn" ` k-" 0Qg- -9b dlbmQil " lndoSj???" lnb  p-b  0Ql, -9" iqgrQnk  qsitSo??? qn"  u-" 0Qq+ -9 nvlwQsj vxnySt??? vn f z- f 0Qv* -9 s{q|Qxi f {}s~Sy???f {n¥ e - 0Q{) -9f xvQ}h xS~???nf -f 0Q( -9}{Qg }S???n-0Q' -9Qf S???n› - 0Q& -9Qe S??? n° -0Q% -9 Qd S???nš - 0Q$ -9Qc S???n• - 0Q# -9Qb S??? n -0Q" -9 Qa S???n‚ - 0Q! -9Q` S??? n -0Q -9 Q_ S???n 1- 10Q -9Q^ 1S???1n 0- 0Q -91Q] S??? n1 -1 0Q -9 Q\ S??? n¢ - 0Q -9 Q[ S??? n 9 - 90Q -9 QZ 9S???9n– 5- 0Q -99QY S??? n9. -9. 0Q -9 QX . S???. n’ , - 0Q -9. QW S??? n.  -.  0Q -9 QV  S??? nŠ &  - & 0Q -9 QU & S???& n 6 $ - 6 0Q -9& QT 6 S???6 n& 5 -& 0Q -96 QS S???n6 -6 0Q -9QR S??? -n - 0Q -9QQ S??? n -0Q -9 QP S???n > - > 0Q -9QO > S???> n< -0Q -9> QN  S???n> ( --> (0Q -9  QM (  S ???( n¼-0Q  -9(S ???Q -9% RwQ - -Q% RP (#ROAEDT_BODYFlagGroupColor_V1PQQ -T Stator_YokeP(#QLRP hS???O SDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAME3(kp+?Q?;f?;f? 0 (3kb =+O,q rR?)?:pΈ?ar^??3y +?#o?P"?)?wIٔʿzGz<𿚙?HiW -bܑ?3r +?Q?;f?;f?3q +dfffffh"f?)\(?߿LXz?3p +O?=Y߿)?:pΈڿar^<37k2 _ +P"?#o) -+?Q?;f?;f?3 -B+?Q?;f?;f?3A -+?Q?;f?;f?3@F +?Q?;f?;f?3?+ ?#^])= + ֿ#^]?)?wIٔ?zGz<??HiW -bܑ37 W+?Q?;f?;f?3W6: +3TYrt)R=R<R;R:R9R8R7R6R5R4R3R2R1R0R/R.R-?ii-vijur)-iv~RM-vX}S-RTJXM+*Sjv}+SVXJDR-<VS*SK+*V()v-+K(V*-KSCAJ-9K+W',-+-'-,++,'WI;C-6y,-.+IT:C,;+:TI.+T: +.z:I-z3sz .--z. $ - zO?< -  $r:-?  <+?-@+)(++-'@?-)uj*v+T +T[ +[T +T[[ +  u[-[T4 +4Tk[} m+kTV4 h+  4m[-R,R+R*R})Rv(Rp'Rk&Rf%Ra$R\#RV"RO!RI RDR?R:R5R0R+R&R!R/0 -=-/+1-0+,41_- -,=0+ - -2d+ - -e2+2ed-21 -/+13-314 -  13+ 5+ +/+ 654++0/ -6^ 45-4^6_01+ ^765+7^% 1-5 s 6- 5  5 -s 5d0- st34+d ts0+ d47 +  4 1s8+ 4dp4+s8p4-8s1%7- 85U-%^758+^%-^9o+U5%+9^0k2-0^`9f:-+ 5no92+  5 '+n k&b:+ n5#+& ;:#nb-: &k0-9-   :;fej-; &(<-h>j(e;+jhaf`10+hj >haa<+<(>-<2a?-cde?+<#;+o5-su-4p+43t- -_6[+RR RR R R R R R  = >= ==KI->? ?>??A\-@A?\?+@TKAKK=I=+AKR  B CB BBnlL-CD DCDD7@-@E@@7DD+E@@lFllnBLB+FlAR  G*HG GGilm-H>*>H>>6?-lblliGmG+blFR R -R R =6ER R R R R R R R R R R R R R R R R R R| Ry Rv Rs Rp Rm Rj Rg Rd Ra R^ R[ RX RU RR RO RL RI RF RC R@ R= R: R7 R4 R1 R. R+ R( R% R" R R R R R R R R - R R R R R  iH+eB1?aY:pΈڿ?j +_o?DŽR:pΈ? k+:pΈڿcJqGOӴ?mp t췈8뿌$I$IQ?l +rXo]x?>Vp:pΈ?m+:pΈڿB[1m^b?AT̹?>Lᅩ$I$IQ?R R R R R R R ~R }R |R {R zR yR xR wR vR uR tR sR rR qR pS ???R oR nR mR lR kR jR iR hR gR fR eR dR cR bR aR `R _R ^R ]R| \Ry [Rv ZRs YRp XRm WRj VRg URd TRa SR^ RR[ QRW PRT ORN LRL KRI JRF IRC HR@ GR= FR: ER7 DR4 CR1 BR. AR+ @R( ?R% >R" =R <R ;R :R 9R 8R 7T*+Tqs+*T+o*-T*+T+T +Y-T +T +T +  -T +T . + TK +.zI$K n  G$K -QI 9.mMJQm 9IKQM 9KILRJyQ 9|MzMRLxQz 9NRMwQ 9zUORNvQU 9PROuQ 9UQRPtQ 9RSRQsQR 9TRSrjR}knQ 9RxURTqQx 9VRUpQ 9;x9WRVoQ9 97fXRWnQf 9<9YRXmQ 9fZRYlQ 9i[RZkQi 9\R[jQ 9ki]R\iQ 9jh^R]hQh 997_R^gQ7 9h`R_fQ 97aR`eQ 9bRadQ 9cRbcQ 9odRcbQo 9eRdaQ 9ofRe`Q 9gRf_Q - 9hRg^Q 9iRh]Q 9ejRi\Qe 9kRj[Q 9e`lRkZQ` 9rpmRlYQp 9a`_nRmXQ_ 9]p@oRnWRoVkpiq :pΈڿpk_o?DŽR:pΈڿqpnQq 9rQ 9qsQ 9qtRrQ 9uRtQ 9vRuQ 9wRvQ 9PxRwQP 9yRxQ 9PzRyQ 9{Rz~Q 9|R{}Q 9m}R||R}{Q 9}~RsQ} 9R~Q 9>}RQ> 9RQ 9>RQ 9}RQ} 9RQ 9}RQ 9RQ 9XRQX 9RQ 9XRQ 9RQ 9RQ 9LIRQI 9GZRQZ 9KIRQ 9\xZRQx 9RQ 9xRQ 9RQ 9RQ 9A;RQ; 975RRRKzT |! +TW% X+WT + +% $ {XW- TWM- -+MT 1 +TM,7 +1 0 'M-,T9 +T,= -+TC += < P--T;E +T97I +9T<O +I H q:<9-T9Q +T'U +'T[ +U T {'-T'k] +Tja +T9g +a ` C9-Ti +Tm +Tjs k+m l -jT6u 7+6Tjy 3+T6w x+y x C63-wT t+Tw y+T +  ?y-T +T +T +  K -T +T0r +0Ta +  Naa0-qT*n+*Tqr+T_*a+*rq-_T \+ T_`+T|  +u~ `_-|Tz|+zT|w+Tz{+UGzw|-T+TY+YT+-TY+T6+6T+--R 6R 5R 4R 3R 2R 1R 0R /R .R -R ,R +R *R )R (R 'R &R %R $R #R "R !R R R R R R R R R R R R R R R R R R R R R R R -R R~ R| Rv Rt Rq Rn Rk Rh Re Rb R_ R\ RV RT RQ RL RJ RG RD RA R> R; R8 R3 R1 R. R+ R( R% R" R R R R R R R R S ???S -???S -???S -???S -???S -???S -???S -???S -???S -???S ???O AEDT_EntityID_V1Q T 9E]QS 9 Q]U 9 RQV 9]RQW 9FRQFX 9ZRQZY 9HFbRQbZ 9ZRQ[ 9bR Q\ 9R Q] 9OMR QM^ 9vtR -Qt_ 9gMeR Qe` 9ctJRQJa 9heRRQRb 9JRQc 9R>RQ>d 9RQe 9>RQf 9BRQBg 9@RQh 9DBQRQQi 9RQj 9Q0RQ0k 9RQl 920BRQBm 9@RQn 9DB/RQ/o 9-zRQzp 9"/ RQ q 9zRQr 9 pRQps 9zRQzt 9rpRQu 9QzORQOv 9MRQw 9RORQx 9RQy 9RQz 9RQ{ 9RQ| 9RQ} 9RQ~ 9HFRQF 9ERQ 9IFRQ 9RQ 9aRQa 9_ RQ 9ZaXRQX 9V RQ 9[XRQ 9nRQn 9RQ 9nRQ 9}RQ 9`^RQ^ 9RQ 9^tRQt 9RQ 9vtRQ 9VTRQT 9[YRQY 9WTJRQJ 9\YRQ 9!JRQ 9RQ 9RQ 9RQ 9RQ 9GRQG 9zxRQx 9vGRRQR 9 RQ Q 9tRQtP 9R RQRO 9PMtRQMN 9K#RRQ#M 9OMRQL 9&#RQ&K 9RQJ 9(&RQI 9jhRQhH 9RQG 9hRR W OMV-UTO. +Q  9 RQ 9 RQ 9RQ 9RQ 9RQ 9;RQ; 9RQ 9;lRQl 9RRQ@ 9,*Q*? 9QA 9eR'R&Q> 9r*R(Qr= 93R)Q3< 91rR*Q; 95m3R+Qm: 9R,Q9 9ommR-Qm8 9kR.Q7 9fcmR/Qc6 9aR0Q5 9ecR2Q4 9(%R1Q%3 9#4R3Q42 9'%R4R5Q! 9qQq 9Q" 9RFQ# 9WUREQU$ 9SuRDQu% 9XU RCQ& 9~u| -R BQ|' 9{y R -AQy( 9w|\ R @Q\) 9|y R ?Q* 9^\R >Q+ 9 -R=Q, 9R<Q- 9 cR;Qc. 9trR:Qr/ 9pcTR9QT0 9urR8R7Q 9qRGQ 9RHQ 9RIQ 9wRJQw 9RKQ 9}wRLQ 9RMQ 9RNQ 9ROQ 9.+RPQ+ 9)-RQQ- 9-+ RRQ 9@-!R SR!TQkC 9ie"Rg%QD 9nk#R"$QE 9$R##R$"R]RR!RBUR)RMRNRQRHR[RSRR6R<) SJ' -l%T &Stator_Yoke$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0002465.x_b -BIN000000015758 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0002465.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0002465.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z)++ )?Wz?)5267nQ5%89:;2<=>?@+6;:ABCn7kDE )?Wz?:pΈ?DjFG7 A?nu-!UfntknQ/8tlt{-]tC p?Z]|?:pΈڿ\u|?<?:pΈ?C^6_X?W,?:pΈ?_C7`r?#VAd?:pΈڿu[k|?<?:pΈڿ2k-{yv+.n{}y{ztY-y-{zyvF-YFz+nYYt+k+n­Q8nr+:pΈڿpf+YZ+ F-  -  .z+  Zr-  ho-r@~h +L~)@?rjqp-q? nj p_j`=+_7`_p[K-=<2Kp`-=npqQ 8 o4+REuD?(˿Z?:pΈ?h9;?)f?P:4p+ )?Wz?:pΈڿ?q34 +_X?W,?:pΈڿ?3EnA rq+ )?Wz?:pΈ?)f꿾h9;?s + p?Z]|?:pΈڿ?Q831A63+DAB-Af-fA3-6a-G Ub+_a6+_B+_|+B9!6n"s-"As#s"k+"B+"s--+Vf+VXNW+f#$enV-Q$,8f%P8&'(#Q+8$(Q-8$)R% R) R( O'AEDT_EntityID_V1s-#@*n" +-0Q*8#,-./6.n¬#_ 0+#0C-n#  1-# 03+U#12+=Y?O?)42+Y4= -+%?!Ut?)@AJ\q,?2=X>++.r?:pΈڿar^<?n -@ =+ -@03>W2=+?Q?;f?;f?1An³ >+032V+>+{t?3TY?)?:pΈ?ar^??21T0++_? Bcrm?)=H,-,9n Q9$8,P5QQPR,9STQ#8S9URQ QSRPVRU PRWAQRSXSV???QRYZSX???QYR[\SZ???Q 8Y]Q[R^Y_S\???Q8[`Q^Ra[bS_???Q8^cQaR^dSb???Q8aeQRfagSd???QfRhSg???Q8fiQRjfkSh???QjRlmSk???Q8jnQlRWojpSm???Q8WlqQoRrlsSp???Q8otQrRuovSs???Q8rwQuRxrySv???Q8uz{QxRcz|u}Sy???c)zn[Qz8cx~Q|RxS}???Q8|zQR|S???Q8QR}S???Q8}QRS???Q8QRS???Q8QRS???Q8QRS???Q 8QRS???Q 8QRS???QRq S???Q  -8qQRS???Q 8 QR3S???QR1MS???Q18LQMRKLS???QR -NMS???QN8 -?LQR?GS???Q?8DNQGR@DCS???QCRBGS???QRACS???QA8.BQR.,S???Q.8*AQ,R#*S???QR-,S???Q-8:*QR :9S???Q:8 7-Q9R475S???Q5R)39S???S???R R R R R R R R R R R R R R R R R R~ R{ Rw Rt Rq Rn Ri Re Rc R` R] OWSDL/TYSA_COLOURST???><2J-RO 2<O I+_X?W,?)?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0002593.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0002593.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+)?U4?)I59X̌ -.+$??=@?:pΈڿ? n/0jÙ?J\hT?:pΈڿ *1VF2n34586789nQ6%:;<=7>?@3A-84<BCDn9bEF5-+?$keL?:pΈڿEaGH9cz?>jD4^?:pΈڿFcI9Je-?0?:pΈ?I%KL/MFnJdNFO ?q?:pΈڿN/PQR/JnOeMJD$??=@?:pΈ?M#STIUOnDf8OV$??=@?:pΈڿVgWDX ?q?:pΈ?WYZ[\VnXh]V^*FaK?aq0]?:pΈ?]_`aXn^iaXb*FaK?aq0]?:pΈڿacde]^nbjf^g)?U4?:pΈ?fhijGbngk\bkmB1?aY?:pΈ?\lmWjgnklCg0e-?0?:pΈڿC2no8Rkn0mek &?H=?:pΈڿe pqra0nQp6:esctquvwexyz+r s{|eHnQs5:r}p~{zr-|}GrnH`rE&?H=?:pΈ?_[H5-+?$keL?:pΈ?[3UWn^RmB1?aY?:pΈڿR0CNn]jcz?>jD4^?:pΈ?j\fn\UjÙ?J\hT?:pΈ?U!M[n[|)?U4?:pΈڿQ-:US{xU+(xxz/qy-/x-+n€y.TU-;TMB-+M+"n™U{+`r- nQ:n`+&?H=?:pΈ?~e\?D[?O:+&?H=?:pΈڿ4^n4^n?4+ ?q?:pΈ?4CnQ+{t?3TY?:pΈ?!vjD4^?:pΈڿ?n+)?U4?:pΈڿ?n+$??=@?:pΈڿ][?~e\5nw+{t?3TY?:pΈڿN2\-C 0"n. +jÙ?J\hT?:pΈڿ?Q :uG+ n¤Q!:]+ -n¦o+:pΈ??T!?N\O?Cl?p+jÙ?J\hT?:pΈ?][~e\?q+:pΈڿ?T!?N\O?Cl?nvr+$??=@?:pΈ?Զr?wj?nbU<$nžs+?#o?P"?:pΈ?Ļ<瑥< [+e\?Y9{Gz?&nyt+)?U4?:pΈ?h9;á)f꿳O:<u+*FaK?aq0]?:pΈڿh9;?)f?6n„v+cz?>jD4^?:pΈڿ0[2A?J\}?nbU<7nw+*FaK?aq0]?:pΈ?4^n<4^n<;nx+e-?0?:pΈڿԶr㿞wj鿾nbU3ny5+e-?0?:pΈڿ??nL-5z+5-+?$keL?:pΈڿ?{5+cz?>jD4^?:pΈ?á)f꿘h9;?n|+?#o?P"?:pΈڿ6p@vrH? '忂E=4?0{Gz?1n}+:pΈڿQgpI<z?ć ?Զm۶m7[->L?)>@?j+j@+`f+`]i+j-f+|-di|-Jd+dav-if`-id]-a+ev-rz+vuqa+u-uv|d+uR -+,n”u +1Q:'n£ ,-1:n -12W +.r?:pΈڿar^< 1 ))K!n+> "-+1Q!:)#$%&+I%n') --')12"P)()+5-+?$keL?)jD4^?)?:pΈ?ar^??3n +1Q3:425P:67(#Q4839:;Q:93<Q2::3=>R5$ -Q:824?@Q=:?22AR># -=n (-1Q?8=:BCQ2:B=DRA" -QB82?EFQ:4E2GRDK -QE84BHIQ :HJRGJ -QH8EKLQ -:KMNRJI -QK8HOPQM :-OQRNH --<MnT QO8-MKRSQ :RMTRQG -QR8OUVQ :UWRTF -QU8RXYQ:XZRWE -QX8U[\Q:[]RZD -Q[8X^_Q:^`R]C -Q^8[abQ:acR`B -Qa8^deQ:dfRcA -Qd8aghQ:giRf@ -Qg8djkQ:yjlRi? -Qj8ygmnQ:moRl> -Qm8jpqQ:prRo= -Qp8mstQ:suRr< -Qs8pvRu; -P8wAQ8sxySv???Qx8z{Sy???Q:x|Qz8x}~S{???Q:zQ}8zS~???Q:}Q8}S???Q8S???Q:Q8S???Q:Q8S???Q:Q8S???Q8S???Q8S???Q":Q8S???Q#:;Q8;S???Q;$:6S???R. -R/ -R0 -R3 -R4 -R5 -R7 -R8 -R|9 -OwSDL/TYSA_COLOURSt???Sq???Sn???Sk???Sh???Se???Sb???S_???S\???SY???SV???SS???SP???SL???SI???SF???SC???S@???Q984R<% -Q89S???Q8S???Q:/Q8/S???Q/:+Q8 +S???Q+: /Q8 S??? Dn '  - '1Q: -+Q8'-S???Q-:'%Q8+%#S???Q%:+!-Q#8)!S???S???R, -R+ -R* -3 X ,+{t?3TY?)0LBC-L0Io+B08T--uw8+uC + .moR-.Hm'm. \+o. CL-.omI-I+0BLM-wuq/+/*wNI nT8w-Q*:/PKQP):NQK+:ISRZ -QS,:MKRY -RX -Q(:RnPR[ -Qn':C<R\ -Q<&:86nR] -R^ -Q$:&!R&- -Q$Q&96$R! -P6(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth32P(#QRP8hS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER& -uNA -+u?+?>7G-G?f|EnG-Q3:Gh}Qh2:fQ}4:|sRP -RQ -Q1:jlhRR -Ql0:\YRS -QY/:WlRT -Q.:[YRU -RV -zx{e-R6 -R1 -R2 -R: -RW -R~O -Qc7:ap_RtN -Q_8:]cRM -RL -R=_ -*M SJ(_&T'Stator_Teeth32$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0002721.x_b -BIN000000015758 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0002721.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0002721.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+5 -?3s?)?@ABC-8/<DEFn9aFG{?%?:pΈڿF`8H9g1? G,2?:pΈڿGbI9J G,2?g1?:pΈڿI(KLMNGnJcOGPwO?JE?:pΈڿO QRSTJnPdUJV G,2?g1?:pΈ?UWX/YPnVeZP[{?%?:pΈ?Z\A]^Vn[fTV_wO?JE?:pΈ?T `aOb[n_gb[cJE?nO?:pΈ?bdeTf_nchg_hp;x?s#w?:pΈ?gijY]cnhikclXv.?QQ!?:pΈڿk#mno/hnljohpQQ!?Xv.?:pΈڿo$qrNklnpkMlss#w?p;x?:pΈڿM*tuEIpnslfp0JE?wO?:pΈڿfvwbsn0m]s g1? G,2?:pΈ?]xygZ0nQx1:]i\zy>@?]D{|+>8?}@>7yZ~-?>y78-D|8y{?-{6nyB.|Dj]~-4j|g+a~g|+nˆ~]@+~Z-+n~-Q:-n€ w+{?%?:pΈ? -C6)K濜~濲nbUv+Xv.?QQ!?:pΈ?x+g1? G,2?:pΈ?G[~e\?yB+{?%?:pΈڿ?B9nA{z+P"??#o?:pΈڿU^*6᡼"ۘ?hC⿪F?I9|Gz?%n¤{+g1? G,2?:pΈڿ -C6)K?~?nbU<0n|+:pΈڿ?ŕ>? 6&fb?Cl? n®}+s#w?p;x?:pΈڿ?<n²B~+wO?JE?:pΈ?4^n< -n¶5+p;x?s#w?:pΈ?~e\G[%P:<na5+%?{?:pΈڿ?5+s#w?p;x?:pΈ?We\[?n¾+?#o?P"?:pΈڿĻꢼ_瑥?G[?~e\{Gz?2n+:pΈڿe<><? 6&fb?Cl?nQ#:;T+;nQ;$:6b+f-ef-;+Mw-eb-eYu+Ye+ab-aT+ ga- RT- DR -R O-O+ REj- ER+ wO+ ! w f+ wM+ I +XuI->uM-uXY-YUgHnU+/+S+/3kU nL3U-I L IX-3 /+ 3LN-N3 -/-L))Kn ,-1Q:)Hn) -)13,Y) -+P"??#o?)?:pΈڿar^<  n’  +13W+?Cl?;f?;f? n -12V+_Sc3˥?:pΈ?ar^?? !n  + 12U"+ G,2?g1?) (-+12*P,(+g1? G,2?)QQ5:O:`?R; -Q`6:TQd@R? -Qd7:b`vAR@ -Qv8:fdBRA -RB -Q\2:Zx3CR> -RC -O=AEDT_EntityID_V19[N4%?{?:pΈڿN&DIo9nQD*:NKqEQK):ItDFQq+:oDmGRE -Qm,:kqHRG -Q-:/mWIRH -QW.:UJRI -Q/:YWiKRJ -Qi0:gxLRK -RL -Qt(:M5KMRF -RM -Q<&:865NR7 -RN - o2+ N+o-r/2o4-Q0O.PQRQ:P.SQ$: -Q.'TR1 -QQO -$0UVQ':%U$)WRT -QUO%'QXYQ):X'Z[RW -QXO)U\]QZ:+\)+^R[ -+:Zn} --}1Q\O+ZX_`Q+:}_Z-aR^ -Q_O}+\bcQ-:b+dRa -QbO-_efQ: e-!gRd -QeO bhiQ!:h jRg -QhO!eklQ :k!2mRj -QkO hnoQ2:n pRm -QnO2kqRp -POrAQO4nsSq???QOtSs???QOuvSt???QuOwxSv???Q :uyQwOBuz{Sx???Q :Bw|QzO{w}~S{???Q :{zQ}OzS~???Q:}QO}S???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???QO-S???Q:-QOS???Q :QOS???Q!:QOS???Q":QOS???QO;S???S???R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R| -Ry -OrSDL/TYSA_COLOURSo???Sl???Si???Sf???Sc???S`???S]???SY???SV???QPO0RS -QO)PS???S???SR???Q:&R -QQ&9<R -P<(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth34P(#QRPOhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER -R -R -R -R -R -Rz -R= -*M SJ(v&T'Stator_Teeth34$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0002849.x_b -BIN000000015758 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0002849.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0002849.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+=@?$??)?@A4B-86<CDEn9bFG=@?$??:pΈڿFaHI9q? ?:pΈڿGcJ9K>jD4^?Pz?:pΈ?JLM/NGnKdOGP$keL?5-+?:pΈڿO/QRSTKnPeUKVH=?&?:pΈ?UWXYPnVfZP[aq0]?*FaK?:pΈ?Z \]^_Vn[g^V`q? ?:pΈ?^abcZ[n`hc[daY?mB1?:pΈ?cefg^`ndiN`hU4?)?:pΈ?NijJkdnhjldEaY?mB1?:pΈڿl%mnTHhnEk8hoJ\hT?jÙ?:pΈڿolTE00?e-?:pΈڿT*pqOlon0mSo >jD4^?Pz?:pΈڿS1rsDO0nQr(:StQusvwxSMyz-D3t{8S|nQt':D<r}{~zDj-|^DU4?)?:pΈڿ]g|0?e-?:pΈ?__|Iaq0]?*FaK?:pΈڿ_ ZYnI`YFH=?&?:pΈڿY_UInQ7:YWCY-AU-C8?-8+5nŒY+-_+_-nŽY+U+;n‘Q;$:6x+H=?&?:pΈ?4^n<4^n<w+q? ?:pΈڿ?y+aq0]?*FaK?:pΈڿ4^n4^n? -n¢z5+J\hT?jÙ?:pΈڿ?Bn“4y5{+$keL?5-+?:pΈڿ?|5+3TY?{t?:pΈ?s2\-<9Af<h9;Ὺ)f?u|Gz?n¸}+=@?$??:pΈڿwj?Զr?nbU<9nq~+U4?)?:pΈ?h9;ῂ)f?n+>jD4^?Pz?:pΈڿh9;?)f2nŸ+aY?mB1?:pΈ?&n-+aq0]?*FaK?:pΈ?)f?h9;?O:n+U4?)?:pΈڿ?<njy+P"??#o?:pΈ?6p<8I<qE=4? '{Gz?n+:pΈ??bd?1?Cl? n¦+=@?$??:pΈ?0e\[?n+J\hT?jÙ?:pΈڿ0e\?[7n–+0?e-?:pΈ?wj鿆Զrn+:pΈ?[5i"zjD4^?Pz?:pΈڿ?y?nMs+>jD4^?Pz?:pΈ?P\}?0[2A?nr4+=@?$??:pΈڿ?4EnAq+3TY?{t?:pΈڿ,v8!v ? ZݿLm1o?{Gz?p+$keL?5-+?:pΈڿP\}0[2A0no+J\hT?jÙ?:pΈ?&[ e\P:<nXQ:XU+XZ-Xk@+CkX-kNnQ0:ki  ->@?kC+ Akg n\k J\hT?jÙ?:pΈ? [=@?$??:pΈ?Q 1:  AB74@+g cnQ 2:g eP:(#Qe3:c aRR Qa4:^e\RQ Q\5:ZaRP Q6:_\RO RN OAEDT_EntityID_V1DBAg-BAq-@>7->J?++g+c+c-(lf+Tn-fc-fl--!Hb-nH-+-$n Q:- "nb-Q:!"b#$%^+#Gb&$#Rb/-%#bRH-^$+/x+f^-J+/'3HJ nxvs3J-vLw)3vxw/R$+wv3sO-R#%$O3w-Sw+O%+Dz+z~M{S-~>z(M~zJsyx+~{MN-N]+])jZ-);*)]_-j)]N{+)jD-Z+*:+nž() ,-(1Q+:*-./0,/n* 1+*1(=.n*~ 2-*12,S*13+[Л-? ?) --&)125O):+>jD4^?Pz?)?:pΈڿar^<Q;:<=.>C=n& ?-&1Q=:@A;B&FAn+# C-+12?VDC+0?e-?)?:pΈ?ar^??3CW&?E+3TY?{t?)) Q7:&4R9- Q7Q&97R! P(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth36P(#QRPPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER0' Q'-:/LH#%l/FnQ,:Hm'Qm+:lpRX Qp*:TQmRY QQ):OrpRZ R[ QL.:J'iRW Qi/:NLRV RU R"; R < ?>78-q?+qnTB+BT-R S R -T R6 R> R? R. QW8:URM RL Q<&:86tR}] R^ Ru\ R=_ *M SJ(W&T'Stator_Teeth36$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0002977.x_b -BIN000000015758 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0002977.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0002977.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+W,?_X?)?@3A-8><BCDn9\EF#VAd?7`r?:pΈ?E[G9 Bcrm?_?:pΈڿF]H9InuP:=-nV.+ Bcrm?_?:pΈڿI)뿃XP/߿nbU)n. + Bcrm?_?:pΈڿ?5n.Q:l+7+vC-vG-G-l-0Yy+Y+3l+3AC7@+A3Q+@>7Cv+>L)>@?Z-vZ@-?>7W-VW+Z+#G+g+G(ZgEng-Q,:GuxP:  -(#Qu+:ZX Qx-:ge R Qe.:cxq R  Qq/:heR  R QX*:WjuR  Qj):Y~XR Q~(:ljR Q':C<~R Q<&:86R R O -AEDT_EntityID_V1cK+yc-<k8f-ykg-kyY-?nQ :p+:pΈ?Xd' 7 ?;-?]]^S?$I$IQ<9?@S=???Q:<AQ?<BCS@???Q:?DQB?EFSC???Q:BGQEBHISF???Q:EJQHEKLSI???Q:HMQKHNOSL???Q:KPQNKQSO???Q:NRQNSTSQ???QSUVST???Q:SWQUSXYSV???Q :UZQXU[\SY???Q!:X]Q[X^_S\???Q":[`aQ^-`[bcS_???-`nd Q`#:-^;eQb;^fSc???Q;$:b`6gSf???Rg Re dhR-+hihjd\k+hdjNl+A|Nd--|Rrk+|hb+rmkh|-kmr_Rd-m_n_mk\-m_rso-V\j+VSj+jhSl-lpQS-pAqplWV-QplNA-pQ?+q@rnp s-1Qr:qtuvw;vn+q x++q1Eunq y-q12sSqz{+|dyЭ?D1?) ,-1Q|:)}~Hn) +)12,Y) -+#VAd?7`r?)?:pΈڿar^<"nn +n12U{+_Sc3˥?:pΈ?ar^??3{Tis+?Cl?;f?;f?inh {-1Q:i2 ni -i1Q:2Ox+nu R; R8 R5 R2 R/ R+ O&SDL/TYSA_COLOURS#???S ???R S???fKBc+R R Qa2:LJR QJ3:HanR Qn4:MJ^R Q^5:\n{R Q{6:R^PR QP7:N{UR QU8:SPR R R R= *M SJ(bU&T'Stator_Teeth38$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0003105.x_b -BIN000000015758 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0003105.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0003105.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+5Mg?WOa?)?@AB-//;CD n8\EFF~G?B?:pΈڿE[G8l?*I?:pΈ?F]H8IsZW?jEf?:pΈڿH#JKLMFnI^NFO??s)s?:pΈڿN*PQDRInO_SIT\Ygm?U8AcP:,n+sZW?jEf?:pΈ?<nKA+#^]? ?:pΈڿRďtS]qk?6C˿D?|Gz?%n5+ 7:?Mi[?:pΈڿZQDž HC׿'n5.+ 7:?Mi[?:pΈڿ?.5 +B.?0xئ?:pΈڿ;g8uN?бv..n.Q9/+!>+D[+tCD-Dtq_4+C/>-CtG-=?>GC+>=7/-=A>@n= -1Q9=n¤ ,-1Cn -12T - +F~G?B?)R=1 P3?AQ3@;AS>???Q@3BCSA???Q9@DQB3E@FSC???Q9BGQE3HBISF???Q9EJQH3KELSI???Q9HMQK3NHOSL???Q9KPQN3QKRSO???Q9NSQQ3TNUSR???Q9QVQT3WQXSU???Q9TYQW3ZT[SX???Q9W\QZ3]W^S[???Q9Z_Q]3`ZaS^???Q9]%bQ`3%c]dSa???Q%9`eQc3f`gSd???Q9c%hQf3ciSg???Q9fjQ3kflSi???Qk3mnSl???Q9koQm3pkqSn???Q9mrQp3smtSq???Q9puQs3vpwSt???Q 9sxQv3yszSw???Q 9v{Qy3|v}Sz???Q 9y~Q|3AyS}???Q -9A|Q3|S???Q 9Q34S???Q942Q32S???Q29Q3.S???.n, -1Q9.2Q3S??? n. -+.1Q9Q3S???Q9Q3S???Q3S???Q9Q3S???9n +1Q9Q3S???Q9Q3S???Q3S???Q9Q3S???Q9Q3+ S???Q9+ Q 3) S???S???R, R+ R* R( R' 3P+?Q?;f?;f?3O.+?Cl?;f?;f?2Q +.r?:pΈڿar^<2 R -+^:#?>& -?)?:pΈ?ar^??R& R$ R# R" RK RJ RI RH R~G R{F RxE RuD RrC RoB Rj@ Rh? Re> Rb= R_< R\; RY: RV9 RS8 RP7 RM6 RJ5 RG4 RD3 O?SDL/TYSA_COLOURS<???(,*W)-+S9???S5???O2AEDT_EntityID_V1G[_-q-[-_X-_[Dt4-'\+q+G?+e+GqeEn?=7e-Q19GsgQs09qyQg29enRS Qn39hgRR RQ Qy/9dbsRT Qb.9`yRU Q-9MJbRV QJ,9HjRW Qj+9L|JRX Q|*9ljRY Q)9RP|RZ QP(9N^R[ Q^'9D;PR\ Q;&9/6^R] R^ K@h->KKBHo+@Be7A?+B@K-HB+L+okH-}l3&-R% Q9& R- QQ&91R! P1(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth40P(#QRP3hS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER) RA R2 Qv59WURP QU69SvZRO QZ79XURN Q89\ZRM RL R<_ *M SJ(/&T'Stator_Teeth40$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0003233.x_b -BIN000000015758 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0003233.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0003233.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+# Β?c5?)?@A4B+86<CDEn9gFG|^?JOn?:pΈ?FfHI9|^?JOn?:pΈڿGhJ9KGu?FT/?:pΈ?J LMNOGnKiPGQJiܧ)?ml8?:pΈ?P(RST/KnQjUKV>Vp?rXo]x?:pΈ?U/W3XTQnVkYQZPU@V? f -?:pΈڿY[\]^VnZl_V0?9?,f+?:pΈڿ_`ab]Zn0mDZ PU@V? f -?:pΈ?D4cd8X0nQc':D<efdghiD\jk+X1elDUmnQe(:XcWnlopqXars+mbXtu?9?,f+?:pΈ?ta]vm9?4~G?:pΈڿucNmwGu?FT/?:pΈڿN xyzJunwdbuIn?g.by?:pΈڿb{|/_wnIeOwFѼ-SX?8l?:pΈ?O}hJ~InQ}7:OLhgdO-~OnQ8:~}~i+[~Ѽ-SX?8l?:pΈڿ\zEJiܧ)?ml8?:pΈڿzNnE]8# Β?c5?:pΈ?^TEn?g.by?:pΈ?T*pUPn_v>Vp?rXo]x?:pΈڿHznv`^t# Β?c5?:pΈڿ^YHvnQ1:^[>@?^C-HA^FnQ2:HABH74@-L3)3A-BA3-4Gn7j@>7H->F@+^@+n§H++nŸQ:n¡w+Jn{~?i|?:pΈڿYirya&RA?) )j*[I?"9|Gz?vr+?9?,f+?:pΈڿ?xj+PU@V? f -?:pΈڿ?jBnd4y+#^]? ?:pΈڿq8:?=v?8j@M}Gz?n­-z+Ѽ-SX?8l?:pΈ?\ϗb?iVp?rXo]x?:pΈڿ?5.+Gu?FT/?:pΈڿ8j@M?v?O:n. +#^]? ?:pΈ?VFg<.<@]@?O?|Gz?+n.Q:ST+)nQ:T|+o+n?g.by?:pΈڿ?p+# Β?c5?:pΈڿ&iq|oqpb-po|lT-b --&z+P-P-IUS-z-3-3BU+SUB+-SSP+?+8k+?>78-Dh+k\CD-@\kYdji-Ck8?+C\^-Y+igdY-gDigih~-O+J+~-N+N+]y+]_YtnyN-!yyJ-y] -/M- s /+  a]- ; !a  s_lrq-s aX-r<"nlQ" :r#$P:%&(#Q#'r"()*Q -:("+Q :)",R$ Q)'#-.Q :-/R, Q-')01Q:02R/ Q0'-34Q:35R2 Q3'067Q:68R5 Q6'39:Q:9;R8 Q9'6<=Q:<>R; Q<'9?R> P'@AQ'<AS????Q'BCSA???QB'DESC???Q:BFQD'BGHSE???Q:DIQG'DJKSH???Q:GLQJ'G MSK???Q:JNQ '-JOSM???Q' PQSO???QP'RSSQ???Q:PTQR'PUVSS???Q:RWQU'RXYSV???Q:UZQX'U[SY???Q:X\Q'X]^S[???Q]'_`S^???Q :]aQ_']bcS`???Q!:_dQb'_efSc???Q":bgQe'bhiSf???Q#:e;jQh';ekSi???Q;$:h6lSk???Rl Rj Rg Rd Ra R\ RZ RW RT RN RL RI RF O@SDL/TYSA_COLOURS=???S:???S7???S4???S1???S.???Q('m#nQ :jmoR+ Qm'jp(qQ:4p2rRo Qp'4smtQ2:suvRr Qs'2wpxQu:wy2zRv un {-1Qw'u|s}Qy:|~uRz  yn +1Q|'ywQ~:yR  ~n¬ ,-1Q'~|Q:~R %n -1Q'Q:R ,n! +!1Q'Q:!R !:n  -1Q'!Q:R =n!o -!1Q'Q:R ?n -1Q'Q:R Cn+g -+1Q'Q:+R +En> --1Q'+Q:R Hn+) ++)1Q'Q:)R )Kn -1Q')Q:&R QQ&9%R P%(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth42P(#QRP'hS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMES???3V)+Jn{~?i|?)?:pΈڿar^<2R+PU@V? f -?)?:pΈ?ar^??3O+?Q?;f?;f?S???S???S???S???S???S???S???S???S???S???S}???Sx???St???Sq???Sn???S*???O&AEDT_EntityID_V1M/s+Xp+MJ+/#Pb nQ,:/R{QR+:PQ{-:b`R Q`.:_{R Q/:]`[R Q[0:YR R Q*:TWRR QW):UeR R MO-R  R  R R R Q3:R Q4:zxR Qx5:NLR QL6:Jx}R R R R R Rn Q<&:86cRf R R= *M SJ(h&T'Stator_Teeth42$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0005330.x_b -BIN000000008320 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0005330.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0005330.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'F(( $)*2 -*)++lY M?U N?ٺژ?WS? >,-+ V?Z r?7A`ڿ 2./ V?Z r?7A`? *0V 1n2,342.5nQ467892:;<=>+.8?@ n50A/]ba1?@[?7A`?A/@B5ͤ2j??7A`?/1C5 ͤ2j??7A`ڿCDEFG/nQD6CHIJEKLMCNOP-F H=QCBnGIRCSnQI6GDTRUVWGXYZ+S+G[?#`g0?7A`ڿ[,QS\ V?Z r?7A`ڿQ ]^_F[n\-_[B?#`g0?7A`?_`X@Q\nB.F\A]ba1?@[?7A`ڿQ`6_a]bXKML_RYW-@aN._AnQa6@8`cNd>P@EOe+d"P)>d=Nefg+PdN=Chij-OknN,Ylemng@>fM-mnonmpe_Mq-gmep;r-fsn>YrtMKEX@nq+KLuqvnMwxyQv~6qz{|}w{nWrq~x |nZqy4qt+ΌN?*>+7A`?ٺژ?[S?3y+?0u?V7A`ڿ ٺژ\St5fyl+/\??7s?7A`?WS?ٺژl6Ot3+ͤ2j??7A`??37l+]ba1?@[?7A`??83~+ΌN?*>+7A`ڿٺژ?[S?7nji~9w+HB?}?7A`?WSٺژ?:r~+?0u?V7A`? ٺژ\Srn;fw;Y+?#`g0?7A`ڿYnROf<x-+HB?}?7A`ڿWSٺژ?-=i +/\??7s?7A`ڿWS?ٺژinh-Q6i7hjFPi+ -nxiQ6|ZhQ<+jZjGVxL+<:2^Fh-:<^:<;Q?,V+;:^2.grp+?UWV.^,;-,n^O VU?RQZx-UVnuU +u0Qs6unoK +o0n“): +)02(++IW?BY$?ٺژWS? 0 ))!n‘d -+0Qq6)P6(#QZ)Qp6&Qr6RQ[RPAQ\S???Q]uS???Qt6uQ^oS???o num ++u0Qu6oQ_S???no -o0Qv61Q`1S???Q1w6Qa,S???Qx6,1kQbOkS???Qky6OQcYS???Qz6YksQdfsS???Qs{6fQerS???Q|6rs{Qfw{zS???Q{}6wvQzgqvS???Qhx|zS???Q|6xvQiS???QjiS???Qk7S???Q764S???RRRRRRRRRR2%+7A`ڿ??2&+n >~?qCG?\S? ٺژ2'u+ޣX?|3?ZSٺژ??R2+)o -+7A`???ROSDL/TYSA_COLOURQnQ&RP(#ROAEDT_BODYFlagGroupColor_V1PQQmTMagnet1P(#QYRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMES???OAEDT_EntityID_V1RWUR?_pwn+pmgn.Ww-jhZCL+LKXEGj-RRR}=dP>F2<-Q86.4aRcRQ]6Q`HRbQH6F]DRRRTRJR9*# SJ(I&T'Magnet1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0005358.x_b -BIN000000004595 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0005358.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0005358.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ1@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q1&'F(( )*3 -)++?ݵ|г?h?Ӣm? ,-+7A`ڿh?Ӣm?ݵ|г? ./ܵ|г?7A`ڿ *0V 1n2,- -32./nQ3.4567282299+.6: n/ ܵ|г?7A`?Q6/4.3;:<::.=,=+<:>=?==.:,-,5n: Q5-4,@13AP4BC(#Q@#D,5EFQ1,4EG5HRAQE"D1I@JQG+4>IK1LRH>GnM< N-M0QI!D>GOEPQK*4MOQGRRLMKn>)S ++>)0QO DMKTIUQQ)4)TVKWRR) QnM8 -+M0QTD)QOXQV(4Y&QZRWQY&[\V]Q&0BV^RZPB_(#R^O_AEDT_BODYFlagGroupColor_V1P[`aQQ\%bcYdT]ShaftPbe(#Qcf\gRdPfDhhSg?OhSDL/TYSA_COLOUR_2OeAttGS_PS_LayerO aSDL/TYSA_NAMEPDiASX?OiSDL/TYSA_COLOUR8 2)? 0 )? =)SU?S9M2+MN -+{Gz7A`???2N>++{Gz7A`ڿ??9S992-SP?SJ?SF?OCAEDT_EntityID_V1R;R7- +7A`?h?Ӣm?ݵ|г?* SJ(c@\Y6&T'Shaft$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0005367.x_b -BIN000000008320 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0005367.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0005367.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'F(( $)*2 -*+,+7A`ڿ?? >-.+td1?i? -,m?7A`ڿ 2/0 -M6?*>?7A`? *1V 2n3456378nQ69:;<3=>?@A+7;B/Cn8-DEO~T ?بk?7A`?D,FG8'1?@Õ2?7A`ڿE.H8CO~T ?بk?7A`ڿH I@FJEnC/7EK'1?@Õ2?7A`?K0LC0td1?i? -,m?7A`ڿLMNJKn01OK td1?i? -,m?7A`?OPQ/F0nQP9ORSTQUVWON-X-/RY7O nF SZOHDnQS9FPI[Z=?>FB4\+=?]?=3ZH^_`->=Z37abc+BdX\7Z4>-4enZfg\dBNFhi^-d\jNd\XLQ-h+hkl^L\iW+i mnhn_o^kh`F?_+kl+`k^lHpq+_ -rn^iqsQr9_tmuvqun`_wxs8_yo+aM? -j_?7A`ڿQ4<Φ?y7bxs+aM? -j_?7A`?Q4<Φ?o9is5+Uv?hMgצ?7A`ڿQ4<Φ??5:oz+O~T ?بk?7A`??z;n5{+\+E?؏83?7A`??Q4<Φn|nV}iz{<}z.+Uv?hMgצ?7A`?Q4<Φ??}~nXbn{.={ +&r?sw?7A`?Q4<ΦnA-b.Q{9A@Ya+-nNf bn>}yQ|9b~P9(#QebQ~}9}|RQf}~Q|~9n~mRQgn|Qm9i|rRQhimtRPAQti_rS???QjqutS???Qu9qr:Qkw:S???w:nlqQ:9wu6S???Rlk`hJWw+3wg+\+E?؏83?7A`ڿ?Q4<Φg44+'1?@Õ2?7A`ڿ5fgx+ -M6?*>?7A`??fnY4-x6qy+&r?sw?7A`ڿQ4<ΦQy9feYAp/f+"p)pY@J`ql-UWVJYfp-a/AV-cOVn-ac>b-VUQ/n+UWWUQLlw-n¦jU +j1Qt9 n+ ++1jn§]d +]12%+Y?Ĵ'V?Q4<Φ??? 1 ))!n] ,+]1Qq9)]nj)= +j)12,)) -+ZeEQ?̶!??Q4<Φ2(j,+|?`P?￈Q4<Φ??2'+7A`???2&]+i ?cP?Q4<ΦQr9]Q[]Qs9jRQ\jRQ]S???Q^S???Qu9Q_+S???+nk --1Qv9+2Q`2S???Q2w9eQa4eS???Qex942QbfS???Qc-S???Qz9-QdS???S???RRR RRQZ)S???S???Qp9&RQnQ&RP(#ROAEDT_BODYFlagGroupColor_V1PQQmTMagnet2P(#QYRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERca7X}-XdNBOc}+JHLGnQ9JIMG+JD -M6?*>?7A`ڿQI9HSQM9LR R -R @pAH3?-RROSDL/TYSA_COLOURS???S???S???OAEDT_EntityID_V1RRvR[ QR9/;PQ;976RRRRTR<*# SJ(M&T'Magnet2$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0005395.x_b -BIN000000167622 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0005395.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0005395.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'F(( )*2 -l+,+2 -ub濧Sh+-?ٺژ?S? -.+ۿ3b@?7A`ڿٺژ?[S /08|\?OR %ҿ7A`ڿ *1V2n3456789nQ6:;<=7>77?@?+8<3ABn9CDb$%?b$%7A`?CEF9GI,&mп7A`ڿDG9HQ r? V7A`?GIJKLDnHMDNzVOL?7A`ڿMOPQRHnNSHT %lD?vW#?7A`ڿSUVWXNnTANY8|\?[R %?7A`?AZ[8\TnY]T^CÕ2ҿ'17A`ڿ]=_`abYn^cYd?Õ2ҿ'1?7A`?cefgh^ndi^jWf㿿Dʿ7A`?iklmndnjodp'1?Õ2ҿ7A`?oqrstjnpujvGI,&mп7A`?uwxyEpnvzp{Wf?D?7A`?z|}~vn{v?#`g0?7A`?z{n{6xrQ?},Ź6?7A`ڿXnP%?R%ٿ7A`?xnOR %ҿ8|\7A`ڿDan|,Ź6п6xrQ?7A`?n#`g0ȿ?7A`ڿn!|%$2?Q?7A`?n`? ݖ7A`ڿ~nj? -,mܿtd17A`ڿ6bnbj? -,mܿtd17A`?b8]n},Ź6п/xrQ7A`ڿKnp̿!~?7A`ڿnsW#%lD޿7A`ڿn>VOL??7A`ڿn)Sɔo!?Q뱿7A`ڿnQ?)Sɔo!?7A`?nGI?-&m?7A`?n_ r V7A`ڿn>Õ2?'17A`ڿnAÕ2?'1?7A`ڿn?#`g0ȿ7A`?tn&Dg8?޿7A`?wn,Sɔo!Q뱿7A`?nvW# %lD?7A`ڿnOR %ҿ8|\7A`?Fn '~q?7A`ڿ@ -   n td1h? -,mܿ7A`ڿk n !~?p?7A`ڿZn.xrQ?~,Ź6п7A`?_nX?&m?GI?7A`?X S!n"h? -,m?td17A`ڿ}#$n"%&)Sɔo!Q?7A`?%'()*"n&+",YR %?8|\7A`ڿ+-./&n,0&1{,Ź6?7xrQ7A`ڿ023/4,n15,6E`^S㿿f(?7A`ڿ57891n6:1;|,Ź6?/xrQ?7A`?:)<=>?6n;@6A5/_7- <丿7A`?@BCD;nAE;F~`ܿ ݖ7A`ڿE/GHIAnF>AJq?'~?7A`ڿ>.KLM:FnJNFOWf?Dʿ7A`ڿNkPQRSJnOTJU!|%$2? -R뱿7A`ڿTVWXOnUYOZ#`g0?7A`?Y[\]KUnZ^U_Dg8?޿%?7A`ڿ^c`abcZn_dZe,Sɔo!?Q?7A`ڿddfghi_nej_kp?!~7A`ڿjlm4nenkoepE`^S?f(7A`?o5qrstknpukv+&m?GI7A`ڿuwxRypnvpz},Ź6п/xrQ7A`?M{|}vnz~v%?Eg8??7A`ڿ~pznz|,Ź6п6xrQ?7A`ڿn ݖ?`?7A`ڿRn,Sɔo!Q뱿7A`ڿnNR %?8|\?7A`?"?n!|%$2Q뱿7A`ڿn&~?q̿7A`ڿdSn)Sɔo!?Q뱿7A`?Tn?#`g0?7A`ڿ^n V?d r7A`ڿnCg8??(?7A`ڿnLQ r? V7A`ڿLGnf(?E`^S?7A`ڿWn%?Eg8??7A`?nuW#?%lD޿7A`?.tnH`^S㿼f(7A`ڿ|ni? -,m?td1?7A`?n,Sɔo!?Q?7A`?ny%lD?sW#7A`?yunGI?A&mп7A`?'n#`g0ȿ7A`ڿ`n8|\?[R %?7A`ڿVnH`^S㿼f(7A`?~nm!~p̿7A`ڿmin?HVOL7A`? nf(?H`^S7A`ڿn#`g0?7A`ڿNnYR %?8|\7A`?+nZR %ҿ8|\?7A`ڿn`ܿ ݖ?7A`?\cnh? -,m?td17A`?nWf㿮D?7A`?I  - n 5/_7-?4n:?4@>/_7-?<丿7A`?? AB:n@=:Cf(E`^S7A`ڿ=!DEF9@nCG@H>VOL?7A`ڿGIJKLCnHMCNQ?,Sɔo!7A`?MOPQRHnNcHSi? -,mܿtd1?7A`?c^TU^NnSVNW VZ r?7A`?VXY*ZSnW bS[Dg8?޿%?7A`?be\]^Wn[ -W^P%?R%ٿ7A`ڿt_`~[n^ [a~`ܿ ݖ7A`?1bcE^na d^e<丿5/_7-?7A`ڿdfghiane aj#`g0ȿ?7A`?klmenjneoR뱿!|%$27A`?npqrsjnotju#`g0??7A`?t>vwxyonuzo{Z r? V?7A`?z|}~un{uGI?A&mп7A`ڿ%{n{sW#%lD޿7A`?En]D?Wf7A`ڿ]nYnQ?)Sɔo!?7A`ڿznnD?Wf7A`?nj]n(Cg8??7A`?n'1?@Õ2?7A`ڿTnVOL?7A`ڿnQ?!|%$27A`?RnAÕ2?'1?7A`?n>Õ2?'17A`?nFf(E`^S7A`?F#=nD VS r7A`ڿD@nR+&m?GI7A`?RMunq̿'~7A`?T}n Z>/_7-n$L!|%$2R?7A`?LG)n% Wf㿮D?7A`ڿ G n&h!|%$2?Q?7A`ڿhfdn'W r V?7A`?n(td1?i? -,m?7A`ڿQxn)GI?-&m?7A`ڿjn* -3n1f(?E`^S?7A`?n2<丿?/_7-7A`ڿn3R?!|%$2?7A`?n4 ݖ?`?7A`?n5rW#?%lD?7A`?n6X!|%$2? -R뱿7A`?XTn7Q뱿,Sɔo!?7A`ڿin8* )Sɔo!Q?7A`ڿ* - %Vn 9   ݖ|`?7A`?  n : 8|\NR %?7A`?4 n;Q  -y ~VOL7A`ڿy!"un ?g#Z r? V?7A`ڿg$%&c n#@W ' %lD?vW#?7A`?W()S#n'A#*?VOL?7A`?+,'n*B)'-!|%$2R?7A`ڿ)./L%*n-Ca*0CÕ2ҿ'17A`?a?12]-n0D -3'~q?7A`? B45 0n3E06%lD?sW#7A`ڿ78y3n6F93:_ r V7A`?9;<=6n:G 6>/xrQ|,Ź6?7A`? ;?@:n>HR:AWf?Dʿ7A`?RmBCN>nAI>DvW# %lD?7A`? -EF5AnDJAG8|\NR %?7A`ڿ2HIJDnGKDK(Cg8??7A`ڿLM9GnKLNGO%lD޿rW#?7A`?NsPQRKnOMKSDʿWf7A`ڿYTUOnSNOVCg8??(?7A`?WXYSnVOSZZR %ҿ8|\?7A`?[\hVnZP]V^6xrQ|,Ź6п7A`ڿ]_`aZn^QZb?VOL?7A`ڿhcdh^nbR^e>/_7-?<丿7A`ڿfg?bneSbhD?Wf?7A`ڿ5ijkMenhTeltd1?i? -,m?7A`?mnhnlUho?HVOL7A`ڿpqXlnoVhlr?Õ2ҿ'1?7A`ڿhstconrWourW#?%lD?7A`ڿlvwrnuXirxQ뱿,Sɔo!?7A`?iyzdunxYu{?#`g0ȿ7A`ڿr|}Rxn{Z?x~|,Ź6?/xrQ?7A`ڿ?':{n~[{uW#?%lD޿7A`ڿ,~n\~Q?!|%$27A`ڿQn]#`g0?7A`?Pn^td1h? -,mܿ7A`?pn_td1?j? -,mܿ7A`?J*n`<丿?/_7-7A`?9na8|\?OR %ҿ7A`?X/nb~VOL7A`?yncK>VOL?7A`?KGndt'1?Õ2ҿ7A`ڿtoneJ'1AÕ2?7A`?J-nftd1i? -,m?7A`?&ngDg8?޿)7A`ڿ(IFnhmDʿWf?7A`ڿmniNR %?8|\?7A`ڿ njIDg8?޿)7A`?I*EnkkD?Wf?7A`?k7ynl V?d r7A`? ?nmH`^S?f(?7A`?nnVOL?7A`?noh<丿5/_7-?7A`?hdnp V?Z r?7A`ڿ`inq8CVOL7A`?83rnr|`? ݖ?7A`? Yns!|%$2Q뱿7A`?ntnWf㿿Dʿ7A`ڿninutd1i? -,m?7A`ڿ$ nvCg8??&7A`?nw,&mпGI?7A`ڿxNnxW r V?7A`ڿhnyS&~?q̿7A`?SfNnztd1?j? -,mܿ7A`ڿHn{Q뱿!|%$2?7A`ڿn|/xrQ|,Ź6?7A`ڿ9 n}i? -,mܿtd1?7A`ڿYn~0Q뱿*Sɔo!7A`?s=n0= Q뱿*Sɔo!7A`ڿ=90nQz:=;=-J-s-  -s+ n   =+   ---n =+-nQD: ! n"#$I%&+<丿?/_7-7A`ڿٺژ?S%H'(+OR %ҿ8|\7A`ڿ?qX4<Φ?&J)*+O~T بkҿ7A`ڿ!G4<Φ??)+n,-.&*K/&0+ ݖ⿇`ܿ7A`ڿF4<Φ/t1n234*0L5*6+/xrQ|,Ź6?7A`ڿ5:7n89:06M;0<+-/࿧O(7A`ڿ ٺژ\S?;=n>?@6<NA6B+)Sɔo!Q?7A`?=ACnDEF<BOG<H+i? -,m?td1?7A`??GInJKLBHPMBN+>?h;?7A`?Q4<Φ?M#OnPQRHNQSHT+!~?p?7A`ڿ}ؿ2k?SYUnVWXNTRYNZ+Q r? V7A`??Y[n\]^TZS_T`+!~p̿7A`ڿ_anbcdZ`TeZf+td1?j? -,mܿ7A`??eIgnhij`fUk`l+6xrQ?},Ź6?7A`?J4<Φ??kmnnopflVqfr+6xrQ|,Ź6п7A`ڿqsntuvlrWlw+Q뱿*Sɔo!7A`?xn rwXyrz+\+Eҿ׏83ݿ7A`ڿQ4<Φ?yj{n|}~wzYw+W r V?7A`??n‚zZz+?&m?GI?7A`ڿnˆ[+&1?CÕ2ҿ7A`??PnŽ\+f(H`^S?7A`ڿkn”]+%?Eg8??7A`ڿn^+~`ܿ ݖ7A`ڿ0nŸ_+p?!~7A`ڿ2k?}?n¥`+},Ź6п/xrQ7A`ڿ2k?}ؿQn«a+f(?H`^S7A`ڿn±b+|,Ź6п6xrQ?7A`ڿJ4<Φ?n·c+(?Dg8?޿7A`ڿU4<Φ?@n½dF+!|%$2R?7A`ڿFnAe+Q뱿!|%$2?7A`ڿ\3&nf+(Cg8??7A`ڿV4<Φ?ng^+V?0u7A`ڿ[Sٺژ?^nYh+`? ݖ7A`ڿ?F4<Φni+>/_7-?h;?7A`ڿQ4<Φ?nR t~ +6~ҿ[޿7A`?ٺژ?YS~gn<yu+|,Ź6?/xrQ?7A`?2k}?1nv +,Sɔo!?Q?7A`ڿ!ng"# w$%+>ҿh;ҿ7A`ڿQ4<Φ?$C&n'() %x* ++O~T بkҿ7A`?!G4<Φ??*,n-.-%+y9%/+8|\NR %?7A`?X4<Φ?9<0n125+/zj+3+!{?3+6ݿ7A`ڿQ4<ΦjG4n5e6/3{/7+?ͤ2j?7A`ڿٺژ?S8n9:37|3;+{,Ź6?7xrQ7A`ڿ<n=>7;}?7@+CÕ2ҿ'17A`???>AnB)C;@~D;E+ۿ3b@?7A`?ٺژ?[SDQFnGHI@EJ@K+*>? M6?7A`ڿ?O4<Φ?JLnMNEKOEP+f(?H`^S7A`ڿ8idgp.OQnRSKP3KT+&Dg8?޿7A`ڿ3vUnVW/PTXPY+#{Կ2+6?7A`??Q4<Φ?X'Zn[\]TY^T_+&Dg8?޿7A`ڿc<f6;f^{`nabWY_cYd+>Õ2?'17A`??cenfgh_di_j+O(?-/7A`ڿ]S ٺژiknldjmdn+}ϿHB?7A`ڿٺژWSmonpqjnrjs+VOL?7A`ڿrtnuvwnsxny+%?Eg8??7A`?b<f?7;f?xzn{|}sy~s+Wf㿿Dʿ7A`ڿ~nyy+fMgצUv?7A`ڿ￑Q4<Φ?n+6~?[?7A`?ٺژXS?Cn}+h;?>ҿ7A`??Q4<Φ?Yn‘+'1?Õ2ҿ7A`??n—+ VZ r?7A`??nœ+vW# %lD?7A`ڿKp.?Nid?n +6~?[?7A`ڿٺژXS?Bn%#+!|%$2?Q?7A`ڿ#n}+ ݖ?`?7A`?sF4<Φ??}n«x+DʿWf7A`ڿZn°+|=ߧ?Wʿ7A`?`Q4<Φ?Rnµ+بk?O~T 7A`ڿ)G4<Φ?nº+3+6ݿ#{Կ7A`?Q4<Φ?9nC+p̿!~?7A`ڿ2k}ؿn +?VOL?7A`?u߈]?Z$n+/_7-?7A`??n+f(?H`^S7A`?8idgp.nS -+Q?,Sɔo!7A`ڿغژ?S? -n+Q뱿*Sɔo!7A`ڿ+)Sɔo!Q?7A`ڿ=nFd+Wf㿿Dʿ7A`ڿS?غژdn_+Cg8??(?7A`ڿV4<Φ -n+W?|=ߧ?7A`?￀Q4<Φn+)Sɔo!?Q뱿7A`ڿn+D?Wf?7A`ڿ6n+Q?!|%$27A`ڿ L9y<?n+3b@ۿ7A`?[S? ٺژ?cn+ j_ҿbM?7A`?Q4<Φn+3b@??7A`ڿ[Sٺژ;n+.xrQ?~,Ź6п7A`ڿ -}?2k?cn  - +#`g0??7A`??= n  +&Dg8?޿7A`?c<f6;fnb  +YR %?8|\7A`ڿn+ j_ҿbM?7A`ڿQ4<Φn+E`^S㿿f(?7A`?;f?;fn !"#+!|%$2Q뱿7A`ڿ"$n%&'#()+!|%$2? -R뱿7A`?t߈]^$(!*n+,-#)#.+3b@??7A`?[Sٺژ?/n0).1)2+`? ݖ7A`??13n456.27.8+O~T ?بk?7A`?G4<Φ79n:|282$+|`? ݖ?7A`ڿ ;n<=8$8>+_ r V7A`??>?$@+f(E`^S7A`ڿ;f?;f??'AnBCD>@>E+Dg8?޿%?7A`ڿ7;fb<f?iFnGH@E@I+VOL?7A`?Z$?u߈]?JnKLEIMEN+Q?)Sɔo!?7A`ڿ=?MOnPQRINKIS+2+6?#{?7A`?Q4<Φ?KTnUVGNSCNW+Wʿ|=ߧ7A`ڿ?pQ4<Φ?C<XnY?SWZS[+]ba1@[7A`?DS&ٺژ?Z\n]'^W[_W`+\+E?؏83?7A`ڿ?Q4<Φ_Panbc[`[d+?)3b@7A`? ٺژ\S?uenfg`dh`i+zVOL?7A`ڿZ$ᅳu߈]hjnklmdindo+?0u?V7A`? ٺژ\Snpnqrsiotiu+@[?]ba17A`ڿ&ٺژDStvnwxyouoz+>/_7-?<丿7A`?S?ٺژ?{n|}uzu~+Q?!|%$27A`? L9y<?n€ -z~z+`ܿ ݖ?7A`??[n„~~+DʿWf?7A`ڿnŠ+8|\?OR %ҿ7A`ڿbX4<Φ?\n+Q?,Sɔo!7A`?غژ?S?n“^+#`g0?7A`??n—+}?HB7A`ڿٺژ?VS?nœ]+οͤ2j7A`?ٺژS?n +'~q?7A`ڿAn¦2+ ݖ?`?7A`??n@+Q?)Sɔo!?7A`?=?n®Q.+]ba1@[7A`ڿDS&ٺژ?.n²^*+R뱿!|%$27A`?]$ᅥt߈]?n¶+NR %?8|\?7A`?ᅡX4<Φ*n¼+H`^S㿼f(7A`ڿgp.8id?no+aM? -j_?7A`?Q4<Φ?onk+?0u῕V?7A`?ٺژ?[S?nh+j_?cMԿ7A`ڿQ4<Φ??hnc]+td1i? -,m?7A`??]%nX+Dg8?޿)7A`?? -V4<Φ?2n+Q뱿,Sɔo!?7A`?غژ忉Sng+[?6~ҿ7A`ڿYS?ٺژ?gxn¨4+td1h? -,mܿ7A`??4qn/+O(-/?7A`?\S? ٺژ?n+,Sɔo!Q뱿7A`?S?غژn+?0u῕V?7A`ڿٺژ?[S?n+.xrQ?~,Ź6п7A`ڿ^n -c+Wf㿿Dʿ7A`?S?غژcnv_+Dg8?޿%?7A`?7;fb<f?mnV+W?|=ߧ?7A`ڿ￀Q4<ΦVnKX+6xrQ?},Ź6?7A`ڿJ4<Φ??XWnS+ΌNڿ*>+?7A`ڿٺژZSn~+h;ҿ>?7A`?Q4<Φ5n : -  +Dg8?޿%?7A`ڿ d nH +!|%$2? -R뱿7A`ڿt߈]^$n- @ +UveMgצ7A`?Q4<Φ@n;+AÕ2?'1?7A`??nV+bMԿ j_ҿ7A`??Q4<Φng+j_?cMԿ7A`?Q4<Φ??gn !c"+5/_7- <丿7A`ڿ#n$%"&+V??0u?7A`?\S? ٺژ'n(m"&")+|=ߧ?Wʿ7A`ڿ`Q4<Φ?N*n+i&)&,+O(-/?7A`ڿ\S? ٺژ?-n.),)/+h? -,m?td17A`??0n15,/,2+ ݖ?~`ܿ7A`ڿB3n46/2/5+Dg8?޿)7A`ڿ? -V4<Φ?.6n782592:+!|%$2Q뱿7A`ڿ?\3&9;n<=&5:>5?+ͤ2j?ο7A`?S翍ٺژ>(@nABC:?q:D+#`g0ȿ?7A`??qEnFGm?D?H+]ba1?@[?7A`ڿFS?&ٺژiInJKDHLDL+Q뱿!|%$2?7A`ڿLMnNOHLPHQ+بkҿO~T ?7A`ڿ?G4<ΦPwRnSTULQVLW+6xrQ|,Ź6п7A`?$J4<ΦVXnYZQW[Q\+!~?p?7A`ڿ[]n^_W\`Wa+uW#?%lD޿7A`ڿ`-bncdB\ae\f+rW#?%lD?7A`ڿegnwhafiaj+f(E`^S7A`ڿi"knlDmfjnfo+D?Wf7A`ڿnpnqrsjojt+Q?,Sɔo!7A`ڿunvotow+sW#%lD޿7A`ڿxny.twTtz+,&mпGI?7A`ڿTy{n|}Pwz~w+/_7-?7A`ڿٺژS?~nzz+Cg8??(?7A`ڿn…+%lD޿rW#?7A`ڿrnŠU"+5/_7-?ܿ M67A`?O4<Φn®m +p̿!~?7A`?2k}ؿn² D+%lD޿vW#7A`?MidKp.?D$nµ?i +!|%$2R?7A`?t߈]?^$?n¸+UveMgצ7A`ڿQ4<Φn@+|,Ź6?/xrQ?7A`ڿ(n¾Q+?#`g0?7A`??n‚_+ %lD?vW#?7A`?Nid?Kp.n+f(?E`^S?7A`ڿ;f;fn+>ҿh;ҿ7A`?Q4<Φ?Gn'(]+V?0u7A`?[Sٺژ?]nY+},Ź6п/xrQ7A`?2k?}ؿUn+6xrQ|,Ź6п7A`ڿ$J4<ΦnZu^+6xrQ?},Ź6?7A`ڿ^n‡4[+D?Wf7A`ڿغژ?S?nr+{,Ź6?7xrQ7A`??+J4<Φnh.+Wf㿮D?7A`ڿHn.y +بk?O~T 7A`?)G4<Φ?ynt.Ql:yvRy+nyQm:wu+++&m?GI7A`ڿK+O~T ?بk?7A`ڿG4<ΦB+ M6?*>ܿ7A`ڿO4<Φ?B+n`>+\+E?؏83?7A`??Q4<Φn}l+Q?!|%$27A`ڿlnh+},Ź6п/xrQ7A`ڿLn' +R뱿!|%$27A`ڿ n+i? -,mܿtd1?7A`??_nO+VOL?7A`ڿZ$?u߈]?O n -Lv +ΌNڿ*>+?7A`?ٺژZS n d~ +*>+?ΌN?7A`ڿ[Sٺژ?nG  +>VOL?7A`ڿnE+R뱿!|%$27A`ڿ]$ᅥt߈]? n+{Gz{Gz<7A`?;f?;f?ܵ|г?wn+HB}Ͽ7A`?VS?ٺژn+<丿5/_7-?7A`ڿn +Q뱿,Sɔo!?7A`ڿ!n"# $%+>/_7-?<丿7A`??$&n'() %* ++HB?}?7A`ڿWSٺژ?*_,n-./%+0%1+uW#?%lD޿7A`?Lp.Mid062n345+1 -+6+8|\?OR %ҿ7A`?bX4<Φ? -`7n816 19+<丿?/_7-7A`?ٺژ?S :n69m6;+%lD޿vW#7A`ڿMidKp.?m <n=i9;N9>+ %lD?vW#?7A`ڿN?n@AJ;>W;B+ ݖ⿇`ܿ7A`?F4<ΦWxCnD^3>BE>F+.xrQ?~,Ź6п7A`? -}?2k?EgGnHI BFBJ+H`^S?f(?7A`ڿKnLeFJFM+?Õ2ҿ'1?7A`??NnOJMJP+Uv?hMgצ?7A`?Q4<Φ??QnR@oMPMS+R?!|%$2?7A`ڿ^$?t߈]TnUVPSPW+Cg8??&7A`?6;f?c<fXnYOSWSZ+Cg8??&7A`ڿ6;f?c<f[n\]WZ^W_+[޿6~?7A`?XSٺژ^U`nYHZ_}Za+ ݖ⿇`ܿ7A`??}mbncy_a/_d+ΌN?*>+7A`ڿٺژ?[S?/]enf*Wadag+q?'~?7A`ڿiٺژS?4hnidgdj+p̿!~?7A`ڿknl mgjgn+ VS r7A`??onpjncjq+Uv?hMgצ?7A`ڿQ4<Φ??cSrns_nqQnt+R?!|%$2?7A`ڿQunvMqtqw+|,Ź6?/xrQ?7A`ڿ2k}?-xnytw_tz+Wf?D?7A`ڿ_{n|[wzw}+!|%$2?Q?7A`ڿe~nz}Hz+[޿6~?7A`ڿXSٺژHTnƒ^D}}+ V?d r7A`?? n‡(w+@[]ba1?7A`ڿ&ٺژ?FS?w~nŠr}+E`^S㿿f(?7A`ڿ;f?;fnŽ!>+p?!~7A`?2k?}?>n’+td1?i? -,m?7A`??nnd+ M6?*>ܿ7A`?O4<Φ?d/n—`+'1AÕ2?7A`??,nœ\#+Q뱿!|%$2?7A`?\3&#n i+!{?3+6ݿ7A`?Q4<ΦiKn£e+(Cg8??7A`?V4<Φ? n§+vW# %lD?7A`ڿ n«+Wf?D?7A`?S翾غژ?n¯pu+!~p̿7A`?}?2kun³q]+`? ݖ7A`??F4<Φ]n¶+fMgצUv?7A`?￑Q4<Φ?nU+ͤ2j?7A`?S?ٺژ?n¼Z+8|\ZR %ҿ7A`ڿZn¿VG+}ϿHB?7A`?ٺژWSGnq+E`^S㿿f(?7A`ڿn}+بkҿO~T ?7A`??G4<Φ}{nwT+|,Ź6п6xrQ?7A`?J4<Φ?n+Q?)Sɔo!?7A`ڿnR~:+8|\NR %?7A`ڿX4<Φ?:8n5+f(?E`^S?7A`ڿn+?VOL?7A`ڿnd#h+@&mпGI7A`ڿn+V??0u?7A`ڿ\S? ٺژnh+GI?-&m?7A`ڿhne4+E`^S?f(7A`ڿ;f;f?49n0+E`^S?f(7A`?;f;f?=n,+ͤ2j?ο7A`ڿS翍ٺژ,$nC(+Q뱿,Sɔo!?7A`ڿغژ忉Sn#'+~VOL7A`ڿu߈]Z$?'n"Z+H`^S?f(?7A`ڿgp.?7idmnK+vW# %lD?7A`?Kp.?Nid?nv+!~p̿7A`ڿ}?2kvnqc+3+6ݿ#{Կ7A`ڿQ4<Φ?5n+>/_7-?<丿7A`ڿS?ٺژ?n  +OR %ҿ8|\7A`??qX4<Φ?N n  ! +dMgצ?Uv7A`ڿ?Q4<Φ! n$lg  l  +dMgצ?Uv7A`??Q4<Φl ni!    +>/_7- n? < = < @ +]ba1?@[?7A`?FS?&ٺژA nB 7= @ = C +q?'~?7A`?iٺژS?8D nE @ C H@ F +`ܿ ݖ?7A`?|F4<Φ?HfG nH  C F C I +'~q?7A`?SiٺژJJ nK -F I F L +*>ܿ M67A`ڿO4<ΦM nN I L I O +<丿?/_7-7A`??P n#iL O (L Q +OR %ҿ8|\7A`ڿ(ER nS $O Q O T +؏83ݿ\+E?7A`ڿQ4<Φ??XU nV ^Q T )Q W +Wʿ|=ߧ7A`??pQ4<Φ?)@X nY $?T W bT Z +H`^S㿼f(7A`ڿb}[ n\ ^W Z W ] +h;?>ҿ7A`ڿ?Q4<Φ?U^ n_ Z ] RZ ` +/_7-?7A`?ٺژS?Ra nb M] ` ] c +)Sɔo!Q?7A`ڿd ne ` c v` f +@[]ba1?7A`?&ٺژ?FS?vg nh Orc f c i +?ͤ2j?7A`?ٺژ?Sj nk Jf i & f l +&~?q̿7A`?S?iٺژ?& nm nn " i l i o +CVOL7A`ڿ p nq l o l r + M6*>?7A`ڿO4<Φ?s nt o r o u +\+Eҿ׏83ݿ7A`?Q4<Φ?ov nw 4}r u r x +%?Eg8??7A`ڿb<f?7;f?oy nz { u x Cu | +GI?A&mп7A`ڿC&} n~ >,x | Ax  +*>? M6?7A`??O4<Φ?A n N|  m| +@[?]ba17A`?&ٺژDSm nhx   +!|%$2?Q?7A`? n† s   +!|%$2? -R뱿7A`ڿ  nŠ }  r +*>+ΌNڿ7A`?ZS?ٺژr n n  E +!|%$2R?7A`ڿt߈]?^$?E n A   +{Gz{Gz<7A`ڿ;f?;f?ܵ|г?s n`{   + %lD?vW#?7A`ڿNid?Kp. n• A  -| +H`^S?f(?7A`?gp.?7id| n˜ 7x   +h;ҿ>?7A`ڿQ4<Φ 1 nœ -   +(?Dg8?޿7A`ڿ; nŸ 4   +*>+?ΌN?7A`?[Sٺژ? n¢ m  V +>VOL??7A`ڿV n¥ :   +,Sɔo!?Q?7A`ڿSغژ?c n¨ .   +zVOL?7A`?Z$ᅳu߈] n« l  C +Dg8?޿)7A`ڿC) n® 8?  . +H`^S㿼f(7A`?gp.8id?. n± )  - +GI,&mп7A`ڿ- n´ *)  & +~VOL7A`?u߈]Z$?& n· 9"   +؏83ݿ\+E?7A`?Q4<Φ??] nº    +ΌN?*>+7A`?ٺژ?[S? n½ r   +{,Ź6?7xrQ7A`ڿ?+J4<Φ n >   +bMԿ j_ҿ7A`ڿ?Q4<Φ n V  s +*>+ΌNڿ7A`ڿZS?ٺژs n n   +#{Կ2+6?7A`ڿ?Q4<Φ?# n ]   +/xrQ|,Ź6?7A`?}ؿ2kC n   L +2+6?#{?7A`ڿQ4<Φ?L n G=  I +#`g0?7A`??IO n D-   +}?HB7A`?ٺژ?VS? n s  - +?HVOL7A`ڿ- n (   +%lD޿vW#7A`ڿ n   !} +)Sɔo!?Q뱿7A`ڿ?} n   " +#`g0ȿ7A`?? n   # +|=ߧΐW?7A`?Q4<Φ?. n   $ +Q<{Gz<7A`ڿ;f?;f?=l?F n_  %? +>/_7-?7A`?O4<Φ?  n   * +GI?&m?7A`ڿ n   + +)Sɔo!?Q뱿7A`?? n   , +q̿'~7A`?hٺژ?S\ n   -( +-/?O(?7A`? ٺژ?]S( - -n -$  .{  -+ ݖ?`?7A`ڿsF4<Φ??{ q -n -  -/   -+&~?q̿7A`ڿ e -n -E - -0= - -+,Sɔo!Q뱿7A`ڿ= -n - -. 9 - -1 - -+q̿'~7A`ڿhٺژ?SX -n - - -2 - -+Z r? V?7A`?? -n -~ - -32 - -+/xrQ|,Ź6?7A`ڿ}ؿ2k2? -n -9 - -4 - -+|,Ź6п6xrQ?7A`ڿ -n - - -5^ - -+~VOL7A`ڿ^ -n -Z. - -6S - -+%lD?sW#7A`ڿS -n -O - -7.  - -+!|%$2Q뱿7A`??\3&.  -n -%= - -8# - -+O(?-/7A`?]S ٺژ#! -n" - - -9 -# -+aM? -j_?7A`ڿQ4<Φ?U$ -n% -Xc -# -:\ -& -+|=ߧΐW?7A`ڿQ4<Φ?\*' -n( -X# -& -;Q# -) -+NR %?8|\?7A`ڿᅡX4<ΦQ&* -n+ -M& -) -<& -, -+uW#?%lD޿7A`ڿLp.Mid2- -n. -5d) -, -=!) -/ -+(Cg8??7A`ڿ!0 -n1 -, -/ ->s, -2 -+,Sɔo!?Q?7A`?Sغژ?s3 -n4 -n/ -2 -?/ -5 -+3b@ۿ7A`ڿ[S? ٺژ?_6 -n7 -2 -5 -@m2 -8 -+DʿWf?7A`ڿغژ忢Sm9 -n: -5 -8 -A5 -; -+Cg8??&7A`ڿ< -n= -]8 -; -B=8 -5+Cg8??(?7A`?V4<Φ=> -n? -L; -5C; -@ -+'1?@Õ2?7A`??@ -D5A -+`ܿ ݖ?7A`ڿ|F4<Φ?bB -nC - @ -A -ER@ -D -+NR %?8|\?7A`ڿR!E -nF -MA -D -F -A -(+8|\NR %?7A`ڿ -3G -nH - D -(GD -%+q?'~?7A`ڿ/I -nJ -(QI -S :K -xL -J -M -i>N -y+M -3iO -iM -P -J -L+M -J -P -ME -N -Q -=yMJ --yQ -N ->+Q -,yR -Q -y=?S -+ -+T -L?y-T -NU -V -T -+ -QF --LT -j>iJ --jT -LW --W -T -jU -y%X --Y - yj+Y -P -i+Y -:Z -Y - k0E -P -M -ik- Y -tX -+0[ -}E t +E [ -0kP -+[ -\ -] -[ -E M=N -+[ -P:S -+=Q -N -:-P[ -M^ -+_ -F -S -P-S -_ -+ -:-_ -%+ -` -+ -_ -S -F -?Q+F -_ -+ -^ -R+^ -a -F -R-a -^ -b -+a -c -b -a --T -d -b --d -T -e -Vf --e -T -d -Y L<-g -d -h -ni -f -d -V+f -i -JG -i -j -i -f -U-Jk - f -G+ k -J<e -L+k - l -<k - Ym -+k -<JUK? --Y n -e -o -nm -p -X<-p -m -Y+p - q -p -Xr -+T -e --T -V-VT -s -S @-t -r -+t -u - +t -v -t -r --u -w -) - w -u -@V+w - x -@w - )Sy -NM+)w -@u -W -y -z - MW@N-Mz -y -Ss -J+z -M{ -z -M !| -9+s -T -V!MJ-T -} -s -9 -!~ -s -X -nQ~ -:! - - - -! -n -! - -?&m?GI?7A`ڿ - - -'1AÕ2?7A`ڿ -& - -/_7-?7A`ڿ& - -~g -n - - ->VOL??7A`? -R - -%lD޿rW#?7A`ڿRq - -N -n -s - - VZ r?7A`ڿs -o -n - - -p̿!~?7A`? - - -n -i - -5/_7-?/_7- - -%lD޿vW#7A`ڿ> - -97 -n -s -h -!~p̿7A`? - -]m -nh -t - -i? -,m?td1?7A`ڿ -uyh -o -#`g0??7A`ڿy< -W -tk -no -vY - -|`? ݖ?7A`ڿ -wo - -H`^S?f(?7A`ڿn -L~ -n -x~ - -/_7-?7A`?~ - -z& -n -ys - -R뱿!|%$27A`ڿs -n -n -z4 - -p?!~7A`?4 - -0j -n -{ - - ݖ?~`ܿ7A`?C - -2 -n -| - -Cg8??&7A`ڿ - - -n -} - -DʿWf7A`?[ - - -n -~2 - ݖ?~`ܿ7A`ڿ2A -. -n  - ݖ⿇`ܿ7A`ڿl   n  - -8|\ZR %ҿ7A`ڿ -  a n -9 -E`^S㿿f(?7A`?9  5 -nQ +:9L7   -  9 - -   -  5 +  -  1 -!-    +  9F + }\ -    - +F   -  F9-   5+ F t + 8- L   Jt  -8 M5-M 8 -1 -- - 8+ - M  -  1 -M+1 -  !+   1 -  -    - [   +[ X+  [J+   [X-   ]+ "      -+  ( -] - )( - ( -  \+   [- ( -J +  ( -- 0   !  " +  ! J  -+# " J -nQ# $:$ "  I  - -" ( -\ -I " :H -- I  -28-% & H -I:+H -% ! - +% 7' % H -& 19 -!   H - --& %  85-1  9& +  1 ! +  K 1 @( +K  G 5) +@* 8(  1-( * @ - -* > -+  -* ( 82+, 5(  -+, E- , )   +5, ) K  -) , 5-. / - ) +. L/ 0 / . -+ -.  GDK - . -/ 1 I+G YK  -D +Y GV^+ - YZ2  +3 1 Y^G-3 V4 2 +3 S5 3 1 sH4 +4 6 >2 s -2 6 4 V-6 >7  6 2 >Z8 ?+>6 4  ;+8 9  ?>-9 : 9 ; 8 * -+9 8 ; Z - -; 9 %e - -  D%; +D  - L(A< + DK= +(> e < %DA - -< > (LF-> ? > < e ) +@ )< F+@  A  @ = G/E+@ = LD-= @  K-B G=  +B +B C J+B C K-C B  - C + D t -C +D t E t D  + -D   - D -t -E F n+ D G ++ 1QF :E H I J K +J nA E B -+A E 1 I nE  L +E 12G &E M N ++$b Y??O4<Φ?? 1 ))O nP Q R -P 1QO :)S T U V P U nW )X Y +W )1Q Z )[ 3R )\ ] +{Gz{Gz<?ܵ|г?;f?;f?2\ 7 ^ R +n׵FQEtd5?\S? ٺژ?2] _ R ` +^G߿7z?b<f?8;f?_ ga nb c d ] +b c 12` e ] f + z:PݿᅥF4<Φ?e rg nh i j ` +h i 12f k ` l + z:?Pݿ?V4<Φ?k >m nn o p f +n o 12l  -f q +x?eο2k? -}ؿ -ar n -s - l + -s 12q t l u +2 -ubSh+-ǿ'ٺژ?ES??t v nw x y q +w x 12u z q { + k.ѿ]=VyX4<Φ?z H| n} ~  u +} ~ 12{  u +EޱcmɿFL"5ٺژ?[S? ] nƒ { + 12 R -{ +d?x?}?2k?R -+ n` -O -Q - +` -O -12 - +2 -ub?Sh+-ǿٺژS?? " n‹ + 12  +l׵FQ-td5ZS?ٺژ?  n‘ + 12  +FL"5DޱcmɿZSٺژ?  n’ + 12  +|`P?￀Q4<Φ ( n  + 12  +`P׿|?Q4<Φ??  nž + 12  +gwP?Q???  n¤ + 12  +3L?u߈]?Z$?  nª + 12  +|?`P׿?_Q4<Φ? L no - +o -12  +f?E v,?Q4<Φ???  n´ W + W 12  - +f?E v,ҿQ4<Φ? -S n­ - - + -12  +QqMgܿ8@6N?Q4<Φ?? 3 n» + 12  +Q?gwP??  n + 12 c - +E v,?f??Q4<Φ?c - nj -` -a - +j -` -12  +%b Y׿?G4<Φ? u nc +c 12  +aG߿7z;f?;f? % n + 12  +L?7?Z$│u߈]?  n + 12  +FL"5?Eޱcmɿ\S? ٺژ?? o ns +s 12  +Sh+-ǿ2 -ubS?ٺژ??  n + 12  +IW?Y$ٺژVS  nŽ + 12 s +SD -?˿iٺژ?Ss h n - + - 12  +-?Lu߈]Z$?? n + 12  +aIb?f^]7?7A`ڿ??D n \ - - \ -12  +v,g?3Az?S?ٺژ?  nŸ + 12 ! +|`P׿ᅳQ4<Φ?  n 7 + 7 12 " +1Az?,g?غژ?S?  n¡ + 12 # +?SD -S?غژ n + 12 $ M +`=V? k.??J4<Φ  n  + 12M % G +*?'b Y׿O4<Φ? ) nˆ   M +  1Q :     0 nŒ n - + n 1 *  ~ B+  c`-~   C+ -qB~ -q -W, - -. -c- - t4 -. -  ct+c . - `+ 1. -  c 30-  . -o 5-3 o0 + 3Ad + y -\ - A +> + ~ dA-+ A ( + A>+-  ~ C- #  q,+   -+   --  W+    T  +W -qT - -gW }-g - -  -   T}+   +     |-  B -    g+     B'$( -B   ?| --'  ( ? $+(  '  -)+ (    (   -- - -}g( )-} -Q -g -Q -}N % -  }g +   - w   f- C  +  % Q+ p %  CN "  -+C % Rfn -   -R% " - -  -NI+ i -s  - - - +Ij! n -" E" Q! :I# $ G$ " I% +&~?q̿7A`ڿS?iٺژ?% @" +Q<{Gz<7A`?;f?;f?=l?:" +R?!|%$2?7A`?^$?t߈]:& n' VQ& p ::( 8 ) ' [ -k :* +k [ - ' X -| -+[ -' b + +, v* ' :-* , U V-, U U, * v} -+ - 9 -* VU+- 9. 9- | - !+ -- | -k ' -| -- -9X-. / n { -- 0 + { -1Q/ :. 1 2 3 4  3 n¾ . , 5 + . 1{ -2 n. x -z - 6 +. x -120 2. 7 8 +Sh+-?2 -ub?S翍ٺژ?27 1c 9 0 +IJ߿]7?gp.?8id?28 3A 0 : +L?^$?t߈]?A ; n? +@ 8 +? +12: 4 8 < +GJ߿^7Kp.?Nid?? = n > : + 12< 5 : ? +Sh+-ǿ2 -ub?ES?%ٺژ? |@ n A < + 12? 6 < 5 +'b Y׿+O4<Φ?? B n C ? + 125 7 ? D +?L?t߈]^$?2D 8E 5 F +˿SD -?Sغژ?E G nH I J D +H I 12F 9K D L + -z:?P??tF4<ΦK M nN O P F +N O 12L :q -F Q +P? z:?V4<Φ?q -R nv -l -p - L +v -l -12Q ; L S +E v,ҿf?Q4<Φ?? T nU V Q +U 12S < Q W +`P׿|qQ4<Φ? :X n¸ } Y S + } 12W =Z S [ +1td5l׵FQ? ٺژ\S?Z \ n] ^ _ W +] ^ 12[ >N W ` +<@6N?QqMg?Q4<ΦN a n\ -K b [ +\ -K 12` ?c [ d +P? z:F4<Φc e nf g h ` +f g 12d @i ` j +E v,?f?Q4<Φ?i k nl m n d +l m 12j Ad o +Q뱿gwP=p n  j + 12o Bi j q +7z^G߿6;fd<f?i yr ne s t o +e s 12q Cx o u +L1Z$?u߈]??x v nt w x q +t w 12u D q y +L?)^$ᅩt߈]?? z n  u + 12y E u { +Q뱿gwP?\3&<? | n§ ] } y + ] 12{ Fw y ~ +gwPQ뱿\3&?w  nx { +x 12~ G { +x?d?2k?§}?  nƒ ~ + 12 H ~ +FL"5?Gޱcm?ZS?ٺژ  nˆ + 12 I +IW?BY$?ٺژ?WS?  n + 12 J +SD -˿غژ忣S  n” + 12 K +HJ?^7fp.8id?? ng +g 12 L +n׵FQ?Mtd5\S ٺژ  n  + 12 M +]7?JJ?8idgp.?  nO +O 12 NU + k.ѿ`=V?J4<Φ??U  nI +I 12 O +QqMgܿ<@6N??Q4<Φ V n5 b +5 b 12 P +$b Y?)G4<Φ??? n‘ + 12 Q +v,g5AzS翔ٺژ n©  + 12 R +fE v,ҿQ4<Φ?  n¬ + 12 Sh +=@6NQqMgܿQ4<Φ??h h n„ e + e 12 T +Pݿ z:V4<Φ? , n + 12 U + z:P?V4<Φ  n   +  12 Vj - +`P?|?Q4<Φ?j - nl -c -i - +l -c -12 WW +|?`P??Q4<ΦW  n± P + P 12 Xg +\G?7zd<f6;fg nc +c 12 Y~ +eοx}ؿ2k~ O nz +z 12 Z? +gwPQ?=??  n: A > +: A 12 [ +2 -ub?Sh+-?%ٺژES?  n› + 12 \} +E v,ҿfQ4<Φ} A n¼ z + z 12 ] +Cޱcm?FL"5ٺژZS n + 12 ^x - - +EJ?^7?Kp.Nid?x - n{ -v -w - +{ -v -12 - _ +]7?GJ߿MidMp.??2 ` - +>Y$?IWVS?ٺژ n + 12 a +3Az?v,gٺژ?S n   +  12 bn +6z?aG߿;f?;f??n 7 n k + k 12 c +fE v,?Q4<Φ? / n '  + ' 12 d\ - +aIb?f^]7?7A`???\ -u nN +N 12 ev - +`G?7z?;f;f??v - nx -q -t - +x -q -12 f +8@6NQqMg?Q4<Φ?? ! n   +  12 g +gwP?Q뱿  n  + 12 hl - +QqMg?8@6N?Q4<Φ?l - nq -j -k - +q -j -12 i+ +xd?2k}?+ = n' - * +' - 12 j - ,+\=V? k.ѿ?iX4<Φ? -Z n - - - + - -12,k -+d?x}?2k n l ,+ l 1Q :   l n i N + i 1   0m+  -/=-  -j +m3j-I  - -m]q-3m.0 =-.3+h-  =+3+= 0 +  l  = /-   -  + / -> +z \ -   4 + -  4> -  n\r + q n  -  4-   qj+q ] n +  \ nqn-  ] -s+    \K- -K s - -L - -Q^ -  K+  JL\Y-  J G -\ G Y+ \ L^+    Q + \]-  P - vQ - -+  v PR + -R -v-P --PxMkh- R+  lk+     -  kl-k Ph+ k  kM xw+  Q - wQx-w Mxt+w x8Puwt-8x -- -8RO-  -u8+ -  SR+    -yy-  %Ry -S-R O+ R  R% \+%  Y-  \-\ = - -+ \g = - \ + -\= -- - - 6-h + h 41-h c h ] -4   1+ 4 6+ {f    1 -   4 5-1 $  + $m   1l -$ 1 ! +  $fc-. $! -fn  c+n f.h+n i n +  +n f g- gf+ l1+  54+Y ] +Y + h = --Yy% + = - Y-m  ni   +i 1Q :m   k  -  nm  +m 12 m  +`P?|Q4<Φ2 :   +3Azv,g?ٺژS?2    +u,g?1AzS?غژ  n  + 12    +AY$?HW?XS?ٺژ? @ nZ -  +Z -12 w   +%b Y׿?!G4<Φ?w  ns t   +s t 12    +*td5?l׵FQٺژ?ZS??  n  + 12    +1Azx,gغژ忈S  nw   +w 12 '   +\=V k.?￁X4<Φ' 6 n + %  + + 12    +xdο2k}ؿ  n— !  + 12 H  " +EޱcmɿFL"5?ٺژ?ZS?H # n^ E $  +^ E 12" b  % +Pݿ -z:?}F4<Φ??b `& n  _ ' " + _ 12% ` -" ( + k.?\=V?X4<Φ?` -$) nc -R -_ - % +c -R -12( O -% +?SD -?S?jٺژ?O -2* nR -Z -M - ( +R -Z -12  ( + +Jtd5o׵FQ ٺژ\S?2+ ^ , +AY$IW?WSٺژ?^ - nZ H . + +Z H 12,  + / +$Lt߈]?^$?? 0 n 1 , + 12/ I , 2 +dοx?}ؿ2k?I 3 nE U 4 / +E U 122  / 5 +HW?GY$ٺژ?YS v6 n f  2 + f 125  2 7 +Sh+-?2 -ubES'ٺژ?? 8 n”  5 + 127  5 9 +`=V k.ѿ#J4<Φ? : n ; 7 + 129 O 7 < +7z?_G?8;f?b<fO = nK > 9 +K 12< s 9 ? +^7IJ߿8id?fp.??s @ ni w A < +i w 12? 5 < B +HWAY$?ٺژXS?5 RC n0 3 ? +0 12B - ? D +SD -?jٺژS?- DE n+ 0 , B ++ 0 12D  B ^ +7z`G?;f;f? F n  - D +  12^ ] D \ +{,g1Az?Sغژ?] G n« Z H ^ + Z 1QG :] I \ | J H ] H K "d+K H zh-"H zL +V -g"-V -MM  V -N-gV -d-V -gpmN -_ g+_ dK +_ Z _ h(-_ N +(] -+] -(hzK +] -~ \ - ] -Ki -#L +zH "K i-K] -h O + -} NL #K-L } -i"-}  } L N+N}  -O L -+O   -NL- - O uO+  - u -P r+V - -Ou-V - -w|- -V -RSP-A P |w+|A Q TS+A } A |P h v-Q  QS|T-S Q  -P+ vS  SQRR ? +Q Q N} -R S -? N-? S R R+S o? c S ? -T G+V -a -? -aV - -^G- -V -M aC -U -Gd T a+d G]^V C -+d hG_ ]d T bH -V ' C -b -C -' V U ^ -+' aC -b U ' C -V -' U V H H - W V U +V  X M + WV X  V W M -M V -t -V -tV -M hY -V -t; - Y tX +Y  fhO-  f Y cU-OV \cY +V O; h+V  ; V \Z +\V ; O-Z  ; - Z  -+ U  - [ +V - --V -l-V -m: -m-4 [ l+l4  -\ : -+4 I  -4 l[ -\ J : -l-: -J \ m+J : -E J : -m] +J \   -] $ l-$ ] ^ m+$ H ^ $ lFqp-V -^ -l$ ^ ] -F. p^ q+p. FN m+. p^ N . p-. N FG(-] - (GF+ ] -l] +] -  \ +] - -[ +] -Z +[ 4 - --] -Uc\O+  -Z -U] - cf+ ] -H UW + fcX W +W  X c -H ] - bHV +] - H ]T + ] -N -UR +T d ]G-] -h  Q}Q + -S R  U-h ] -KvP +P A ur-c n_ n_ S 7 +_ 1Q_ :c `  a a P:b c (#Q` -d c _ e f g Q : e @ _ h Qa :_ f _ & i Ra lQf -d _ a ` j k Q& :b j a l Ri kQj -d b & f m n Q : m & C o Rl jQm -d  j p q QC :5 p  r s Ro iQp -d 5 C m t u Qr :0 t C E v Rs h0 Kr n- 5 . w +- 5 1Qt -d 0 r p x y QE :- x r z Rv gQx -d - E t { | Q :+ { E  } Rz fQ{ -d +  x ~  Q :' ~   R} eQ~ -d '  { Q :   R dQ -d  ~ Q :   R cQ -d   Q :   R bQ -d   Q :  F  R aQ -d   QF :  I  R `Q -d F QI : F F  R _Q -d  I H R ^Pd  AQH -d E F S ???Q -d +J H S ???QJ :+ F ;  Q -d A ; S ???Q; :A J  Q -d ?  S ???Q :? ;  Q -d :  S ???:  n7 ? 9 +7 ? 1Q ::   Q -d 7  S ???7  n : 6 \ + : 1Q :7   Q -d  S ???Q :   Q -d  S ???Q :  :  Q -d : S ???Q: :   Q -d  S ???Q : :  Q -d  S ???Q :   Q -d  S ???Q :   Q -d  S ???Q :   Q -d  S ???Q :    Q -d  S ???Q :    Q -d w  S ???Q :w  v  Q -d x v S ???Qv :x  v  Q -d t v S ???Qv :t v   Q -d w  S ???Q :w v @  Q -d s @ S ???Q@ :s  r  Q -d i r S ???Qr :i @ g  Q -d e g S ???Qg :e r  Q -d h  S ???Q :h g  Q -d  S ??? d n€ h 9 + h 1Q :   Q -d  S ???Q :   Q -d  S ??? V n~ +~ 1Q :   Q -d ~  S ???Q :~  |  Q -d z | S ???Q| :z   Q -d }  S ???Q :} | X  Q -d X S ???QX :   Q -d  S ???Q : X  Q -d  S ???Q :   Q -d  S ???Q :  =  Q -d = S ???Q= :  B Q -d B S ???QB : = Q -d  S???Q : B 0 Q -d 0 S???Q0 :  p  Q -d p  - S???Qp :0  Q - -d   S ???Q : -p Q  -d  - S???Q :   Q -d m  S???Q -d i k  S???Qk :i  Q -d l   S???Q :l k Q -d  S???Q -d  S???Q :  Q -d  S???Q :   Q -d  !"S???Q :   #Q! -d  $%S"???Q : !  &Q$ -d  !'(S%???Q : $ )*Q' -d )$+,S(??? )n -+ 1Q) : ' .Q+ -d  '/0S,???Q : +)8 1Q/ -d 8 +23S0???Q8 : / 4Q2 -d  /56S3???Q : 28 7Q5 -d  289S6???Q : 5 :Q8 -d g  5;<S9???Q :g 8 e =Q; -d c e 8>?S<???Qe :c ; @AQ> -d f @;BCS????f z@n c  D+ c 1Q@ :f >e 6 EQB -d 6 >FGSC???Q6  : B@ HQF -d  BIJSG???Q  : F6 KQI -d s  FLMSJ???Q  :s I r NQL -d -r IOPSM???Qr  : -L QQO -d - LRSSP???Q  : -Or TQR -d - OUVSS???Q  : -R WQU -d  RXYSV???Q  : U Z[QX -d o ZU\]SY???o EZnk ^ _+k 1QZ :o X m `Q\ -d k m XabS]???Qm - :k \Z cQa -d n  \deSb???Q :n am  fQd -d   a gSe???Q : d  hQ -d  dijSg???Qi -d   klSj???Q  : i z mQk -d z inoSl???Qz  : k pQn -d   kqrSo???Q  : nz sQq -d   ntuSr???Q  : q vQt -d   qwxSu???Q  : t 2yQw -d 2tz{Sx???Q2 :w |Qz -d 4w}~S{???Q :4z2Q} -d ^zS~???Q :^}]Q -d []}S???Q] :[{Q -d _{S???Q{ :_]Q -d S???Q :{6 Q -d 6 S???Q6  :Q -d "S???Q :"6 !Q -d !S???Q! :Q -d #S???Q :#!Q -d S???Q :Q -d hS???Q :hgQ -d egS???Qg :eKQ -d KS???QK :gQ -d S???Q! :KQ -d S???Q" :Q -d S???Q# :Q -d @S???@n7% Q$ :@QQ -d QS???QQ% :Q -d oS???Q& :oQmQ -d kmS???Qm' :kQ -d pS???Q( :pmQ -d S???Q) : Q -d  S???Q * : Q -d r S???Q + :r pQ -d npS???Qp, :n 3 -Q d s3 -S???Q3 -- :sp Q d  S???Q . :3 -Q d S???Q/ : A Q d A S???QA 0 :9Q d 79S???Q91 :7A Q d | S???Q 2 :|9zQ d xzS???Qz3 :x Q d }S???Q4 :}zQ d S???Q5 :Q d S???Q6 : Q - d  S???Q 7 : -Q d {  -S???Q -8 :{  y Q d y S???Qy 9 : -Q d S???Q: :y Q d KS???KknQ; :KIQ d IS???QI< :Q d S???Q= :I~Q d ~S???Q~> : Q d  S???Q ? :~0 Q d .0 S???Q0 @ :. ,Q d *,S???Q,A :*0 e Q d /e - S???QeB :/,3  Q - d W3  S ???Q3 C :W -eUQ  d SU -S???QUD :S 3 Q d X S???QE :XU$ -Q d $ -S???Q$ -F :rQ d crS???QrG :c$ -aQ d _aS???QaH :_r Q d   S???Q I :a!Q d "#S ???QJ : $Q" d %&S#???QK :"/'Q% d /"()S&???Q/L :% *Q( d  %+,S)???Q M :(/-Q+! d (./S,???QN :+ D 0Q." d D +12S/???QD O :.3Q1# d .45S2???QP :1D h6Q4$ d h178S5???QhQ :49Q7% d 4K -:S8???QR :7hI -;QK -& d I -7<=S:???Q<' d xK ->?S=???QxT :<I -@Q>( d <ABS????QU :>xCQA) d >DESB???QV :A* -FQD* d Q* -AGHSE???Q* -W :QDOIQG+ d MODJKSH???QOX :MG* -E -LQJ, d RE -GMNSK???QE -Y :RJOOQM- d JPQSN???QZ :ME -RQP. d MSTSQ???Q[ :PUQS/ d PVWST???Q\ :SXQV0 d VSYZSW???Q] :VVT[QY1 d KTV\]SZ???QT^ :KYI^Q\2 d GIY_`S]???QI_ :G\T aQ_3 d L \bcS`???Q ` :L_I> -dQb4 d => -_efSc???Q> -a :=b ;gQe5 d ;bhiSf???Q;b :e> -jQh6 d eklSi???Qc :h;mQk7 d hnoSl???Qd :kpQn8 d kqrSo???Qe :nsQq9 d ntuSr???Qf :qvQt: d qwxSu???Qg :tyQw; d tz{Sx???Qh :w |Qz< d  w}~S{???Q i :z Q}= d A zS~???Q j :A} ?Q> d N?}S???Q?k :N LQ? d JLS???QLl :J?j Q@ d j S???Qj m :LQA d S???Qn :j 8QB d 8( S???Q8o :& Q( C d :& S???QD d V ( S???Q q :V& TQE d TS???QTr : QF d S???Qs :TuQG d QuS???Qut :QOQH d MOS???QOu :Mua QI d Ra S???Qa v :ROQJ d S???Qw :a QK d ~S???Qx :~ -QL d  -S???Q -y :QM d S???Qz : -QN d S???Q{ :-QO d -S???Q-| :QP d S???Q} :-QQ d S???Q~ :QR d S???Q :NQS d NS???QN :QT d S???Q :NQU d S???Q :: QV d : S???Q: :QW d S???Q :: QX d S???Q : -QY d  -S???Q - :QZ d S???Q : - Q[ d  S???Q  : kQ\ d kS???Qk : 9 -Q] d m9 -S???Q9 - :mk Q^ d  S???Q :9 -Q_ d S???Q : Q` d S???Q :Qa d GS???Q :GEQb d qES???QE :qoQc d moS???Qo :mE'Qd d 'S???Q' :oQe d S???Q :'Qf d S???Q :Qg d S???Q :Qh d S???Q :Qi d S???Q :Qj d #S???Q :#!Qk d ! S???Q! : -Ql d   S ???Q :!J Q m d JS ???QJ : MQn d LM S???QM :LJ Qo d O S???Q  :OMg Qp d vg S???Qg :v tQq d rtS???Qt :rg Qr d wS???Q :wtQs d } !S???Q :}{"Q t d T{#$S!???Q{ :T R%Q#u d PR &'S$???QR :P#{ (Q&v d U #)*S'???Q :U&R+Q)w d &,-S*???Q :) > .Q,x d > )/0S-???Q> :,1Q/y d ,23S0???Q :/> 4Q2z d /56S3???Q :2F7Q5{ d F289S6???QF :5G :Q8| d HG 5;<S9???QG :H8F =Q;} d  8>?S<???Q  : ;G B -@Q>~ d B -;ABS????QB - :> CQA d >DESB???Q :AB - FQD d  AGHSE???Q :DIQG d DJKSH???Q :G U LQJ d U GMNSK???QU :J`OQM d ^`JPQSN???Q` :^MU RQP d HMSTSQ???Q :HP`FUQS d DFPVWST???QF :DS XQV d I SYZSW???Q :IVF[\QY d -[V]^SZ???-M[n/ I Q[ :-Y J _Q] d J Y`aS^???QJ :][bQ` d ]cdSa???Q :`J eQc d `fgSd???Q :c hQf d  cijSg???Q :fkQi d flmSj???Q :i  -nQl d 2 -iopSm???Q - :2l0qQo d 90lrsSp???Q0 :9o -7tQr d 57ouvSs???Q7 :5r0wQu d :rxySv???Q ::u7zQx d u{|Sy???Q :xG -}Q{ d -G -x~S|???QG - : -{ Q~ d  {S???Q : ~G - Q d  ~S???Q : Q d S???Q : ' -Q d \' -S???Q' - :\ZQ d XZS???QZ :X' -Q d ]S???Q :]Z Q d  S???Q :Q d S???Q :  Q d  S???Q :Q d S???Q : Q d S???Q :0 -Q d !0 -S???Q0 - :!Q d S???Q :0 -Q d S???Q :Q d S???Q :Q d S???Q : Q d  S???Q :Q d S???Q : s Q d s S???Qs :Q d S???Q :s Q d  S???Q :Q d S???Q : Q d S???Q :Q d S???Q : Q d E S???Q :ECQ d ACS???QC :A Q d FS???Q :FCQ d S???Q : Q d  S???Q :d Q d d S???Qd : Q d S???Q :d Q d S???Q :Q d S???Q : Q d ? S???Q :?=Q d ;=S???Q= :; Q d @S???Q :@=Q d S???Q :Q d S???Q :Q d S???Q : Q d  S???Q :XQ d VXS???QX :V Q d ZS???Q :ZXQ d S???Q :Q d uS???Q :usQ d qsS???Qs :qQ d v S???Q :vs -Q d c  S ???Q :ca Q  d _aS ???Qa :_ Q d d S???Q :da Q d  S???Q  :Q d ~S???Q :~ Q d S???Q :Q d S???Q : Q d   !S???Q :"Q  d #$S!???Q :  %Q# d  &'S$???Q :#o(Q& d o#)*S'???Qo :&+Q) d &,-S*???Q :)o.Q, d )/0S-???Q :,#1Q/ d #,23S0???Q# :/, 4Q2 d %, /56S3???Q, :%2# -7Q5 d .  -289S6???Q - :. 5, -:Q8 d = -5;<S9???Q - :=8 -;=Q; d 9;8>?S<???Q; :9; - @Q> d & ;ABS????Q :&>;$CQA d "$>DESB???Q$:"A FQD d 'AGHSE???Q:'D$\IQG d Z\DJKSH???Q\:ZG -LQJ d ^ -GMNSK???Q -:^J\OQM d .JPQSN???Q:.M -,RQP d *,MSTSQ???Q,:*P UQS d - PVWST???Q :-S,+XQV d )+SYZSW???Q+:)V [QY d . V\]SZ???Q :.Y+x^Q\ d xY_`S]???Qx -:\ aQ_ d \bcS`???Q :_xdQb d _efSc???Q :b[ gQe d b[ bhiSf???Q[ :be`jQh d ^`eklSi???Q`:^h[ CmQk d WChnoSl???QC:Wk`UpQn d 3UkqrSo???QU:3nC1sQq d /1ntuSr???Q1:/qUvQt d 4qwxSu???Q:4t1v yQw d v tz{Sx???Qv :wb|Qz d }bw}~S{???Qb:}zv {Q} d y{zS~???Q{:y}bQ d ~}S???Q:~{ Q d  S???Q :Q d S???Q: Q d S???Q:6 -Q d 6 -S???Q6 -: Q d  S???Q :6 -Q d S???Q: -Q d  -S???Q -:Q d S???Q: - Q d  S???Q :Q d S???Q :  Q d  S???Q !:Q d S???Q": Q d 'S???'Jn­%Q#:'Q d S???Q$:R Q d (R S???QR %:(&Q d $&S???Q&&:$R X Q d )X S???QX ':)&AQ d ?AS???QA(:?X XQ d CXS???QX):CAQ d S???Q*:X8 Q d 8 S???Q8 +:Q d S???Q,:8 Q d S???Q-:Q d S???Q.:6Q d 6S???Q6/: Q d 8 S???Q 0:86 Q d C S???Q 1:C AQ d ?AS???QA2:? Q d DS???Q3:DAkQ d ikS???Qk4:i<Q d m<S???Q<5:mkQ d S???Q6:< Q - d  S???Q 7:M Q d M S???QM 8: Q d S???Q9:M Q d S???Q::Q d S???Q;:Q d S???Q<:p Q d p S???Qp =:Q d S???Q>:p xQ d xS???Qx?:Q d S???Q@: x Q d  S???Q A::Q d :  -S???Q:B:   Q  d  S -???QC: : Q d  S ???Q d  S???Q E:! -Q d #! -S???Q! -F:# P Q d P S???QP G:! -kQ d ikS???QkH:iP  Q d l S???Q I:lk Q d !  S???Q J:! !Q d g"#S ???QK:g e$Q" d ce%&S#???QeL:c"'Q% d h"()S&???QM:h%e*Q(! d %+,S)???QN:(-Q+" d (./S,???QO:+ 0Q.# d  +12S/???Q P:.3Q1$ d >.45S2???QQ:>1 <6Q4% d <178S5???Q<R:49Q7& d 4:;S8???QS:7< <Q:' d  7=>S;???Q T::?Q=( d :@AS>???QU:= BQ@) d =CDSA???QV:@ EQC* d r @FGSD???Q W:rCpHQF+ d npCIJSG???QpX:nF KQI, d s FLMSJ???Q Y:sIp NQL- d  IOPSM???Q Z:L QQO. d LRSSP???Q[:O TQR/ d OUVSS???Q\:RWQU0 d ]RXYSV???Q]:]U[ZQX1 d Y[U[\SY???Q[^:YX]Q[2 d ^X^_S\???Q_:^[[`Q^3 d [abS_???Q`:^cQa4 d ^deSb???Qa:afQd5 d -aghSe???Qb: -diQg6 d djkSh???Qc:gulQj7 d ugmnSk???Qud:joQm8 d jpqSn???Qe:mu rQp9 d  mstSq???Q f:puQs: d lpvwSt???Qg:ls jxQv; d hjsyzSw???Qjh:hv {Qy< d m v|}Sz???Q i:myj~Q|= d xyS}???Qj:x| vQ> d tv|S???Qvk:tQ? d yS???Q@ d S???QA d S???Qn:QB d S???Qo: -QC d S -S???Q -p:SQQD d OQS???QQq:O -XQE d XS???QXr:QQF d S???Qs:X[QG d [S???Q[t:QH d ]S???Qu:][< -QI d < -S???Q< -v:QJ d S???Qw:< -0QK d 0S???Q0x: QL d 5 S???Q y:503QM d 13S???Q3z:1 QN d 6S???Q{:63* QO d * S???Q* |:QP d gS???Q}:g* eQQ d eS???Qe~:QR d S???Q:e QS d  S???Q :m QT d & m S???Qm :&  $ QU d " $ # S???Q$ :" m ! Q# V d I! S???QW d EG# S???QG:E!  -QX d  -S???Q -: GQY d S???Q: -7QZ d -7S???Q7: -Q[ d S???Q:7Q\ d S???Q:Q] d S???Q: Q^ d  S???Q :^ Q_ d ^ S???Q^ : Q` d S???Q:^ Qa d S???Q:*Qb d *S???Q*:Qc d iS???Q:i*gQd d egS???Qg:e4Qe d j4S???Q4:jgQf d 6S???Q:643Qg d 3S???Q3:Qh d S???Q:3Qi d S???Q: Qj d  S???Q :Qk d 4S???Q:4 2Ql d 02S???Q2:0 Qm d 5   -S???Q :52- - Q n d - -  S -???Q- -:  Q o d d S ???Q:d - -bQp d `b S???Qb:`Qq d BS???Q:Bb@Qr d >@S???Q@:>} Qs d C} S???Q} :C@Qt d ,S???Q:,} * Qu d (*!"S???Q*:( #Q!v d - $%S"???Q :-!*&Q$w d !'(S%???Q:$ )Q'x d  $*+S(???Q :' ,Q*y d  '-.S+???Q : * /Q-z d } *01S.???Q :}- {2Q0{ d {-34S1???Q{:0 5Q3| d 067S4???Q:3{8Q6} d 39:S7???Q:6;Q9~ d 6<=S:???Q:9 ->Q< d ( -9?@S=???Q -:(<&AQ? d $&<BCS@???Q&:$? -;DQB d );?ESC???Q;:)B&6FSE???RFRDRAR>R;R8R5R2R/R,R)R&R#R RRRRRRR RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR~R{RxRuRrRoRlRiRfRcR`R]RZRWRTRQRNRKRHRERBR?R<R9R6R3R0R-R*R'R$R!RRRRR R  R  R RRRRRRRRRRRRRRRRRRR R!R"R#R$R%R&R'R(R)R*R+ GS '+ Iz G -S  H('+`'S -`]'$I--U} - - J}+ |G+ P~ | J -J | -K  |J+ KG+K{" -\ -K Y 2H+ S G -Y Ka)B+2 IHaY -H 2'S (- B'} ' HI`$+I '2]B?Y-BY YaI?+YY BL]C+Y ;Y LY Y9 -H`YCL-HE-EH7 - 9 H+ cEM7+ 4 c 9 -M 7-7 M E+ -7   7NCB+ MI -N BI C-B NlE?+ &B l B=Oi=+E -=B?l- -6E>=m -6 -3N -=> O = -m+ > =<>PN +> = <> O9D-PC N 9 -N C P>6+C N C N 3Q+C P7-Q 7- Qq 3+  q  rR+6rq - q Q8-R1 q8q -1 Rr+1 - 1 qs - +q1 Rn- - n -K8qR+Kn -+K" - +" -K<S#+ " --<K" -9 -~"+S T9" -#- S+   Ti+T S"-i-UU-U7 -- "UT+U -7 -- e  - U"<~- -7 -U+7 - U+ ^7 -  7 - -V -+ -  -V  -- - V + W -   -}J+  V - KV+K<  -+" -9TS+K7Q+K9P+K F<DO+ KI8N+O> <=Fli-K M+ lNF 8-KY bc9 +9  cbL+Y LBbY )-R,R-R.R/R0R1R2R3R4R5R6R7R8R9R:R|;Ry<Rv=Rs>Rp?Rm@RjARgBRdCRaDR^ER[FRXGRUHRRIROJRLKRILRFMRCNR@OR=PR:QR7RR4SR1TR.UR+VR(WR%XR"YRZR[R\R]R^R_R `R -aRbRcRdReRfRgRhRiRjRkRlRmRnRoRpRqRrRsRtRuRvRwRxRyRzR{R|R}R~RRRRRRRRRRRRRRRRRR}RzRwRtRqRnRkRhReRbR_R\RXRURRRORLRIRFRCR@R=R:R7R4R1R.R+R(R%R"RRRRRRR R -RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR|RyRvRsRpRmRjRgRdRaR^R[RXRURRRORLRIRFRCR@R;R9R6R3R0R-R*R'R$R!RRRR R -R R  R  RRRRRRWwXKY+W WZh[-wWZe+X\]YK-Y\X^J-\O_T -^\Y`-J ,Y^+ J , [Jda- J[h+[ ,B :-B b:[+:bB Z7+b\ -[ - b:{c|+ZWw:7 -{b dx+c L |{-  L cz + cweZ- L]X+]\eX-e\f]~z -f\_e -{ b-z > e]+> z O > dz Lc-> z d~ -+d> {x-P g -d- -P ~f{ e+P  -K P  -gf-gP }-b hbg+b bN hb -bb __+b bhns-_\ifb_-i\j_sc-j\ki% --s nic_+ sW n lsR+ sl3% --l n8R-3 m% -8l+% - 3ji+ % -  % -m[4+m 3Aon-[ nA4m- [kXj+   n -^V+k\ojX-o\pkVS-p\qo4 W-V -oSk+ V  - rV\^n- Vr -[4 +r  -~p- -st4 ~[r-4 s -|pWo+s4 |s4 t}_f+ts| -z -} ufz|_t-f }q/p+ f  fu--q\vpf/-v\wq-*-w\xvi1 .-- v*q+ -  y-u+ -y"1 -y ! rq-"z{1 y+1 z"w.v+z1 z1 {i" +{z"qn4 -- | "{-  gixw+  g |d+x\`wd -`\^xh- d`x+   }g|- }h#+}  - a#}- dh^`+  d a,J+a dB -b B a+ b4 -}+4 -bq |s+qb! 4 -{n+| g4 -s -! b qyr+ b! zu+b ~t+u } ! -bn\rp+nbAnk+bRn8mo+n [\nk-Rblh+bRh+b{g}+ ~n¥ z + 1Q~ :  2. +l׵FQ?3td5?\S ٺژ??2 - -+˿SD -Siٺژ2/ 9 +?'b Y?G4<Φ?? n˜ W + 129 0 7 +DY$HWYSٺژQ :  Qh -d Q :  Q : = RQi -d  Q= :O  M RQj -d O = QM :K = a RQk -d K M Qa :N M RQl -d N a Q :\ -a RQm -d \ - Q :  RQn -d  Q :  RQo -d  Q :Z - * RZ -9nO - Y - +O - 1Qp -d Z -Q* :O - RQq -d O -* Q :R -* ) RQr -d R - Q) :` - RQs -d ` -) Q :c -) RQt -d c - Q :j - RQu -d j - Q :l - R RQv -d l - QR :q - RQw -d q -R Q :v -R RQx -d v - Q :x - 2 RQy -d x - Q2 :{ - / RQz -d { -2 1 RQ1 { -d . / S???Q| -d 3 1 S???Q3 : / Q} -d  S???Q : 3 Q~ -d  S???Q :  Q -d S??? n›  + 1Q :  Q -d  S???Q : T Q -d T S???QT :  Q -d U  S???Q :U T 3 Q -d I 3 S???Q3 :I  G Q -d E G S???QG :E 3 # Q -d H # S???Q# :H G - Q -d ^ - S???Q- :^ # \ Q -d Z \ I S???Q\ :Z - G QI -d ] G S???Q -d | I S???Q| : G Q -d  S???Q : | @ Q -d @ e S???Q@ :  Qe -d  ` S???S???RnRoRpRrRsRtRuRvRwRxRyRz. 2 D+Etd5?n׵FQ? ٺژ?\S2Z -L +Eޱcm?FL"5?ٺژZS??2Df  +QqMg?=@6NR4<Φ?2  D +SD -??غژ?S? n…  s  +  1Q :  Q` -d Q :  Q :  RQa -d  Q :  ~RQb -d  RQc -d ~S???Qd -d  S???Q : ~ Qe -d  S???Q :  Qf -d  S???Q :   Qg -d   -S???S -???R RRS???Q_ -d    Q :   RQ ^ -d  Q :  R Q] -d   Q :W U RQ\ -d W  QU :P O RQ[ -d P U S RQS Z -d )O S???S???S???S???S???S ???S???2L  +^7EJ?Nid?Kp.?.&U -+.~+.g -U --U -T -W - -g.- -T -U -&~-T - -} -PM-  -~+  -&.-   - ~b R- --b [ - -R+[ -b }~+}[ -0zw -+z-w X - -t}0- - w%z+ A% %  -X -gW -+X - %wy - P+ P P + M+ + b -+  PvQ-v, U+ QP+} -T -Uv-R{R|R}S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???RS???2-, _ +Q?gwP? L9y?2_+o Y -+7@6N?QqMgܿQ4<Φ??3Y *P w _+Q<{Gz<?=l?;f?;f?2w )0 6 Y +FL"5Eޱcm?ZSٺژ?26 ({ -N w +$b Y?+?O4<Φ??2N 'l G 6 + k.?a=V,J4<ΦRRRRRRRRRRRRRR R!R"R#R$R%R&R'R(R)R*R+R,R-R.R/R0R1R2R3R4R5R6R7R8R9R:R|;RyRvRsRpRmRhRfRcR`^F5o 5^h4 -j+h^ -5 -e+4^5 -2+ - - 25j4-  - -s -s: .o -np  2 + p 1s+p ?k 1p .6- r. -  s4+ 8n   rt 5. -+r  o3- 3.r+ 16+  -ih+p 14- &+ -^4hi- 8) -+ -- +& -+ M+ +  -*+ - +he5-8 H - -+) - - -&-H n 8SE -+n  fHR&  + - -S - -f n C+  - Sn & H-  -f+ - |? ('+   +   ' -(-|  -B +  +|X +   X -Q:s0q Q0:. !Qq:o"R LQ:tq#R"KQ:$R#JQ:%R$IQ:&R%HQ:'R&GQ:p(R'FQp:)R(EQ:XpV*R)DQV:T+R*CQ:V,R+BQ:-R,AQ:A.R-@QA:?f/R.?Qf:A0R/>Q:f1R0=R1<Q :2 -02R!MQ -: 3R2NQ: -4R3OQ: -5R4PR5QR[RWRT RQ!RN"RK#RH$RE%RA&R='R:(R7)R4*R1+R.,R*-R&.R#/R 0R1R3R4R6R7R 8R 9R:R;R<R =R >R ?R @R AR BR CR DR ER FR GR HR IR JR KR LR MR NR OR PR QR RR SR TR UR VR WR XR YR ZR [R \O SDL/TYSA_COLOURS ???S ???S ???S ???S ???S ???S ???S| ???Sy ???Su ???Sq ???Sn ???Sk ???Rh mSg ???Oc AEDT_EntityID_V1 uO Kh -RJ qA s A 6\ +6A y-\ A 7ba+ -\ - K8 -  a^V- 9,)y-9 "E. -, :yE)+y ,6+ ,w  y:-* -: ,u --- ] u*:+  -.6+ |w \ -K D7+A \ 6 .-D w W;+t V7D-7t a\ b-t zai at 7V -^+Vt a;32+;j 2V3-2j ;< /+j s2e <j 2c}|-  8 -2/<-8  |y-  8t=-| c>8y+ i|h c ?|<}+> |?48-? >cw - r>4?+  r =o@- =>+= rt - - o=+  t +   - -@Z+  ` - -`  ]t- `mvb-; @t -`+t;  -]Aq+;   -; t@aYV-A! -atq-! Ab]v+!  b!  -mB_+ -! bAu-B lb_- Bmd+   lnC~+ nd- D- -DE- CDn+D  - -   - DC -  -D+ E+  E  -Dp- - E -p CE+ p$D-+  $ CF- +- $- -- % - -- "<9%--  F - -%+ - - - G=<+ -  - -F --G < - -=-< G%9+ <w % <H"+ %G -.  -Hx %"-x H -"'+x x  -x yI^+" 9y' --x  -H &]-Iy x -^-y I y9.+y t  y xE:-,+xy Iu]Z--EJ9uCnQJR:EwKQwQ:u!JLQS:JMRKQT:NRMQU:ORNQV:PROQW: -QRPQ -X:RRQQY: -SRRQZ: TRSQ [:URTQ\: -VRUQ -]:WRVQ^: - -XRWQ -_:TYRXQT`: -ZRYQa:T[RZQb:}{\R[Q{c:]R\Qd:{^R]Qe:_R^Qf:1`R_Q1g:a_aR`Q_h:]1bRaQi:b_cRbQj:bdRcQbk:GeRdQGl:EbfReQm:IGgRfQn:hRgQo:FDiRhQDp:=;jRiQ;q:9D -kRjQ -r:>;lRkQs:7 -5mRlQ5t:3nRmQu:85 -oRnQ -v:rppRoQpw:n - -qRpQ -x:sprRqQy: -sRrRsQ!P:ywtRLQO:!uRtQN:vRuQM:wRvQL:xRwQK:,yRxQ,J:BzRyQBI:@,{RzQH:D -B|R{Q -G:}R|QF: - -~R}Q -E:R~QD:nk -RQkC:iRQB:m -kRQ -A:_RQ_@:] - -RQ -?:a _RQ >: - - -RQ -=: RQ<:tq -RQq;:o -RQ -::s -qRQ -9: -RQ8:ZX -RQX7:V -RQ -6:*'XRQ'5:%. -RQ.4:)'RQ3:LI.RQI2:GRQ1:KIRQ0: -RQ -/:RQ.:E -RQE-:7RQ7,:5 ERR] -xZI+   -]&H+ -  . G+  -@F+ Cp+F - @$-  - +C $p@-  i -C+  lcB+C -i~- Ya -uA+l Bic -Y  -V@+ Yo -+@; -Z- w r@+ - Y-w  D?c+j <;DWw -R - 5 R- Rm- Qm +  + M +P +  Mv- G]\+P v M-  YJ+ JY +\ Y r -R 2 ?\ -b? ??7@-R4 ~ [ -k W Ay -+[ - )u -+ z -y -X Ak -[ -? -r -+? -[ -UX=m -+r -t --U[ -? -KJ+Xp -m -? -=-[ -PU+i -b -+R) R$   X+( - v\ - Z Z +Z Q Z Z -R  r\ `-`[ ``+[ `)X P >X x->7P  -x+ -EQT :&O RV Q T Q&b T RPb (#R@OAEDT_BODYFlagGroupColor_V1PQQ TRotorP(#QY -RPd hS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERK ]J /G-/ J) E-  -/*e - -  8 -e > (*; +   -s>;-  H1 -  / --1 3  I/ -  -8*  -@& 5+Q#:JH# Q%:# R$ Q&:RQ':  -RQ -(:RQ): -LRQL*: RRQH":RQ!:HRQ :?RQ?:  -RQ -:4?RQ4:  -RQ:  4RQ :RQ: RQ:RQ: -RQ -:RQ:T -RQT:c`RQ`:^\TRQ\:b`RQ: -\RQ -: -RQ -:RP -RQP:N -RQ:PRQ :RQ :RQ :RQ -: -RQ - :RQ:y -RQy:ifRQf:dyRQ:hfRQ:RQ:RQ:kRQk:RQ:mkRQ:RQ: -RQ -:RQ: -RQ:RQ:[RQ[:sRQs:he[RQe:c$sRQ$:g -eRQ -:& -$RQ -:~| -R Q|:z -R -Q:|R Q: -R Q -:R Q: -RQ: -RQ -:~ -RR   +R Q -:Q: -Q: -RbQ:RaQ:#R`Q#:R_Q:#|R^Q|:BR]QB:R|PR\QP:NBR[Q:SPRZQ:RYQ: -RXRWQ:$RcQ$:7RdQ7:$ReQ:yw7RfQw:uRgQ:ROwRhQO:MRiQ:QORjQ:RkQ: -RlQ -:RORmQO:M -RnQ:QORoQ:RpQ:LIRqQI:G -RrQ -:K[IRsQ[:Y -RtQ:][RuQ:nlRvQl:j - RwQ -:42l -R xQ2:0 - R -yQ:/-2 R zQ-:+ R {Q:-R |Q:R}Q:R~Q~:RQ}:RQ|:;RQ;{:9RRQ -:vQ:~_ -Qv: -R:Q:vcR9Qc:R8Q:hcfR7Qf:d -R6Q -:ifR5Q: -R4Q: -R3Q -:R2Q: - R1Q:!R 0Q:"R!/Q:#R".Q:$R#-Q:%R$+Q:xv&R%,Qv:t -'R&*Q -:yv(R')Q:k -i)R((Qi:*R)'Q:MiK+R*&QK:><,R+%Q<::K-R,$Q:?<.R-#Q:/R."Q:0R/!Q:1R0 Q:2R1Q:g -3R2Qg -:4R3Q:g -n -5R4Qn -:YW6R5QW:n -7R6Q:W8R7Q:9R8Q:(:R9Q(:WU;R:QU:S(<R;Q:XU~ -=R<R=Q_:>R;Q:m_?R><Qm:@R?=Q:mAR@>Q:BRA?Q:CRB@Q:DRCAQ:+ERDBQ+:FRECQ:+GRFDQ: HRGEQ :!IRHFQ!: JRIGQ:|!KRJHQ|:z -LRKIQ -:~ -|MRLJQ -:\Z -NRMKQZ:A< -ORNLQ<:86ZPROMRPNQ(:& - -QR -RQ -:/(RRQSQ: - -SRRTRSUR -VR -a -b -^ -PM-RL -RRR! -RR=O* SJ(B&T'Rotor$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0006619.x_b -BIN000000004809 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0006619.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0006619.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+ZX?M݂_??? +,+n >~?qCG? ٺژ\S -.ͤ2j??  V/n012345.nQ3367894:;<+5 8:=>n.> ?#`g0?>5?. V?Z r??=>]ba1?@[?= @A5-?nQ@56=8BCADE:=F+G-- BE= nQB66-@HED<A-G10-D<*<D:E0-G=E1+1InG+,0-<+QI061J/KL+ KnF1; ,1M +lY M?U N?WS?ٺژM;2,+IW?CY$?WSٺژ?; -7n4+M2M+ޣX?|3?ٺژ?[S?Q726;NK3OP6PQ(#QN(R;7STQK16+SI7UROQS'R+KJNVRUPRWAQJ&R1IXSYSV???QX%R/ZJ[SY???Q//6X\I]QZ$R*\X^S[???*\nD -+ Q\.6*Z_/`S^???Q_-6ab\cR`Qa+de_fQb7P_'gRcPPh(#Q'8biRgTiMagnet1_Section1OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfMagnet1_Section1Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMER]OWSDL/TYSA_COLOURST???OQAEDT_EntityID_V1F5A++RL:DA<54;F-RHQ84653@sRCRsR9J)mNeaBb'P&6t(#T(NdFe35OtAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0006715.x_b -BIN000000004809 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0006715.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0006715.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+b(?/˻8??? +,+ZeEQ?̶!?Q4<Φ -.'1?@Õ2?  V/n0+,12-3nQ134567289:+- 68; n3<td1?i? -,m?<=3. -M6?*>?= >?;<n.;< O~T ?بk?; @A-=.nQ@54;6>BAC?8;DEF-C:*?C:A=F+0-8CA:-29D-D-AE+E GnD+9HF;?+++InFE QI04+J/GKP4LM(#QJ&N+IOPQQ//4ORISQG14EPI5TRK@QP'NEGJUVQ5249UG1WRT?9 -5n2EXQU(N95PYRW>PNZASY???OZSDL/TYSA_COLOURX9H,+|?`P?Q4<Φ??HEX+h ?cP?Q4<Φ?,X +Y?Ĵ'V??Q4<ΦSV???QO%N/[J\QR.4*[]/^RS=*RnC -+ Q[$N*RO_Q]-4`aRbR^<Q`+cd]eQa7L]'fRb;PLg(#Q'8ahRfThMagnet2_Section1OgAEDT_BODYFlagGroupColor_V1PcijQQd*kl`mTeMagnet2_Section1Pkn(#Ql#odpRmPoNqhSp???OqSDL/TYSA_COLOUR_2OnAttGS_PS_LayerO jSDL/TYSA_NAMES_???S\???SQ???OMAEDT_EntityID_V1:C8?0-0=:+Q644-1@rQ>64=@sRBDRsARrCR7BJ)lUd`>a'P&4t(#T(NdFe35OtAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0006811.x_b -BIN000000010854 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0006811.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0006811.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 -6*+Q<?? `+,+g6?%w}弿 ٺژ?\S? K-.b$%?b$%?  V/n01, 2345nQ267893:;0+4 8:<=n5H>?P%?R%?>G@A5?VOL??IB5.!|%$2?Q?BCD@E?n.JF? ݖ?`?FGH-I.nQG6FJKLHFMNO+-JP<F nIKMFQRnQK6IGSTMUVOIHNW-QSVIXYnRDIZ[%?Eg8??ZC\]RGI?-&m?[E^RA!~?p?^*_`ab[nAFc[>?#`g0?c&defaAnQd6cghieUjkclmn-f$gkocpna(hjc^qnQh6ad_rjU`eanst-q=aYuWf?D?Y<QvqH`^S?f(?u>wqx8|\?[R %?w.yzb{unx?Eu|,Sɔo!?Q?E }~Boxn|@bx6xrQ?},Ź6?b,^w|nA{|]'1?@Õ2?{0wn]B<ZDl?< 4-]nQ6<8JP:<1+0*UP0--:043;-41-1 n†<P+nŠ1;Q6; -n3M+Q<{Gz<;f?;f?=l?L+Ƕx?c?}?2kN+P`!?\{F*?J4<Φ-n›O;+{Gz{Gz<?;f?;f?ܵ|г?P+h7?.J?gp.7id?n¡Q+bw?\]>8?FS&ٺژ?n§R+L??u߈]Z$?n«S+^U&?v!?S?غژ)ntsT+f?u C?Q4<Φ1n³U+Cs?ɇx?b<f7;fnWNV+](L?;ܸ0?Q4<Φ?n·;W1+Q<?X+ U?̬ ?G4<Φ??n»Y+gwP?Q??n¾Z+r?^?S?غژ!n+[N+kE?_?sF4<ΦN7nH\m+cBP?oVnQ6@C\X@ZnQ6\U\-XQ\nQ6XS UVX-9X -=rW#?%lD? -8ptd1?i? -,m?=:4vڵ|г?v;o=Y5/_7-?hS=???O>SDL/TYSA_COLOUR_2O;AttGS_PS_LayerO 7SDL/TYSA_NAMER),"R%!R RRS???OAEDT_EntityID_V1ta`+OUMF-O+Rncjs+R0:P+-0-Q8642?QJ6-G@R!R@-"R?!Rr5Ri4RT+RL*R9."J)91- .'P&6A(#T(M19_26GOAAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0007091.x_b -BIN000000004496 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007091.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007091.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ0@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q0&'(F)) * *2 -*+?? ++ݵ|г?޵|г?;f;f ,-Q%?S%?  V.n/0  1234nQ1+5678290/-3 79,-n4--34 ܵ|г?Q7,531:;9<=/320>+,:=3 nQ:-5,7?=</9,>@A-</*/<9=A+>3=@+@ 6n>0+A,/-Q6*5@BC1D0 -Cn9@E+@E +h?Ӣm?ݵ|г?E0++?QC)50F.6GP5HI(#QF J0CKBLQ.(5KMCNRG!QKJ.OFPQM'5*OQ.RRN1"*Mn< -+ QOJ*MKSQQ&5TUMVRRQT$WXQYQU.HQ'ZRVPH[(#Q'/U\RZT\Shaft_Section1O[AEDT_BODYFlagGroupColor_V1PW]^QQX#_`TaTYShaft_Section1P_b(#Q`cXdRaPcJehSd?OeSDL/TYSA_COLOUR_2ObAttGS_PS_LayerO ^SDL/TYSA_NAMEPJfASS?OfSDL/TYSA_COLOURSP?QB!J@6FgSL?Sg?OIAEDT_EntityID_V1RDR?2"R;!R83"J)`BXT:U'P&5h(#T(steel_stainlessOhAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0007793.x_b -BIN000000005974 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007793.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007793.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZT@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1QT&'(F)) * *2 -*+.*)?~B??HG?}п %+,+`m8?;h?'[ e\ -.JE?qO?  V/n012 34-.nQ3K567849:0+- 79; n.< ,aQ?-aQ?<=>.C$W?E$W?=?@A<n>AB<WQ!?Uv.?ACDE=>nBFG> G,2?g1?FHI;EBnGEJB%?{?EKLFAGnJ;Gs#w?o;x?; MN-FJnQMM5;7HONPI9;Q+R-P0*IPLNFRST-9PN0-4:Q-Q-N+++ UnQS: R;IS+SVnRW+XQVH5SYZU[WZnT\S]X!S]^+8e ?|΃2? e\?'[] W2X+ 2?u2t?~C6)K^"\X_+R"?:#o??LXz??{Gz?\`na1W^_#1^,+LXz??Q?1bnc\_,$:_ +?LXz??Cl?: -6n4+,Q6J5:dU3eP5fg(#Qd=h:6ijQUI5+iV6kRezQi<h+UYdlRk{PhmAQY;hSVnioSl???Qn:hWZpYqSo???QZG5Wn`VrQp9h\`sntSq???Q`F5\pbZuQs8h1bvpwSt???QbE51s/`xQv7h/yszSw???Q/D5v{b|Qy6h*{v}Sz???*{nP -+ Q{C5*y~/S}???Q~B5{RrQ@~QRf~'RqPf(#Q'SRTStator_Teeth30_Section1OAEDT_BODYFlagGroupColor_V1PQQ?TStator_Teeth30_Section1P(#Q5RPhhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER|Z"RxuRutRrsOmSDL/TYSA_COLOURSj???OgAEDT_EntityID_V1cA@1+@P0D=c1-0P9@+DP@LAa\c-=0-LPDIETWa-aED\+TFLW+2]+!F8?#F8?;f;fR[|Q7L5-3MQHN5FMKROQKO5EHCR}QCP5AK?R~Q?Q5=CRR["RR8\"J)d?'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0007841.x_b -BIN000000007059 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007841.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007841.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 -*+>BS?O??HG?}п 1+,+e(?kW?h9;?)f '-._q0]?*FaK?  V/n0123456nQ3c789:4;<=+5 9;>?n6#@AaY?nB1?@"B?6J=?'?A$C6D>jD4^?Sz?CEFGHAnD%HA.*keL?5-+?HIJCKDn.&LD J\hT?jÙ?LMN>B.nQMf7LOPQNRSTLUVW-> OT5LXnBPSL-@nQPg7BMYZSR[NBW\]--Y[BG nQYh7-P^_[R`S-]ab-G^`-CcnQ^i7GYEd`RF[Gbef-cGXgU4?.?X>c=@?$??g Kc?q? ?K hiHgn?!5g@ 0?e-?Qhl7KIjiR=JKk10-R=*=R;i0-JRiFHlmk-kHi1+1nnkmo0K=+QnZ71p/qrmqnl1+so/1s,+3TY?wt??LXz??{Gz?s.mto+@$&'?+i~?N\}0[2A,0\o +յ?;S?'[? e\?\unWaV,Qu_7\vwxyWLS\+awn]e\zVxnU\{|Qx`7V}u~U>NV+{ ~n€V<|+Vz+Ӗ?}A? e\?'[*<2|+R"?:#o??LXz??{Gz?z,a|t+?LXz??Cl?t-ezs+NBr3?~ܖ?)fh9;enb+atQ]7ewb-`e++nfme Q\7+qfGF++FRJ`Cf+l-lCJm+P7(#QL+Qq[7mnRQKmqpRPAQpJ1nS???QI/pS???Q/Y7nQH*S???*nR -+ QX7*/S???QW7RQUQm'RP(#Q'nRTStator_Teeth32_Section1OAEDT_BODYFlagGroupColor_V1PQQTTStator_Teeth32_Section1P(#QGRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMEROSDL/TYSA_COLOURQMeS???QNawvS???Qw^7auQvO\u}S???Q}PVxvS???QQ{~}S???Q~a7{x8QR<8S???< -8n4{Q8b7<~3S???RRROAEDT_EntityID_V1R2)+LXz??Q?({2+'0?E?wj?Զr?5T{+TRN;>{U-;RT=54<-R]B[a+RyRrQIk7HEhRjQEj7C^IRRRdR_RZQOe7>9MQ9d753ORRRQR:J)h'P&7(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0007889.x_b -BIN000000007059 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007889.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007889.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 -*+&2ۓ?=ak??HG?}п 1+,+?ZfkcH?f8uN?бv. '-.lun5#?@Zz? )??"AB5LA?d?@$C5D<?’|?CEFGH@nD%=@.H1(?C6dw?= IJ4KDn.&LD V,?_X?LMNKG.nQMg6LOPQNRSTLU+V-KOT=LWnGPSLCXnQPh6GMEYSRFNGVZ[-XGW>Bcrm?_?WKXVAd?:`r?> 4XB.˿Z?REuD?B!H>?Z]|? p?H\]C-BnQ\j6HE^_]R`FHabc--^`HA nQ^k6-\de`Rf]-cgh-A df-?nQdl6A^ifR<`Ah10-R<*<R:f0-h-f1+1jnhgk0A<+QjZ61l/mngmnc1bok/1o,+%9?ux?fOy?vg?o.gpk+3TY?wt??LXz??{Gz?,0k +c? ?h9;?)fp-qro+Ų?[_4k?бv.f8uNܿqsnt+upr,;vp+t?"A>?)f?h9;?; -7n3urv+Zwr+։?3I?I)XP/߿ZxnVy+vw*uzv+?LXz??Cl?u {n|q;wz)b}w+LXz??Q?b~nagyz}(yz+O?=Y??LXz??{Gz?yn[bZ}Q]6y~x[GFy+FR]SC[ya-aC]b+P6(#QMyQ~\6bmQx^6ZRQNZxQ_6+xsR+nUZq QO+Qs`6q{RQPqsQ{a6us7RQQu{Q7b6;{2RQR;7RPAS???OSDL/TYSA_COLOURS???S???S???UKN++S???QLb~Qm[6gj~RQKgmlRQlJ1jS???QI/lS???Q/Y6jQH*S???*nR -+ QX6*/S???QW6RQUQm'RP(#Q'nRTStator_Teeth34_Section1OAEDT_BODYFlagGroupColor_V1PQQTTStator_Teeth34_Section1P(#QGRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERS???S???OAEDT_EntityID_V1|4Ju+JRT:=|ut-TRNJKtqU-:RJ<43;|-t=Tq+VLSZ+cH`g+RnRiReQEi6CP\R_RRYQOf6KIMQIe6=8ORQ8d642IRRRQR9J)d'P&6(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0007937.x_b -BIN000000007059 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007937.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007937.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 -*+J?]_?͌Tj??HG?}п 1+,+?LXz??Cl? '-.F~G?B?  V/n01234-5nQ3c67894:;<+- 8:= n5!>?jZW?jEf?> @A5 -DŽR?_o??"B5C}^?\7M[?BDEFG?nC#H?I??c)s?HJKGLCnI$LCM5Mg?WOa?LNOHPInM%FI.B.?0xئ?FQR=BMn.&GM \Ygm?V8Acn0@<+Qrl6@qsP6tu(#Qqk6PNrvRs QNj6LJqwRvQJi6HSNxRwRxOuAEDT_EntityID_V1OVlKLZ_h-ZHO_+:Vy<-4;z-yVR:=z{|-; -7n4{}z-y{+{ ~nz;Q~a6{7n|\{({+v 7:?xMi[?Q8d6-3QQf6FDRQDg6BQSRRRRRo Rk Rc RUR9J)r'P&6(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0007985.x_b -BIN000000007059 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007985.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0007985.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 -*+}?>5}??HG?}п 1++Jn{~?l|??LXz??{Gz? ',-9?4~G?  V.n/0 1234nQ1c567829:;+3 79<=n4!=>FVp?oXo]x?= 3?4Eiܧ)?nl8?>"<4@r?n.by?< AB3C>n@#D>EGu?FT/?DFG,H@nE$I@J# Β?J5?IKLMNEnJ%CE-?9?,f+?COP<,Jn-&NJ {^?JOn?N QRI-nQQl5NKSRT;LNU0/-T;*;T9R/-LTRVIWXU-UIR0+0YnUX+/N;+QYZ50Z.[\X[nW0]^+00^ +D,F?T?ؒhPϿ^/X_++}ւ?qF? iJ)Q'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0008033.x_b -BIN000000007059 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0008033.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0008033.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 -*+ |?sUN7??HG?}п 1+,+0z,?>?zmB?F*u '-.o* ?g?  V/n0123456nQ3c789:4;<=+5 9;>?n6@?)ygL? -=.?@A6 -l? ބ<&?? 56Bjr?Wcx?B!C?D.?eŝB?CEF>GBnD"GBH,üv?L.#?4JU?> TU5CQn.&OQ "@(?Cs0?OVWK-.nQVi7OMXYWZ[NO\]^--X[OA nQXj7-V_`[ZaW-^+b-A_a-P@nQ_k7AXRcaZS[Abde-Z=*SZ=aPe10-b-ad+dfnb1+geAS1+1hnediQhZ71j/fki-1lm+),q?rR??LXz??{Gz?l,<ni+Jn{~?l|??LXz??{Gz?m.oi2+?LXz??Cl?opnq]rm2/m,+LXz??Q?,0s2 +wׯ?Pģs|? iFs+rxn{os|v yn}s<~Qya7vt8}5Uv+< -8n4vl~)vg|+j 2d?D`?kZb?ql?g(d~+4HA;[?h2?yRݐ￶X|*r~n+uE"??\ϗb? i}vu-FZJUCus{-;ZU=54<}-=Z;S0-0P=+JZNFG{rq-{CJr+NZWJKqo\-qGNo+ReRzfRklQRl7P_RcvRmR`uQMh7KIVRYtQIg7GEMRsQEf7CTIRrQTe7>9ERqQ9d753TRpRoR:nJ)R'P&7(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0008081.x_b -BIN000000005974 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0008081.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0008081.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZT@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1QT&'(F)) * *2 -*+T5l?)TΧRq?HG?}п %+,+?LXz??Cl? -.UiIv?.I,?  V/n0+1 23-4nQ2K567839:0+- 79; n4<=Q?<>4Cl?=;4?^r(?8lR?; @A-B=n?C=Dl?v,?CEFG>?nDB?.2d.:?K[?BHI;GDn.GD ~Cŗ2?CG?GJKBC.nQJO5GHELKMFIGNOP-M0*FMQKCPRS-IMKABTUN-NBKO+OVnNRUWPGFR+RXnP+OYQXF5RZ[V\+[nSR Y RW1+Y=l?Hڨ?F*u?zmB?WOY+sRF?|d?zmB?F*u1!Y]+_Xs??]":1^+LXz??Q?: -6n3_]^#U],+㣷?CQ??H?U`nTO_^,$_^ +),q?rR??LXz??{Gz?_ anbU:,QaI5_c`6db-A_+AMI9;b_T-9MA0-3:b-T;IU+0M9Qe+QM0F>S+e-e>0->fQC<nQfQ5>EgP5hi(#QEP5CJfjRg"RjOiAEDT_EntityID_V1SCQ++Qc<k_almnQ`H5UlVaoQ6J5:ma2pRdQm=k:6cqRpPkrASq???OrSDL/TYSA_COLOURQl;kU`sctQVG5OsX`uRoQs:kOVZlvRuQZ9kRXwsxSv???Qw8k+[yZzSx???Q[E5+w/X{Qy7k/|w}Sz???Q/D5y~[Q|6k*~yS}???*~nM -+ Q~C5*|/S???QB5~RQ@QRh'RPh(#Q'SRTStator_Teeth42_Section1OAEDT_BODYFlagGroupColor_V1PQQ?TStator_Teeth42_Section1P(#Q5RPkhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER!R{St???Sn???R\QHN5B@JRLQ@M5;7HRQ7L5-2@RRR8"J)mf'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0008249.x_b -BIN000000009479 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0008249.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0008249.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 -)*+Nm<@?q]?HG?}п I+,+?LXz??Q? 9-.FVp?oXo]x?  V/n012 3456nQ3789:4;<0+5 9;=>n67?.C$W?E$W??6@A6 ?.8B6 -DŽR?_o?BCDEF.nQC7BGHIDJKLBMNO-EGLPBQnFHKB-RnQH7FCSTKJUDFOVW--SUFX nR0FYQEiܧ)?nl8?Y/Z[RZ]|? p?Q1ER\jZW?jEf?\2]Q^UiIv?.I,?]!_`ab\n^3b\cQ?b#de]@^nc4f^Aq? ?fgh=ZcnA5Pc?<?’|?PijZEAnQi7PkGljJLmPnop-ZkmfPYnQk7ZgiqmJjhZrsn-J0*hJmtfuvr-rfms+swnrovxnZjo+oynnzs{Qy7o|}w~z}npNo{Ao+?LXz??Q?@{+R"?:#o??LXz??{Gz?BV{+3^]? ??LXz??{Gz?VnO+NC1+_a_??1$nˆD<x+?LXz??Q?< -8n4xEs2+3TY?wt??LXz??{Gz?2Fx+G??G??;f;fGz2,+O?=Y??LXz??{Gz?,H +Jn{~?l|??LXz??{Gz?nŒ+,Q7-+n“+nWV Q7+WFU++UJK-W+-JUX-J`a-X-a[nX+Q7XSaX]n[.XY)ygL? -=.?-a[`b*?+??,=>aY?nB1?= t5fn>+5WQ!?Uv.?*>+"v?+"v?@nQ7J0-@%b?nQ7@dJe@1+eJ`b-b1-@+&n¦1Q7"nª?+LXz?? ?>+),q?rR??LXz??{Gz? n™=+?LXz??Q?<+?LXz??Q?;v+?LXz??Q?vnus:N+?LXz??Q?NnMVzQ7N}MEDN+P7(#QvNQ7VQ}7zyR Qwz}|R PAQ|xoyS???Qysw|S???Qw7syQzvS???Q7vwQ{S??? nv<Q78Q|<8S???Q87<3S???R R 5t+tJh;=u-;Jt054<-u=hv+0J;+0-R R OSDL/TYSA_COLOURQuVR Qt+S???QsS???QrS???Q7QqS???Q7QpS???Q7QoS???Qn1S???Q71/Qm/S???Q/7Ql*S???*nJ -+ Q7*/S???Q7R: QQ'R9 P(#Q'RTStator_Yoke_Section1OAEDT_BODYFlagGroupColor_V1PQQ~TStator_Yoke_Section1P(#QkRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERk"R"R R R S???OAEDT_EntityID_V1a`+`Je]-]e+RC Qd7b_R"Q_7]dR"Q7a_R -!R !Rl"Q7=9gQ9753Qg7fkR!R!R QS7-HR!R!R R OBKV+pPLz+LJDjEpzM-R~ Rq!QG7EiCRl!R!RT!RI!R:m"J)'P&7(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0008815.x_b -BIN000000079899 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0008815.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0008815.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 -*+h -ףpUü?? q+,+u}?йvc?wX¦ÿF`? -.s6?,\z?  V/n012 3456nQ3789:4;10-5 9;<=n6N>?A>M@A6*vBt?Yku??OB6C. :Y?9ު?BqDEFG?nCPH?I~c=84?f|?HJKLMCnIQNCO/G?@}Q?N PQRSInORTIUtPv?_ag?TsVWXYOnUSZO[TA?wO?Z\]^-Un[T_U`W/9?_"?_!abcd[n`Ue[fihYT? ?eghij`nfVk`==ф?wX?kKlmnofn=W5fpn?pXq=r9+?6Ϋ?q stuRpnrYvpw8g#?<# ſ?vxyz{rnwZ|r}xL?n,?|3~wn}[w[?`*q?O}n\}HA!?Rf<3?n]'d?ҹp5?n^dQ?!cָ?n_HNo?(a - ?n` -v -U?~sM?na BC?,@8n=A8Ba_?@ە>j?~?@i1nåU?v1^?^nĥ&V?n?+n߅P?pO?uGJnTr=?ġ>:?}KnYUZg?MS -?YuTnWd3?!?n8s?`F?n5z?,oC?a0nm׃?-w?m]inaBb?@D$?ynҫu7?(&?n1?:?En0(?v"z?n6Ab2? ?6'2n`+,?m?qnne ? ;]?[n\@>?Ď?AnޓM?ȸ?nrUDg?Qwz?  - n  M?M=m~? n M%_h,?؇?-u n 7Fz?Dd?n`,??}nd &I١?D߬?>?dm!"#n d$珠?#?d#%&_ n$* 'Cg? ?*()\&$n'*$+ܲ٠?D@y=t5?*I,-'n+;'.Ύ1?۫`~G?;1/017+n.%+2$)?a/?%34 .n2.568 jv8?`꯹?672n528}?n ?9: $5n8E5;_M?q+?E<=A8n;8>z;Bd遣?,[v?GCD*>nBA>pR?ay?AEFGBnMBHZ?jy?HIJJ^qI?0D?IUKLMNHnJOHP۳`?Y*?OQRJnPJSa'ž\?X?TUVPnSWPX|{?<3R׸9?WYZG[SnX[S\dvJt?Fg?[]^WXn\`X_nK?%*!?``ab\\n_N\c8C#?^Z{n~{*PsVM;?㲅?{~n~[b5?q*-l? n:uj?hǸ?Uen;GZ?600?QenylR?MZ7?yunDm?nA?n 氋?i,?sn+(U8?OB?+&Ln$5?'?$ nK>?K{Fn ]?vԑO?Cn -j7kD??s{%?jen 5 b?}JV{?n @}N4?x?n ^N?է?_nvw?$ ?#2n1"?h/?{nR¦?0?Gnnzߠ?{Խ\?zunoSgG? Lk?o9n$k?4[ ?ans;?.6?i #nG?_0C?K*nx30?;Wz?5| -nhn?7iw?'nCd?u?QwMn'zKX?uB?wYn -&?V,X?nVE$ `?7?{nG\+U?z"d?GsBn1_=?_Fj?1/;nM).*W?Gl&=?MSIni$86d?54?ien L Z?nn?L+Hn!GS ?  ?GAWn"1?(J??yn#*V^?qS?En$b+ij? ?En%<OF0?a4?<57n&:[?d!f??n'JK?4 ?JwFn( {a?GH? n) [%#?+Ұ+? - n *  ėX?k%8? b n +s (i?PZ?s n, e1?4eY?e n-Wv`y?")?Yin.3=m4?ΣQc7?jn//;? 4v9?A n0!]1?n3(?"#n!1$%=L?p@??$&'!n%2!(xB?;D*c?)*%n(3b%+q\?^d?b,- `(n+4.(/h??.01+n/5+2S ?ui?34/n26/5=.?9lcT?67z2n5728T:t?dj?9: i5n885;-t/?4i?<=$8n;9 -8>2?̚|? -7?@;n>:w;AWq?!C?wOBCo>nA;>Did.?c܂n?YEFNAnD<AGJP?7|?1HIJ|DnG=cDK@0Ϝ?ڰ?cLM_GnK>JGNҶp?W_Es?J/OPQKnN?KRz?tXg?ST%NnR@NUS?v\?VW$RnUARX+?c}hv?YZUnXB0U[mv?fxto?0c\],Xn[CQX^sC$?dti~?Q-_`aJ[n^D[b?q8??ѝ=[?cd^nbE^eJ?3J?-fg1bneFbhu}?йvc?_ijmenhGuek -!?(*#?ulmqhnkHahnaȔ?+mw?a+opQknnIkq6W^$?D\?Ĥ!?)z{6aAnQz7o|{p}~+0*p`{a+{56}+}6{~-~(n{p-*np~Q7,n`+\?Ĥ!? A׬ _.?+vw?$ ?VCa^4?+nG?f=?a~..$?>n+'Ns8?#O?VC'?ln"+^N?է?⿅ ?`n+}?n ?1快7e?n+8b=?ޭ%?R#ܒѿ_3D??n+Z?jy?_xٿ{-8D?n§+۳`?Y*?V14y?n±+t? -ّ?ƄF{lv ?Dn+XǓ6?,￶:?dVp>ҿ?nX+8g#?<# ſ?̿wu^-?n+*V^?qS?&\2BS ?n=+W/9?_"?fX߿5*N?"n&1+X?1 -n;+g?h?H!?oAsW,D@~?pn+&I١?D߬?>?A!?W6?nnc+x30?;Wz?|p#6Y?6n@+ BCn¿+lV?kh?kuWv+?n›+8s?`F?hb뛿L:?n”+ėX?k%8?g׿XM?n-+åU?v1^?_ ]ۿ8_?-x/nI!0*. -1*2+$=c?x@? ˾?1 3n45.2 6.7+`+,?m?i, ѿj/C?68nž927 2:+/;? 4v9?n6gaz?B;n7: <7=+Ύ1?۫`~G?kY٣ǁ?<2>n:?@:=A:B+nK?%*!?/$Zbؿ/Ҭ?ACn_D=BE=F+o[??LO߸,V?EGn4HBFBI+-t/?4i?]!{Ͽ0~ -?Jn'KFILFM+ -v -U?~sM?LX"ӿVP?LNnOPIMIQ+g-?F=·?cݳ俔bsf?Rn—MQSMT+;G+?*C:? 9z'zqϤ\?SUnHQTVQW+׃?-w?=ÿ:?V^XnjY+TWTZ+q\?^d?.;+ؿ#,h?[naAWZ\W]+ -!?(*#?S8)iܿ$!`?\^nt_`Z]aZb++mzn?',?Ǫ`ſd{ -/?ahcn¼de]bH]f+S ?ui?@8!naVE?HgntESbfhbi+ޓM?ȸ?b .Aпhm?hjn*9fikfl+g@;5~?*J? ڿ2?kmnnopilqir+e1?4eY?Aeh⿼X0?qfsnt)lrlu+@0Ϝ?ڰ?yn9޿Y? vnbwruxry+\@>?Ď?ev$^! ?xBzn£{uy|u}+T:t?dj?a'?|~ny}y+C?Q?+9#Mz?Tn‹} }+a'ž\?X?Fտ2c4?nˆ!+؏mL?'0J?!uտ!!?nx"+w]???d5_ǿxGv?pnE #+JP?7|?7&@"B_j?2n$+m71`)?m?Sb̿tf4?ny%+?j`:? 2ʿM?~n7>+Cg? ?Yؿ5?n)D?+'zKX?uB?݀صd5?xn@+R¦?0?byJ.pxt:?HnA+Wv`y?")?S,R¿^?ZnlYB+(i?PZ?Foݿ^_[?n—C&+dvJt?Fg?EN?vԿrR?&nh"DY+ ?PFΗ?_n¿$U?Y\nVE_+M%_h,?؇?փ3ܿm}?_nm\F+sn#,9=\9?++?c}hv?W`oֿK,?@n =?]D=A+j -%?H?ȡ7eؿ^?DBn)A?A^?C+Dm?nA?[¤9q?Dn4AC_)AE+ؗ ?]? r4?)hFnqCE`GCH+z>??ʿxmS?|Sn0PRePT+{a?GH?(+/MӖp,?Un: |RTf<RV+ҴHo ?X&?.qܿ슊;?< WnQ`XTVgTY+UZg?MS -?X㿙jG?vZnVYh{V[+]?vԑO? D>4 ?{D\nxY[iY]+7Fz?Dd?i׿ud?^n_[]jt[`++]?|2?⿯#?Qޒۿ? -mn]nj,plj +[b5?q*-l?4*( hd#>?lon3,Qo7lpkqr: slt+qn:luQq7vow:tx+uyz+M?M=m~?[KĻ-'y?y@{u+[%?{Ϊap?l"s࿋nEr?zu|+ٍy?R3fM? N~߿c:k?&}n~z|z+ne ? ;]?̈́/f9-?\n–|%|+S ?  ?57Կd?%nZJ",+/8?(L9V?g82Lj?pn~k -+lҋ?[2Qk?շ9Jeܯ?XnX+/G?@}Q?:_ -ݿl-z?XnŒ<i+OF0?a4? 'c?i6n—@f+'d?ҹp5?GQԿ5>?nU+<Г?#2Rx?L3؝RӖZ?nE+ t?gh?}8ٿ0s?nš+JOD?Iz?_mvE?@n +d遣?,[v?Q# U8y?Hn-+ĥ&V?n?K/ >ʊ?,ng+8Cj?~?lſx5?ejn±a+s6?,\z?ݘՇ4ۿ?K!0߿E?*n~ +Cd?u? -[PQΉy? Rn+$86d?54??ߐ$忄=?nh|+@}N4?x?74Ƌ7ֿ$?nZ+SgG? Lk?x(?'D?:nnf+\64p??۱FҿB>?nO+tPv?_ag?2=dž㿥Z?tnO+rZm?'ێN?LKwҿP,+?On¢L+ -&?V,X?6ֿO?n0+'G?J0~?O;MɿY?0zn -+lR?MZ7?LU*z୔?nx+mv?fxto?'^ĿH!?dn/dP+0(?v"z?;)[ӿҊ[?Pn@LG+7kD??s{%?RQ;ط?n2+Ҷp?W_Es?w %5 y?0nIJ+pR?ay?ӿvM"n?JnG%+(U8?OB?hb>ٿDg?n8+5 b?}JV{?Hz޿#?8nw+ihYT? ?>Tx:忖8?n§+:uj?hǸ?}.5f_ ?Vnd+đ r?L;?o9ſI$?dfn?a+Wd3?!?v-z˿!>.A?n7+~c=84?f|?M SٿX7P?n­+3ݑ?A`Lc?Kڿ4 8?n¬o+#J?Z،?o!׺ῗF?NnC+_P:b?^H? NFƿA9x{?nnN+:[?d!f?c] Ό?t?@nx+\B?t?.]nV濇nM?n+5z?,oC?X)Ŀi,{?bn]+22+3=m4?ΣQc7?fMgP ?2ns/2+nʹ?nʹ?;f;f2+).*W?Gl&=?qq?TnL +C.?5'9?hU33.K?nS+HA!?Rf<3?A{?n+n?Vt]ټ? nk1+DD?.$%ew?Hտ, ?n¨+ 氋?i,?}apݿ<UM?nn+TA?wO?|ۿ -F?nn -+??Nҿ;?n[+1?Q{G|?=ݿjv?nrX+=.?9lcT?!?zq˿΃:? n~ -+Ab2? ?/_ ? - +ܲ٠?D@y=t5?6A%R?J n - 4 -+ҫu7?(&?*͋h?4 n1  +1?(J??E0Gq(#?znƒQ7+++--+-WY+Y-WT+T-WcX+XW-c"+-"czd+dc-z"#+#"-z)+z- q+ )-t+q- +t-! + -"!+!-#"+"-F$#+#-Fe%$+$-eFLN&%+%NF-LeI'&+&Ie-LM( '+'ML-C)(+( -Cvw*)+)w-vCmo+*+*oC-mvk,+++kv-mn-,+,nm-.-+--/{.+.-0x/+/{-10+0x-21+1-n32+2-n43+3-no5f4+4on-6i5+5f-77<o8nQ7z798:;qd ? -Վ?:<8g-?F=·?;8=śN ?iM-?>_.;n=;?(pf?8^19?k@@=n?R=AҴHo ?X&?R B;qN?nA?Csfv|}Sz???Q7y(~Q|?f(yS}???Q(7|Q@f|S???Q 7(QAfS???8n Q!7QBfS???Q"7&QCf&S???Q&#7QDfS???Q$7&QEfS???Q%7;QFf;S???Q;&7QGfS???Q'7;QHfS???Q(7QIfS???Q)7 QJf S???Q *7QKfS???Q+7 eQLfeS???Qe,7QMfS???Q-7eQNfS???Q.7QOfS???Q/7QPfS???Q07QQfS???Q17QRfS???Q27QSfYS???Q37YXQTfVXS???QX47VQUf+S???+`nV Q57+XQVfS???Q67QWfS???Q77QXfdS???Q87dcQYfacS???Qc97aQZfeS???Q:7ecQ[fS???Q;7Q\fS???Q<7Q]fS???Q=7cQ^f cS???Qc>7 Q_fS???Q?7cQ`f!S???Q@7!/Qaf-/S???Q/A7-Qbf0S???QB70/SQcfSS???QSC7QdfS???QD7SQefS???nQE7QffS???QF7 Qgf S???Q G7QhfS???QH7 QifS???QI75Qjf5S???Q5J7Qkf S???QK75 -Qlf  S ???QL7 Q mfS ???QM7 JQnfJ S???QJN7QofKS???QO7KJQpfS???QP7QqfS???QQ7QrfS???nh{QR7j Qsfhj!"S???QjS7h#Q!tf9$%S"???QT79!j8&Q$uf68!'(S%???Q8U76$)Q'vf$*+S(???QV7'8,Q*wf'-.S+???QW7*/Q-xf*01S.???QX7-2Q0yf-34S1???QY705Q3zf067S4???QZ738Q6{f39:S7???Q[76;Q9|f6<=S:???Q\79>Q<}fO9?@S=???Q]7O<NAQ?~fLN<BCS@???QN^7L?DQBfP?EFSC???Q_7PBNIGQEfGIBHISF???QI`7GEJQHfJEKLSI???Qa7JHIMQKf%HNOSL???Qb7%K$PQNf"$KQRSO???Q$c7"NSQQf&NTUSR???Qd7&Q$VQTfQWXSU???Qe7TYQWfTZ[SX???Qf7W\QZfW]^S[???Qg7ZN_Q]fNZ`aS^???QNh7]bQ`f]cdSa???Qi7`NeQcf`fgSd???Qj7chQffcijSg???Qk7fkQifflmSj???Ql7i@nQlf@iopSm???Q@m7lqQoflrsSp???Qn7o@tQrfouvSs???Qo7r^wQuf^rxySv???Q^p7uzQxfu{|Sy???Qq7x^ }Q{f x~S|???Q r7{Q~f{S???Qs7~ Qf~S???Qt7[Qf[S???Q[u7CQfACS???QCv7A[BQfDBS???QBw7DCQfS???Qx7BQfS???Qy7QfS???Qz7QfS???Q{7QfS???Q|7QfS???Q}7QfS???Q~7,Qfo,S???Q,7omQfkmS???Qm7k,QfpS???Q7pmQf -S???Q7 - Qf  S???Q 7 QfS???Q7 mQf -mS???Qm7 -QfnS???Q7nmQfS???Q7Qf_S???Q7_^Qf\^S???Q^7\:Qf`:S???Q:7`^WQf<WS???QW7<:QfXS???Q7XWQfS???Q7QfS???Q7QfS???Q7QfS???Q7QfS???Q7QfS???n«8Q7Qf8S???Q787Qfw7S???Q77wvQfvS???Qv77QfS???Q7vQfS???Q7}Qf}S???Q}7Qf~S???Q7~}QfS???Q7QfS???Q7QfS???.n?Q7Qf?S???Q7?>Qf<>S???Q>7< Qf@ - S???@4n<iyQ7@> Q -fi S ???Q7i -hQ ffh -S???Qh7f Qf S???Q7hQfS???Q7QfS???Q7QfS???Q7zQfxz S???Qz7x\!Qf{\"#S ???Q\7{z$Q"f%&S#???Q7"\'Q%f"()S&???Q7%*Q(f%+,S)???Q7(L-Q+fL(./S,???QL7+0Q.f+12S/???Q7.L3Q1f.45S2???Q716Q4f 178S5???Q7 49Q7f4:;S8???Q77<Q:f7=>S;???Q7:?Q=f:@AS>???Q7=BQ@f=CDSA???Q7@EQCf@FGSD???Q7CHQFfCIJSG???Q7FKQIfFLMSJ???Q7INQLfIOPSM???Q7LaQQOftaLRSSP???Qa7tOsTQRfqsOUVSS???Qs7qRaFWQUf)FRXYSV???QF7)Us(ZQXf(U[\SY???Q(7XF]Q[fX^_S\???Q7[(`Q^f[abS_???Q7^cQaf^deSb???Q7afQdfaghSe???Q7diQgfdjkSh???Q7gZlQjfZgmnSk???QZ7joQmfjpSn???Q7mZqQfmrsSp???QrftuSs???Q7rQvQtfQrwxSu???QQ7tyQwftz{Sx???Q7wQ|Qzfw}~S{???Q7z*Q}f*zS~???Q*7}Qf}S???Q7*.Qf.S???Q.7QfS???Q7.QfS???Q7RQfRS???QR7QfS???Q7R Qf  S???Q 7 UQfUS???QU7 ~Qf|~S???Q~7|UQfS???Q7~QfS???Q7QfS???Q7Qf2S???Q721Qf/1S???Q17/kQf3kpS???Qk731oQpflovS???QvfqpS???QfvS???Q7q>Qf>S???Q>7Qf,S???Q7,>+Qf+S???Q+7QfS???Q7+QfS???Q7QfS???Q7QfS???Q7QfS???Q78Qf8S???Q873S???RMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMR|MRyMRvMRqMRoMRlMRiMRfMRcMR`~MR]}MRZ|MRW{MRTzMRQyMRNxMRKwMRHvMREuMRBtMR?sMR<rMR9qMR6pMR3oMR0nMR-mMR*lMR'kMR$jMR!iMRhMRgMRfMReMRdMRcMR bM:<@6+:07<+7@-6<i-0:;?+;:<-0g1+10?-g+-g+g-~+-)nQs7Qr7Qt7fRTQfu7RTQv71f/RTQ/w7;9R TQ9x77/R!TQy7<97R"TR#TQq7%RTQ%p7daRTQao7_L%RTQLn7caRTQm7LRTQl7RTQk7RTQj7RTQi7RTQh7sqRTQqg7RTQf7SPqRTQPe7NBRTQBd7RsPRTQsc7qlBRTQlb7usR TQa7lR TQ`7-\R T-Z nQ\_7ZR -TQ^7^\R TQ]7RTQ\7}RTQ}[7{RTQZ7@}RT@n{>nQY7RTRTn~@k+~n{p+no+nk-@~p-o-~ -+{ -- + -]^+-]Z - +^] --]- n + Zn-m  + --mtu _ + m_-t;mq \ + ut\-;QtR ` + q;`-Q;N < + RQ<-rQS X + NX-r  + Sr-rs  + -  - + s- -  + - -  + -  + -M 8 + 8-Mbc w + Mw-b&M_  + cb-&bd  + _&-&  + d- + -~-R aMR`MR_M+J?3J?|&?+2?̚|?}D봿8 -G?{+68 jv8?`꯹?XC˿3U^G?{y+ ?KV?BhVsп켼?+ ~?RQ?IYE޿/kL1?R^MR]MR\MR[MRZMRYMRXMRWMRVMRUMRTMRSMRRMRQMRPMROMRNMRMMRLMRKMRJMRIMRHMRGMRFMREMRDMRCMRBMRAMR@MR?MR>MR=MRMR;MR8MR5MR2MR/MR,MR)MR&MR#MR M*  +* h +  + - *h-W  + -W' K + -'W=$  + $WK-='  + '-=#  + =-#  + -#  + #-y{  + {-yv  + v-y7z  + zy-7!  + -77" ! +! 7-7# " +" -7$ # +# 7-IK% 0$ +$ K-IF& -% +% F0-IJ' !& +& JI--( ' +' !-EG) ( +( G-ENB* ) +) B -NEF+ * +* FE-N, + ++ N-- e, +, -?@. a- +- @e-?/1/ d. +. 1a-/?],0 / +/ ,?d-]/01 0 +0 0/-]j2 +1 +1 ]-j3 V2 +2 +-jlm4 Y3 +3 mjV-li5 4 +4 iY-l6 5 +5 l-7 6 +6 -h8 7 +7 -he9 8 +8 e-h: 9 +9 h-; : +: -< ; +; --= < +< --D*> = += *-D-? > +> --D@ ? +? D- A @ +@ - B A +A - UC B +B  -U}D C +C -}U  E D +D  U- }@F E +E }-@  -G F +F  - -@H G +G @-I|I H +H |-IPJ I +I -PI`JK J +J JI-`PpQK +K QP-a`-* 9L + 9-pqL 6M +L 6-pM N +M qp-QpN O +N -Q[O P +O Q-[XQRP Q +P [-X[Q R +Q RX-XR S +R -S T +S -T OU +T O-@U LV +U L-@FV PW +V @P-F@AW GX +W FG-ZFGX JY +X AJ-Z^WY %Z +Y GZ%-^hZ[Z "[ +Z W^"-h^[ &\ +[ [h&-Uh\ ] +\ -U] ^ +] U-OUV^ _ +^ -Oxy_ ` +Va yb n_ VO-Qa A7VTc d yc OV<nb V<cWT?No~?<yb :؏mL?'0J?Qc B7ya we QwC7c f Re SQD7wg Rf SQE7Yh Rg SQYF7 -i Rh SQ -G7Yj Ri SQH7 -k Rj SQI7>l Rk SQ>J70m Rl SQ0K7.>Dn Rm SQDL70o Rn SQM7 D,p Ro SQ,N7b`q Rp SQ`O7`,^r Rq SQ^P7\`(s Rr SQ(Q7*^(t Rs SQ(R7&(u Rt SQS7+(v Ru SQT7LJw Rv SQJU7Hx Rw SQV7MJy Rx SRy TQT@7a z Rd SQ?7gT{ Rz SQg>7]| R{ SQ]=7[Yg} R| SQY<7W]~ R} SQ;7GEY R~ SQE:7A? R SQ?97E R SQ87? R SQ77 R SQ67 R SQ57W R SQW47Z R SQZ37RPW R SQP27Z R SQ17oP R SQo07 R SQ/7qo R SQ.7) R SQ)-7 R SQ,7) R SQ+7 R SQ*7V R SQV)7& R SQ&(7$<V R SQ<'7& R SQ&7"< R SQ"%7 R SQ$7F" R SQF#7{x R SQx"7vF R SQ!7z6x R SQ6 7 R SQ766 R SQ67 R SQ76 R SQ7KH R SQH7F R SQ7JH R SQ7 R SQ7GD R SQD7BM R SQM7FD R SQ7@M R SQ@7 R SQ7@>@ R SQ>71. R SQ.7,\> R SQ\70. R SQ7i\ R SQi7 R SQ 7mki R SQk 7i R SQ 7k R SQ -7 R SQ 7g R SQg7e R SQ7g R SQ7 R SQ7 R SQ7, R SQ,7*C R SQC7, R SQ7C R SQ7 R SQ7 R SQ7T R SQT7| R SQ|7 T R SQ7?| R SQ?7 - R SQ7~? R SQ~7|H R SQH7O~ R SQO7J_H R SQ_7QoO R SQo7az_ R SR SxO`  +` yx-x  + -Z  + -Z   + Z- Z  +  -   + -_  + -_1  + _-1 _.  + 1- 1  + . --    + --ab  +  --a_-`  + ba-_)a\ A + `_A-))_* D + \)D-))&  + *)-)+  + &-KL  + +-KH  + LK-KM + H-M-RMRMRMRMRMR MR -MR MR MR MR -MR MRMRMRMRMRMRMRMRMRMRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLR~LR{LRxLRuLOpSDL/TYSA_COLOURSm???Qg6f5$ b Q371  $ RjLQ 5f13 g Q 74 D3 R LQ 4f4  QD7   R LQ 3fD Q7 D R LQ 2f Q7 U R LQ 1f QU7S g R LQ 0fSU Qg7H GU R LQ /fHg QG7E g R LQ .fEG Q 7 G R LQ -f Q 7  R LQ ,f Q 7  R LQ +f Q -71 / R LQ *f1 Q/ 7  - -R OZQ )f/ -  -Q -7* - -/ -R -PZ* -n -+ Q -(f* -  -Q -7 - - - -R -NZQ - - - - - -Q -d -' -R -o"Pd -(#Q' - -R -T -BandO -AEDT_BODYFlagGroupColor_V1P - - - -QQ - - - - -T -BandP - -(#Q -' - - -R -P -f -hS -???O -SDL/TYSA_COLOUR_2O -AttGS_PS_LayerO  -SDL/TYSA_NAMES -???S -???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???Si???OeAEDT_EntityID_V12-Q7H -Q7H -RISQ74 -R -SQ472 -R -SQ764z -R -SR -SQ7 -R -SQ7 -R -SQ7s -R -SQs73! -R -SQ37s" -R! -SQ73# -R" -SQ7j$ -R# -SQj7<9% -R$ -SQ9753j& -R% -SR& -SQG7' -Q7SG( -Q7G) -R' -bTQ7<* -R) -cTQ<7EC+ -R* -dTQC7A<, -R+ -eTR, -fTQS73- -R( -aTQ37%"S. -R- -`TQ"7 3/ -R. -_TQ7$9"0 -R/ -^TQ971 -R0 -]TQ7 92 -R1 -\TQ7c3 -R2 -[TQc7r4 -R3 -ZTQr7c5 -R4 -YTQ7r6 -R5 -XTQ7jg7 -R6 -WTQg7e8 -R7 -VTQ7i9g9 -R8 -UTQ97: -R9 -TTQ7  9; -R: -STQ 7< -R; -RTQ7= - > -R< -QTQ= -7Q? -R> -PT= -O:nQQ7Ou= -@ -R? -OTQu7QA -R@ -NTQ7uB -RA -MTQ7zwC -RB -LTQw7uD -RC -KTQ7ywE -RD -JTQ7F -RE -ITQ7G -RF -HTQ7H -RG -GTQ7I -RH -FTQ7J -RI -ETQ7YVK -RJ -DTQV7TL -RK -CTQ7XbVM -RL -BTQb7!N -RM -ATQ!7dybO -RN -@TQy7#!P -RO -?TQ7yQ -RP ->TQ7 R -RQ -=TQ7S -RR -?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0008821.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0008821.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ0@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q0&'(F)) * *2 -*+?? +,+? -.Q~?S~?  V/n0+1 234.nQ2+567839+0-4 79-:n.: O:4.gfffff?Q7,542;<9=>043+?+-;>4 nQ;-5-7@>=09-?AB+=0*0=9>B+?4>A-A 6n>+,B-0-Q6*5ACD2E+ -Dn9A ,A1 +??gfffff?1,+gfffff?ifffff?;f;fQD)5+F/6GP5HI(#QF J+DKCLQ/(5KMDNRGP%QKJ/OFPQM'5*OQ/RRNT%*Mn= -+ QOJ*MKSQQ&5TUMVRRy"QT$WXQYQU.HQ'ZRVu"PH[(#Q'/U\RZT\RegionO[AEDT_BODYFlagGroupColor_V1PW]^QQX#_`TaTYRegionP_b(#Q`cXdRaPcJehSd???OeSDL/TYSA_COLOUR_2ObAttGS_PS_LayerO ^SDL/TYSA_NAMEPJfASS???OfSDL/TYSA_COLOURSP???QC!JA6FgSL???Sg???OIAEDT_EntityID_V1REv"R@U%R<w"R8V%J)`CXT;U'P&5h(#T(vacuumOhAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0009574.x_b -BIN000000004785 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009574.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009574.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+(J?_Ljh??G*u?zmB? +,+9y:B?E"3s?zmBF*u? -9y:B?E"3s?  V.n/+0 123 nQ13456728+/-3 689:nQ64431;<8=>/32+?+9 ;>3@-n:3A-0:?ҵp?A@:lҏ!?:ͥ?-9: ^}?jא?@BC9AnQB64@;DC=/>@EFG+=/*/=8CG+>=C89?HE+E9CF-F5nCH,G@/-Q524FIJ1KH Jn>+FL,F0 +^}?jא?zmB?F*u0L,+lҏ!?:ͥ?F*u?zmB?LH0+0:?ҵp?F*uᅨzmBQJ14HMN5O+ -Nn8H QN04+P.JQP4RS(#QP&T+NUMVQ./4UWNXRQh%QU%T.YPZQW.4*Y[.\RXg%*Wn= -+ QY$T*WU]Q[-4^_W`R\p%Q^+ab[cQ_7R['dR`f%PRe(#Q'8_fRdTfCoilOeAEDT_BODYFlagGroupColor_V1PaghQQb*ij^kTcCoilPil(#Qj#mbnRkPmTohSn???OoSDL/TYSA_COLOUR_2OlAttGS_PS_LayerO hSDL/TYSA_NAMEPTpAS]???OpSDL/TYSA_COLOURSZ???QM'THJPIqSV???QI(TF5MrSq???Sr???OSAEDT_EntityID_V1ROi%RKj%?3>H-Q;5496BsRDk%Rsn%R<m%R7l%J)jIb^B_'P&4t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0009588.x_b -BIN000000004789 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009588.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009588.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+4?gjx??\ϗb? -i?=@0A;BCD+- >A3; nQ>54-6<EA@=8-FGB+@0*8@A032+F+F3AG-G HnA+CIB-=C-C5n=GJQ524CKH1LJCI+x?isRE}%Rs|%R?z%R7{%J)lKd`<a'P&4t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0009599.x_b -BIN000000004789 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009599.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009599.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+ `I?Ӊ")??8j@M?Hv? +,+*I?޶ ?8j@MIvԿ - -Ep?VTO?  V.n/01 234 nQ235678390/-4 79:;nQ74542<=9>?/430@+: <?4A-n;4B*I?޶ ?BA;-ʔA? \1?ACD:Bn-:B ?0P4?QC65A<ED>/?AFGH+>/*/>9DH+?>D9:@+F+F:DG-G6nD+,HA/-Q625GIJ2K+ Jn?0G ,G1 +?0P4?Iv?8j@M1L,+ʔA? \1?8j@M?Iv?L01+ -Ep?VTO?IvԿ8j@M?0 -Mn9+LQM050N.JOP5PQ(#QN&R0MSTUQ./5SVMWQJ15+TM6XRO%QT'R+JNIYRX%PRZAQI(RG6T[SY???S[???OZSDL/TYSA_COLOURQS%R.\N]QV.5*\^._RW%*Vn> -+ Q\$R*VS`Q^-5abVcR_%Qa+de^fQb7P^'gRc%PPh(#Q'8biRgTiCoil_2OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfCoil_2Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMES`???S]???SU???OQAEDT_EntityID_V1RK%@4?+-Q<55:7CsRE%Rs%R=%R8%J)mIeaCb'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0009610.x_b -BIN000000004789 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009610.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009610.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+< ?[??бv.?f8uN? +,+M+ ?TcL?f8uN?бv. -M5?.Sµ?  V.n/01 234 nQ235678390/-4 79:;nQ74542<=9>?/430@+: <?4ABn;4B?n?B:;-M+ ?TcL?-AB !MG?w?w ?ACD:-nQC65A<ED>/?AF+G+>/*/>9DG+?>D9:@HF+F:D+-+6nDH GA/-Q625+IJ2KH Jn?0+LQJ15HMN6O0 -Nn9H,LH1+?n?бv.f8uNܿ1L,+!MG?w?w ?бv.?f8uN?,01 +M5?.Sµ?f8uNܿбv.?QN050P.JQP5RS(#QP&T0NUMVQ./5UWNXRQ%QU%T.YPZQW.5*Y[.\RX%*Wn> -+ QY$T*WU]Q[-5^_W`R\%Q^+ab[cQ_7R['dR`%PRe(#Q'8_fRdTfCoil_3OeAEDT_BODYFlagGroupColor_V1PaghQQb*ij^kTcCoil_3Pil(#Qj#mbnRkPmTohSn???OoSDL/TYSA_COLOUR_2OlAttGS_PS_LayerO hSDL/TYSA_NAMEPTpAS]???OpSDL/TYSA_COLOURSZ???QM'THJPIqSV???QI(T+6MrSq???Sr???OSAEDT_EntityID_V1RO%RK%@4?H-Q<55:7CsRE%Rs%R=%R8%J)jIb^C_'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0009621.x_b -BIN000000004789 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009621.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009621.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+su+?G4l??)f?h9;? ++L?{r@}?)f?h9;? ,krW?«(?  V-n./  012 nQ03345617/.-2 5789nQ54320:;7<=.21/>+8 :=2?,n92@9 -x?0M;7?@?9,L?{r@}??AB8@n,8@ @%?+A ?QA63?:CB<.=?DEF+<.*.<7BF+=<B78>GD+D8BE-E4nBGHF?.-Q423EIJ0KG Jn=/ELHEL++@%?+A ?h9;?)fLGH+9 -x?0M;7?)fh9;+/H +krW?«(?h9;ΰ)f?/ -Mn7G+QM03/N-JOP3PQ(#QN&R/MSTUQ-/3SVMWQJ13GTM4XRO%QT'RGJNIYRX%PRZAQI(RE4T[SY???S[???OZSDL/TYSA_COLOURQS%R-\N]QV.3*\^-_RW%*Vn< -+ Q\$R*VS`Q^-3abVcR_%Qa+de^fQb7P^'gRc%PPh(#Q'8biRgTiCoil_4OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfCoil_4Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMES`???S]???SU???OQAEDT_EntityID_V1RK%>2=G-Q:5385AsRC%Rs%R;%R6%J)mIeaAb'P&3t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0009632.x_b -BIN000000004789 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009632.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0009632.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+q!?%mKmU??)[? e\? +,+e:r?;l? e\?)[ -.!ƪ? %?  V/n01, 23-4nQ2356783910-- 79: n4;.{^L?Znm?;:4e:r?;l?.<4 @U.}?L4?<=>:.nQ=65<?@>A0B<C+D+: ?B-<;nQ?55:7=EBA>9:FGC+A0*9AB0-31F+F-BG-G HnB1+IC:>+-+6n>G Q625+JH2KP5LM(#QJ(N+6OPQH15GOQ6RRK%QO'NGHSJTQQ051S/HURR%1 -Qn9GVQS&N1QWOXQ//5WYQZRU%QW%N/[S\QY.5*[]/^RZ%*YnA -+ Q[$N*YW_Q]-5`aYbR^%Q`+cd]eQa7L]'fRb%PLg(#Q'8ahRfThCoil_5OgAEDT_BODYFlagGroupColor_V1PcijQQd*kl`mTeCoil_5Pkn(#Ql#odpRmPoNqhSp???OqSDL/TYSA_COLOUR_2OnAttGS_PS_LayerO jSDL/TYSA_NAMEPNrAS_???OrSDL/TYSA_COLOURS\???SX???V1I+{^L?Znm? e\)[?IGV,+!ƪ? %?)[ e\,I +@U.}?L4?)[? e\?ST???SP???OMAEDT_EntityID_V10A9>D+D<0-Q745-2?sRE%Rs%R@%R8%J)lJd`=a'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0011298.x_b -BIN000000154880 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0011298.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0011298.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  -    @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZDS@@OSDL/TYSA_DENSITYP !(#TUNIT=mmO!AEDT_EntityName_V1P"#(#S{Gz?O#AEDT_ExtentScale_V1Q$%&F'' (  -t()+Z,M|O?.2y>?YY? r *a;F?a;F?  V p+,- nQ+. /01, 2(+-k02 3*nQ0.-+452-,(6-3f47-89n*m-9 Z,M|O?.2y>?9h3:*XW?K5?:c8;9'p p`?e-?8a<=3>:n;^>?:Sh?z$?>\@A8B;n?YBC;`VSq? C?BWDE>F?nCTFG?tuy?m ?FRHIBJCnGOJKC]]'?c ?JMLMFNGnKJNOG_>+?~iR3q?NHPQJRKnOERSK[??RCTUNVOnS@VWOx`F?'?V>XYRZSnW;Z[S.t?F/@|?Z9\]V^Wn[6^_W!&??^4`aZb[n_1bc[ yA?5?b/de^f_nc,fg_PYg?dd?f*hibjcng'jkc?Dak ?j%lmfngnk"nogn\k?C/?nUW?K&?n?_??n%? g?oc?nD{n?* -?nbv?]?nE~?%?n=U?s -?n -p+?tO?naq? -r?n1I?) l?nF9?oH?n`!?!?n| ?=>?n 4{? ɯ?nO:>???n5"?ua?n}>?eX(?{nxq1jj?Ձ9?vnsI?q -?qnns?NGhx?lnip? o?gndrg? Yie?b  -n_ - BH?Y\? -]  n ZHTN -?t5S?X - nU I?GXpI?SnP^x?u@?NnK!?*7?InFr(?sk-?D !"nA"#Ls0?f$?"?$%&n#<&'x7?0?&:()"*#n'7*+#"??:S%-?*5,-&.'n+2./'!q'F?H'?.001*2+n/-23+-=N?z/2k?2+45.6/n3(67/oU?9$7?6&892:3n7#:;3t\?@-:R?:!<=6>7n;>?7Ad?a-?>@A:B;n?BC;dk?6ۙ?BDE>F?nCFG?7uVs?4UQ?FHIBJCnGJKCqN[z?c?J LMFNGnK -NOGY?iotx?NPQJRKnORSK`T?Ze?RTUNVOnSVWOΉCM?9R?VXYRZSnWZ[S=̔?:5??Z\]V^Wn[^_W' ؞?k+?^`aZb[n_bc[)?jR٫?bde^f_ncfg_Q?'tr?fhibjcngjkci솴?00?jlmfngnknogZA?*?npqjrknorskY?It?rtunvonsvwoPq ?<@?vxyrzsnwz{sTI1?f=?z|}v~wn{~w,P?~?~z{n{Mok?=c~?~n? m5j?n?[2qp+W?n?vC?nYm?23(0?n-0?cÜ?n- ?x - ?n:8?Vr?nTʲ?S -b?n$?{m-?nsx}%?Ѫ?n蔲f,?Ϧ?n֊J3?d?n Ep*:?QaW?n kA?"OMk?n~G?qbW?|ny'N?C?wntzU? Ez0?rno{w:C\?;M<?mnj+!c?gSW?hneei?kk?cn`lp?eWy?^n[m7w?Z?YnV:oX}? ?TnQ?6g!?OnL= -=?ht?JnGhd?vxc|?EnBD,?klLh?@n=;_?1/T?;n8@c?ɭ @?6n3[]??U+?1n.,Nʲ?K?,n)H.R?U}?'n$wԿ?G.SA?"  -n -  3R?a? -  n |W?am? - n @?J&i?n?xy?n D?Ќ.? n{'?}c\u? !"n"# $,.?!֥`?"$%&n#&'CX>?L?&()"*#n'*+#~WK˖?ĭd8?*,-&.'n+./'L?pv#?.01*2+n/23+N^8?$?245.6/n367/$ ?rT?6892:3n7:;3Aq?b:C?:<=6>7n;>?710?^?>@A:B;n?BC;8B?'?BDE>F?nCFG?)ȷx%?,Z?FHIBJCnGJKCj+? )蹓?JLMFNGnKNOGѨjP1??NPQJRKnORSK2l:g7?6hj?RTUNVOnSVWOa">?l ZU?VXYRZSnWZ[S,#AD?^p@?Z\]V^Wn[^_W͖ZJ?AHB,?^`aZb[n_bc[ -oP?t$B?bde^f_ncfg_UV?з?fhibjcngjkcmF\?Ts?jlmfngnknog'b? +?npqjrknorskkIcjh?^Eaz=?rtunvonsvwo*n?U^?vxyrzsnwz{s[t?=z?z|}v~wn{~wnK -yz?G萅?~z{n{\g?a壡p?~nsMbP?ܬ[?nM=4?`F?}nzhN?`ֲ1?xnum? ?snpoXĝ?3:?nnkQ?|?inf`?Mr}?dna ?D4?<n9G&>?ab;?7n4δG?G#o ?2n/w6? ɳ1?-n*(m???(n%U??#n fY? Xo#?ne? ?n- 9~?AG:U?nfx?0is?n xh?0Y Hs^? -n?F|3?nAB離?4,?nELG$?T#"r?n1"Z)?S?nIA:.?S?n23?Ҽ?n΋I9?1(!?  -n - ԘZ>?)Z? -  n eC?\ۆ? - n v^ I?0q?n|xAN?rф[?nI5sS?tE?nX?0? !"n"# ]?y V?"$%&n#&' -K\b?d?&()"*#n'*+#~7h?9$?*,-&.'n+./'FNm?$?.01*2+n/23+Q1r?$ h0?245.6/n367//@?w??4Z?6892:3n7:;3&H|?GЀ?:<=6>7n;>?7dmK?8?>@A:B;n?BC;J?%k?BDE>F?nCFG?d>.D?\dU?FHIBJCnGJKCf/8?y??JLMFNGnKNOGi'?]7N)?NPQJRKnORSK3;?LU`?RTUNVOnSVWOna? -?V~XYRZSnW{Z[Smjף?Ⱥ?Zy\]V^Wn[v^_W?T?'D?^t`aZb[n_qbc[?/?bode^f_nclfg_kX?3?fjhibjcnggjkczN$?|Ӝߏ?jelmfngnkbnogL=?y?n`pqjrkno]rsky]?|"c?r[tunvonsXvwo1L h?ȑM?vVxyrzsnwSz{sM?\ӭo7?zQ|}v~wn{N~w|? G!?~Lz{nI{7Tr}?rj ?G~nDE7$?Mԕ?Bn?P8??jrn?=n:fed?A2?8n5E^?\:C?3n0W+?W Y8?.n+ؒ?²b?)n&Ǒ8?'Pyso?$n!zYw(?ʁ%Y?n??B?nMY`?},?nܑ? -F#?n =| -?F'2?"$%&n#|&'ZΜ?D{1dp?&z()"*#n'w*+#w -}m?Y?*u,-&.'n+r./'?8?֑B?.p01*2+n/m23+[3?bR+?2k45.6/n3h67/ ?}?6f892:3n7c:;3vW{?jR?:a<=6>7n;^>?7A()1?"}?>\@A:B;n?YBC;?B?BWDE>F?nCTFG?6V[?ܡ#r?FRHIBJCnGOJKC[du3? BE?JMLMFNGnKJNOGF8Ԧ?/?NHPQJRKnOERSKŦo?@G?RCTUNVOnS@VWOq?A]X?V>XYRZSnW;Z[SQu?hc?Z9\]V^Wn[6^_WJ!?07Ng_?^4`aZb[n_1bc[$7৸?1Cd1?b/de^f_nc,fg_2(?u^e[?f*hibjcng'jkcߣ?iūK?j%lmfngnk"nog?{5?n pqjrknorskAm?)y?rtunvonsvwox?qFJ?vxyrzsnwz{ss^[??z|}v~wn{~w?)~J?~ z{n {Ue?B3f?~ngPdl??*?nyX?1?c?n'(?5?njM?xl)mQ?nGO?fX?n̺?sEE?n/0"?d`A|?n#.?EM?nsSX? -n?nj}?I?nL依?z?n[o"??j?nk?de?n??}] 6?n/?qkh?nI?*?n& ?I9?n!; ?_ 5|?n?1~4?[TM?nCz;?7H?nL -ձ?z?n%?ܼ?ngt?dc'?ntN?Ifd?n'm!!?T$5?n5D#?CM?ndh9&?1?n}p|)?L10?{nx_h:,?9Uz?vnsVg.?uK?qnnN1?e B?lniWj+@T4??gnd}Y|6?]޸?b  -n_ - GkFB9?n ~Cŏ? -]  n Z^<?n1?SnP@fA?}-H?NnK^ C?z^?InF_2{F?"?D !"nA"#H?(du?"?$%&n#<&':!yK?iF?&:()"*#n'7*+#(ҌM?I {?*5,-&.'n+2./'HbP?٤]?.001*2+n/-23+R?y:?2+45.6/n3(67/Gf4U?M?6&892:3n7#:;3W?@-Z?:!<=6>7n;>?7NHY?%+?>@A:B;n?BC;a\G\?o?BDE>F?nCFG?^?c~ K?FHIBJCnGJKCPX. -`?N ?J LMFNGnK -NOGf"(c?n?NPQJRKnORSKBhe?y;??RTUNVOnSVWO+Rg?9{ܔ=?VXYRZSnWZ[Skii?= -?Z\]V^Wn[^_Wl?pt?^`aZb[n_bc["2n?A(H?bde^f_ncfg_Vp?GxR?fhibjcngjkc ur?/#?jlmfngnknog?t?[.?npqjrknorsk+Gv?즤?rtunvonsvwoḺx?8._?vxyrzsnwz{s[̺z?He?z|}v~wn{~wF|?'ď6?~z{n{iۃ<~?p ?~n:?p!?n+?З2?nE?Gx?n}S|?NI?n{(_?ό?n;;?: Կ?n&"9?k!t?n!?&?nu&?b?nvw?[}mW?nW8?7?n3???n -?&S9?n [?$lڼ?n~>?X {?|nybh?rY?wntDK?= j?rnoT`v?.]?mnjWCQWz? M[?hne- ?_V^2?cn`n\5?k>?^n[?O?ݏ+E߹?YnVȡIܕ? ?TnQC?QA ?OnL}I?A?JnG[ӥ)?pG+(a?EnBknzX?郓?@n=܈;??;n8Ml?šZB?6n3 p?ͤj?1n.±?*  ?,n)<6?k_#?'n$[QU?)S7õ?"  -n - ?c薵?c? -  n [jҶ?e9? - n i?Sy?n~ -9?OD?n Nqd?_? nlI*?1? !"n"#(?d@K%?"$%&n#&'*tĽ?Vx)uŲ?&()"*#n'*+#~$=پ?U˚e?*,-&.'n+./'Pq?[Iݼ?.01*2+n/23+B!?Kڥ?245.6/n367/=(?/E?6892:3n7:;3?X ?:<=6>7n;>?791z??>@A:B;n?BC;o??9-&?BDE>F?nCFG??JYq?FHIBJCnGJKC1/?u:̮?JLMFNGnKNOGdS6? ?NPQJRKnORSK/v?>;QL?RTUNVOnSVWOM?6;B?VXYRZSnWZ[Sba?Ss̫?Z\]V^Wn[^_W7? ms ?^`aZb[n_bc[]}:? s^L?bde^f_ncfg_ƌEs?S C?fhibjcngjkc֒ع.?x#̨?jlmfngnknogHY? -[ ?npqjrknorskݔ?_AK?rtunvonsvwo{]??)բ?vxyrzsnwz{s?@m˥?z|}v~wn{~w~k&?!@c4 ?~z{n{ ?HQ?J?~nOka?n?n>&SA?elʢ?}nzqV=?P" -?xnuXM?y`gYI?snpc;?"-ۀ?nnkD?v)U?infL9Զ?ޫ?dnaK!#? r鐜?_n\΅?E_)?ZnW O?ԊVc?UnR6hI??PnM3U?qlȍ?KnH;?< ?FnC-kl=?n}?An>mnh?r|; ?<n9w?Y?7n4R?H?2n/ 3?w?-n*X \c???(n%'Z?F4b ?#n .b?o݁ ?n7&"?09~?n/{;z ?n +n?@89 =h@9A+L!#? r鐜?\[%=?@eBnCD<= AmD=E+L9Զ?ޫ?nO?DjFnGH@A ErHAI+D?v)U?N! TS?HoJnKLDE IwLEM+c;?"-ۀ?GF(&%?LtNnOPHI M|PIQ+XM?y`gYI?[>ޥ&SA?elʢ?U\۸2?XZn[\TU Y\U]+Oka?n?hR*d(Kd~?\^n_`XY ]`Ya+ ?GQ?J?r[fu{?`bncd\] ad]e+~k&?!@c4 ?Łc 8z?dfngh`a ehai+?@m˥?sYrP֌8?hjnklde ilem+{]??)բ?3_J`6{h?lnnophi mpiq+ݔ?_AK?5NT?prnstlm qtmu+HY? -[ ?w !;QL?K;l[K^s?n“ +dS6? ?~ Β ղZ?n— +1/?u:̮?ٵK׼?n› +?JYq?#Ҫ³;4?nŸ +n??9-&?qW9/U e?n£ +91z??oK|t4?n§ +?X ?s '?n« +>(?/E?rSƝLb?n¯ +A!?Kڥ?);}(x?n³ +Qq?[Iݼ?l7/,?n· +~$=پ?U˚e?P@{?n» +)tĽ?Vx)uŲ?ȃx__?n¿ +(?d@K%?H&﷿}\?n  +lI*?1?9:er? -n +Nqd?_?G\ܸOG?n +~ -9?OD?.RN?n +i?Sy?}ɹwIOU?n !+[jҶ?e9?]@0?n &+?c薵?c?KRfG?#n ++[QU?)S7õ?y-?(n 0+<6?k_#?4`v z?-n 5+±?*  ?`&~?2n :+ p?ͤj? U4?7n ?+Ml?šZB?mP-,?<n D+܈;?? ەK}>cCx?An I+knzX?郓?ESn󽿔3㡽?Fn N+[ӥ)?qG+(a?B+i/ ?Kn S+}I?A?j^} -྿ @3?Pn X+C?QA ?]VNV)pd?Un ]+ȡIܕ? ?ua̿@LUH?Zn b +?O?܏+E߹?[ `!??_ -n    g  +n\5?k>?kYx\LKUͼ? dn   l +- ?_V^2?Pb%?in   q +WCQWz? -M[?RoԜd?nn v+U`v?.]?ҩ0 Z?sn {+DK?> j?&DHZ?xn   !+bh?rY?  ? }"n#$ !$%+>?X {??s?$&n'( ! %(!)+ [?$lڼ?ECcѮ?(*n+,$% ),%-+ -?%S9?84¿Xc?,.n/0() -0)1+3??? - o¿Ig?02n34,- 14-5+W8?7?¿W'f\l?46n7801 5819+vw?[}mW?6ن¿n?@89 =@9A+!?&?{7V[ÿvɡ?@BnCD<= AD=E+'"9?k!t?7ÿݘu?DFnGH@A EHAI+;;?: Կ?#sÿۜ:?HJnKLDE ILEM+{(_?ό? Ŀ?LNnOPHI MPIQ+|S|?NI?ݕ=FĿFY?PRnSTLM QTMU+E?Gx?dĿe0?TVnWXPQ UXQY+*?ї2?:G?^Ŀoʓ?XZn[\TU Y\U]+:?p!?RHP%ĿCT]?\^n_`XY ]`Ya+iۃ<~?p ?#9P1ſǺ?`bncd\] ad]e+F|?'ď6?lſn?dfngh`a ehai+[̺z?He?_ſxe?hjnklde ilem+Ḻx?8._?y@DſKqd?lnnophi mpiq+*Gv?즤?vGƿwՄ?prnstlm qtmu+?t?[.?`oWƿ!??tvnwxpq uxqy+ ur?/#?rBƿ~¢?xzn{|tu y|u}+Vp?GxR??$`ƿx۸ |?|~nxy }y+!2n?A(H?nSǿ~Tz?nƒ|} }+l?pt?%TAǿ6"w?n‡ +jii?> -?~|ǿt?n‹ +,Rg?8{ܔ=?EEw ǿ2+r?n  +Bhe?y;??ēǿvh -)fo? n“ +f"(c?n?,ȿIl?n— +QX. -`?N ? TĔfȿLȗ i?n› +^?c~ K?=\ ȿf?nŸ  +a\G\?o?Y@ȿ^7 -d?n£ %+NHY?%+?٦aɿg #a?"n§ *+W?@-Z?iVPɿ)l4^?'n« /+Gf4U?M?p幊ɿ̮?[?,n¯ 4+R?x:?nlRɿI`BX?1n³ 9+HbP?٤]?@@l*oɿsk?U?6n· >+(ҌM?I {?@t`9ʿy6R?;n» C+:!yK?iF?p tʿo%O?@n¿ H+H?(du?YZTʿV(L?En M+_2{F?"?jʿH?Jn R+^ C?z^?E"˿?zE?On W+@fA?~-H?;<]˿YB?Tn \+ri>?n1?B25˿ l??Yn a+^<k~пbR?0 2 n3 4 , -  1 4 - 5 +L依?z? 5п( ?4 6 n7 8 0 1  5 8 1 9 +j}?I?&п ?8 : n; < 4 5  9 < 5 = +sSX? -n?'`п yX%?< > n? @ 8 9  = @ 9 A +#.?EM?ǔNпH~w6?@ B nC D < =  A D = E +/0"?d`A|?bѿHh@?D F nG H @ A  E H A I +̺?sEE?ą.ѿD?H J nK L D E  I L E M +GO?fX?Em5Kѿ5-^A?L N nO P H I  M P I Q +jM?xl)mQ?$Xgѿ>%%8?P R nS T L M  Q T M U +'(?5?#}ѿI'?T V nW X P Q  U X Q Y +xX?1?c?Q;-ѿ?X Z n[ \ T U  Y \ U ] +hPdl??*? ^νѿf.Z?\ ^ n_ ` X Y  ] ` Y a +Ue?A3f?kѿ:Ϻ?` b nc d \ ]  a d ] e +?)~J?ѿ/(/?d f ng h ` a  e h a i +s^[??iΘҿpmr?h j nk l d e  i l e m +x?qFJ? )0ҿlg:?l n no p h i  m $p i q +Am?)y?Lҿq?p !r ns t l m  q )t m u +?{5?={@iҿ ]D -?t &v nw x p q  u .x q y +ߣ?iūK?Y Ņҿi?x +z n{ | t u  y 3| u } +2(?u^e[?nm5[iӿ5~? S n›   [ +6V[?ܡ#r?Żӿ|y? X nŸ   ` +?B?>$ӿ:)u? ] n£   e +A()1?"}?Yoӿe*'2?#=[Կ|`O?  n    +y?,t?치ԿGJ?  n    + -v?/Pô?s_Կ/Y -F?  n    +,?%r?ry?Կ<4A?  n    +9n? uE?7ԿҩVֿ #? - -n - - - -  - - - -+ O*$?gk9y?S3ֿdl? - -n - - - -  - - - -+?bu-?N0׿̶? - -n - - - -  - - -! -+`1?P"?11M$׿qL? -" -n# -$ - - - ! -$ - -% -+Cm(-??.-@׿!JkN?$ -& -n' -( - -! - % - -( -! -) -+%8?H??s![׿c?( -* -n+ -, -$ -% - ) -, -% -- -+HTj?jb?w׿TKo?, - . -n/ -0 -( -) - - -0 -) -1 -+=| -?F -n? -@ -8 -9 - = -(@ -9 -A -+zYw(?ʁ%Y?.ؿD"Щ?@ -%B -nC -D -< -= - A --D -= -E -+Ǒ8?'Pyso?9epؿpV -nW -X -P -Q - U -FX -Q -Y -+O8??jrn?J-$ؿE.؇?X -CZ -n[ -\ -T -U - Y -K\ -U -] -+E7$?Lԕ?|ؿB#?\ -H^ -n_ -` -X -Y - ] -P` -Y -a -+7Tr}?sj ?ؿQ|?` -Mb -nc -d -\ -] - a -Ud -] -e -+|? G!?ؿ[;v?d -Rf -ng -h -` -a - e -Zh -a -i -+M?\ӭo7?2Lٿq4p?h -Wj -nk -l -d -e - i -_l -e -m -+1L h?ȑM?Eq R0ٿ'j?l -\n -no -p -h -i - m -dp -i -q -+x]?|"c?YKٿkd?p -ar -ns -t -l -m - q -it -m -u -+M=?y?X+ gٿ:{_?t -fv -nw -x -p -q - u -nx -q -y -+zN$?|Ӝߏ?|_ٿj^&Y?x -kz -n{ -| -t -u - y -s| -u -} -+lX?3?{GٿD3S?| -p~ -n - -x -y - } -x -y - -+?/?MٿADI:M? -u -nƒ - -| -} -  -} -} - -+?T?(D?w0;ٿ3[Q:G? -z -n‡ - - - -  - - - -+mjף?Ⱥ?CyٿM4A? - -n‹ - - - -  - - - -+na? -?  -ڿǑ(;? - -n - - - -  - - - -+3;?LU`? }%ڿ5? - -n“ - - - -  - - - -+i'?]7N)?$UAڿq.? - -n— - - - -  - - - -+f/8?y??H'9\ڿI(? - -n› - - - -  - - - -+d>.D?\dU?ȰtZwڿD3U"? - -nŸ - - - -  - - - -+J?%k?Ϲvڿ7{? - -n£ - - - -  - - - -+dmK?8?1ڿRZ? - -n§ - - - -  - - - -+&H|?GЀ?Uڿ !? - -n« - - - -  - - - -+/@?w??4Z?]ڿ8 ? - -n¯ - - - -  - - - -+Q1r?$ h0?:ڿeD? - -n³ - - - -  - - - -+FNm?$?5 [=ۿER? - -n· - - - -  - - - -+~7h?9$?*a4ۿ2!? - -n» - - - -  - - - -+ K\b?d?Oۿ(?? - -n¿ - - - -  - - - -+ ]?y V?%jۿ>GK? - -n - - - -  - - - -+X?0?i[[mۿ? - -n - - - -  - - - -+I5sS?tE?Nۿ|? - -n - - - -  - - - -+|xAN?rф[?c=*ۿyj ? - -n - - - -  - - - -+v^ I?0q??)Z?ls ܿV֒? - -n - - - -  - - - -+΋I9?1(!? [&ܿo? - -n - - - -  - - - -+23?Ҽ?fJAܿKx? - -n - - - -  - - - -+IA:.?S?;O9[ܿ? - -n - - - -  - - - -+1"Z)?S?]vܿjWE? - -n - - - -  - - - -+ELG$?U#"r?u+ܿnk;? - -n - - - -  - - - -+AB離?3,?ӴQ=Ыܿ_G? - -n - - - -  -  - - -+d>?F|3?P1nܿ4!K? - -n - - - -  - - - -+?`b;?c^7ݿq[-J? =" n# $    ! E$  % + ?D4?_K޿x z4C?$ B& n' ( !  % J( ! ) +dvi?nlTQI?99޿T4 n? @ 8 9  = h@ 9 A +?l ZU?kŌS࿣5?  n    +2l:g7?6hj?)Z`࿐i}?  n“    +ѨjP1??_Z$m࿉Vv?  n—    +j+? )蹓?-KyOun?  n›    +)ȷx%?,Z?D54ag?  nŸ    +8B?'?q'ltU^L_?  n£    +10?^?A'IxmW?  n§    +Aq?b:C?}߬ O?  n«    +$ ?rT?8,$ H?  n¯    +N^8?$?6D[XA@?  n³    +L?pv#?`OL_o8?  n·    +~WK˖?ĭd8?ò3}\0?  n»    +CX>?L? - @d(?  n¿    + $,.?!֥`?_] ?  n    +{'?}c\u? d7/9? - n    +D?Ќ.?RG[7?  n    +?xy?ZGTeX - ?  n    +@?J&i?5DǫF+ -X?  n   ! +|W?am? \K7늟 ?  n   & + 3R?a?1!0bDxX? # n   + +wԿ?G.SA?^WP-)\? ( n   0 +H.R?U}?"]n]ῧ(F? - n   5 +,Nʲ?J?Z{hbi]? 2 n   : +[]??U+?>@lvT? 7 n   ? +@c?ɭ @?uVl? < n   D +;_?1/T?Zgxg? A n   I +D,?klLh?e~̛ko8? F n   N +hd?vxc|?i9Q? K n   S += -=?ht?(ῆɧ? P n   X  +?6g!?ܨ |#6? U n    ]  +:oX}? ?mmk῝s RB? Z n     b  +m7w?Z?ߘ#RKR? _ - n     g  +lp?eWy?M$$sɑ? d n     l  +ei?kk?'{῀NM~? i n    q  ++!c?hSW? u? n n      v   +{w:C\?;M<?v% #B݌m? s n      {   +zU? Ez0?%}g*,$e? x n       ! +(N?C?pr#rµ\? }" n# $    ! $  % +G?qbW?y/ӣAT?$ & n' ( !  % ( ! ) + kA?!OMk?m@#0 n? @ 8 9  = @ 9 A +Uʲ?S -b?帔W⿆u?@ B nC D < =  A D = E +:8?Vr?᤬z⿥?D F nG H @ A  E H A I +- ?x - ?x.n`,?H J nK L D E  I L E M +-0?cÜ?E/X⿡Y?L N nO P H I  M P I Q +Xm?23(0?sZw̵⿣pox?P R nS T L M  Q T M U +?vC?_b?T V nW X P Q  U X Q Y +?[2qp+W?/Gl⿙1W?X Z n[ \ T U  Y \ U ] +? m5j?ȥy`?\ ^ n_ ` X Y  ] ` Y a +Mok?E㿘p?  nƒ | }    } +' ؞?l+? AՆQ`t?  n‡    +<̔?:5??Oa]sj?y?  n‹    +ΉCM?9R?c>;i p?  n    +`T?Ze?:Lu㿋`g?  n“    +Y?iotx?~F$ +"??:S%-?hy~ ? ; n»   C +x7?0?kx8? @ n¿   H +Ls0?f$?l_jx? E n   M +r(?sk-? -^ @c&? J n   R +!?*7?Ϲ̯? O n   W +^x?v@?5̌$I?eX(?xg俇\8?  n    +5"?ua?#kz<~?  n    +O:>???RRbϢԧ u?  n    + 4{? ɯ?sv,/Tpk?  n     +| ?=>?{)ita?  n      +`!?!?R -MA@^%X?  n       +F9?oH?Sv23MHxN?  - n       +1I?( l?b[p&D?  n       +aq? -r?俁 ;?  n      + -p+?uO?,Z俋z] Q1?  n         +=U?s -?RMO'ю'?  n         +E~?%?viMjd{Y?  n       ! +bv?\?`w? " n# $    ! $  % +D{n?* -?ʹ;( -?$ & n' ( !  % ( ! ) +%? g?oc?W1K#*HGQ?( * n+ , $ %  ) , % - +?_??U3~L5Ru?, . n/ 0 ( )  - 0 ) 1 +UW?K&?KMq@F|ѓ?0 2 n3 4 , -  1 4 - 5 +Eq!O?R>C/?_K -έ!?4 6 n7 8 0 1  5 8 1 9 +pG? 7?,VTE?8 : n; < 4 5  9 < 5 = +\L??lD;@?a:>?< > n? @ 8 9  = @ 9 A +O mx7?7dI?^gl’?@ B nC D < =  A D = E +jxz/?GR?w忐4޺?D F nG H @ A  E H A I +G5U&?\x[? -~%忨Aް?H J nK L D E  I L E M + - ?HXFЫd?N j1צئ?L N nO P H I  M P I Q +7™?gm?@忔͜?P R nS T L M  Q T M U +*T?bpv?BJ?T V nW X P Q  U X Q Y +#T~?SM?o!?X Z n[ \ T U  Y \ U ] +HځW?C&?%KԹb+~?\ ^ n_ ` X Y  ] ` Y a +U,?3e?0<>? ot?` b nc d \ ]  a d ] e +&R?ͺ̙?ZFyC܈Kj?d f ng h ` a  e h a i +b???q"`?h j nk l d e  i l e m +S%?Pyc?9k忁zUU?l n no p h i  m $p i q +/ W?ET)?mtEn - K?p !r ns t l m  q )t m u +n\k?+?iR3q?Q? N n—   V +]]'?c ?_-8[A&? S n›   [ +uuy?l ?Cyhfe@? X nŸ   ` +`VSq? C?Lq? ] n£   e +Sh?z$?bj{I$W\? b n§   j )+'p p`?e-?<;.? g nª  )o -+XW?K5?"e̐?.   Q  S ???Q ?.   Q  S ???Q @.   Q  S ???Q A.   Q  S ???Q B.   Q  S ???Q C.   Q  S ???Q D.   Q  S ???Q E.   Q  S ???Q F.   Q  S ???Q G.  ~  Q | ~ S ???Q~ H.|  z  Q x z S ???Qz I.x ~ v  Q t v S ???Qv J.t z r  Q p r S ???Qr K.p v n  Q l n S ???Qn L.l r j  Q h j S ???Qj M.h n f  Q d f S ???Qf N.d j b Q ` b S???Qb O.` f ^ Q \ ^ S???Q^ P.\ b Z Q X Z  S???QZ Q.X ^ V  -Q T V   S ???QV R.T Z R  Q  P R S ???QR S.P V N Q L N S???QN T.L R J Q H J S???QJ U.H N F Q D F S???QF V.D J B Q @ B S???QB W.@ F > Q < > S???Q> X.< B : Q 8 :  !S???Q: Y.8 > 6 "Q  4 6 #$S!???Q6 Z.4 : 2 %Q# 0 2 &'S$???Q2 [.0 #6 . (Q& , . #)*S'???Q. \., &2 * +Q) ( * &,-S*???Q* ].( ). & .Q, $ & )/0S-???Q& ^.$ ,* " 1Q/ " ,23S0???Q" _. /&  4Q2   /56S3???Q `. 2"  7Q5   289S6???Q a. 5  :Q8   5;<S9???Q b. 8  =Q;   8>?S<???Q c. ;  @Q>  ;ABS????Q d. > - CQA   - >DESB???Q - e. A  FQD   AGHSE???Q f. D -  IQG  DJKSH???Q g. G LQJ  GMNSK???Q h. J OQM  JPQSN???Q i. M RQP  MSTSQ???Q j. P UQS  PVWST???Q k. S XQV  SYZSW???Q l. V [QY  V\]SZ???Q m. Y ^Q\  Y_`S]???Q n. \ aQ_  \bcS`???Q o. _ dQb  _efSc???Q p. b gQe  bhiSf???Q q. e jQh  eklSi???Q r. h mQk  hnoSl???Q s. k pQn  kqrSo???Q t. n sQq  ntuSr???Q u. q vQt  qwxSu???Q v. t yQw  tz{Sx???Q w. w |Qz  w}~S{???Q x. z Q}  zS~???Q y. } Q  }S???Q z.  Q  S???Q {.  Q  S???Q |.  Q  S???Q }.  Q  S???Q ~.  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  ~ Q | ~ S???Q~ .|  z Q x z S???Qz .x ~ v Q t v S???Qv .t z r Q p r S???Qr .p v n Q l n S???Qn .l r j Q h j S???Qj .h n f Q d f S???Qf .d j b Q ` b S???Qb .` f ^ Q \ ^ S???Q^ .\ b Z Q X Z S???QZ .X ^ V Q T V S???QV .T Z R Q P R S???QR .P V N Q L N S???QN .L R J Q H J S???QJ .H N F Q D F S???QF .D J B Q @ B S???QB .@ F > Q < > S???Q> .< B : Q 8 : S???Q: .8 > 6 Q 4 6 S???Q6 .4 : 2 Q 0 2 S???Q2 .0 6 . Q , . S???Q. ., 2 * Q ( * S???Q* .( . & Q $ & S???Q& .$ * " Q " S???Q" . &  Q   S???Q . "  Q   S???Q .   Q   S???Q .   Q   S???Q .   Q  S???Q .  - Q   - S???Q - .   Q   S???Q .  -   Q   - S???Q .   Q -   S ???Q . - Q   -S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q   S???Q .  !Q  "#S ???Q .  $Q"  %&S#???Q . " 'Q%  "()S&???Q . % *Q(  %+,S)???Q . ( -Q+  (./S,???Q . + 0Q.  +12S/???Q . . 3Q1  .45S2???Q . 1 6Q4  178S5???Q . 4 9Q7  4:;S8???Q . 7 <Q:  7=>S;???Q . : ?Q=  :@AS>???Q . = BQ@  =CDSA???Q . @ EQC  @FGSD???Q . C HQF  CIJSG???Q . F KQI  FLMSJ???Q . I NQL   IOPSM???Q . L QQO -  LRSSP???Q . O TQR   OUVSS???Q . R WQU   RXYSV???Q . U ZQX   U[\SY???Q . X ]Q[  X^_S\???Q . [ `Q^  [abS_???Q . ^ cQa  ^deSb???Q . a fQd  aghSe???Q . d iQg  djkSh???Q . g ~ lQj | ~ gmnSk???Q~ .| j z oQm x z jpqSn???Qz .x m~ v rQp t v mstSq???Qv .t pz r uQs p r pvwSt???Qr .p sv n xQv l n syzSw???Qn .l vr j {Qy h j v|}Sz???Qj .h yn f ~Q| d f yS}???Qf .d |j b Q ` b |S???Qb .` f ^ Q \ ^ S???Q^ .\ b Z Q X Z QZ .X ^ V Q T V S???QV .T Z R Q P R S???QR .P V N Q L N S???QN .L R J Q  H J S???QJ .H N F Q! D F S???QF .D J B Q" @ B S???QB .@ F > Q# < > S???Q> .< B : Q$ 8 : S???Q: .8 > 6 Q% 4 6 S???Q6 .4 : 2 Q& 0 2 S???Q2 .0 6 . Q' , . S???Q. ., 2 * Q( ( * S???Q* .( . & Q) $ & S???Q& .$ * " Q* " S???Q" . &  Q+   S???Q . "  Q,   S???Q .   Q-   S???Q .   Q.   S???Q .   Q/  S???Q .  - Q0   - S???Q - .   Q1   S???Q .  -  Q2  S???Q .  -Q3 - -S???Q -. - -Q4 - -S???Q -. - - -Q5 - -S???Q -. - - -Q6 - -S???Q -. - - -Q7 - -S???Q -. - - -Q8 - -S???Q -. - - -Q9 - -S???Q -. - - -Q: - -S???Q -. - - -Q; - -S???Q -. - - -Q< - -S???Q -. - - -Q= - -S???Q -. - - -Q> - -S???Q -. - - -Q? - -S???Q -. - - -Q@ - -S???Q -. - - -QA - -S???Q -. - - -QB - -S???Q -. - - -QC - -S???Q -. - - -QD - -S???Q -. - - -QE - -S???Q -. - - -QF - -S???Q -. - - -QG - -  -S???Q -. - - - Q H - -  S -???Q -. -  - -Q I - - S ???Q -. -  - -QJ - - S???Q -. - - -QK - -S???Q -. - - -QL - -S???Q -. - - -QM - -S???Q -. - - -QN - -S???Q -. - - - QO - -!"S???Q -. - - -#Q!P - -$%S"???Q -. -! - -&Q$Q - -!'(S%???Q -. -$ - -)Q'R - -$*+S(???Q -. -' -~ -,Q*S | -~ -'-.S+???Q~ -.| -* -z -/Q-T x -z -*01S.???Qz - .x --~ -v -2Q0U t -v --34S1???Qv - -.t -0z -r -5Q3V p -r -067S4???Qr - .p -3v -n -8Q6W l -n -39:S7???Qn - .l -6r -j -;Q9X h -j -6<=S:???Qj - .h -9n -f ->Q<Y d -f -9?@S=???Qf -.d -<j -b -AQ?Z ` -b -<BCS@???Qb -.` -?f -^ -DQB[ \ -^ -?EFSC???Q^ -.\ -Bb -Z -GQE\ X -Z -BHISF???QZ -.X -E^ -V -JQH] T -V -EKLSI???QV -.T -HZ -R -MQK^ P -R -HNOSL???QR -.P -KV -N -PQN_ L -N -KQRSO???QN -.L -NR -J -SQQ` H -J -NTUSR???QJ -.H -QN -F -VQTa D -F -QWXSU???QF -.D -TJ -B -YQWb @ -B -TZ[SX???QB -.@ -WF -> -\QZc < -> -W]^S[???Q> -.< -ZB -: -_Q]d 8 -: -Z`aS^???Q: -.8 -]> -6 -bQ`e 4 -6 -]cdSa???Q6 -.4 -`: -2 -eQcf 0 -2 -`fgSd???Q2 -.0 -c6 -. -hQfg , -. -cijSg???Q. -., -f2 -* -kQih ( -* -flmSj???Q* -.( -i. -& -nQli $ -& -iopSm???Q& -.$ -l* -" -qQoj -" -lrsSp???Q" -. -o& - -tQrk  - -ouvSs???Q - . -r" - -wQul  - -rxySv???Q -!. -u - -zQxm  - -u{|Sy???Q -". -x - -}Q{n  - -x~S|???Q -#. -{ - -Q~o - -{S???Q -$. -~ - - -Qp  - - -~S???Q - -%. - - -Qq  - -S???Q -&. - - - -Qr - -S???Q -'. - - Qs  S???Q (.  - Qt  S???Q ).  Qu  S???Q *.  Qv  S???Q +.  Qw  S???Q ,.  Qx  S???Q -.  Qy  S???Q ..  Qz  S???Q /.  Q{  S???Q 0.  Q|  S???Q 1.  Q}  S???Q 2.  Q~  S???Q 3.  Q  S???Q 4.  Q  S???Q 5.  Q  S???Q 6.  Q  S???Q 7.  Q  S???Q 8.  Q  S???Q 9.  Q  S???Q :.  Q  S???Q ;.  Q  S???Q <.  Q  S???Q =.  Q  S???Q >.  Q  S???Q ?.  Q  S???Q @.  Q  S???Q A.  Q  S???Q B.  Q  S???Q C.  Q  S???Q D.  Q  S???Q E.  Q  S???Q F.  Q  S???Q G.  ~ Q | ~ S???Q~ H.|  z Q x z S???Qz I.x ~ v Q t v S???Qv J.t z r Q p r S???Qr K.p v n Q l n S???Qn L.l r j Q h j S???Qj M.h n f Q d f S???Qf N.d j b Q ` b S???Qb O.` f ^ Q \ ^ S???Q^ P.\ b Z Q X Z  S???QZ Q.X ^ V  -Q T V   S ???QV R.T Z R  Q  P R S ???QR S.P V N Q L N S???QN T.L R J Q H J S???QJ U.H N F Q D F S???QF V.D J B Q @ B S???QB W.@ F > Q < > S???Q> X.< B : Q 8 :  !S???Q: Y.8 > 6 "Q  4 6 #$S!???Q6 Z.4 : 2 %Q# 0 2 &'S$???Q2 [.0 #6 . (Q& , . #)*S'???Q. \., &2 * +Q) ( * &,-S*???Q* ].( ). & .Q, $ & )/0S-???Q& ^.$ ,* " 1Q/ " ,23S0???Q" _. /&  4Q2   /56S3???Q `. 2"  7Q5   289S6???Q a. 5  :Q8   5;<S9???Q b. 8  =Q;   8>?S<???Q c. ;  @Q>  ;ABS????Q d. > - CQA   - >DESB???Q - e. A  FQD   AGHSE???Q f. D -  IQG  DJKSH???Q g. G LQJ GMNSK???Qh.J OQM JPQSN???Qi.MRQP MSTSQ???Qj.PUQS PVWST???Qk.SXQV SYZSW???Ql.V[QY V\]SZ???Qm.Y^Q\ Y_`S]???Qn.\aQ_ \bcS`???Qo._dQb _efSc???Qp.bgQe bhiSf???Qq.ejQh eklSi???Qr.hmQk hnoSl???Qs.kpQn kqrSo???Qt.nsQq ntuSr???Qu.qvQt qwxSu???Qv.tyQw tz{Sx???Qw.w|Qz w}~S{???Qx.zQ} zS~???Qy.}Q }S???Qz.Q S???Q{.Q S???Q|.Q S???Q}.Q S???Q~.Q S???Q.Q S???Q.Q S???Q.Q S???Q.Q S???Q.Q S???Q.Q S???Q.Q S???Q.Q S???Q.~Q |~S???Q~.|zQ xzS???Qz.x~vQ tvS???Qv.tzrQ prS???Qr.pvnQ lnS???Qn.lrjQ hjS???Qj.hnfQ dfS???Qf.djbQ `bS???Qb.`f^Q \^S???Q^.\bZQ XZS???QZ.X^VQ TVS???QV.TZRQ PRS???QR.PVNQ LNS???QN.LRJQ HJS???QJ.HNFQ DFS???QF.DJBQ @BS???QB.@F>Q <>S???Q>.<B:Q 8:S???Q:.8>6Q 46S???Q6.4:2Q 02S???Q2.06.Q ,.S???Q..,2*Q (*S???Q*.(.&Q $&S???Q&.$*"Q "S???Q". &Q S???Q."Q S???Q.Q S???Q.Q S???Q.Q S???Q.  -Q  -S???Q -.Q S???Q. - Q  - S???Q. Q -  S ???Q. -Q   -S???Q. Q  S???Q.Q S???Q.Q S???Q.Q S???Q.Q  S???Q.!Q "#S ???Q.$Q" %&S#???Q."'Q% "()S&???Q.%*Q( %+,S)???Q.(-Q+ (./S,???Q.+0Q. +12S/???Q..3Q1 .45S2???Q.16Q4 178S5???Q.49Q7 4:;S8???Q.7<Q: 7=>S;???Q.:?Q= :@AS>???Q.=BQ@ =CDSA???Q.@EQC @FGSD???Q.CHQF CIJSG???Q.FKQI FLMSJ???Q.INQL  IOPSM???Q.LQQO - LRSSP???Q.OTQR  OUVSS???Q.RWQU  RXYSV???Q.UZQX  U[\SY???Q.X]Q[ X^_S\???Q.[`Q^ [abS_???Q.^cQa ^deSb???Q.afQd aghSe???Q.diQg djkSh???Q.g~lQj |~gmnSk???Q~.|jzoQm xzjpqSn???Qz.xm~vrQp tvmstSq???Qv.tpzruQs prpvwSt???Qr.psvnxQv lnsyzSw???Qn.lvrj{Qy hjv|}Sz???Qj.hynf~Q| dfyS}???Qf.d|jbQ `b|S???Qb.`f^Q \^S???Q^.\bZQ XZS???QZ.X^VQ TVS???QV.TZRQ PRS???QR.PVNQ LNS???QN.LRJQ  HJS???QJ.HNFQ! DFS???QF.DJBQ" @BS???QB.@F>Q# <>S???Q>.<B:Q$ 8:S???Q:.8>6Q% 46S???Q6.4:2Q& 02S???Q2.06.Q' ,.S???Q..,2*Q( (*S???Q*.(.&Q) $&S???Q&.$*"Q* "S???Q". &Q+ S???Q."Q, S???Q.Q- S???Q.Q. S???Q.Q/ S???Q.  -Q0  -S???Q -.Q1 S???Q. -Q2 S???Q.Q3 S???Q.Q4 S???Q./Q5 /S???S???RjRjRjRjRjRjRjR jR -jR jR jR jRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjR~jR{jRx jRu!jRr"jRo#jRl$jRi%jRf&jRc'jR`(jR])jRZ*jRW+jRT,jRQ-jRN.jRK/jRH0jRE1jRB2jR?3jR<4jR95jR66jR37jR08jR-9jR*:jR';jR$jR?jR@jRAjRBjRCjR DjR EjRFjRGjRHjRIjRJjRKjRLjRMjRNjROjRPjRQjRRjRSjRTjRUjRVjRWjRXjRYjRZjR[jR\jR]jR^jR_jR`jRajRbjRcjRdjRejRfjRgjRhjRijRjjRkjRljRmjRnjRojRpjRqjRrjRsjR|tjRyujRvvjRswjRpxjRmyjRjzjRg{jRd|jRa}jR^~jR[jRXjRUjRRjROjRLjRIjRFjRCjR@jR=jR:jR7jR4jR1jR.jR+jR(jR%jR"jRjRjRjRjRjRjR jR -jRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjR}jRzjRwjRtjRqjRnjRkjRhjRejRbjR_jR\jRYjRVjRSjRPjRMjRJjRGjRDjRAjR>jR;jR8jR5jR2jR/jR,jR)jR&jR#jR jRjRjRjRjRjRjR jRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRkRkRkRkRkRkRkRkRkR kR -kR kR kR kRkRkRkRkRkRkRkRkRkRkRkRkRkS???RkRkRkR~kR{kRx kRu!kRr"kRo#kRl$kRi%kRf&kRc'kR`(kR])kRZ*kRW+kRT,kRQ-kRN.kRK/kRH0kRE1kRB2kR?3kR<4kR95kR66kR37kR08kR-9kR*:kR';kR$kR?kR@kRAkRBkRCkR DkR EkRFkRGkRHkRIkRJkRKkRLkRMkRNkROkRPkRQkRRkRSkRTkRUkRVkRWkRXkRYkRZkR[kR\kR]kR^kR_kR`kRakRbkRckRdkRekRfkRgkRhkRikRjkRkkRlkRmkRnkRokRpkRqkRrkRskR|tkRyukRvvkRswkRpxkRmykRjzkRg{kRd|kRa}kR^~kR[kRXkRUkRRkROkRLkRIkRFkRCkR@kR=kR:kR7kR4kR1kR.kR+kR(kR%kR"kRkRkRkRkRkRkR kR -kRkRkRkR kR kR kR kR kR kR kR kR kR kR kR kR kR kR kR kR kO SDL/TYSA_COLOURO AEDT_EntityID_V1736  - 3= +=8  - 8A +A>  - >E +EB  - BI +IF  - FM +MJ  - JQ +QN  - NU +UR  - RY +YV  - V] +]Z  - Za +a^  - ^e +eb  - bi| +if | { -{ fmx +mj{ x w -w jqt +qnw t s -s nup +urs p o -o ryl +yvo l k -k v}h +}zk h g -g zd +~g d c -c ~` +c ` _ -_ \ +_ \ [ -[ X +[ X W -W T +W T S -S P +S P O -O L +O L K -K H +K H G -G D +G D C -C @ +C @ ? -? < +? < ; -; 8 +; 8 7 -7 4 +7 4 3 -3 0 +3 0 / -/ , +/ , + -+ ( ++ ( ' -' $ +' $ # -#  +#  -  +   -  +   -  +   -  +   -  +  -  +   -  +   -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -   +   -   +  -  -  - +  -  +  -  +  -  +  - ! +!  - % +%"  - ") +)&  - &- +-*  - *1 +1.  - .5 +52  - 29 +96  - 6= +=:  - :A +A>  - >E +EB  - BI +IF  - FM +MJ  - JQ +QN  - NU +UR  - RY +YV  - V] +]Z  - Za +a^  - ^e +eb  - bi| +if | { -{ fmx +mj{ x w -w jqt +qnw t s -s nup +urs p o -o ryl +yvo l k -k v}h +}zk h g -g zd +~g d c -c ~` +c ` _ -_ \ +_ \ [ -[ X +[ X W -W T +W T S -S P +S P O -O L +O L K -K H +K H G -G D +G D C -C @ +C @ ? -? < +? < ; -; 8 +; 8 7 -7 4 +7 4 3 -3 0 +3 0 / -/ , +/ , + -+ ( ++ ( ' -' $ +' $ # -#  +#  -  +   -  +   -  +   -  +   -  +  -  +   -  +   -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -   +   -   +  -  -  - +  -  +  -  +  -  +  - ! +!  - % +%"  - ") +)&  - &- +-*  - *1 +1.  - .5 +52  - 29 +96  - 6= +=:  - :A +A>  - >E +EB  - BI +IF  - FM +MJ  - JQ +QN  - NU +UR  - RY +YV  - V] +]Z  - Za +a^  - ^e +eb  - bi| +if | { -{ fmx +mj{ x w -w jqt +qnw t s -s nup +urs p o -o ryl +yvo l k -k v}h +}zk h g -g zd +~g d c -c ~` +c ` _ -_ \ +_ \ [ -[ X +[ X W -W T +W T S -S P +S P O -O L +O L K -K H +K H G -G D +G D C -C @ +C @ ? -? < +? < ; -; 8 +; 8 7 -7 4 +7 4 3 -3 0 +3 0 / -/ , +/ , + -+ ( ++ ( ' -' $ +' $ # -#  +#  -  +   -  +   -  +   -  +   -  +  -  +   -  +   -  +  -- - -+ - - -- - -+ - - -- - -+ - - -- - -+ - - -- - -+ - - -- - -+ - - -- - -+ - - -- - -+ - - -- -  -+  - - -- -  -+  - - - -- - - -+ - - -- - -+ - - -- - -+ - - -- - -+ - - -- -! -+! - - -- -% -+%" - - -- -") -+)& - - -- -&- -+-* - - -- -*1 -+1. - - -- -.5 -+52 - - -- -29 -+96 - - -- -6= -+=: - - -- -:A -+A> - - -- ->E -+EB - - -- -BI -+IF - - -- -FM -+MJ - - -- -JQ -+QN - - -- -NU -+UR - - -- -RY -+YV - - -- -V] -+]Z - - -- -Za -+a^ - - -- -^e -+eb - - -- -bi| -+if -| -{ --{ -fmx -+mj{ -x -w --w -jqt -+qnw -t -s --s -nup -+urs -p -o --o -ryl -+yvo -l -k --k -v}h -+}zk -h -g --g -zd -+~g -d -c --c -~` -+c -` -_ --_ -\ -+_ -\ -[ --[ -X -+[ -X -W --W -T -+W -T -S --S -P -+S -P -O --O -L -+O -L -K --K -H -+K -H -G --G -D -+G -D -C --C -@ -+C -@ -? --? -< -+? -< -; --; -8 -+; -8 -7 --7 -4 -+7 -4 -3 --3 -0 -+3 -0 -/ --/ -, -+/ -, -+ --+ -( -++ -( -' --' -$ -+' -$ -# --# - -+# - - -- - -+ - - -- - -+ - - -- - -+ - - -- - -+ - - -- - -+ - - -- - -+ - - -- - -+ - - -- - -+ - - -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -   +   -   +  -  -  - +  -  +  -  +  -  +  - ! +!  - % +%"  - ") +)&  - &- +-*  - *1 +1.  - .5 +52  - 29 +96  - 6= +=:  - :A +A>  - >E +EB  - BI +IF  - FM +MJ  - JQ +QN  - NU +UR  - RY +YV  - V] +]Z  - Za +a^  - ^e +eb  - bi| +if | { -{ fmx +mj{ x w -w jqt +qnw t s -s nup +urs p o -o ryl +yvo l k -k v}h +}zk h g -g zd +~g d c -c ~` +c ` _ -_ \ +_ \ [ -[ X +[ X W -W T +W T S -S P +S P O -O L +O L K -K H +K H G -G D +G D C -C @ +C @ ? -? < +? < ; -; 8 +; 8 7 -7 4 +7 4 3 -3 0 +3 0 / -/ , +/ , + -+ ( ++ ( ' -' $ +' $ # -#  +#  -  +   -  +   -  +   -  +   -  +  -  +   -  +   -  + -+-+-+-+-+-+-+-+- + - +  -- -+-+-+-+-!+!-%+%"-")+)&-&-+-*-*1+1.-.5+52-29+96-6=+=:-:A+A>->E+EB-BI+IF-FM+MJ-JQ+QN-NU+UR-RY+YV-V]+]Z-Za+a^-^e+eb-bi|+if|{-{fmx+mj{xw-wjqt+qnwts-snup+urspo-oryl+yvolk-kv}h+}zkhg-gzd+~gdc-c~`+c`_-_\+_\[-[X+[XW-WT+WTS-SP+SPO-OL+OLK-KH+KHG-GD+GDC-C@+C@?-?<+?<;-;8+;87-74+743-30+30/-/,+/,+-+(++('-'$+'$#-# +# -+-+-+-+- +  - + -+-+-+-+-+-+-+-+-+-+- + - +  -- -+-+-+-+-!+!-%+%"-")+)&-&-+-*-*1+1.-.5+52-29+96-6=+=:-:A+A>->E+EB-BI+IF-FM+MJ-JQ+QN-NU+UR-RY+YV-V]+]Z-Za+a^-^e+eb-bi|+if|{-{fmx+mj{xw-wjqt+qnwts-snup+urspo-oryl+yvolk-kv}h+}zkhg-gzd+~gdc-c~`+c`_-_\+_\[-[X+[XW-WT+WTS-SP+SPO-OL+OLK-KH+KHG-GD+GDC-C@+C@?-?<+?<;-;8+;87-74+743-30+30/-/,+/,+-+(++('-'$+'$#-# +# -+-+-+-+- +  - + -+-+-+-+-R kRjQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.~|RkQ|~.zxRkQx}.vt|RkQt|.rpxRkQp{.nltRkQlz.jhpRkQhy.fdlRkQdx.b`hRkQ`w.^\dRkQ\v.ZX`RkQXu.VT\RkQTt.RPXRkQPs.NLTRkQLr.JHPRkQHq.FDLRkQDp.B@HRkQ@o.><DRkQ<n.:8@RkQ8m.64<RkQ4l.208RkQ0k..,4RkQ,j.*(0RkQ(i.&$,RkQ$h." (RkQ g.$RkQf. RkQe.RkQd. RkQc.  -R kQ b. - R -kQa.  R kQ`. R kQ_.R kQ^.RkQ].RkQ\.RkQ[.RkQZ.RkQY.RkQX.RkQW.RkQV.RkQU.RkQT.RkQS.RkQR.RkQQ.RkQP.RkQO.RkQN.RkQM. RkQL.!R kQK."R!lQJ.#R"lQI.$R#lQH.%R$lQG.&R%lQF.'R&lQE.(R'lQD.)R(lQC.*R)lQB.+R* lQA.,R+ -lQ@.-R, lQ?.~|.R- lQ|>.zx/R. lQx=.vt|0R/lQt<.rpx1R0lQp;.nlt2R1lQl:.jhp3R2lQh9.fdl4R3lQd8.b`h5R4lQ`7.^\d6R5lQ\6.ZX`7R6lQX5.VT\8R7lQT4.RPX9R8lQP3.NLT:R9lQL2.JHP;R:lQH1.FDL<R;lQD0.B@H=R<lQ@/.><D>R=lQ<..:8@?R>lQ8-.64<@R?lQ4,.208AR@lQ0+..,4BRA lQ,*.*(0CRB!lQ().&$,DRC"lQ$(." (ERD#lQ '.$FRE$lQ&. GRF%lQ%.HRG&lQ$.IRH'lQ#. JRI(lQ ". -KRJ)lQ!. LRK*lQ .MRL+lQ.NRM,lQ.ORN-lQ.PRO.lQ.QRP/lQ.RRQ0lQ.SRR1lQ.TRS2lQ.URT3lQ.VRU4lQ.WRV5lQ.XRW6lQ.YRX7lQ.ZRY8lQ.[RZ9lQ.\R[:lQ.]R\;lQ.^R]lQ .aR`?lQ .bRa@lQ -.cRbAlQ .dRcBlQ.eRdClQ.fReDlQ.gRfElQ.hRgFlQ.iRhGlQ.jRiHlQ.kRjIlQ.lRkJlQ.mRlKlQ.~|nRmLlQ|.zxoRnMlQx.vt|pRoNlQt.rpxqRpOlQp.nltrRqPlQl.jhpsRrQlQh.fdltRsRlQd.b`huRtSlQ`.^\dvRuTlQ\.ZX`wRvUlQX.VT\xRwVlQT.RPXyRxWlQP.NLTzRyXlQL.JHP{RzYlQH.FDL|R{ZlQD.B@H}R|[lQ@.><D~R}\lQ<.:8@R~]lQ8.64<R^lQ4.208R_lQ0..,4R`lQ,.*(0RalQ(.&$,RblQ$." (RclQ .$RdlQ. RelQ.RflQ.RglQ. RhlQ . -RilQ. RjlQ.RklQ.RllQ.RmlQ.RnlQ.RolQ.RplQ.RqlQ.RrlQ.RslQ.RtlQ.RulQ.RvlQ.RwlQ.RxlQ.RylQ.RzlQ.R{lQ.R|lQ.R}lQ.R~lQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.~|RlQ|.zxRlQx.vt|RlQt.rpxRlQp.nltRlQl.jhpRlQh.fdlRlQd.b`hRlQ`.^\dRlQ\.ZX`RlQX.VT\RlQT.RPXRlQP.NLTRlQL.JHPRlQH.FDLRlQD.B@HRlQ@.><DRlQ<.:8@RlQ8.64<RlQ4.208RlQ0..,4RlQ,.*(0RlQ(.&$,RlQ$." (RlQ .$RlQ. RlQ.RlQ.RlQ. RlQ . -RlQ. RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.~|RlQ|~.zxRlQx}.vt|RlQt|.rpxRlQp{.nltRlQlz.jhpRlQhy.fdlRlQdx.b`hRlQ`w.^\dRlQ\v.ZX`RlQXu.VT\RlQTt.RPXRlQPs.NLTRlQLr.JHPRlQHq.FDLRlQDp.B@HRlQ@o.><DRlQ<n.:8@RlQ8m.64<RlQ4l.208RlQ0k..,4RlQ,j.*(0RlQ(i.&$,RlQ$h." (RlQ g.$RlQf. RlQe.RlQd. RlQc.  -R lQ b. - R -lQa.  R lQ`. R lQ_.R lQ^.RlQ].RlQ\.RlQ[.RlQZ.RlQY.RlQX.RlQW.RlQV.RlQU.RlQT.RlQS.RlQR.RlQQ.RlQP.RlQO.RlQN.RlQM. RlQL.!R lQK."R!mQJ.#R"mQI.$R#mQH.%R$mQG.&R%mQF.'R&mQE.(R'mQD.)R(mQC.*R)mQB.+R* mQA.,R+ -mQ@.-R, mQ?.~|.R- mQ|>.zx/R. mQx=.vt|0R/mQt<.rpx1R0mQp;.nlt2R1mQl:.jhp3R2mQh9.fdl4R3mQd8.b`h5R4mQ`7.^\d6R5mQ\6.ZX`7R6mQX5.VT\8R7mQT4.RPX9R8mQP3.NLT:R9mQL2.JHP;R:mQH1.FDL<R;mQD0.B@H=R<mQ@/.><D>R=mQ<..:8@?R>mQ8-.64<@R?mQ4,.208AR@mQ0+..,4BRA mQ,*.*(0CRB!mQ().&$,DRC"mQ$(." (ERD#mQ '.$FRE$mQ&. GRF%mQ%.HRG&mQ$.IRH'mQ#. JRI(mQ ". -KRJ)mQ!. LRK*mQ .MRL+mQ.NRM,mQ.ORN-mQ.PRO.mQ.QRP/mQ.RRQ0mQ.SRR1mQ.TRS2mQ.URT3mQ.VRU4mQ.WRV5mQ.XRW6mQ.YRX7mQ.ZRY8mQ.[RZ9mQ.\R[:mQ.]R\;mQ.^R]mQ .aR`?mQ .bRa@mQ -.cRbAmQ .dRcBmQ.eRdCmQ.fReDmQ.gRfEmQ.hRgFmQ.iRhGmQ.jRiHmQ.kRjImQ.lRkJmQ.mRlKmQ.~|nRmLmQ|.zxoRnMmQx.vt|pRoNmQt.rpxqRpOmQp.nltrRqPmQl.jhpsRrQmQh.fdltRsRmQd.b`huRtSmQ`.^\dvRuTmQ\.ZX`wRvUmQX.VT\xRwVmQT.RPXyRxWmQP.NLTzRyXmQL.JHP{RzYmQH.FDL|R{ZmQD.B@H}R|[mQ@.><D~R}\mQ<.84@R~]mQ4.30<R^mR_mR5`mR1amJ'   %P$.(#T&vacuumOAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_80.setup/NativeGeometryFiles/0022273.x_b -BIN000000080287 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0022273.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_80.setup/NativeGeometryFiles/0022273.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 -*+?? u+,+6W^$?D?n?>@A6=.?9lcT??B6C-t/?4i?B9DEFG?nCH?Ie1?4eY?HeJKLMCnINCO(i?PZ?NPQRSInOTIU;GZ?600?TyVWXYOnUZO[$k?4[ ?Zi\]M^Un[_U`s>?OnS ?  ?naȔ?+mw?n̠d?0F2?ncėX?k%8?c_n۳`?Y*??nOF0?a4?nqt@ ?f?3na_ĥ&V?n?=?@AB9n> 9CAb2? ?DE>nC F>GxB?;D*c?F-HIJKCnG CL68 jv8?`꯹?KMNGnLOGP^?8Eo?OCQRSLnPLTS?v\?5UVFPnTPWz:?Mz{vnyv|5z?,oC?i}~yn|ylV?kh?|n|'zKX?uB?Snj -%?H?n<Wv`y?")?<q8n/;? 4v9?n\64p??nM+]?|2?MgHZn 3ݑ?A`Lc?n!??#n"7xL?n,?72n#Sߠ?{Խ\?SEOn$1Ύ1?۫`~G?1n%D? Pm?An&<Г?#2Rx?n'Wq?!C?{dn(F=L?p@??F7Bn). :Y?9ު?Yn*8C#?{pwn4q\?^d?cn5KޓM?ȸ?K/Fn6&I١?D߬?>?]n7JP?7|?7n8=ф?wX?  -n9  DD?.$%ew?  n :dQ?!cָ?;p n;R  氋?i,?RNn<*V^?qS?n=/;EXl?5(Ŕ?  n>!Ҷp?W_Es?"#n!?$t? -ّ?%&`!n$@'!(C)?%F ?'m)*^+$n(A<$,-aQ?.aQ?< -.5(n,B/(0#`?@?/Y123,n0Co,4$86d?54?o356jo0n4DL07ؗ ?]?Lc89:H4n7E4;+?c}hv?<=> 7n;F?7@z?tXg??AB);n@G;C_=?_Fj?DE1A@nCHF@G t?gh?FHIJCnGICK1"?h/??LMGnKJGNo[??OPQKnNKRKS -&?V,X?RTUV>NnSLNWu}?йvc?kXYZSnWMS[rZm?'ێN?\]^Wn[NW_HA!?Rf<3?`a?[n_O[bCg? ?cdF_nbP_eXǓ6?,￶:?!fgbneQbh'G?J0~?QijkenhRel BCj?~?ang 'd?ҹp5?  nhx;j?@"U?|eniJ(U8?OB?JFnj-*PsVM;?㲅?-Onk -LҬ? `0? -~nliӲx?:T?ienmS9bu? ?SNnn^ -v -U?~sM?^ZnoQS ?ui?QnpsC$?dti~?nq1?(J??Q-nrUZg?MS -?U3nsZQ?h{O?t}ntb+ij? ?~nut@0Ϝ?ڰ?tonv]1?n3(?=Gnwm71`)?m?E@nxXC?Q?Xw-Tny$3=m4?ΣQc7?$-nnz>[%#?+Ұ+?>Rn{C.?5'9?n|Z׃?-w?Zmn}\+U?z"d?Wn~yn?g7(2R?%nSgG? Lk?n+mzn?',?cn?j`?Ď?n'Ns8?#O?_:n ~?RQ? !}n+"ne ? ;]?+o#$'n"%؏mL?'0J?&' "n% "(Dm?nA? )*j%n(t%+s6?,\z?t,-up(n+(.]?w1Ö?/0+n.+1Iuf?HYl?A23O.n1.4 Ę?SZ;?56i1n417#J?Z،?}894n74:lR?MZ7?I;<7n:7=8b=?ޭ%?'>?@:n=:A ?PFΗ?oBCZ<=nA=D8g#?<# ſ?CEFAnDAGMZ?*?HIDnGvDJ -!?(*#?vKLquGnJMG.hn?7iw?MNOBPJn.J cWT?No~?QR.nQQi7&SRT'UVW+T0*TRWXY+'TRZ[U+URV-V\nR[X]WX-X^n˜V_`Q^7Xa\bc_bn¶Xde`Xfg+a'ž\?X?F?2c4fh`+?j`:? 2?MxLzn{{|ty}t~+'zKX?uB?݀ص?d5}Rnˆy~y+]?vԑO? D>?4 n…~~+dv`?vm?s e?my!n‹+;1w1?^'J?ߪmA?wFn+̠d?0F2?#ƶ?Űnh+ҫu7?(&?*͋h?n -{+68 jv8?`꯹?XC?3U^G{JnNx+^?8Eo?''io?"kBnR+ ?PFΗ?_n?$UnnC+ -!?(*#?S8)i?$!`nL+id.?c܂n?fLJN?9'Vf?pnœ+ZQ?h{O?$Wd?Ln+1?(J??E0G?q(#Pn}+5 b?}JV{?Hz?#n€+ -v -U?~sM?LX"?VPn+$k?4[ ?Li?ug'hn]+åU?v1^?_ ]?nM+(U8?OB?hb>?Dg n¼!"#+$=c?x@? ?˾$nh%#&'+K?4 ?Dcf#3?>8_&R(n)*#'+#,+S?v\?U\Du?iWg+4-nV.',/'0+_=?_Fj? R@?!-/1nE23,04,5+u}?йvc?wX¦?F`4j6nY705809+G?_0C?F A.?t<8~:n;595<+_P:b?^H? NF?A9x{\=n¥>9<?9@+ -&?V,X?6?O?AnUBC<@<D+Dm?nA?[¤?9qEn*F@DG@H+Cl?Cl?;f;fGInJKDHLDM+$86d?54??ߐ$?=L2Nn6OPHMQHR+DD?.$%ew?H?, QSnT[MRUMV+yn?g7(2R?S 2?U$WnXYRVZR[+/G?@}Q?:_ -?l-zZ\n]^_V[`Va+珠?#?60bJ?ls`bncde[a[f+M%_h,?؇?փ3?m}gnxhafiaj+s;?.6?Pn?Gi`kn}lfjfm+vw?$ ?VC?a^4nn%jmjo+}?n ?1?7e"pn¤ qmomr+ ~?RQ?IYE?/kL1sn!torou+\@>?Ď?ev$?^! vnruwrx+[?`*q?hrM?`wzyn–z;uxu{+9+?6Ϋ?h̺~?{O|nt_x{}x~+x;j?@"U?X+?\`}n¹{~{+0(?v"z?;)[?Ҋ[n¯~~+tPv?_ag?2=dž?ZVny>+w]???d5_?xGv>Zn*+߅P?pO?zG?I=|e*TnŒ&+Wv`y?")?S,R?^pn“+2?̚|?}D?8 -Gn”h+(i?PZ?Fo?^_[nQP+T:t?dj?a'?P4nL+VE$ `?7?`9ʋ)'?E^*n}+:[?d!f?c] ??tnª+8g#?<# ſ??wu^-BnFt+Vb?[8ä&?V?_1?tn§+J^qI?0D?%vu?k#g`tnv+S ?ui?@8!?naVEvns|+>???xmS|Nn°x)+g?h?H!?oAsW?,D@~Zn³+C)?%F ?q9D?<'ln*+z?tXg?ğ+?;KnBm+*PsVM;?㲅? ?xj_Nn2+@0Ϝ?ڰ?yn9?Yne2+n?Vt]?ټ2+K?>#?Qޒ?n+nK?%*!?/$Zb?/Ҭnw+8Ce+C.?5'9?hU3?3.KnF -+s?K!0?En -X+??N?;X" n¬ -U " + t?gh?}8?0s" nI  m +HA!?Rf<3?A?{mnai    - +XǓ6?,￶:?dVp>? - ngX  +*vBt?Yku?)?q>nh}T+ BCn+JP?7|?7&@"?B_jn !+ؗ ?]? r?4b"n9i!#+#`?@?QL&o?D4lX$n2!#%!&+qd ? -Վ? ?y(3+aȔ?+mw?D ?B=?n¼@A;> O;B+ihYT? ?>Tx:?8O0CnmDL>B!7>E+5z?,oC?X)?i,{7hFn~24BE"rBG+đ r?L;?o9?I$rdHnIn2EG#YEJ+8b=?ޭ%?R#ܒ?_3D?Y&Kn?ULGJ$lGM+'Ns8?#O?VC'?l^NniJM%JO+m71`)?m?Sb?tf4DPnMO&MQ+zʊin@3eh/ej+ 氋?i,?}ap?<UMknthj0hl+g@;5~?*J? ?2mnjl1jn+ Ę?SZ;? *"N?ѕYF+on6ln2lp+qt@ ?f?S:?-%O2qn+np3Anr+\?Ĥ!? A׬? _.Asn=pr4tpu+۳`?Y*??V14yt>vnru5hrw+s6?,\z?ݘՇ4?+g-?F=·?cݳ?bsf<nŸt?%+Ӳx?:T?Zq3g?V=%n@J+??Cl?J n.1GA+`+,?m?i, ?j/C*n“LB+Ab2? ?/_? nEACW+:uj?hǸ?}.5f?_ Wtn˜TD+lR?MZ7?LU*?z୔Hn<Ez+;GZ?600?*8%z?XmػzxnWTwF;+gEF?r?C2D-?L;|nŒw8G+Wq?!C?rw?` -znH+ ?N}%?eUX?4v]:nID+7kD??s{%?RQ?;طD.nOJ+׃?-w?=?:ln4K+rZm?'ێN?LKw?P,+n]L+&I١?D߬?>?A!??W6\nlM+[b5?q*-l?4*( h?d#>&n®qN3+J?3J?|&?3n±/O[+؏mL?'0J?!u?!![n'QVP+x30?;Wz?|p#?6Yn5Q+ėX?k%8?g?XMn -R)+'G?J0~?O;M?Y)Pnj|&Sd+ٍy?R3fM? N~?c:kdn¼`TL+e2?evՊ?u8MۋY?Q#=L(n¿YU++]?|2??<fn¢V+`,??@?  Ln,Wq+ە>j?~?l?x5q`n²nX+hn?7iw?f.a}?l_nOdY+$)?a/?cj?BA'nZ^]+1?Q{G|?=?jv^n†Z][V+cWT?No~?={ǼyW?+\S]+pR?ay??vM"nSn]+]?w1Ö?w?A~̐n0 -^+D? Pm?J@J?G&@n¾_+Iuf?HYl?_L?S@n3t`+;G+?*C:? 9z'z?qϤ\n¬va+q\?^d?.;+?#,hnb+b+ij? ?{-W?v nc+t? -ّ?ƄF{?lv n&d+TA?wO?|? -Fnshe@+sC$?dti~?\G?k@n =f+. :Y?9ު? JCP?BpXn>g+3=m4?ΣQc7?fMg?P ,n+Dh+xB?;D*c?sb?R.,nIi.+=L?p@??ڭ?4.6n+j2+Ύ1?۫`~G?kY?٣ǁ2n¹d/k1+?1 -n;Jl++?c}hv?W`o?K,n=Cm+1?:?Ʀ?h? -On¨n+#J?Z،?o!׺?F|n9o+SgG? Lk?x(??'Dn%p+xL?n,?Esz?,@n±qw+<Г?#2Rx?L3؝?RӖZwns,rd+[%?{Ϊap?l"s?nErdn0(2s+,+*V^?qS?&\?2BS +nKl,t +Wd3?!?v-z?!>.AHn{,Q7TN+NT{{+T@+@-N{-@G>nQ7@P7(#Q7EQ7MRLiQM7zRMiQz7M RNiQ7zi -R OiQi7 R -PiQ7ki  R QiQ 7R RiU knQ7 RSiQ7RTiQ7RUiQ7RViQ7RWiQ7RXiQ7RYiQ7RZieInQ7}R[iQ}7XR\iQX7}R]iQ7ZXBR^iQB7R_iQ7<B:R`iQ:78 !RaiQ 7-:"R!bi-u 8X nQ7X V#R"ciQV7T$R#diQ7YV%R$eiQ7&R%fiQ7'(R&giQ'7_])R(hi_'[*nQ]7['+R)iiQ7`]%,R+jiQ%7-R,kiQ7% .R-liQ 7/R.miQ7 0R/niQ71R0oiQ723R1piQ27644R3qi6225nQ47226R4riQ7747R6siQ7"8R7tiQ"79R8uiQ7":R9viQ7;R:wiQ7D<R;xiQD7=>R<yiQ=7D?R>zi=@nQ7=AR?{iQ7igBRA|iQg7e CRB}iQ 7jg)DRC~iQ)7  ERDiQ7)FREiQ7GRFiQ7HRGiQ7QOIRHiQO7JRIiQ7OKRJiQ7LRKiRLhTEMN+@O5dv`?vm?O@~c=84?f|?56@P2?̚|?P5Q Z?nn?RZJPnQJPS`+,?m?J+T@FQnSPQUٍy?R3fM?PVMsSnUsSW珠?#?sXcPoUnWBUYè.b?>?BZ=MWnY^W[^N?է?^k\gZ'Yn[Y]5?'?!^%[n]V[*7Fz?Dd?V_R]n*_]`ܲ٠?D@y=t5?`*ag?h?H!?[b/`na`/G?@}Q?c]uanadđ r?L;?dperUDg?Qwz?p9fkdnedgdvJt?Fg? h]engei]?vԑO?jgnigkVb?[8ä&?lRink@ime2?evՊ?@)nJknmAkJ?3J?Ao=mnmp߅P?pO?pA[b5?q*-l?'qpnAdp>Cd?u?dyr AnQr#7dbsTcdtu+T9uv+cT wt+t -ud-Tcxw+wc-Tyx+x-T$zy+y-$T*+{z+z+-*T$g'|{+{'$-gT*]^}|+|^*-]TgZ~}+}Zg-T]KM~+~M]-KT9H+H-9TK}L+LK-}T9:i+:9-T}l+}i-T+l-T2+-2Ty/+/-yT23+32-Ty+y-T}+-T+}-T,-+--,T+-T,<+,-<T+-T<+<-TRS+S-RT3O+O-3TR+R-T3t+3-T+t-T+-Tnp+p-nTk+k-Tn6oP+on-6TmoL+oP-mT6jO+j6L-TmnD+nmO-T#$+$D-#T++-T#+#+-+*n# Q!7+Q@+Q 7Q"7RgQAQ#7DCRgQBDQC$7ONRgQCOCQN%7LCRgQDLNQ&7PN6RgQEPQ6'7RgQF6Q(76RgQGQ)7RgQHQ*7vRgQIQv+7tRgQJtvQ,7vRgQKQ-7RgQLQ.7RgQMQ/7RgQNQ07RgQOQ17RgQPQ27RgQQQ37RgQRQ47RgQSQ57}RgQT}Q67RgQUQ77$RgQVQ$87RgQW$Q97$RgQXQ:7NRgQYQN;7lkRgQZlNQk<7iN"RgQ[ikQ"=7kRgQ\"Q>7"RhQ]Q?7RhQ^Q@7fRhQ_QfA7RhQ`fQB7fRhQa QC7 -RhQb  QD7  R -hQ cQE7R hQd QF7RhQeQG7R hQfQH7R -hQgQI7R hQhQJ7R hQi !QK7 "R hQ j#$QL7#%R"hQ#k &'QM7&(R%hQ&l#)*QN7)+R(hQ)m&,-QO7,v.R+hQ,n)/0QvP7/1R.hQ/ov,23QQ72v4R1hQ2p/56QR757R4hQ5q289QS78:R7hQ8r5;<QT7;'=R:hQ;s8>?Q'U7%>c@R=hQ>t%';ABQcV7(A'CR@hQAu(c>DEQW7dDcFRChQDvdAGHQX72G1IRFhQGw2DJKQ1Y7/JLRIhQJx/1GMNQZ73M1iORLhQMy3JPQQi[7PRROhQPziMSTQ\7SiURRhQS{PVWQ]7VXRUhQV|SYZQ^7dYb[RX hQY}dV\]Qb_7`\^R[!hQ\~`bY_`Q`7e_baR^"hQ_e\bcQa7bdRa#hQb_efQb7egRd$hQebhiQc7hsjRg%hQheklQsd7kmRj&hQkshnoQe7tnskpRm'hQntkqrQkf7qsRp(hQqkntuQg7tk/vRs)hQtqwxQ/h7wyRv*hQw/tz{Qi7^z/\|Ry+hQz^w}~Q\j7Z}<R|,hQ}Z\zQ<k7_\|R-hQ_<}Q|l7<R.hQ|Qm7|gR/hQQgn7xR0hQgQxo7hgR1hQhxQp7xR2hQQq7R3hQQr7R4hQQs7R5hQQt7}R6hQ}Qu7mR7hQQmv7oR8hQmQow7mR9hQoQx7oR:hQQy7R;hQQz7YRhQ Q }7" R?hQ" Q~7 R@hQQ7RAhQQ7RBhQQ7RChQQ7RDhQQ7 - REhQ -Q 7RFhQ Q7  RGhQ Q7BARHhQBQA7?1RIhQ?AQ17CARJhQC1Q71RKhQQ7RLhQQ7TSRMhQTQS7QRNhQQSQ7[S\ROhQ[Q\7V^RPhQV\aRQhPAQaX^S???Q_baS???Qb7_^QdS???Q7db\Q\S???Q\7QS???Q7\~Q~S???Q~7QSS???Q7S~RQRS???QR7QS???Q7RQ S???Q7 -Q  S ???Q7 Q S ???Q7 Q S???Q7Q -S???Q7 - QX S???Q 7XWQUWS???QW7U KQYKS???QK7YWQL !S???Q7LK"Q #$S!???Q7 %Q# &'S$???Q7#(Q&#)*S'???Q7&+Q)&,-S*???Q7)q.Q,q)/0S-???Qq7,-1Q/+-,23S0???Q-7+/q4Q2./56S3???Q7.2-7Q5289S6???Q75:Q85;<S9???Q78|=Q;|8>?S<???Q|7;@Q>;ABS????Q7>|CQA>DESB???Q7AFQDAGHSE???Q7DPIQGPDJKSH???QP7GLQJGMSK???Q7JPNQJOPSM???QO{QRSP???Q7{OzSQQxzOTUSR???Qz7xQVQT|QWXSU???Q7|TzYQW)TZ[SX???Q7)W(\QZ&(W]^S[???Q(7&Z_Q]*Z`aS^???Q7*](:bQ`:]cdSa???Q:7`eQc`fgSd???Q7c:hQf>cijSg???Q7>f=kQi=flmSj???Q=7inQliopSm???Q7l=qQoqlrsSp???Q7qoptQrnpouvSs???Qp7nrHwQurHrxySv???QH7rup4zQx24u{|Sy???Q472xHF}Q{7Fx~S|???QF77{46Q~46{S???Q674~FQ~S???Q76QS???Q7QS???Q7QS???Q7QWS???Q7WVQTVS???QV7TQzS???Q7zVyQwyS???Qy7wQ;S???Q7;y:Q8:S???Q:78QS???Q7:QS???Q7QS???Q7QS???Q7QS???Q7QS???Q7aQaS???Qa7QS???Q7aQhS???hn fQ7hQS???Q7QS???Q7QS???Q7QS???Q7Q S???Q7 Q@S???Q7@?Q=?S???Q?7=sQAsS???Qs7A?QS???Q7sQS???Q7nQnS???Qn7Q%S???Q7%n$Q$S???Q$7QS???Q7$EQES???QE7_QF_S???Q_7FEQS???Q7_QS???Q7QvS???Q7vuQsuS???Qu7sQwS???Q7wu8Q ,8S???Q87,3S???RhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRh Th +T5 6  +T  + h- -T   + - T  + -T &  +  -&T  + -T&^`  + `&-^T[  + [-T^_  + _^-T - 8 + -T ; - + - 8-TWY w + Y;-WTT z + Tw-TWX T + XWz-T;- W + -T-;T8  + 8W-T;C<  + <;-CT  + -TCYZ  + ZC-YT~ 4 + -~TY 7 + Y4-T~I 2 + ~7-IT r + 2-TI n + Ir-T q + n-T  + q-T  + -T > + -T  + >-T  + -T * + -Tjk & + k*-jT! ) + &-Tj{" |! +! j)-{TNx" +" |-{x-5T2 # + 65-T57# $ +# 2-T#$ % +$ 7-#T% & +% # -T#& @' +& @-T' =( +' =-TE( A) +( A-ET) M+) E-M-RhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhR}hRzhRwhRthRq~hRn}hRk|hRh{hRezhRbyhR_xhR\whRYvhRVuhRSthRNrhRLqhRIphRFohRCnhR@mhR=lhR:khR7jhR4ihR1hhR.ghR+fhR(ehR%dhR"chRbhRahR`hR_hR^hR]hR \hR -[hRZhRYhRXhRWhRVhRUhRThRShOSDL/TYSA_COLOURS???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S~???S{???Sx???Su???Sr???So???Sl???Si???Sf???Sc???S`???S]???SZ???SW???ST???SQ???SN???SK???SH???SE???SB???S????S<???S9???S6???S3???S0???S-???S*???S'???S$???S!???S???S???S???S???S???S???S ???S ???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???Q?* + Q7* 8, RgQ* >- . Q87q- p/ R, gQ- =q80 * 1 Qp70 82 R/ gQ0 <p3 - 4 Q7 3 p5 R2 gQ3 ; 6 0 7 Q76 8 R5 gQ6 :9 3 : Q79 ; R8 gQ9 9< 6 = Q7< > R; gQ< 8? 9 @ Q7m? kA R> gQ? 7mB < C Qk7iB *D RA gQB 6ikE ? F Q*7lE kG RD gQE 5l*H B I Q7+H z*J RG gQH 4+K E L Qz7KK IM RJ gQK 3KzN H O QI7GN zP RM gQN 2GIQ K R Q7JQ IS RP \QQ 1JT N U Q71T /V RS WQT 01W Q X Q/7W Y Z RV \QW //[ T \ QY 7*[ ] /^ RZ g*Y nT -+ Q[ .*Y W _ Q] 7` a Y b R^ WQ` c d ] e Qa ] 'f Rb WPg (#Q'a h Rf Th AirgapOg AEDT_BODYFlagGroupColor_V1Pc i j QQd k l ` m Te AirgapPk n (#Ql -o d p Rm Po q hSp ???Oq SDL/TYSA_COLOUR_2On AttGS_PS_LayerO j SDL/TYSA_NAMES_ ???S\ ???SX ???SU ???SR ???SO ???SL ???SI ???SF ???SC ???S@ ???S= ???S: ???S7 ???S4 ???S1 ???S. ???S+ ???S???Tr +-Ts qr +r -Tt s +s q-T(u t +t -(T%v u +u % -T(B)w v +v )(-BTa?x w +w ?-aTBy mx +x B-Taz iy +y am-T{ lz +z i-T| +{ +{ l-T} K| +| +-T.~ G} +} K-.T;< J~ +~ <G-;T.0541 + 5.J-0T; +T0 , + 0-TP w + ,-PT s + w-TPQ v + QPs-T  + v-T  + -T* F + -*T -   +  F- -T*hj  + j*-hT -e  + e --Thi % + ih-TN + %-N-9T v +v9- T9  +  -T  -  + -T~  +  --T  + ~-T  + -T  + -T  + -TI  + -IT  + I-TI  + -T % + %-T0 ( + (-0T d + 0d-TE01 2 + 2-ET / + 1E/-T@EA 3 + 3-@T=  + A@-TO@B  + =-OTM  + BO-TcOP d + Md-cTrs ` + Pc`-rTco e + sre-Trt  + o-T  + t-T!}  + -!T  + }!-T! t + t-TQR  + -QTN  + RQ-TQS  + N-T] ^ + S^-]T Z + ]Z-Tt]u _ + _-tTLq  + ut-LTxtv  + qL-xT-Lu  + vx--Tsxt h + u-h-sT-p  + ts-Tzs{  + p-zTw  + {z-Tz|  + w-Th } + |}-hTe  + h-T6hi  + e-6T  + i6-T6  + -T  + -TZ  + -ZT ! + On Z!-Q U7R QT7  QRV7  R iQW7JRH R iQHX7Fc R iQcY7H R iQZ7cv R iQv[7 R iQ\7v R iQ]7ca R iQa^7_ R iQ_7da R iQ`7_ R !iQ_a7VT R "iQTb7R_ R #iQc7>T< R $iQ<d7 R %iQe7 <m R &iQmf7  R 'iQ g7 m& R (iQ&h7 Q R )iR *iQS75 R iQ5R7 R iQQ7ig5 R iQgP7e R iQO7g R iQN7|y R iQyM7w R iQL7{ry R iQrK7p, R iQ,J7twr R iQwI7uK, R iQKH7vsw R iQsG7qK R -iQF7ucs R iQcE7 R iQD7c R iQC7SP R iQPB7N R iQA7RlP R iQl@7  R iQ ?7l R iQ>7}  R iQ=7 R iQ<7tq R hQq;7oX R hQX:7sVq R hQV97PNX R hQN87MZV R hQZ77B?N R hQ?67=oZ R hQo57AD? R hQD47o R hQ371/D R hQ/27 R hQ17/ R hQ07 R hQ/7H R hQH.7 R hQ-7H R hQ,7 R hQ+7j R hQj*7 R hQ)7j R hQ(7~ R hQ'7 - -R hQ&78 -R -hQ8%7 -R -hQ$7r8 -R -hR -hTIZJ  -+ -ITdF -" -+ -JI"-dTI - -+ -Fd-Twd - -+ --wT - -+ -w-Tw - -+ --Tbc - - -+ --bT_ - - - -+ - -cb --Tbd - -+ -_-T -  -+ -d -TUV -B -+ -B-UTR -? -+ -VU?-T=U> -C -+ -RC-=T - -+ ->=-Tn=  - -+ --nT -T -+ - nT-T'n  -QZ+ -Q-Z '[-Qb"7 r -RshQ!7b -R -hQ 7 -R -hQ7# -R -hQ#7+) -R -hQ)7'\# -R -hQ\7^\) -R -hQ\7Z\ -R -hQ7MJ\ -R -hQJ7H8 -R -hQ87L|J -R -hQ|7:8 -R -hQ7| -R -hQ7b! -R -hQb71" -R! -hQ17/xb# -R" -hQx731$ -R# -hQ7x% -R$ -hQ7& -R% -hQ7' -R& -hQ7-+( -R' -hQ+ 7) -R( -hQ 7;+* -R) -hQ; 7+ -R* -hQ -7;, -R+ -hQ 7SQ- -R, -hQQ7O2. -R- -hQ27Q/ -R. -hQ720 -R/ -hQ71 -R0 -hQ7f2 -R1 -hQf7pm3 -R2 -hQm7kf4 -R3 -hQ7o5m5 -R4 -hQ57ol6 -R5 -hQl7j57 -R6 -hQ7nl8 -R7 -hQ7$"9 -R8 -hQ"7: -R9 -hQ7q"; -R: -hQq7< -R; -hQ7q= -R< -hQ7^> -R= -hQ^7'? -R> -hQ'7%^@ -R? -hQ7)A'A -R@ -hQA7?`B -RA -hQ`7AC -RB -hQ7`D -RC -hQ7E -RD -hQ7F -RE -hQ7G -RF -hQ7-H -RG -hQ-7<9I -RH -hQ9753-J -RI -\RJ -WQn{7@>TK -T?@L -LM -+TIJM -N -+?TO -YL -+L -L-M -@-T?P -UO -+O -?Y-TgQ -XP -+P -U-gT0R - -Q -+Q -X-0TgS -R -+R -g --T0]T -S -+S -0-]TU -T -+T --T]^V -U -+U -^]-TYZW -V -+V -Z-YTX -W -+W --TYY -SX -+X -Y-TZ -Y -+Y -S-T][ -Z -+Z --]T\ -[ -+[ --T]] -d\ -+\ -]-T Y_] -+] - d-Y_-ITFN -^ -+N -JI-TIK^ -_ -+^ -F-T_ -` -+_ -K-TV` -a -+` --VTa -+b -+a -V+-TEVFb -.c -+b -.-ETBc -d -+c -FE-TEGd -e -+d -B-TMe -f -+e -G-MTf -g -+f -M-TFMg -h -+g --FTh -i -+h -F-TFi -+i ---Q>z7nj -QT|7JnHk -RK -=iQH}7FTl -Rk ->iQ~7KHm -Rl -?iQ7n -Rm -@iQ7Uo -Rn -AiQU7p -Ro -BiQ7FUDq -Rp -CiQD7Br -Rq -DiQ7GDs -Rr -EiQ7Lt -Rs -FiQL7u -Rt -GiQ7LEv -Ru -HiQE7w -Rv -IiRw -JiQy7>x -Rj -?@[\]^_`{|}~0123456789************************** @@ -110083,1112 +88408,1100 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0000006.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0000006.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0000006.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0000006.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ @@:0yE>  -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q &'F(( )*3 -+,+Gz濈[0 ףp= -?࿩LXz -.+{t?3TY?:pΈ?EТ<}EB<k5px?9{Gz? h/0jEfݿsZW:pΈڿ *1V2n3456789nQ6 :;<=7>77?@?+8<ABCn9DE+Ѿ:pΈڿDFG9 -=.?ygL?:pΈ?EH9I`b*?+?伿:pΈڿHJKLMEnINEO<|:pΈ?NcPQRSInOTIUQQ!?Xv.?:pΈڿTVWXYOnULOZUiIv?.I,:pΈڿL[\]HUnZ^U_jEfݿsZW?:pΈڿ^4`abcZn_dZe q?:pΈ?dfghi_nej_k+Ѿ:pΈ?jlmnoenkbep|࿣<?:pΈڿb6qrs^knphkt pZ]|?:pΈ?huvwdpntxpy<?|?:pΈڿxz{|}tny~t -=.?ygL?:pΈڿ~"ynyZQ!Xv.:pΈ?[n ?q:pΈڿnygL? -=.?:pΈ? n>Vp?Xo]xп:pΈڿMnJiܧ)ml8?:pΈ?{nml8?Jiܧ)?:pΈ?nygL -=.ƿ:pΈڿ\nB?:pΈڿB8nml8?Jiܧ)?:pΈڿnq :pΈ?_SnmB1aY:pΈڿrnQQ!?Xv.:pΈڿn<?ʒ|:pΈ?!n`b*?^+??:pΈ?nsZW?jEfݿ:pΈ?naYeB1:pΈڿlnq ?:pΈ?n>Vp?rXo]x?:pΈ? nZ]|? p?:pΈ?njEf?sZW:pΈ?5n q?:pΈڿ:snQQ!Xv.?:pΈ?n[l8ԿJiܧ)?:pΈ?nmB1aY:pΈ?WnDŽR?_o?:pΈ? n - `b*?+?伿:pΈ? -  n Z]| p?:pΈڿF n >VprXo]xп:pΈ?knZ]|? p:pΈ?#n ygL -=.ƿ:pΈ?m!"#n $%bt`tiZ:pΈڿ$&'() n%* + -=.ƿygL?:pΈڿ*,,-./%n+%0>VprXo]x?:pΈ?y123+n0 (+4 `O꿖9:pΈڿ(567$0n4 -809DŽR𿨥_oٿ:pΈڿ8b:;<=4n9 4>eB1?aY:pΈڿ?@9n> A9B`b*^+??:pΈ?AuCD3E>nB F>Cʒ|࿣<:pΈ?FQGHIJBnC8BK+Ѿ?:pΈڿKLCM p?Z]|?:pΈ?LNOPQKnMKRXv.ZQ!?:pΈ?STiMnRMU`v.QQ!:pΈڿpVWRnUXRYPv.?ZQ!:pΈ?X+Z[\]UnYU^_o?DŽR:pΈ?7_`aYn^bYc߿ T:pΈڿbdefg^nc^hq? ?:pΈ?ijkcnhlcmbt`tiZ:pΈ?lnogphnmqhriO<&~?:pΈڿqstuvmnrwmx>Vp?Xo]xп:pΈ?wyz{rnx|r|Z]|? p?:pΈڿ|}~xxn|gxiO;&~:pΈ?gbl|n/|+?伿`b*?:pΈڿ/**n+?伿`b*:pΈڿnZQ!Xv.:pΈڿnn .I,?UiIv?:pΈڿ&n.I,UiIv?:pΈڿ(/n ^+??`b*?:pΈڿ$~n!_o?DŽR?:pΈڿn"-P?CP?:pΈ?n#>VprXo]x?:pΈڿPn$ q:pΈ?UIn%Jiܧ)?ml8Կ:pΈڿn&QQ!Xv.?:pΈڿ@n' -=.?ygL:pΈڿn(<?ʒ|:pΈڿn)ygL? -=.?:pΈڿn*q ?:pΈڿDn+XXv.?QQ!?:pΈڿXTn,sZWjEf?:pΈڿJn-.I,?UiIv:pΈڿn._oٿDŽR:pΈ?MJn/.I,UiIv?:pΈ?n0f-P?CPȿ:pΈڿf)bn1mB1?aY?:pΈڿXn2mB1?aY?:pΈ?Pn3Jiܧ)ml8?:pΈڿNn4<sZWjEfݿ:pΈڿ<d8n5ml8ԿJiܧ):pΈڿ~n6jEf?sZW:pΈڿn7 .I,?UiIv?:pΈ?n8_f3]?yػ?:pΈڿ  -  n9 _o?DŽR?:pΈ?n :JjEfݿsZW:pΈ?JOF n; [l8?Jiܧ):pΈڿn<p `O꿖9:pΈ?pln=>Vp?rXo]x?:pΈڿn>q? :pΈ?% !"n?P# ?q?:pΈ?P$%Ln#@&Xv.?QQ!?:pΈ?'()#n&A#*_f3]?yػ?:pΈ?+,-&n*B.&/UiIv.I,:pΈ?.q01E#*n/C2*3iO<&~?:pΈ?2456/n3D/7ygL -=.?:pΈڿR89:3n7E3;Jiܧ)?ml8?:pΈ? <=7n;F7>aYmB1?:pΈ??@;n>GA;B<|?:pΈ?ACDE>nBH>F+?伿`b*?:pΈ?GHIBnFIiBJeB1aY?:pΈ?iKLdFnJJwFM|࿣<?:pΈ?wNOPhJnMKJQDŽR𿻥_o?:pΈ?}RSEMnQLvMTbtctiZ?:pΈڿvUVq7QnTMWQX+?伿`b*:pΈ?WEYZ[\TnXNT]^+??`b*?:pΈ?^_FXn]OsX` pZ]|?:pΈڿs8abb]n`Pu]c߿T?:pΈڿude q`ncQ=`fJiܧ)[l8Կ:pΈڿ=`gh8cnfRci`b*+?伿:pΈڿZjklfniSfm_oٿDŽR:pΈڿ|no/inmTipJiܧ)[l8Կ:pΈ?iqrsmnpUmtjEf?sZW?:pΈ?uvQpntVpwrXo]x?>Vp?:pΈڿ xy~tnwWtz q:pΈڿt{|}wnzX~wrXo]x?>Vp:pΈ?~;aznYkzaY?mB1?:pΈ?k)nZDŽR?_oٿ:pΈ?{n[Z]| p:pΈڿhn\.I,?UiIv:pΈ?A\n]`v.QQ!:pΈ?Yn^-P?CPȿ:pΈ?-nn_"aY?mB1:pΈ?"']n`/=.ƿygL:pΈڿnaJiܧ)?ml8?:pΈڿBnb[l8ԿJiܧ)?:pΈڿ0c.ncI p⿿Z]|:pΈ?ISFndEUiIv7.I,?:pΈ?EsA.ne|?<?:pΈڿnf0jEf?sZW?:pΈڿn0g7 `O꿘9?:pΈڿ7v(0nQ1 :7U57-(+-+n¹V7+Vv+v-n»7-(-n·QT :ni+:pΈڿ?'i=< ?h+ `O꿚9?zGz<?j+lfffffh"f:pΈڿ࿨LXz*\(?nk+:pΈ?Xd' 7 <;-?]]^S޿$I$IQ?"nl+=Y߿O:pΈڿElR 䰼?=yox?H|Gz?ynm+:pΈڿqp7s6L¦AT̹Q?[no+Xv.ZQ!?:pΈ?cnp+:pΈ?P0w+:pΈ?QgpI<z?ć ?Զm۶m{B9C+DŽR𿻥_o?:pΈڿ?BDnSEF>C|G>H+O,q?8rR:pΈڿ$aܚl.;G%?!?*?{Gz?GInJKLCH}MCN+:pΈ?ꜻpfVprXo]x?:pΈڿ?n2EW+rR?O,q?:pΈ?2L?$I$IVp?Xo]xп:pΈڿ?nz+_oٿDŽR:pΈڿ?n+O,qڡrR:pΈ?ncܚl;G%<!)?8|Gz?pn+:pΈڿXd' 7 ?;-?]]^S?$I$In?@9=A9B+i|?Jn{~?:pΈ?hE<,P< -"|@.5u?Y{Gz?ACnDE=B=F+Pv.?ZQ!:pΈ?PGnHIBFJB.+Gz?:pΈ?ar^<? -ףp= -?JKnLMF.NF +:pΈڿp4+in +UiIv7.I,?:pΈ?tn!f -+:pΈڿ?(h`윲?t췈8?mp ࿋$I$IQ?n %+<|?:pΈڿ?% nD! +:pΈ?B[1n^b<AT̹?>L?$I$IVp?rXo]x?:pΈ?n+:pΈڿeF|olDUfв?lRХ:+ ?#^]?:pΈ?VFg<$6=<O?@]@?X9|Gz?=?n@AE:>B:C+_oٿDŽR?:pΈ?BDnEF>CG>H+ml8ԿJiܧ):pΈ?GInJKCH CL+P"?#o:pΈڿ6p8I़?qE=4翓 '?{Gz?mMnN HL!HO+ZQ!Xv.:pΈ?PnQLO"LR+#^] ֿ:pΈ?LRď^*6᡼z*?FzhC?{Gz?qWnXY RV$RZ+:pΈڿNj?:?wIٔʿ:pΈ?ar^?HiW -bܑ?L]<+O=Y߿:pΈ?hElRVprXo]xп:pΈ?n}M+<|:pΈ?nQNLY+:pΈڿbP0w??wIٔʿ:pΈڿar^<HiW -bܑ?L]Lᅪ$I$IQ?FnX+UiIv?.I,?:pΈڿ?nY+|˿Jn{~:pΈڿ \iryHc0?%[I+ )j?{Gz?nZ+_މ+?:pΈڿar^<𿅂̈́q?֪пSج𓼚?[g+ygL -=.ƿ:pΈڿ?gkn"dp\& ++??`b*:pΈ?&!n"" ]#+<?|?:pΈ?$n{% #^Q &+aYeB1:pΈڿ?Q'n(#&_s#)+ ?#^]:pΈڿQVFg<&6=?O?]@ۿY|Gz?s*n+bo&)`&,+sZW?jEfݿ:pΈ?-n.F),a)/+=Y߿O?:pΈڿ6;&Y<e? ?&aI?{Gz?50n1,/b+,2+=Y?O:pΈ?hElR <G?yox?I9|Gz?+43n4&/2c/5+ ֿ#^]?:pΈڿVFg<$6=?O??@]@?9|Gz?16n7825d29+:pΈڿeF|ol0Ufв?iRХ?J9<fK9+Xo]xп>Vp:pΈڿ?K?n@GA<gB<+:pΈڿ2%]?}?Q -K? +   @@:0yE>QF CI list_typeuI +notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ DS@@O SDL/TYSA_DENSITYP!"(#TUNIT=mmO"AEDT_EntityName_V1P#$(#S{Gz?O$AEDT_ExtentScale_V1Q %&F'' ()3 *++Gz濈[0 ףp= +?࿩LXz +,-+{t?3TY?:pΈ?EТ<}EB<k5px?9{Gz? h./jEfݿsZW:pΈڿ )0V 1n2345678nQ5 9:;<6=66>?>+7;@ABn8CD+Ѿ:pΈڿCEF8 +=.?ygL?:pΈ?DG8H`b*?+?伿:pΈڿGIJKLDnHMDN<|:pΈ?McOPQRHnNSHTQQ!?Xv.?:pΈڿSUVWXNnTKNYUiIv?.I,:pΈڿKZ[\GTnY]T^jEfݿsZW?:pΈڿ]4_`abYn^cYd q?:pΈ?cefgh^ndi^j+Ѿ:pΈ?iklmndnjado|࿣<?:pΈڿa6pqr]jnogjs pZ]|?:pΈ?gtuvconswox<?|?:pΈڿwyz{|snx}s~ +=.?ygL?:pΈڿ}"xn~xZQ!Xv.:pΈ?[~n~ ?q:pΈڿnygL? +=.?:pΈ? n>Vp?Xo]xп:pΈڿLnJiܧ)ml8?:pΈ?{nml8?Jiܧ)?:pΈ?nygL +=.ƿ:pΈڿ\nA?:pΈڿA7nml8?Jiܧ)?:pΈڿnq :pΈ?_RnmB1aY:pΈڿrnQQ!?Xv.:pΈڿn<?ʒ|:pΈ?!n`b*?^+??:pΈ?nsZW?jEfݿ:pΈ?naYeB1:pΈڿlnq ?:pΈ?n>Vp?rXo]x?:pΈ? nZ]|? p?:pΈ?njEf?sZW:pΈ?5n q?:pΈڿ:rnQQ!Xv.?:pΈ?n[l8ԿJiܧ)?:pΈ?nmB1aY:pΈ?WnDŽR?_o?:pΈ?n  +`b*?+?伿:pΈ?    n +Z]| p?:pΈڿF +n +>VprXo]xп:pΈ?knZ]|? p:pΈ?#nygL +=.ƿ:pΈ?m !"n#$bt`tiZ:pΈڿ#%&'(n$)* +=.ƿygL?:pΈڿ),+,-.$n*$/>VprXo]x?:pΈ?y012*n/ '*3 `O꿖9:pΈڿ'456#/n3 +7/8DŽR𿨥_oٿ:pΈڿ7b9:;<3n8 3=eB1?aY:pΈڿ>?8n= @8A`b*^+??:pΈ?@uBC2D=nA E=Bʒ|࿣<:pΈ?EQFGHIAnB7AJ+Ѿ?:pΈڿJKBL p?Z]|?:pΈ?KMNOPJnLJQXv.ZQ!?:pΈ?RShLnQLT`v.QQ!:pΈڿpUVQnTWQXPv.?ZQ!:pΈ?W+YZ[\TnXT]_o?DŽR:pΈ?7^_`Xn]aXb߿ T:pΈڿacdef]nb]gq? ?:pΈ?hijbngkblbt`tiZ:pΈ?kmnfognlpgqiO<&~?:pΈڿprstulnqvlw>Vp?Xo]xп:pΈ?vxyz qnw{q{Z]|? p?:pΈڿ{|}~wwn{fwiO;&~:pΈ?fak{n.{+?伿`b*?:pΈڿ.*)n+?伿`b*:pΈڿnZQ!Xv.:pΈڿnn .I,?UiIv?:pΈڿ&n.I,UiIv?:pΈڿ(.n ^+??`b*?:pΈڿ$}n!_o?DŽR?:pΈڿn"-P?CP?:pΈ?n#>VprXo]x?:pΈڿPn$ q:pΈ?UHn%Jiܧ)?ml8Կ:pΈڿn&QQ!Xv.?:pΈڿ@n' +=.?ygL:pΈڿn(<?ʒ|:pΈڿn)ygL? +=.?:pΈڿn*q ?:pΈڿDn+WXv.?QQ!?:pΈڿWSn,sZWjEf?:pΈڿJn-.I,?UiIv:pΈڿn._oٿDŽR:pΈ?MIn/.I,UiIv?:pΈ?n0e-P?CPȿ:pΈڿe(an1mB1?aY?:pΈڿWn2mB1?aY?:pΈ?On3Jiܧ)ml8?:pΈڿNn4;sZWjEfݿ:pΈڿ;d7n5ml8ԿJiܧ):pΈڿ~n6jEf?sZW:pΈڿn7 .I,?UiIv?:pΈ?n8_f3]?yػ?:pΈڿ  + n9 _o?DŽR?:pΈ? n :IjEfݿsZW:pΈ?IOE n; [l8?Jiܧ):pΈڿn<o `O꿖9:pΈ?okn=>Vp?rXo]x?:pΈڿn>q? :pΈ?% !n?O" ?q?:pΈ?O#$Kn"@%Xv.?QQ!?:pΈ?&'("n%A")_f3]?yػ?:pΈ?*+,%n)B-%.UiIv.I,:pΈ?-q/0D")n.C1)2iO<&~?:pΈ?1345.n2D.6ygL +=.?:pΈڿR7892n6E2:Jiܧ)?ml8?:pΈ? ;<6n:F6=aYmB1?:pΈ?>?:n=G@:A<|?:pΈ?@BCD=nAH=E+?伿`b*?:pΈ?FGHAnEIhAIeB1aY?:pΈ?hJKcEnIJvEL|࿣<?:pΈ?vMNOgInLKIPDŽR𿻥_o?:pΈ?}QRDLnPLuLSbtctiZ?:pΈڿuTUp6PnSMVPW+?伿`b*:pΈ?VEXYZ[SnWNS\^+??`b*?:pΈ?]^EWn\OrW_ pZ]|?:pΈڿr8`aa\n_Pt\b߿T?:pΈڿtcd p_nbQ<_eJiܧ)[l8Կ:pΈڿ<`fg7bneRbh`b*+?伿:pΈڿZijkenhSel_oٿDŽR:pΈڿ|mn.hnlThoJiܧ)[l8Կ:pΈ?ipqrlnoUlsjEf?sZW?:pΈ?tuPonsVovrXo]x?>Vp?:pΈڿ wx}snvWsy q:pΈڿtz{|vnyX}v~rXo]x?>Vp:pΈ?};`yn~YjyaY?mB1?:pΈ?j(~nZ~DŽR?_oٿ:pΈ?zn[Z]| p:pΈڿhn\.I,?UiIv:pΈ?A[n]`v.QQ!:pΈ?Yn^-P?CPȿ:pΈ?,mn_!aY?mB1:pΈ?!'\n`/=.ƿygL:pΈڿnaJiܧ)?ml8?:pΈڿAnb[l8ԿJiܧ)?:pΈڿ0b-ncH p⿿Z]|:pΈ?HSEndDUiIv7.I,?:pΈ?Ds@-ne|?<?:pΈڿnf/jEf?sZW?:pΈڿn/g6 `O꿘9?:pΈڿ6u'/nQ1 96T46-'+-+n¸U6+Uu+u-nº6-'-n¶QT 9ni+:pΈڿ?'i=< ?h+ `O꿚9?zGz<?j+lfffffh"f:pΈڿ࿨LXz*\(?nk+:pΈ?Xd' 7 <;-?]]^S޿$I$IQ?"nl+=Y߿O:pΈڿElR 䰼?=yox?H|Gz?ynm+:pΈڿqp7s6L¦AT̹Q?[no+Xv.ZQ!?:pΈ?cnp+:pΈ?P0wn?@,8={A8B+DŽR𿻥_o?:pΈڿ?ACnRDE=B|F=G+O,q?8rR:pΈڿ$aܚl.;G%?!?*?{Gz?FHnIJKBG}LBM+:pΈ?ꜻpfVprXo]x?:pΈڿ?n1DV+rR?O,q?:pΈ?2L?$I$IVp?Xo]xп:pΈڿ?ny+_oٿDŽR:pΈڿ?n+O,qڡrR:pΈ?ncܚl;G%<!)?8|Gz?pn+:pΈڿXd' 7 ?;-?]]^S?$I$I?8<@8A+i|?Jn{~?:pΈ?hE<,P< +"|@.5u?Y{Gz?@BnCD<A<E+Pv.?ZQ!:pΈ?PFnGHAEIA-+Gz?:pΈ?ar^<? ףp= -?]_n¯XZ^Z`+߿ TzGz<?anb1^`^c+sZWjEf?:pΈ? dn%`cf`e+UiIv.I,:pΈڿ?fsfn1dcecg+Gz濊[0?:pΈڿX <^br^?߿LXz?|< ףp= -?hnA@]egEei+Jiܧ)ml8?:pΈ?EjnBgiMgk+Gz濊[0?:pΈ?X <^9br^<߿LXz?|< ףp= -?MlnmnJik8io+:pΈڿ X0DͲ?!9iͿ3cq$?$I$ILAT̹?۶m۶mUQ?vvnwrurx+O?=Y߿:pΈ?";&Y;zF<^&aI?!?I9{Gz? ynzux}u{+:pΈڿAPgpڊI?q?ć Ӷm۶mQ?}|n}xx{,x~+sZWjEfݿ:pΈڿ?,n€}){~{+z$N(~?:pΈ?ar^?s4hпr];{d#q?n„~~+:pΈڿ7#G$xt+_f3]?yػzGz<?>n!+ ?q:pΈ?!wn+iO<&~?zGz<?n5>J+ʒ|࿣<:pΈڿ?JnH-GY+:pΈڿ=e<E<;=c?B@+7Uqc;+U17^@+c2AE^BnQA :c`CBcDE_oٿDŽR?:pΈڿD[FB/=.ƿygL:pΈ?E{BGJiܧ)?ml8Կ:pΈ?{HIwEnG]EJQQ!?Xv.:pΈ?])K3X"GnJLGMʒ|࿣<:pΈڿLxNO/}JnMJP.I,UiIv:pΈڿQMnPQMR|?<?:pΈ?QSLPnR\PTeB1?aY:pΈ?\-UVWXRnTRXsZW?jEfݿ:pΈڿY.TnXITZ -=.ƿygL?:pΈ?I[XnZ}X\sZW?jEf?:pΈڿ}]^x_Zn\`ZaXo]xп>Vp:pΈ?`Ib@[\na\0rXo]xп>Vp?:pΈ?c5Ian0.adrXo]xп>Vp?:pΈڿd0eeB1aY?:pΈڿ<fgdne:dh`b*^+??:pΈڿ:Tijkenh elsZW?jEf?:pΈ? mhnlhn+??`b*:pΈ??oplnnlq p?Z]|?:pΈڿrsnnqnt|?<:pΈ?3uvwqntqx<|:pΈڿfy<tnxstzDŽR𿨥_oٿ:pΈ?sg{|Rxnzx} p?Z]|:pΈڿ~zn}z>VprXo]xп:pΈڿ^=}nW} ?q:pΈ?W/w\n _f3]?yػ:pΈڿ _nDŽR?_oٿ:pΈڿnUiIv?.I,:pΈ? -n?:pΈ?Lono+Ѿ?:pΈ?omjnMygL?/=.ƿ:pΈڿMHnEsZWjEf?:pΈ?EAnaYmB1?:pΈڿBnSZ]| p:pΈ?SaNnq? :pΈڿnDŽR𿻥_o?:pΈڿLnRsZWjEfݿ:pΈ?ResNnZ]|? p:pΈڿn|?<:pΈڿnXv.ZQ!?:pΈڿ>nZ]| p?:pΈ?AnrXo]x?>Vp?:pΈ?Fn)QQ!?Xv.?:pΈ?)knml8ԿJiܧ):pΈ?K`n_DŽR?_o?:pΈڿ_} nUiIv?.I,?:pΈ?naYeB1:pΈ?](nw p?Z]|:pΈ?w1 Wn)iO;&~:pΈڿ)$fn+??`b*:pΈڿ"n_oٿDŽR?:pΈ??Pn} p⿿Z]|:pΈڿ}vtLn3ygL -=.?:pΈ?3wAnq? ?:pΈڿ -Y|n]UiIv?.I,?:pΈڿ]LnrXo]x?>Vp:pΈڿn6btctiZ?:pΈ?62nkUiIv7.I,?:pΈڿkVl:nG -=.?ygL:pΈ?=~nGD<?|?:pΈ?GnQF :{-~~-~x-{x+{o- ^o+o +o+v+v*s+v-j+~%+|-~|%-US+ nNU|+Udx+dU}a+{}d-naQK :co+O?=Y?:pΈڿ!;&Yq;zF?^&aI?!9{Gz?n+:pΈ?? mæo< ?p6+ b>?wIٔ?:pΈ?ar^?HiW -bܑL]骼?6n2q+ b>?wIٔ?:pΈڿar^<HiW -bܑL]骼?nr|+:pΈڿh\<>?L?AT̹?#I$I<9Q?;<+|࿣<?:pΈ?g=nrp;<;>+E|?Jn{~:pΈ?ZiryHc0<'[I?* )j?99{Gz?<?n@<><A+:pΈ?7#G$xtA>D+:pΈ?@L?AT̹$I$IL9Q?EnFuADAG+rXo]x?>Vp?:pΈڿ?GHn°DGADI+/=.ƿygL:pΈ?AJnžKGIG9+P"??#o:pΈ?6p8I<`E=4? '?P9{Gz?(KnL%I9pIM+rXo]xп>Vp?:pΈ?M49N+aY?mB1:pΈ?4OnPoMNMQ+P"?#o:pΈ?T^*6<"ۘ<𿅦hC?FI9|Gz?\RnSNQ$NT+.I,UiIv?:pΈڿ?$Un<!QTQV+Jn{~?|˿:pΈڿ[iry<)RA?+ )j%[I9{Gz?WnXLTVT+3TY?{t:pΈڿ/vVp:pΈڿn -P?CP?:pΈڿ un ?q?:pΈڿna[l8?Jiܧ):pΈ?a9~n-_f3]?yػ:pΈ?-nlFUiIv.I,:pΈڿlXknFDygL?/=.ƿ:pΈ?w -FnQ :y <-YK -F-KMLX-M<+zF-zw+Fw+F+Ft -u+tq+\ ut-p \L+  -K8+ \HJG-KH 8-JULG+UJXHL+XU;M+;UX+zX;-U;78+I;-I{d-z-Iw-{++z+{-mId+F+87-F--.-7-.+.z-.+z+$z+$+z-J--Z-+!$-V!!+!Z-!-%$-"P4-L$"%+L]+LX+P3"L-PP4+3]+3P-3-[]L-)[XH-[|{-H[+HVX --NVV\@I+\ -+W+w +@\-v@VI-W!-@}}-!+ W -  w+  - -vw-yv-4+4)++)4&+4+-Rv++`]--`)&4- ``-`b+-`+np*)-a+)a*+@~+@+a-|-~-ro-+~nA~@-+t--p@-pp"&-@++\+"-""p&+_+"+-_--&\c--\CWjnc+Z\-"Z ZW +W+![ +!8` +[G  `WDn   W-      Z-    [A -   -   A +  @[!-  - @  `K +  @- @K -  `8!-   G -8 ! + 8 + J +    8-     G +   o +  -o    -  o  -     J%" -  o/-%   /" +  %HJR- % H   FOJ +PF R+PI M+P Q+  OFPM- O O   LHJ -   It- -  O} -t! "  }- + ! tIQP-! # !  " |$ +" ! t-|% & $ " -$ % |-% ' % $ & ( -$ +( +S) +( * -* + * , ( & +* ( , W') +, * X-W- . ) ', -) - W-- W/ - ) . 0 -. - W N-1 2 0 . +0 1 (S-1 (3 (1 0 2 Q4 +SC0 +CS4 +CS5 +4 6 CS-6 7 6 8 4 (Q2 -6 4 8 ~{5 -8 6 --~9 : 5 {8 +5 9 ~C-9 ~; 9 5 : S< +: 9 ~--= > < : -< = QS-= ? Q= < > N@ -N< +R@ +TsA +@ B N-B C B D @ Q> +B @ D R,A +D B <-E F A <,D -A E |R-E |G |E A F s;)H -F E |8-;I J H 8|)F +H I ;rsT-I ;K rI H J h}L +TH +TL U+M +L N hUT-N hO hN P L =r}J -N L P M -P N h:-Q R M P +M Q "-Q "S "Q M R gT +R Q "-U V T "gR -T U |-U i|W |U T V #kpX -#T +.X +EY +X Z k1#-Z k[ kZ \ X |pV +1Z X \ .fY +\ Z 1kl(-] ^ Y l1f\ -Y ] .-] r_ ] Y ^ E` -^ ] k-a b ` k^ +` a DE-a Dc Da ` b Ajd +wA` +w$3d +$we +d f jAw-f g jf h d :Db -f d h 39e -h f j-9i j e h +e i 923$w-i 9k 2i e j l +j i 29 -m n l 2j -l m $-m o m l n Ep -4$l +4p + 4Eq +p r S4-r Ss r t p En +Sr p t Bq +t r Slk-u v q SBt -q u 4-u w u q v Ex -v u k87-y z x v +x y DE  -y { Dy x z Aq%| + Ax +. | +.} +| ~ qA  -~ q q~ | D%z -~ | !} - ~ q yx- } ! +}  .-   }  +  xu-  -  @.- ]@ @ ; -h. +h/ 1+/h ,+  h1-   @; +  +   -  -  T/,h- a T  -  T- T +  L0/- L L igo +/i 0+d +h +  ggi- g g Lo -g d -  gg- g +  vd-  v hb +  vs-b sv -  bOh- eb O wr -w +zP |+z w+  rw|-  r bO + Pa +  r^1-a @ ^ -  a?Pzw- ? ? @EB=-@ ?ac7-=<E{z-z={+7+I3+ 4!+ V X+4 -HI!- BH - -4*+-H 4- -- H-/V- /H-+   X-   $ +  VP- X $ -  VS -   X< -V  S+V W+DF +  _WV- _  ] <X+_ ]9 +] _Wml- _9]-   -    F -  ~li5-F Dn ~  +  FDA-   y +D A+@D E+@ =+  yED- Fy y  -  -  y\-  +  @=-   l +  \- l -  vA@- v v  -@ A+Q + L +  - -  v + Qb +  - b -  OQ- ) O Ls -  O-s O +  s%L -- 0% % P + @P -+- n = Q p :- ? P: (#Q - Q?o :=   Qq :   R Q  Qr :  R Q  Qs :A ? R Q A Q?t :=  R Q =? Qu :E ?C R Q E QCv :A  R Q AC Qw : C R Q  Qx :W U R Q W QUy :S  R Q SU Qz :X U R Q X Q{ :!  R Q ! - -Q| : - -R Q -   - -Q} : - -R -Q -  +?IJnKLE-ME ++:pΈڿp4+in +UiIv7.I,?:pΈ?tn e ++:pΈڿ?(h`윲?t췈8?mp ࿋$I$IQ?n $+<|?:pΈڿ?$ nC  +:pΈ?B[1n^b<AT̹?>L?$I$IVp?rXo]x?:pΈ?n+:pΈڿeF|olDUfв?lRХ:n?@D9=A9B+_oٿDŽR?:pΈ?ACnDE=BF=G+ml8ԿJiܧ):pΈ?FHnIJBG BK+P"?#o:pΈڿ6p8I़?qE=4翓 '?{Gz?mLnM +GK!GN+ZQ!Xv.:pΈ?OnŽPKN"KQ+#^] ֿ:pΈ?LRď^*6᡼z*?FzhC?{Gz?qVnWX +QU$QY+:pΈڿNj?:?wIٔʿ:pΈ?ar^?HiW +bܑ?L]<+O=Y߿:pΈ?hElRVprXo]xп:pΈ?n|M+<|:pΈ?nPNKX+:pΈڿbP0w??wIٔʿ:pΈڿar^<HiW +bܑ?L]Lᅪ$I$IQ?FnX+UiIv?.I,?:pΈڿ?nY+|˿Jn{~:pΈڿ \iryHc0?%[I+ )j?{Gz?nZ+_މ+?:pΈڿar^<𿅂̈́q?֪пSج𓼚?[f+ygL +=.ƿ:pΈڿ?fkn!co\%++??`b*:pΈ?% n!!]"+<?|?:pΈ?#nz$"^P%+aYeB1:pΈڿ?P&n'"%_r"(+ ?#^]:pΈڿQVFg<&6=?O?]@ۿY|Gz?r)n*an%(`%++sZW?jEfݿ:pΈ?,n-E(+a(.+=Y߿O?:pΈڿ6;&Y<e? ?&aI?{Gz?5/n0+.b*+1+=Y?O:pΈ?hElR <G?yox?I9|Gz?*42n3%.1c.4+ ֿ#^]?:pΈڿVFg<$6=?O??@]@?9|Gz?15n6714d18+:pΈڿeF|ol0Ufв?iRХ?JVp:pΈڿ?J>n?F@;gA;+:pΈڿ2%]?}?Q +K?LAT̹?۶m۶mUQ?vunvqtqw+O?=Y߿:pΈ?";&Y;zF<^&aI?!?I9{Gz? xnytw|tz+:pΈڿAPgpڊI?q?ć Ӷm۶mQ?|{n|w wz+w}+sZWjEfݿ:pΈڿ?+~n|(z}z+z$N(~?:pΈ?ar^?s4hпr];{d#q?nƒ}}+:pΈڿ7#G$xt<A?+6Tpb:+T06]?+b2@D]AnQ@ 9b_BAbCD_oٿDŽR?:pΈڿCZEA/=.ƿygL:pΈ?DzAFJiܧ)?ml8Կ:pΈ?zGHvDnF\DIQQ!?Xv.:pΈ?\)J2W!FnIKFLʒ|࿣<:pΈڿKxMN.|InLIO.I,UiIv:pΈڿPLnOPLQ|?<?:pΈ?PRKOnQ[OSeB1?aY:pΈ?[-TUVWQnSQWsZW?jEfݿ:pΈڿX-SnWHSY +=.ƿygL?:pΈ?HZWnY|W[sZW?jEf?:pΈڿ|\]w^Yn[_Y`Xo]xп>Vp:pΈ?_Ia?Z[n`[/rXo]xп>Vp?:pΈ?b4H`n/-`crXo]xп>Vp?:pΈڿc/deB1aY?:pΈڿ<efcnd9cg`b*^+??:pΈڿ9ThijdngdksZW?jEf?:pΈ?lgnkgm+??`b*:pΈ??noknmkp p?Z]|?:pΈڿqrmnpms|?<:pΈ?3tuvpnspw<|:pΈڿfx;snwrsyDŽR𿨥_oٿ:pΈ?rgz{Qwnyw| p?Z]|:pΈڿ}~yn|y>VprXo]xп:pΈڿ^<|nV| ?q:pΈ?V/v[n +_f3]?yػ:pΈڿ +^nDŽR?_oٿ:pΈڿnUiIv?.I,:pΈ? n?:pΈ?Knnn+Ѿ?:pΈ?nlinLygL?/=.ƿ:pΈڿLGnDsZWjEf?:pΈ?D@naYmB1?:pΈڿBnRZ]| p:pΈ?RaMnq? :pΈڿnDŽR𿻥_o?:pΈڿLnQsZWjEfݿ:pΈ?QerMnZ]|? p:pΈڿn|?<:pΈڿnXv.ZQ!?:pΈڿ>nZ]| p?:pΈ?@nrXo]x?>Vp?:pΈ?En(QQ!?Xv.?:pΈ?(jnml8ԿJiܧ):pΈ?K_n^DŽR?_o?:pΈڿ^| +nUiIv?.I,?:pΈ?naYeB1:pΈ?]'nv p?Z]|:pΈ?v1Vn(iO;&~:pΈڿ(#en+??`b*:pΈڿ!n_oٿDŽR?:pΈ?>On| p⿿Z]|:pΈڿ|vsKn2ygL +=.?:pΈ?2w@n~q? ?:pΈڿ~ +X{n\UiIv?.I,?:pΈڿ\KnrXo]x?>Vp:pΈڿn5btctiZ?:pΈ?51njUiIv7.I,?:pΈڿjVk9nF +=.?ygL:pΈ?=}nFC<?|?:pΈ?FnQF 9z-}}-}w-zw+zn-]n+n+n+u+u)r+u-~i+}$+{-}{$-TR~+ nMT{+Tcw+cT|`+z|c-n`QK 9bo+O?=Y?:pΈڿ!;&Yq;zF?^&aI?!9{Gz?n+:pΈ?? mæo< ?p5+ b>?wIٔ?:pΈ?ar^?HiW +bܑL]骼?5n1q+ b>?wIٔ?:pΈڿar^<HiW +bܑL]骼?nr{+:pΈڿh\<>?L?AT̹?#I$I<9Q?:;+|࿣<?:pΈ?g<nqo:;:=+E|?Jn{~:pΈ?ZiryHc0<'[I?* )j?99{Gz?<>n?;=;@+:pΈ?7#G$xtL?AT̹$I$IL9Q?DnEt@C@F+rXo]x?>Vp?:pΈڿ?GGn¯CF@CH+/=.ƿygL:pΈ?@InJFHF8+P"??#o:pΈ?6p8I<`E=4? '?P9{Gz?(JnK$H8oHL+rXo]xп>Vp?:pΈ?L38M+aY?mB1:pΈ?3NnO nLMLP+P"?#o:pΈ?T^*6<"ۘ<𿅦hC?FI9|Gz?\QnRMP#MS+.I,UiIv?:pΈڿ?#Tn; PSPU+Jn{~?|˿:pΈڿ[iry<)RA?+ )j%[I9{Gz?VnWKSUS+3TY?{t:pΈڿ/v-ca-meaifnQeB 9mkgahj>md`+fmij߿ T:pΈ?i[kf.I,UiIv:pΈ?jfl `O꿘9?:pΈ?mo5jnljn<|?:pΈڿHoplnnlq߿T?:pΈ?rs1nnqXntaY?mB1?:pΈڿX uvS~qntqw`b*?^+??:pΈڿx \tnw"ty`b*+?伿:pΈ?"oz{-wnyw|aY?mB1:pΈڿ}Oyn|y~Pv.?ZQ!:pΈڿG|n~O|jEfݿsZW?:pΈ?Ov~n~Xo]xп>Vp:pΈڿn -P?CP?:pΈڿ tn ?q?:pΈڿn`[l8?Jiܧ):pΈ?`9}n,_f3]?yػ:pΈ?,nkEUiIv.I,:pΈڿkXjnE CygL?/=.ƿ:pΈ? v EnQ 9 x  ;-YJ E-JLKW-L;+y E-yv+Ev+E +Es t+sp+[ ts-p [K+  J7+ [GIF-JG 7-ITKF+TIWGK+WT:L+:TW+yW:-T:67+H:-Hzc-y-Hv-z++y+z-mHc+E+76-E----6--+-y--+y+#y+#+y-J--Y-+ #-V  + Y- -$#-!O3-K#!$+K\+KW+O2!K-OO3+2\ +2O-2 -Z\K-(ZWG-Z{z-GZ+GUW -NUU[?H+[ +V+v+?[-v?UH-V -?||- +V- v~+  -~-~uv-y~u-3+3(*+(3%+3*-Ru++_\--_(%3- __-_a*-_+no)(-`+(`)+?}+?+`-|-}-qn-+~n@}?-+s--o?-oo!%-?++[+!-!!o%+^+!*-^--&[b--[CVinb+Y[-"YYV +V+ Z + 7_ +ZG  _VCn   V-     Y-   Z@ -   -    @ +  ?Z -  ?   _J + +  ?- + ?J - +  _7  -   + F -7   + + 7 + I +   7-     F +   n +  -n    -  n  -     I$! -  n.-$   .! +  $GIQ- $ G   ENI +OE Q+OH L+O P+  NEOL- N N   KGI -   Hs, -  N| -s !  |, +  sHPO- "   ! {# +!  s-{$ % # ! -# $ {-$ & $ # % ' -# +' +R( +' ) -) * ) + ' % +) ' + V&( ++ ) W -V, - ( &+ -( , V-, V. , ( - / -- , V  +M-0 1 / - +/ 0 'R-0 '2 '0 / 1 P3 +RB/ +BR3 +BR4 +3 5 BR-5 6 5 7 3 'P1 -5 3 7 }z4 -7 5 ,-}8 9 4 z7 +4 8 }B-8 }: 8 4 9 R~; +9 8 },-< = ; ~9 -; < PR-< > P< ; = M? -M; +Q? +Sr@ +? A M-A B A C ? P= +A ? C Q+@ +C A ;-D E @ ;+C -@ D {Q-D {F {D @ E r:(G -E D {7-:H I G 7{(E +G H :qrS-H :J qH G I g|K +SG +SK T+L +K M gTS-M gN gM O K <q|I -M K O L -O M g9-P Q L O +L P !-P !R !P L Q fS +Q P !-T U S !fQ -S T {-T i{V {T S U "joW -"S +-W +DX +W Y j0"-Y jZ jY [ W {oU +0Y W [ -eX +[ Y 0jk'-\ ] X k0e[ -X \ --\ r^ \ X ] D_ -] \ j-` a _ j] +_ ` CD-` Cb C` _ a @ic +v@_ +v#2c +#vd +c e i@v-e f ie g c 9Ca -e c g 28d -g e i-8h i d g +d h 812#v-h 8j 1h d i k +i h 18-l m k 1i -k l #-l n l k m Do -3#k +3o + 3Dp +o q R3-q Rr q s o Dm +Rq o s Ap +s q Rkj-t u p RAs -p t  3-t v t p u Dw -u t j76-x y w u +w x CD -x z Cx w y @p${ + @w +- { +-| +{ } p@  -} p~ p}  { C$y -} {   | - } pxw- |   +|  --   |  +  wt-  -  ?-- ]? ? : -g- +g. 0+.g ++  g0-   ?: +  +  -  -  S.+g- a S  -  S- S +  K/.- K K hfn +.h /+c +g +  ffh- f f Kn -f c -  ff- f +  uc-  u ga +  ur-a ru -  aNg- ea N vq -v +yO {+y v+  qv{-  q aN + O` +  q]0-` ? ] -  `>Oyv- > > ?DA<-? >`b6-<;Dzy-y<z+6+H2+3 +U W+3 ,GH - BG , ,3)*-G 3, -, G,.U- .G,+  W-   # +  UO- W # -  UR-   W; -U R+U V+CE +  ^VU- ^  \ ;W+^ \8 +\ ^Vlk- ^8\-   -    E -  }kh4-E Cn }  +  EC@-   x +C @+?C D+? <+  xDC- Fx x  -  -  x[-  +  ?<-   k +  [- k -  u@?- u u  -? @+P + K +  - -  u + Pa +  - a -  NP- ) N Kr -  N-r N +  r$K ,- 0$ $ O + ?O ,+, n < +Q p 9, > P9 (#Q , Q>o 9<   Qq 9   R Q  Qr 9  R Q  Qs 9@ > R Q @ Q>t 9<  R Q <> Qu 9D >B R Q D QBv 9@  R Q @B Qw 9 B R Q  Qx 9V T R Q V QTy 9R  R Q RT Qz 9W T R Q W Q{ 9   R Q  +Q| 9  +R Q   + +Q} 9 + +R +Q +    - -Q~ :{ -y -R -Q - { +Q~ 9z +x +R +Q + z + +Qx 9v + - -Qy :w - -R -Q - wy +R +Q + vx + - -Q :| -y -R -Q - | +Q 9{ +x +R + +Q + { +  - -Q : - -R -Q -  +Q 9 + +R +Q +  +  - -Q : - -R -Q -  +Q 9 + +R +Q +  +  - -Q : - -R -Q -  +Q 9 + +R +Q +  +  - -Q :0 -. -R -Q - 0 +Q 9/ +- +R +Q + / +  - -Q. :, -g -R -Q - ,. +Q- 9+ +f +R +Q + +- +  - -Qg :1 -. -R -Q - 1g +Qf 90 +- +R +Q + 0f + ! -" -Q :! -g-# -R -Q! -  +Q 9 +f," +R +Q +  +# $ -% -Q- :$ -& -R# -Q$ - -! +Q, 9# +% +R" +Q# + , +& ' -( -Q : ' -- ) -R& -Q' - $ +Q 9 & +, +( +R% +Q& + # +) * -+ -Q  : * -, -R) -Q* -  ' +Q + 9) ++ +R( +Q) +  +& +, - -. -Q :- - 3/ -R, -Q- - * +Q 9 , + +2. +R+ +Q, + ) +/ 0 -1 -Q3 :0 -2 -R/ -Q0 - 3- +Q2 9/ +1 +R. +Q/ + 2, +2 3 -4 -Q :3 -3#5 -R2 -Q3 - 0 +Q 92 +2"4 +R1 +Q2 + / +5 6 -7 -Q# :6 -v8 -R5 -Q6 - #3 +Q" 95 +u7 +R4 +Q5 + "2 +8 9 -: -Qv :9 -#; -R8 -Q9 - v6 +Qu 98 +": +R7 +Q8 + u5 +; < -= -Q :< -v> -R; -Q< - 9 +Q 9; +u= +R: +Q; + 8 +> ? -@ -Q :? -A -R> -Q? - < +Q 9> +@ +R= +Q> + ; +A B -C -Q :B -D -RA -QB - ? +Q 9A +C +R@ +QA + > +D E -F -Q :E -G -RD -QE - B +Q 9D +F +RC +QD + A +G H -I -Q :H -J -RG -QH - E +Q 9G +I +RF +QG + D +J K -L -Q :UK -SM -RJ -QK - UH +Q 9TJ +RL +RI +QJ + TG +M N -O -QS :N -P -RM -QN - SK +QR 9M +O +RL +QM + RJ +P Q -R -Q :Q -SS -RP -QQ - N +Q 9P +RR +RO +QP + M +S T -U -Q :T -V -RS -QT - Q +Q 9S +U +RR +QS + P +V W -X -Q :W -Y -RV -QW - T +Q 9V +X +RU +QV + S +Y Z -[ -Q :Z -B\ -RY -QZ - W +Q 9Y +A[ +RX +QY + V +\ ] -^ -QB :] -R_ -R\ -Q] - BZ +QA 9\ +Q^ +R[ +Q\ + AY +_ ` -a -QR :` -Bb -R_ -Q` - R] +QQ 9_ +Aa +R^ +Q_ + Q\ +b c -d -Q :c -Re -Rb -Qc - ` +Q 9b +Q d +Ra +Qb + _ +e f -g -Q :f -h -Re -Qf - c +Q  9e +g +Rd +Qe +  b +h i -j -Q :i -k -Rh -Qi - f +Q 9h + j +Rg +Qh + e +k l -m -Q :Ql -On -Rk -Ql - Qi +Q 9Pk +Nm +Rj +Qk + Ph +n o -p -QO :Mo -q -Rn -Qo - MOl +QN 9Ln +p +Rm +Qn + LNk +q r -s -Q :Rr -Ot -Rq -Qr - Ro +Q 9Qq +Ns +Rp +Qq + Qn +t u -v -Q : u - w -Rt -Qu - r +Q 9 t + +v +Rs +Qt + q +w x -y -Q  : x -7z -Rw -Qx -  u +Q + 9w +6y +Rv +Qw +  +t +z { -| -Q7 :{ -  } -Rz -Q{ - 7x +Q6 9 z + +| +Ry +Qz + 6w +} ~ - -Q  :~ -7 -R} -Q~ -  { +Q 9} +6 +R| +Q} + z + - -Q : -  -R -Q - ~ +Q 9 + +R +Q + } + - -Q : - -R -Q -  +Q 9 + +R +Q +  + - -Q : - -R -Q -  +Q 9 + +R +Q +  + - -Q : - -R -Q -  +Q 9 + +R +Q +  + - -Q : -? -R -Q -  +Q 9 +> +R +Q +  + - -Q? : - -R -Q - ? +Q> 9 + +R +Q + > + - -Q : -? -R -Q -  +Q 9 +> +R +Q +  + - -Q :* -( -R -Q - * +Q 9) +' +R +Q + ) + - -Q( :& -3 -R -Q - &( +Q' 9% +2 +R +Q + %' + - -Q3 :+ -( -R -Q - +3 +Q2 9* +' +R +Q + *2 + - -Q : -3 -R -Q -  +Q 9 +2 +R +Q +  + - -Q :  - -R -Q -  +Q 9 + +R +Q +  + - -Q : - -R -Q -  +Q 9 + +R +Q +  + - -Q : - - -R -Q - - +Q 9  + +R +Q +  + - -Q : -K -R -Q -  +Q 9 +J +R +Q +  + - -QK : - -R -Q - K +QJ 9 + +R +Q + J + - -Q :% -K# -R -Q - % +Q 9$ +J" +R +Q + $ + - -Q# : - -R -Q - # +Q" 9 + +R +Q + " + - -Q : -#y -R -Q -  +Q 9 +"x +R +Q +  + - -Qy : - -R -Q - y +Qx 9 + +R +Q + x + - -Q : -y -R -Q -  +Q 9 +x +R +Q +  + - -Q : - -R -Q -  - - -Q : - -R -Q -  - - -Q : -E -R -Q -  - - -QE : - -R -Q - E - - -Q :u -Es -R -Q - - u - - -Qs :q - -R -Q - - qs - - -Q :v -s -R -~Q - - v - - -Q :] -[ -R -}Q - - ] - - -Q[ :Y - -R -|Q - - Y[ - - -Q :^ -[! -R -{Q - - ^ - - -Q! : -; -R -zQ - - ! - - -Q; : -!6 -R -yQ - - ; - -R -xP  -AS -???O -SDL/TYSA_COLOURS -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S| -???Sy -???Sv -???Ss -???Sp -???Sm -???Sj -???Sg -???Sd -???Sa -???S^ -???S[ -???SX -???SU -???SR -???SO -???SL -???SI -???SF -???SC -???S@ -???S= -???S: -???S7 -???S4 -???S1 -???S. -???S+ -???S( -???S% -???S" -???S -???S -???S -???S -???S -???S -???S -???S - -???S -???S -???S -???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???Q =? - -Qn :A -? -R Q - A - -Qm : -) -R -Q -  - - -Q)l :w -u -R -Q - w) - - -Quk :s -) -R -Q - su +Q 9 + +R +Q +  + + +Q 9 + +R +Q +  + + +Q 9 +D +R +Q +  + + +QD 9 + +R +Q + D + + +Q 9t +Dr +R +Q + + t + + +Qr 9p + +R +Q + + pr + + +Q 9u +r +R +~Q + + u + + +Q 9\ +Z +R +}Q + + \ + + +QZ 9X + +R +|Q + + XZ + + +Q 9] +Z  +R +{Q + + ] + + +Q  9 +: +R +zQ + +   + + +Q: 9 + 5 +R +yQ + + : + +R +xP  +AS +???O +SDL/TYSA_COLOURS +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S~ +???S{ +???Sx +???Su +???Sr +???So +???Sl +???Si +???Sf +???Sc +???S` +???S] +???SZ +???SW +???ST +???SQ +???SN +???SK +???SH +???SE +???SB +???S? +???S< +???S9 +???S6 +???S3 +???S0 +???S- +???S* +???S' +???S$ +???S! +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???Q <> + +Qn 9@ +> +R Q + @ + +Qm 9 +( +R +Q +  + - -Qj : -u -R -Q -  +Q(l 9v +t +R +Q + v( + - -Qi : -n -R -Q -  +Qtk 9r +( +R +Q + rt + - -Qnh : -K -R -Q - n +Qj 9 +t +R +Q +  + - -QKg :J -ln -R -Q - JK +Qi 9 +m +R +Q +  + - -Qlf :M -K R -Q - Ml - Qe :n [l R Q n] - R Q] [   S ???Q 7 ] S ???Qc :7 4[ Q 24 -  S ???Q4b :2  Q - 6   S ???Qa :6 -  4 Q   -  S ??? n 6Q ` :  Q   S ???Q_ : %  Q %   S ???Q%^ :  Q    S ???Q] : % Q    S ???Q\ :  Q 3!  " S ???Q[ :3 0# Q! .0$  % S" ???Q0Z :.! j& Q$ 2j' ! ( S% ???QjY :2$ 0) Q' @* $ + S( ???QX :@' >j, Q* >- ' . S+ ???Q>W :* / Q- 0 * 1 S. ???QV :- >2 Q0 - 3 S1 ???QU :0 4 Q 5 0 6 S3 ???Q5 7 8 S6 ???QS :5 9 Q7 : 5 ; S8 ???QR :7 < Q: = 7 > S; ???QQ :: ? Q= @ : A S> ???QP := B Q@ C = D SA ???QO :@ E QC F @ G SD ???QN :C H QF eI C J SG ???QM :eF cK QI acF L SJ ???QcL :aI M Q N I O SL ???QN P Q SO ???QJ :N R QP S N T SQ ???QI :P QU QS NQPP V ST ???QQH :NS HW QP EHFS X SV ???QF BCY PZ SX ???QY <G[ F\ SZ ???QGE :<Y :C] Q[ :^ Y _ S\ ???Q:D :[ G` Q^ a [ b S_ ???QC :^ :c Qa d ^ e Sb ???QB :a f Qd g a h Se ???QA :d [i Qg [j d k Sh ???Q[@ :g l Qj  m g n Sk ???Q? :j [[o Qm ~ [p j q Sn ???Q[> :m 4r Qp } n4s m t Sq ???Q4= :np k[u Qs | ik[p v St ???Qk< :is S4w Q[{ mSQs x Sv ???QQz NOy [z Sx ???Qy y R{ Q| Sz ???QR9 :y O} Q{ x )y ~ S| ???Q8 :{ 'R Q)w ' { S~ ???Q v 8p ) S ???Qp6 :8 6' Q u 6 S ???Q65 : p Q t  S ???Q4 : 06 Q s 0 S ???Q03 :  Q r  S ???Q2 : 0 Q q  S ???Q1 :  Q p  S ???Q0 :  Q o - S ???Q/ : -  Q n  S ???Q. :  Q m  S ???Q- :   Q l z S ???Q, :z w Q k uw S ???Qw+ :u  Q j y S ???Q* :y 6w Q i 46 S ???Q6) :4 j Q h 8j S ???Qj( :8 6 Q g l S ???Q' :l j Q f  S ???Q& :  Q e  S ???Q% :   Q d  S ???Q$ :  Q c  S ???Q# :  Q b  S ???Q" : ' Q a ' S ???Q'! :  Q `  S ???Q : ' Q _  S ???Q : 9 Q ^ 9 S ???Q9 :  Q ]  S ???Q : 9 Q \  S ???Q :  Q [  S ???Q :  Q Z . S ???Q :. , Q Y , S ???Q, :  Q X  S ???Q : M, Q W M S ???QM :   Q V   S ???Q  :  WM Q U W S ???QW :   Q T Y S ???Q :Y W Q S  S ???Q :   Q R  S ???w n  Q  :  Q Q  S ???Q :   Q P  S ???Q :  Q O  S ???Q :  Q N  S ???Q :  Q M  S ???Q :  Q L   S ???Q :  Q K   S ???Q :  Q J   S ???Q - : * - Q I *  S ???Q* :   Q H     S ??? ntQ  : * Q G t  S ???Q :t q  Q F oq   S ???Qq :o * Q E s*   S ???Q* :s q Q D b   S ???Q :b _* Q C ]_   S ???Q_ :]   Q B a !  " S ???Q  :a _# Q! A $  % S" ???Q :! | & Q$ @ }|' ! ( S% ???Q| :}$ z) Q' ? xz* $ + S( ???Qz -:x' |, Q* > |- ' . S+ ???Q -:|* z/ Q- = 0 * 1 S. ???Q -:- 2 Q0 < 3 - 4 S1 ???Q -:0 Y5 Q3 ; Y6 0 7 S4 ???QY -:3 8 Q6 : 9 3 : S7 ???Q -:6 Y; Q9 9 < 6 = S: ???Q -:9 6> Q< 8 6? 9 @ S= ???Q6 -:< A Q? 7 8B < C S@ ???Q -:8? :6D QB 6 :E ? F SC ???Q: -:B WG QE 5 WH B I SF ???QW -:E :J QH 4 LK E L SI ???Q -:LH IWM QK 3 GIH N SL ???QI -:GK O Q2 KK P SN ???Q1 Q R SP ???QQ 0 S T SR ???Q -:Q U QS / V Q W ST ???Q -:S X QV . Y S Z SW ???Q -:V [ \ QY - X[ ] V ^ SZ ???X[ n]VQ[ -:XY __ Q] , ]_` Y a S^ ???Q_ -:]] h[ b Q` + hc ] d Sa ???Qh -:` _e Qc * @f ` g Sd ???Q -:@c 0hh Qf ) 0i c j Sg ???Q0 -:f k Qi ( 1l f m Sj ???Q -:1i a0n Ql ' ao i p Sm ???Qa -:l q Qo & r l s Sp ???Q -:o at Qr % u o v Ss ???Q -:r 0w Qu $ 0x r y Sv ???Q0 -:u z Qx # f{ u | Sy ???Q -:fx e0} Q{ " ce~ x  S| ???Qe -:c{  Q~ !  { S ???Q -:~ e Q  ~ S ???Q -:  Q  > S ???Q -:> = Q  = S ???Q= -:  Q   S ???Q -: = Q   S ???Q -: - Q  - S ???Q- -:  Q  F S ???Q -:F D- Q  BD S ???QD -:B j Q  Ej S ???Qj -:E D Q   S ???Q -: dj Q  d S ???Qd -:  Q  % S ???Q -:% #d Q  !# S ???Q# -:! U Q  $U S ???QU -:$  # Q  < S ???< n“9$Q -:< ;U Q  9; S ???Q; -:9   Q   S ???Q -: ; Q   Q -:  Q   S ???Q -:  Q  S ???Q -:  Q  S ???Q -:  Q c S ???Q -:c a Q - _a S ???Qa -:_  Q b S ???Q -:b  a Q    S ???Q  -:   Q   S ???. n²^Q -:   Q   S ???Q -:   Q   S ???Q -:  Q   S ???Q -: h Q  h S ???Qh -:  Q  ~ S ???Q -:~ h Q   S ???Q -:  Q  S ???Q -:  Q   S ???Q -: H Q  H S ???QH -: 2 Q  2 S ???Q2 -: H Q   S ???Q -: 2 Q   S ???Q -:   Q  I S ???IO nV Q -:I G Q  G S ???QG -:   Q    S ???Q -: G Q    S ???Q -:  Q    S ???Q -:  Q  <  - S ???Q -:< : Q  8:  S - ???Q: -:8  Q  ;  S ???Q -:; : Q    S ???Q -:  Q     S ???Q -:  Q     S ???Q -:  Q     S ???Q -: = Q  =   S ???Q= -: r Q  pr!  " S ???Qr -:p =# Q!  g$  % S" ???Q -:g! er& Q$  de' ! ( S% ???Qe -:d$ f) Q'  ff* $ + S( ???Qf -:f' e, Q*  - ' . S+ ???Q -:* f/ Q-  !0 * 1 S. ???Q -:!- 2 Q0  3 - 4 S1 ???Q -:0 5 Q3  6 0 7 S4 ???Q -:3 8 Q6  9 3 : S7 ???Q -:6 J; Q9  AJ< 6 = S: ???QJ -:A9 ?> Q<  K?? 9 @ S= ???Q? -:K< IJA Q?  GIB < C S@ ???QI -:G? ?D QB  JE ? F SC ???Q -:JB sIG QE  -sH B I SF ???Qs -:-E +J QH  )+K E L SI ???Q+ -:)H sM QK  ,N H O SL ???Q -:,K +P QN  }Q K R SO ???Q -:}N S QQ  T N U SR ???Q -:Q V QT  W Q X SU ???Q -:T Y QW  Z T [ SX ???Q -:W D\ QZ  BD] W ^ S[ ???QD -:BZ _ Q]  F` Z a S^ ???Q -:F]  Db Q`  % c ] d Sa ???Q  -:%` $e Qc  $f ` g Sd ???Q$ -:c  h Qf  i c j Sg ???Q -:f '$k Qi  Q'l f m Sj ???Q' -:Qi Pn Ql  Po i p Sm ???QP -:l 'q Qo  r l s Sp ???Q -:o  Pt Qr   u o v Ss ???Q  -:r w Qu  x r y Sv ???Q -:u } z Qx  {}{ u | Sy ???Q} -:{x } Q{  ~ x  S| ???Q -:{ $} Q~  $ { S ???Q$ -:~  Q  ' ~ S ???Q -:' $$ Q  "$ S ???Q$ -:" ! Q  &! S ???Q! -:& ($ Q  ( S ???Q( -: ! Q   S ???Q -: ( Q   S ???Q -:  Q   S ???Q -:  Q   S ???Q -:  Q   S ???Q -:  Q   S ???Q -: 8 Q  p8 S ???Q8 -:p n Q  ln S ???Qn -:l &8 Q  o& S ???Q& -:o On Q  4O S ???QO -:4 2& Q  2 S ???Q2~ -:  O Q   S ??? n_ +1Q } -:  2 Q   S ??? n > + 1Q | -:   Q   S ???  ne +e1Q { -:   Q  e S ???e n¹ d + 1Q z -:e   Q   S ??? ne+ +e+1Q y -:   Q  + S ???+ n¼ -- 1Q x -:+   Q   S ???  n+ -+ 1Q w -:   Q   S ???  n - 1Q v -:   Q   S ???  n i - 1Q u -:   Q   S ???  n  - 1Q t -:   Q   S ??? n  - 1Q s -:   Q   S ???  n - 1Q r -:   Q   S ???  n + 1Q q -:  Q    S ???  n  + 1Q p -:  Q  S???n -  - -1Qo -:  Q - S ??? - n -1Q n -: -Q S???n - + -1Qm -: Q S???n -1Ql -:!"Q !#$S???!ns  %-s 1Q!k -:&'Q# s &()S$???s &n­o r *-o 1Q&j -:s #+!,Q( o +-#.S)???o +ns w m /-s w 1Q+i -:o (0&1Q- w 02(3S.???w 0no { u 4-o { 1Q0h -:w -5+6Q2 { 57-8S3???{ -5nw  y 9-w  1Q5g -:{ 2:0;Q7  :<2=S8??? :n{ ~ >-{ 1Q:f -: 7?5@Q< ?A7BS=??? ?n C- 1Q?e -: <D:EQA DF<GSB??? Dn¯ H- 1QDd -: AI?JQF IKALSG??? In³ M N- M1QIc -: FODPQK MOQFRSL???MOn· ST U- S1QOb -:MKVIWQQ SVXKYSR???SVnM Z [-M 1QVa -:SQ\O]QX \^Q_SY??? !\nS `-S1Q\` -: XaVbQ^ acXdS_???%an  e- 1Qa_ -:^f\gQc fh^iSd??? (fn j- 1Qf^ -: ckalQh kmcnSi??? ,kn o- 1Qk] -: hpfqQm prhsSn??? /pn t u- t1Qp\ -: mvkwQr tvxmySs???t2vn z{ |- z1Qv[ -:tr}p~Qx z}rSy???z5}nt -t1Q}Z -:zxvQ xS???8nz -z1QY -:}Q S???;n -1QX -:Q S???>nˆ  - 1QW -:Q S??? An - 1QV -: Q S??? En©  - 1QU -: Q S???In  - 1QT -:Q S???Mnµ ,-1QS -:Q S???Qn -1QR -:Q S???Un -1QQ -:Q S???Xn¹  - 1QP -:Q S??? \n™ - 1QO -: Q S??? `n‡ - 1QN -: Q S??? dn W - W 1QM -: Q W S???W hnŸ U - 1QL -:W Q S???lnW  -W 1QK -:Q S???onª_  -_ 1QJ -:Q _ S???_ qn¡] -1QI -:_ Q S???un_  -_ 1QH -:Q S???xn -1QG -:Q S???{n  - 1QF -:Q  S??? n  - 1QE -: Q  S??? n  -  1QD -: Q  S??? n G  - G 1QC -: Q G S???G n O E - O 1QB -:G Q O S???O nG N -G 1QA -:O Q  S???nO - -O 1Q@ -:  Q  S ???  n - 1Q ? -: Q~ S??? n¬ > - >1Q> -:  Q} >S???>n¼ < - 1Q= -:>Q| S???n> ->1Q< -: !Q{  "#S??? n $-1Q ; -:%&Q"z %'(S#???%nC  )-C 1Q%: -:"* +Q'y C *,"-S(???C *nS B .-S 1Q*9 -:C '/%0Q,x S /1'2S-???S /nC 3 Q 3-C 3 1Q/8 -:S ,4*5Q1w 3 46,7S2???3 4nS 1 8-S 1Q47 -:3 19/:Q6v 9;1<S7???9n3 = >-3 =1Q96 -:6?4@Q;u =?A6BS<???=?n¦k C D-k 1Q?5 -:=;E9FQAt k EG;HSB???k En=[ i I-=[ 1QE4 -:k AJ?KQGs [ JLAMSH???[ Jnk K Z N-k K 1QJ3 -:[ GOEPQLr K OQGRSM???K On[ ; I S-[ ; 1QO2 -:K LTJUQQq ; TVLWSR???; TnK + 9 X-K + 1QT1 -:; QYOZQVp + Y[Q\SW???+ Yn;  * ]-;  1QY0 -:+ V^T_Q[o  ^`VaS\??? ^n+  b-+ 1Q^/ -: [cYdQ`n ce[fSa???cn c  g- c 1Qc. -:`h^iQem c hj`kSf???c hn# a l-# 1Qh- -:c emcnQjl # moepSk???# mnc  ! q-c  1Qm, -:# jrhsQok  rtjuSp??? rn#  v-# 1Qr+ -: owmxQtj wyozSu??? wn g {- g 1Qw* -: t|r}Qyi g |~tSz???g |n¦ f - 1Q|) -:g ywQ~h yS???ng  -g 1Q( -:~|Qg ~S???n€ -1Q' -:Qf S???nœ  - 1Q& -:Qe S??? n± -1Q% -: Qd S???n›  - 1Q$ -:Qc S???n–  - 1Q# -:Qb S??? n -1Q" -: Qa S???nƒ -  - - 1Q! -:Q` - S??? - n -1Q -: - Q_ S???n - 2 - - 21Q -:Q^ 2S???2n 1 - 1Q -:2Q] S??? n2 -2 1Q -: Q\ S??? n£ - 1Q -: Q[ S??? n : - :1Q -: QZ :S???:n— 6 - 1Q -::QY S??? n:/ -:/ 1Q -: QX / S???/ n“ - - 1Q -:/ QW S??? n/  -/  1Q -: QV  S??? n‹ '  - ' 1Q -: QU ' S???' n 7 % - 7 1Q -:' QT 7 S???7 n' 6 -' 1Q -:7 QS S???n7  -7 1Q -:QR S??? -n  - 1Q -:QQ S??? n -1Q -: QP S???n ?  - ? 1Q -:QO ? S???? n= -1Q -:? QN   -S???n? ) -? )1Q -:  Q M ) S -???) n½ -1Q  -:) S???Q -:& RwQ +Qmh 9 +J +R +Q + m + + +QJg 9I +km +R +Q + IJ + + +Qkf 9L +J +R +Q + Lk + Qe 9m Zk R +Q m\ + R Q\ Z  S ???Q 6 \ S ???Qc 96 3Z Q 13  + S ???Q3b 91  Q 5  S + ???Qa 95  3 Q    S ??? n 5Q ` 9  Q   S ???Q_ 9 $  Q $   S ???Q$^ 9  Q    S ???Q] 9 $ Q    S ???Q\ 9  Q 2  ! S ???Q[ 92 /" Q -/#  $ S! ???Q/Z 9- i% Q# 1i& ' S$ ???QiY 91# /( Q& ?) # * S' ???QX 9?& =i+ Q) =, & - S* ???Q=W 9) . Q, / ) 0 S- ???QV 9, =1 Q/ , 2 S0 ???QU 9/ 3 Q 4 / 5 S2 ???Q4 6 7 S5 ???QS 94 8 Q6 9 4 : S7 ???QR 96 ; Q9 < 6 = S: ???QQ 99 > Q< ? 9 @ S= ???QP 9< A Q? B < C S@ ???QO 9? D QB E ? F SC ???QN 9B G QE dH B I SF ???QM 9dE bJ QH `bE K SI ???QbL 9`H L Q M H N SK ???QM O P SN ???QJ 9M Q QO R M S SP ???QI 9O PT QR MPOO U SS ???QPH 9MR GV QO DGER W SU ???QE ABX OY SW ???QX ;FZ E[ SY ???QFE 9;X 9B\ QZ 9] X ^ S[ ???Q9D 9Z F_ Q] ` Z a S^ ???QC 9] 9b Q` c ] d Sa ???QB 9` e Qc f ` g Sd ???QA 9c Zh Qf Zi c j Sg ???QZ@ 9f k Qi  l f m Sj ???Q? 9i ZZn Ql ~ Zo i p Sm ???QZ> 9l 3q Qo } m3r l s Sp ???Q3= 9mo jZt Qr | hjZo u Ss ???Qj< 9hr R3v QZ{ lRPr w Su ???QPz MNx Zy Sw ???Qx y Qz P{ Sy ???QQ9 9x N| Qz x (x } S{ ???Q8 9z &Q~ Q(w & z S} ???Q v 7o ( S ???Qo6 97 5& Q u 5  S ???Q55 9 o Q t  S ???Q4 9 /5 Q s / S ???Q/3 9  Q r  S ???Q2 9 / Q q  S ???Q1 9  Q p  S ???Q0 9  Q o  S ???Q/ 9   Q n  S ???Q. 9  Q m  S ???Q- 9  Q l y S ???Q, 9y v Q k tv S ???Qv+ 9t  Q j x S ???Q* 9x 5v Q i 35 S ???Q5) 93 i Q h 7i S ???Qi( 97 5 Q g k S ???Q' 9k i Q f  S ???Q& 9  Q e  S ???Q% 9  Q d  S ???Q$ 9  Q c  S ???Q# 9  Q b  S ???Q" 9 & Q a & S ???Q&! 9  Q `  S ???Q 9 & Q _  S ???Q 9 8 Q ^ 8 S ???Q8 9  Q ]  S ???Q 9 8 Q \  S ???Q 9  Q [  S ???Q 9  Q Z - S ???Q 9- + Q Y + S ???Q+ 9  Q X  S ???Q 9 L+ Q W L S ???QL 9   Q V +  S ???Q  9 + VL Q U V S ???QV 9   Q T X S ???Q 9X V Q S  S ???Q 9   Q R  S ???w n  Q  9  Q Q  S ???Q 9   Q P  S ???Q 9  Q O  S ???Q 9  Q N  S ???Q 9  Q M  S ???Q 9  Q L   S ???Q 9  Q K   S ???Q 9  Q J    S ???Q + 9 ) Q I ) +  S ???Q) 9   Q + H     S ??? nsQ  9 + ) Q G s +  S ???Q 9s p  Q F np   S ???Qp 9n ) Q E r)   S ???Q) 9r p Q D a   S ???Q 9a ^) Q C \^   S ???Q^ 9\   Q B `   ! S ???Q  9` ^" Q A #  $ S! ???Q 9  { % Q# @ |{& ' S$ ???Q{ 9|# y( Q& ? wy) # * S' ???Qy +9w& {+ Q) > {, & - S* ???Q +9{) y. Q, = / ) 0 S- ???Q +9, 1 Q/ < 2 , 3 S0 ???Q +9/ X4 Q2 ; X5 / 6 S3 ???QX +92 7 Q5 : 8 2 9 S6 ???Q +95 X: Q8 9 ; 5 < S9 ???Q +98 5= Q; 8 5> 8 ? S< ???Q5 +9; @ Q> 7 7A ; B S? ???Q +97> 95C QA 6 9D > E SB ???Q9 +9A VF QD 5 VG A H SE ???QV +9D 9I QG 4 KJ D K SH ???Q +9KG HVL QJ 3 FHG M SK ???QH +9FJ N Q2 JJ O SM ???Q1 P Q SO ???QP 0 R S SQ ???Q +9P T QR / U P V SS ???Q +9R W QU . X R Y SV ???Q +9U Z [ QX - WZ \ U ] SY ???WZ n\UQZ +9WX ^^ Q\ , \^_ X ` S] ???Q^ +9\\ gZ a Q_ + gb \ c S` ???Qg +9_ ^d Qb * ?e _ f Sc ???Q +9?b /gg Qe ) /h b i Sf ???Q/ +9e j Qh ( 0k e l Si ???Q +90h `/m Qk ' `n h o Sl ???Q` +9k p Qn & q k r So ???Q +9n `s Qq % t n u Sr ???Q +9q /v Qt $ /w q x Su ???Q/ +9t y Qw # ez t { Sx ???Q +9ew d/| Qz " bd} w ~ S{ ???Qd +9bz  Q} !  z S~ ???Q +9} d Q  } S ???Q +9  Q  = S ???Q +9= < Q  < S ???Q< +9  Q   S ???Q +9 < Q   S ???Q +9 , Q  , S ???Q, +9  Q  E S ???Q +9E C, Q  AC S ???QC +9A i Q  Di S ???Qi +9D C Q   S ???Q +9 ci Q  c S ???Qc +9  Q  $ S ???Q +9$ "c Q  " S ???Q" +9  T Q  #T S ???QT +9#  " Q  ; S ???; n’8#Q +9; :T Q  8: S ???Q: +98   Q   S ???Q +9 : Q   Q +9  Q   S ???Q +9  Q  S ???Q +9  Q  S ???Q +9  Q b S ???Q +9b ` Q + ^` S ???Q` +9^  Q a S ???Q +9a  ` Q    S ???Q  +9   Q   S ???. n±]Q +9   Q   S ???Q +9   Q   S ???Q +9  Q   S ???Q +9 g Q  g S ???Qg +9  Q  } S ???Q +9} g Q   S ???Q +9  Q  S ???Q +9  Q   S ???Q +9 G Q  G S ???QG +9 1 Q  1 S ???Q1 +9 G Q   S ???Q +9 1 Q   S ???Q +9   Q  H S ???HO nU Q +9H F Q  F S ???QF +9   Q   S ???Q +9 F Q    S ???Q +9  Q    S ???Q +9  Q  ;  S ???Q +9; 9 + Q  79  S ???Q9 +97  Q  :   S ???Q +9: 9 Q    S ???Q +9  Q     S ???Q +9  Q     S ???Q +9  Q     S ???Q +9 < Q  <   S ???Q< +9 q Q  oq  ! S ???Qq +9o <" Q  f#  $ S! ???Q +9f dq% Q#  cd& ' S$ ???Qd +9c# e( Q&  ee) # * S' ???Qe +9e& d+ Q)  , & - S* ???Q +9) e. Q,  / ) 0 S- ???Q +9 , 1 Q/  2 , 3 S0 ???Q +9/ 4 Q2  5 / 6 S3 ???Q +92 7 Q5  8 2 9 S6 ???Q +95 I: Q8  @I; 5 < S9 ???QI +9@8 >= Q;  J>> 8 ? S< ???Q> +9J; HI@ Q>  FHA ; B S? ???QH +9F> >C QA  ID > E SB ???Q +9IA rHF QD  ,rG A H SE ???Qr +9,D *I QG  (*J D K SH ???Q* +9(G ~rL QJ  +~M G N SK ???Q~ +9+J ~*O QM  |~P J Q SN ???Q~ +9|M ~R QP  S M T SQ ???Q +9P ~U QS  V P W ST ???Q +9S X QV  Y S Z SW ???Q +9V C[ QY  AC\ V ] SZ ???QC +9AY ^ Q\  E_ Y ` S] ???Q +9E\  +Ca Q_  $ +b \ c S` ???Q + +9$_ #d Qb  #e _ f Sc ???Q# +9b  +g Qe  h b i Sf ???Q +9e &#j Qh  P&k e l Si ???Q& +9Ph Om Qk  On h o Sl ???QO +9k &p Qn  q k r So ???Q +9n  Os Qq   t n u Sr ???Q  +9q v Qt  w q x Su ???Q +9t | y Qw  z|z t { Sx ???Q| +9zw | Qz  ~} w ~ S{ ???Q +9~z #| Q}  # z S~ ???Q# +9}  Q  & } S ???Q +9& ## Q  !# S ???Q# +9!   Q  %  S ???Q  +9% '# Q  ' S ???Q' +9   Q   S ???Q +9 ' Q   S ???Q +9  Q   S ???Q +9  Q   S ???Q +9  Q   S ???Q +9  Q   S ???Q +9 7 Q  o7 S ???Q7 +9o m Q  km S ???Qm +9k %7 Q  n% S ???Q% +9n Nm Q  3N S ???QN +93 1% Q  1 S ???Q1~ +9  N Q   S ??? n^ +0Q } +9  1 Q   S ??? n = + 0Q | +9   Q   S ???  nd  +d0Q { +9   Q  d S ???d n¸ c + 0Q z +9d   Q   S ??? nd* +d*0Q y +9   Q  * S ???* n»  - 0Q x +9*   Q   S ???  n*  -* 0Q w +9   Q   S ???  n  - 0Q v +9   Q   S ???  n h - 0Q u +9   Q   S ???  n   - 0Q t +9   Q   S ??? n  - 0Q s +9   Q   S ???  n  - 0Q r +9   Q   S ???  n  + 0Q q +9   Q    S ???  n + 0Q p +9  Q  S???n  + - 0Qo +9   Q  S???  n-0Q n +9 Q S???n + 0Qm +9 Q S???n-0Ql +9 !Q  "#S??? nr $-r 0Q k +9%&Q" r %'(S#???r %n¬n q )-n 0Q%j +9r "* +Q' n *,"-S(???n *nr v l .-r v 0Q*i +9n '/%0Q, v /1'2S-???v /nn z t 3-n z 0Q/h +9v ,4*5Q1 z 46,7S2???z +4nv ~ x 8-v ~ 0Q4g +9z 19/:Q6 ~ 9;1<S7???~ 9nz } =-z 0Q9f +9~ 6>4?Q; >@6AS<??? >n~ B-~ 0Q>e +9 ;C9DQ@ CE;FSA??? Cn® G- 0QCd +9 @H>IQE HJ@KSF??? Hn² L M- L0QHc +9 ENCOQJ LNPEQSK???LNn¶ RST- R0QNb +9LJUHVQP RUWJXSQ???RUnLYZ-L0QUa +9RP[N\QW []P^SX???![nR_-R0Q[` +9W`UaQ] `bWcS^???%`n d- 0Q`_ +9]e[fQb eg]hSc??? (en i- 0Qe^ +9 bj`kQg jlbmSh??? ,jn n- 0Qj] +9 goepQl oqgrSm??? /on s t- s0Qo\ +9 lujvQq suwlxSr???s2un yz{- y0Qu[ +9sq|o}Qw y|~qSx???y5|ns-s0Q|Z +9ywuQ~ wS???8ny-y0QY +9~|Q ~S???;n€-0QX +9Q S???>n‡ - 0QW +9Q S??? AnŽ - 0QV +9 Q S??? En¨  - 0QU +9 Q S???In¿ - 0QT +9Q S???Mn´+-0QS +9Q S???Qn-0QR +9Q S???Un-0QQ +9Q S???Xn¸ - 0QP +9Q S??? \n˜ - 0QO +9 Q S??? `n† - 0QN +9 Q S??? dnŽ V - V 0QM +9 Q V S???V hnž T - 0QL +9V Q S???lnV -V 0QK +9Q S???on©^ -^ 0QJ +9Q ^ S???^ qn \ -0QI +9^ Q S???un^ -^ 0QH +9Q S???xn-0QG +9Q S???{n - 0QF +9Q  S??? n  - 0QE +9 Q S??? n  -  0QD +9 Q  S??? n F  - F 0QC +9 Q F S???F n N D - N 0QB +9F Q N S???N nF M -F 0QA +9N Q S???nN  +-N 0Q@ +9  Q   S???  n - 0Q ? +9 Q ~ S??? n« = - =0Q> +9  Q} = S???=n» ;- 0Q= +9=Q| S???n=-=0Q< +9 Q{ !"S???n#-0Q; +9$%Q!z $&'S"???$nB (-B 0Q$: +9!)*Q&y B )+!,S'???B )nR A --R 0Q)9 +9B &.$/Q+x R .0&1S,???R .nB 2 P 2-B 2 0Q.8 +9R +3)4Q0w 2 35+6S1???2 3nR 0 7-R 0Q37 +92 08.9Q5v 8:0;S6???8n2 <=-2 <0Q86 +95>3?Q:u <>@5AS;???<>n¥j BC-j 0Q>5 +9<:D8EQ@t j DF:GSA???j Dn<Z h H-<Z 0QD4 +9j @I>JQFs Z IK@LSG???Z Inj J Y M-j J 0QI3 +9Z FNDOQKr J NPFQSL???J NnZ : H R-Z : 0QN2 +9J KSITQPq : SUKVSQ???: SnJ * 8 W-J * 0QS1 +9: PXNYQUp * XZP[SV???* Xn:  ) \-:  0QX0 +9* U]S^QZo  ]_U`S[??? ]n*  a-* 0Q]/ +9 ZbXcQ_n bdZeS`???bn b f- b 0Qb. +9_g]hQdm b gi_jSe???b gn" ` k-" 0Qg- +9b dlbmQil " lndoSj???" lnb  p-b  0Ql, +9" iqgrQnk  qsitSo??? qn"  u-" 0Qq+ +9 nvlwQsj vxnySt??? vn f z- f 0Qv* +9 s{q|Qxi f {}s~Sy???f {n¥ e - 0Q{) +9f xvQ}h xS~???nf -f 0Q( +9}{Qg }S???n-0Q' +9Qf S???n› - 0Q& +9Qe S??? n° -0Q% +9 Qd S???nš - 0Q$ +9Qc S???n• - 0Q# +9Qb S??? n -0Q" +9 Qa S???n‚ - 0Q! +9Q` S??? n -0Q +9 Q_ S???n 1- 10Q +9Q^ 1S???1n 0- 0Q +91Q] S??? n1 -1 0Q +9 Q\ S??? n¢ - 0Q +9 Q[ S??? n 9 - 90Q +9 QZ 9S???9n– 5- 0Q +99QY S??? n9. -9. 0Q +9 QX . S???. n’ , - 0Q +9. QW S??? n.  -.  0Q +9 QV  S??? nŠ &  - & 0Q +9 QU & S???& n 6 $ - 6 0Q +9& QT 6 S???6 n& 5 -& 0Q +96 QS S???n6 -6 0Q +9QR S??? +n - 0Q +9QQ S??? n -0Q +9 QP S???n > - > 0Q +9QO > S???> n< -0Q +9> QN  S???n> ( +-> (0Q +9  QM (  S ???( n¼-0Q  +9(S ???Q +9% RwQ -Q& RP (#ROAEDT_BODYFlagGroupColor_V1PQQ -T Stator_YokeP(#QL RP !hS ???O!SDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAME3)lq+?Q?;f?;f? 1 )3lc >+O,q rR?)?:pΈ?ar^??3z +?#o?P"?) {l+?Q?;f?;f?3{ .>+?Q?;f?;f?3.C {+O=Y߿)?wIٔʿzGz<𿚙?HiW -bܑ?3r +?Q?;f?;f?3q +dfffffh"f?)\(?߿LXz?3p +O?=Y߿)?:pΈڿar^<38k3 ` +P"?#o)+O,q?8rR)Y+?Q?;f?;f?3X_ >+?Q?;f?;f?3W +?Q?;f?;f?3V' +?Q?;f?;f?3U +?Q?;f?;f?3T:+?Q?;f?;f?3S+P"??#o)> + ֿ#^]?)?wIٔ?zGz<??HiW -bܑ37 X+?Q?;f?;f?3X6; +3TYrt)?:pΈ?ar^??3y +?#o?P"?)?wIٔʿzGz<𿚙?HiW +bܑ?3r +?Q?;f?;f?3q +dfffffh"f?)\(?߿LXz?3p +O?=Y߿)?:pΈڿar^<37k2 _ +P"?#o) ++?Q?;f?;f?3 +B+?Q?;f?;f?3A ++?Q?;f?;f?3@F +?Q?;f?;f?3?+ ?#^])= + ֿ#^]?)?wIٔ?zGz<??HiW +bܑ37 W+?Q?;f?;f?3W6: +3TYrt)R=R<R;R:R9R8R7R6R5R4R3R2R1R0R/R.R-?jj-wjkvs*-jwSN-wY~T-SUKYN++Tkw~+TWYKES-<WT+TL++W)*w-,L)W+-LTDBK-9L,X(--,-(.-,+-(XJ<D-6z-./+JU;D-<+;UJ/+U; +/{;J-{3t{ /.-{/ % - {P@= -  %s;-@  =+@.A+*),+.(A@-*vk+w+U +U\ +\U +U\\ +  v\-\U5 +5Ul\~ n+lUW5 i+  5n\-R,R+R*R~)Rw(Rq'Rl&Rg%Rb$R]#RW"RP!RJ RER@R;R6R1R,R'R"R01 >-0,2-1,-52`- ->1+  3e+  f3+3fe-32 0+24-425 - - 24+ -6+ -,0+ -765+,10 --7_ 56-5_7`12+ _876+8_& 2-6 t 7- 6  6 -t 6e1- tu45+e ut1+ e58 +  5 2t9+ 5eq5+t9q5-9t2&8- 96V-&_869+_&-_:p+V6&+:_1l3-1_a:g;.+ 6op:3+  6 (+o l'c;+ o6$+' <;$oc-; 'l1.:-   ;<gfk-< ')=-i?k)f<+kibga21+ik ?ibb=+=)?-=3b@-def@+=$<+p6-tv-5q+54u- `7\+RRRRR R R R R  > ?> >>LJ-?@ @?@@B]-AB@]@+AULBLL>J>+BLR  C DC CComM-DE EDEE8A-AFAA8EE+FAAmGmmoCMC+GmBR  H+IH HHjmn-I?+?I??7@-mcmmjHnH+cmGR R -R R >7FR R R R R R R R R R R R R R R R R R R} Rz Rw Rt Rq Rn Rk Rh Re Rb R_ R\ RY RV RS RP RM RJ RG RD RA R> R; R8 R5 R2 R/ R, R) R& R# R R R R R R R R R R R R R  iI+eB1?aY:pΈڿ?j +_o?DŽR:pΈ? k+:pΈڿcJqGOӴ?mp t췈8뿌$I$IQ?l +rXo]x?>Vp:pΈ?m+:pΈڿB[1m^b?AT̹?>Lᅩ$I$IQ?R R R R R R R ~R }R |R {R zR yR xR wR vR uR tR sR rR qR pS ???R oR nR mR lR kR jR iR hR gR fR eR dR cR bR aR `R _R ^R ]R} \Rz [Rw ZRt YRq XRn WRk VRh URe TRb SR_ RR\ QRX PRU ORO LRM KRJ JRG IRD HRA GR> FR; ER8 DR5 CR2 BR/ AR, @R) ?R& >R# =R <R ;R :R 9R 8R 7U++Urt++U+p+-U++U+U +Z-U +U +U +  -U +U / + UL +/zJ%L n  H%L -QJ :/nNKQn :JLQN :LJMRKyQ :}N{NRMxQ{ :ORNwQ :{VPROvQV :QRPuQ :VRRQtQ :STRRsQS :URTrjS~lnQ :SyVRUqQy :WRVpQ :<y:XRWoQ: :8gYRXnQg :=:ZRYmQ :g[RZlQ :j\R[kQj :]R\jQ :lj^R]iQ :ki_R^hQi ::8`R_gQ8 :iaR`fQ :8bRaeQ :cRbdQ :dRccQ :peRdbQp :fReaQ :pgRf`Q :hRg_Q - :iRh^Q :jRi]Q :fkRj\Qf :lRk[Q :famRlZQa :sqnRmYQq :ba`oRnXQ` :^qApRoWRpVlqjq :pΈڿql_o?DŽR:pΈڿrqnQr :sQ :rtQ :ruRsQ :vRuQ :wRvQ :xRwQ :QyRxQQ :zRyQ :Q{RzQ :|R{~Q :}R|}Q :n~R}|R~{Q :~RtQ~ :RQ :?~RQ? :RQ :?RQ :~RQ~ :RQ :~RQ :RQ :YRQY :RQ :YRQ :RQ :RQ :MJRQJ :H[RQ[ :LJRQ :]y[RQy :RQ :yRQ :RQ :RQ :B<RQ< :86RRRLzU }" +UX& Y+XU, +& % |YX-UXN. +NU2 +UN-8 +2 1 (N--U: +U-> .+UD +> = Q.-U<F +U:8J +:U=P +J I r;=:-U:R +U(V +(U\ +V U |(-U(l^ +Ukb +U:h +b a D:-Uj +Un +Ukt l+n m -kU7v 8+7Uk z 4+ U7x y+z y D74 -xU  u+Ux z+U +  @z-U +U -+U +  L --U +U1s +1Ub +  Obb1-rU+o++Urs+U`+b++sr-`U ]+ U`a+U} +v a`-}U{}+{U}x+U{|+VH{x}-U+UZ+ZU+-UZ+U7+7U+.-R 6R - 5R 4R 3R 2R 1R 0R /R .R -R ,R +R *R )R (R 'R &R %R $R #R "R !R R R R R R R R R R R R R R R R R R R R R R R -R R R} Rw Ru Rr Ro Rl Ri Rf Rc R` R] RW RU RR RM RK RH RE RB R? R< R9 R4 R2 R/ R, R) R& R# R R R R R R R R S ???S -???S -???S -???S -???S -???S -???S -???S -???S -???S ???O AEDT_EntityID_V1Q T :F^QS : Q^U : RQV :^RQW :GRQGX :[RQ[Y :IGcRQcZ :[RQ[ :cR Q\ :R Q] :PNR QN^ :wuR -Qu_ :hNfR Qf` :duKRQKa :ifSRQSb :KRQc :S?RQ?d :RQe :?RQf :CRQCg :ARQh :ECRRQRi :RQj :R1RQ1k :RQl :31CRQCm :ARQn :EC0RQ0o :.{RQ{p :#0!RQ!q :{RQr :!qRQqs :{RQ{t :sqRQu :R{PRQPv :NRQw :SPRQx :RQy :RQz :RQ{ :RQ| :RQ} :RQ~ :IGRQG :FRQ :JGRQ :RQ :bRQb :` RQ :[bYRQY :W RQ :\YRQ :oRQo :RQ :oRQ :~RQ :a_RQ_ :RQ :_uRQu :RQ :wuRQ :WURQU :\ZRQZ :XUKRQK :]ZRQ :"K RQ  :RQ : RQ :RQ :RQ :HRQH :{yRQy :wHRRQR :RQQ :uRQuP :SRQSO :QNuRQNN :L$SRQ$M :PNRQL :'$RQ'K :RQJ :)'RQI :kiRQiH :RQG :iRR X PNW-VUP/ +Q  : -RQ : RQ :RQ :RQ :RQ :<RQ< :RQ :<mRQm : RRQ@ :-+Q+? :QA :fR'R&Q> :s+R(Qs= :4R)Q4< :2sR*Q; :6n4R+Qn: :R,Q9 :pnnR-Qn8 :lR.Q7 :gdnR/Qd6 :bR0Q5 :fdR2Q4 :)&R1Q&3 :$5R3Q52 :(&R4R5Q! :rQr :Q" :RFQ# :XVREQV$ :Tv RDQv% :YV -R CQ& :v} R -BQ}' :|z R AQz( :x}] R @Q]) :}zR ?Q* :_]R>Q+ :  R=Q , :R<Q- :  dR;Qd. :usR:Qs/ :qdUR9QU0 :vsR8R7Q :rRGQ :RHQ :RIQ :xRJQx :RKQ :~xRLQ :RMQ :RNQ :ROQ :/,RPQ, :*. RQQ. :.,!R RQ :A."R!SR"TQlC :jf#Rh%QD :ol$R#$QE :%R$#R%"R^RR!RCUR*RMRNRRRIR\RTRR6R=* SJ( -m&T 'Stator_Yoke$end 'x_b' +??R vRuRtRsRrRqRpRoRnRmRlRkRjRiRhRgRfReRdRcRbRaR`!"^+!<W-"<!- "-Tc^!W+T#+ ]^c`- ] |- ]-!n+!"+[!$]+[%X+$S]!-SLS#$<!-S$#%-#S-Y&%#+%Y[X-YRY%&'+&Y-B('&-'B\[-B<B'( )-['\+s)u+) u-  )(+)+ \-\-sp-[-KJI-(B-T(+T&+<"!$+R_R^R]R\R[R|ZRwYRrXRmWRhVRcUR^TRYSRTRROQRJPREOR?NR9MR4LR/KR*JR%IR HRGRFRER DRCRBRAR@R?R>R=R<R;R:R9R8R7R6R5R4R3R2R1R0R/R.R-?ii-vijur)-iv~RM-vX}S-RTJXM+*Sjv}+SVXJDR-<VS*SK+*V()v-+K(V*-KSCAJ-9K+W',-+-'-,++,'WI;C-6y,-.+IT:C,;+:TI.+T: +.z:I-z3sz .--z. $ - zO?< -  $r:-?  <+?-@+)(++-'@?-)uj*v+T +T[ +[T +T[[ +  u[-[T4 +4Tk[} m+kTV4 h+  4m[-R,R+R*R})Rv(Rp'Rk&Rf%Ra$R\#RV"RO!RI RDR?R:R5R0R+R&R!R/0 +=-/+1-0+,41_- +,=0+ + +2d+ + +e2+2ed-21 +/+13-314 -  13+ 5+ +/+ 654++0/ -6^ 45-4^6_01+ ^765+7^% 1-5 s 6- 5  5 -s 5d0- st34+d ts0+ d47 +  4 1s8+ 4dp4+s8p4-8s1%7- 85U-%^758+^%-^9o+U5%+9^0k2-0^`9f:-+ 5no92+  5 '+n k&b:+ n5#+& ;:#nb-: &k0-9-   :;fej-; &(<-h>j(e;+jhaf`10+hj >haa<+<(>-<2a?-cde?+<#;+o5-su-4p+43t- +_6[+RR RR R R R R R  = >= ==KI->? ?>??A\-@A?\?+@TKAKK=I=+AKR  B CB BBnlL-CD DCDD7@-@E@@7DD+E@@lFllnBLB+FlAR  G*HG GGilm-H>*>H>>6?-lblliGmG+blFR R +R R =6ER R R R R R R R R R R R R R R R R R R| Ry Rv Rs Rp Rm Rj Rg Rd Ra R^ R[ RX RU RR RO RL RI RF RC R@ R= R: R7 R4 R1 R. R+ R( R% R" R R R R R R R R + R R R R R  iH+eB1?aY:pΈڿ?j +_o?DŽR:pΈ? k+:pΈڿcJqGOӴ?mp t췈8뿌$I$IQ?l +rXo]x?>Vp:pΈ?m+:pΈڿB[1m^b?AT̹?>Lᅩ$I$IQ?R R R R R R R ~R }R |R {R zR yR xR wR vR uR tR sR rR qR pS ???R oR nR mR lR kR jR iR hR gR fR eR dR cR bR aR `R _R ^R ]R| \Ry [Rv ZRs YRp XRm WRj VRg URd TRa SR^ RR[ QRW PRT ORN LRL KRI JRF IRC HR@ GR= FR: ER7 DR4 CR1 BR. AR+ @R( ?R% >R" =R <R ;R :R 9R 8R 7T*+Tqs+*T+o*-T*+T+T +Y-T +T +T +  -T +T . + TK +.zI$K n  G$K -QI 9.mMJQm 9IKQM 9KILRJyQ 9|MzMRLxQz 9NRMwQ 9zUORNvQU 9PROuQ 9UQRPtQ 9RSRQsQR 9TRSrjR}knQ 9RxURTqQx 9VRUpQ 9;x9WRVoQ9 97fXRWnQf 9<9YRXmQ 9fZRYlQ 9i[RZkQi 9\R[jQ 9ki]R\iQ 9jh^R]hQh 997_R^gQ7 9h`R_fQ 97aR`eQ 9bRadQ 9cRbcQ 9odRcbQo 9eRdaQ 9ofRe`Q 9gRf_Q + 9hRg^Q 9iRh]Q 9ejRi\Qe 9kRj[Q 9e`lRkZQ` 9rpmRlYQp 9a`_nRmXQ_ 9]p@oRnWRoVkpiq :pΈڿpk_o?DŽR:pΈڿqpnQq 9rQ 9qsQ 9qtRrQ 9uRtQ 9vRuQ 9wRvQ 9PxRwQP 9yRxQ 9PzRyQ 9{Rz~Q 9|R{}Q 9m}R||R}{Q 9}~RsQ} 9R~Q 9>}RQ> 9RQ 9>RQ 9}RQ} 9RQ 9}RQ 9RQ 9XRQX 9RQ 9XRQ 9RQ 9RQ 9LIRQI 9GZRQZ 9KIRQ 9\xZRQx 9RQ 9xRQ 9RQ 9RQ 9A;RQ; 975RRRKzT |! +TW% X+WT + +% $ {XW- TWM- ++MT 1 +TM,7 +1 0 'M-,T9 +T,= -+TC += < P--T;E +T97I +9T<O +I H q:<9-T9Q +T'U +'T[ +U T {'-T'k] +Tja +T9g +a ` C9-Ti +Tm +Tjs k+m l -jT6u 7+6Tjy 3+T6w x+y x C63-wT t+Tw y+T +  ?y-T +T +T +  K -T +T0r +0Ta +  Naa0-qT*n+*Tqr+T_*a+*rq-_T \+ T_`+T|  +u~ `_-|Tz|+zT|w+Tz{+UGzw|-T+TY+YT+-TY+T6+6T+--R 6R 5R 4R 3R 2R 1R 0R /R .R -R ,R +R *R )R (R 'R &R %R $R #R "R !R R R R R R R R R R R R R R R R R R R R R R R +R R~ R| Rv Rt Rq Rn Rk Rh Re Rb R_ R\ RV RT RQ RL RJ RG RD RA R> R; R8 R3 R1 R. R+ R( R% R" R R R R R R R R S ???S +???S +???S +???S +???S +???S +???S +???S +???S +???S ???O AEDT_EntityID_V1Q T 9E]QS 9 Q]U 9 RQV 9]RQW 9FRQFX 9ZRQZY 9HFbRQbZ 9ZRQ[ 9bR Q\ 9R Q] 9OMR QM^ 9vtR +Qt_ 9gMeR Qe` 9ctJRQJa 9heRRQRb 9JRQc 9R>RQ>d 9RQe 9>RQf 9BRQBg 9@RQh 9DBQRQQi 9RQj 9Q0RQ0k 9RQl 920BRQBm 9@RQn 9DB/RQ/o 9-zRQzp 9"/ RQ q 9zRQr 9 pRQps 9zRQzt 9rpRQu 9QzORQOv 9MRQw 9RORQx 9RQy 9RQz 9RQ{ 9RQ| 9RQ} 9RQ~ 9HFRQF 9ERQ 9IFRQ 9RQ 9aRQa 9_ RQ 9ZaXRQX 9V RQ 9[XRQ 9nRQn 9RQ 9nRQ 9}RQ 9`^RQ^ 9RQ 9^tRQt 9RQ 9vtRQ 9VTRQT 9[YRQY 9WTJRQJ 9\YRQ 9!JRQ 9RQ 9RQ 9RQ 9RQ 9GRQG 9zxRQx 9vGRRQR 9 RQ Q 9tRQtP 9R RQRO 9PMtRQMN 9K#RRQ#M 9OMRQL 9&#RQ&K 9RQJ 9(&RQI 9jhRQhH 9RQG 9hRR W OMV-UTO. +Q  9 RQ 9 RQ 9RQ 9RQ 9RQ 9;RQ; 9RQ 9;lRQl 9RRQ@ 9,*Q*? 9QA 9eR'R&Q> 9r*R(Qr= 93R)Q3< 91rR*Q; 95m3R+Qm: 9R,Q9 9ommR-Qm8 9kR.Q7 9fcmR/Qc6 9aR0Q5 9ecR2Q4 9(%R1Q%3 9#4R3Q42 9'%R4R5Q! 9qQq 9Q" 9RFQ# 9WUREQU$ 9SuRDQu% 9XU RCQ& 9~u| +R BQ|' 9{y R +AQy( 9w|\ R @Q\) 9|y R ?Q* 9^\R >Q+ 9 +R=Q, 9R<Q- 9 cR;Qc. 9trR:Qr/ 9pcTR9QT0 9urR8R7Q 9qRGQ 9RHQ 9RIQ 9wRJQw 9RKQ 9}wRLQ 9RMQ 9RNQ 9ROQ 9.+RPQ+ 9)-RQQ- 9-+ RRQ 9@-!R SR!TQkC 9ie"Rg%QD 9nk#R"$QE 9$R##R$"R]RR!RBUR)RMRNRQRHR[RSRR6R<) SJ' +l%T &Stator_Yoke$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0002465.x_b +Design_80.setup/NativeGeometryFiles/0002465.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -111204,15 +89517,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0002465.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0002465.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0002465.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0002465.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 Z)++ )?Wz?)5267nQ5%89:;2<=>?@+6;:ABCn7kDE )?Wz?:pΈ?DjFG7 A?nu-!UfntknQ/8tlt{-]tC p?Z]|?:pΈڿ\u|?<?:pΈ?C^6_X?W,?:pΈ?_C7`r?#VAd?:pΈڿu[k|?<?:pΈڿ2k-{yv+.n{}y{ztY-y-{zyvF-YFz+nYYt+k+n­Q8nr+:pΈڿpf<2J-RO 2<O I+_X?W,?)?@[\]^_`{|}~0123456789************************** @@ -111246,15 +89559,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0002593.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0002593.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0002593.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0002593.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 Z+,+)?U4?)I59X̌ -.+$??=@?:pΈڿ? n/0jÙ?J\hT?:pΈڿ *1VF2n34586789nQ6%:;<=7>?@3A-84<BCDn9bEF5-+?$keL?:pΈڿEaGH9cz?>jD4^?:pΈڿFcI9Je-?0?:pΈ?I%KL/MFnJdNFO ?q?:pΈڿN/PQR/JnOeMJD$??=@?:pΈ?M#STIUOnDf8OV$??=@?:pΈڿVgWDX ?q?:pΈ?WYZ[\VnXh]V^*FaK?aq0]?:pΈ?]_`aXn^iaXb*FaK?aq0]?:pΈڿacde]^nbjf^g)?U4?:pΈ?fhijGbngk\bkmB1?aY?:pΈ?\lmWjgnklCg0e-?0?:pΈڿC2no8Rkn0mek &?H=?:pΈڿe pqra0nQp6:esctquvwexyz+r s{|eHnQs5:r}p~{zr-|}GrnH`rE&?H=?:pΈ?_[H5-+?$keL?:pΈ?[3UWn^RmB1?aY?:pΈڿR0CNn]jcz?>jD4^?:pΈ?j\fn\UjÙ?J\hT?:pΈ?U!M[n[|)?U4?:pΈڿQ-:US{xU+(xxz/qy-/x-+n€y.TU-;TMB-+M+"n™U{+`r- nQ:n`+&?H=?:pΈ?~e\?D[?O:+&?H=?:pΈڿ4^n4^n?4+ ?q?:pΈ?4CnQ+{t?3TY?:pΈ?!vjD4^?:pΈڿ?n+)?U4?:pΈڿ?n+$??=@?:pΈڿ][?~e\5nw+{t?3TY?:pΈڿN2\-C 0"n. +jÙ?J\hT?:pΈڿ?Q :uG+ n¤Q!:]+ @@ -111331,7 +89644,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block R=_ *M SJ(_&T'Stator_Teeth32$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0002721.x_b +Design_80.setup/NativeGeometryFiles/0002721.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -111347,15 +89660,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0002721.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0002721.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0002721.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0002721.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 Z+,+5 @@ -111444,7 +89757,7 @@ C R= *M SJ(v&T'Stator_Teeth34$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0002849.x_b +Design_80.setup/NativeGeometryFiles/0002849.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -111460,15 +89773,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0002849.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0002849.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0002849.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0002849.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 Z+,+=@?$??)) Q7:&4R9- Q7Q&97R! P(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth36P(#QRPPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER0' Q'-:/LH#%l/FnQ,:Hm'Qm+:lpRX Qp*:TQmRY QQ):OrpRZ R[ QL.:J'iRW Qi/:NLRV RU R"; R < ?>78-q?+qnTB+BT-R S R T R6 R> R? R. QW8:URM RL Q<&:86tR}] R^ Ru\ R=_ *M SJ(W&T'Stator_Teeth36$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0002977.x_b +Design_80.setup/NativeGeometryFiles/0002977.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -111496,15 +89809,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0002977.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0002977.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0002977.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0002977.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 Z+,+W,?_X?)?@3A-8><BCDn9\EF#VAd?7`r?:pΈ?E[G9 Bcrm?_?:pΈڿF]H9Inu?:pΈڿar^<"nn +n12U{+_Sc3˥?:pΈ?ar^??3{Tis+?Cl?;f?;f?inh {-1Q:i2 ni -i1Q:2Ox+nu R; R8 R5 R2 R/ R+ O&SDL/TYSA_COLOURS#???S ???R S???fKBc+R R Qa2:LJR QJ3:HanR Qn4:MJ^R Q^5:\n{R Q{6:R^PR QP7:N{UR QU8:SPR R R R= *M SJ(bU&T'Stator_Teeth38$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0003105.x_b +Design_80.setup/NativeGeometryFiles/0003105.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -111531,15 +89844,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0003105.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0003105.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0003105.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0003105.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 Z+,+5Mg?WOa?)?@AB-//;CD n8\EFF~G?B?:pΈڿE[G8l?*I?:pΈ?F]H8IsZW?jEf?:pΈڿH#JKLMFnI^NFO??s)s?:pΈڿN*PQDRInO_SIT\Ygm?U8Ac?:pΈ?ar^??R& R$ R# R" RK RJ RI RH R~G R{F RxE RuD RrC RoB Rj@ Rh? Re> Rb= R_< R\; RY: RV9 RS8 RP7 RM6 RJ5 RG4 RD3 O?SDL/TYSA_COLOURS<???(,*W)-+S9???S5???O2AEDT_EntityID_V1G[_-q-[-_X-_[Dt4-'\+q+G?+e+GqeEn?=7e-Q19GsgQs09qyQg29enRS Qn39hgRR RQ Qy/9dbsRT Qb.9`yRU Q-9MJbRV QJ,9HjRW Qj+9L|JRX Q|*9ljRY Q)9RP|RZ QP(9N^R[ Q^'9D;PR\ Q;&9/6^R] R^ K@h->KKBHo+@Be7A?+B@K-HB+L+okH-}l3&-R% Q9& R- QQ&91R! P1(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth40P(#QRP3hS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER) RA R2 Qv59WURP QU69SvZRO QZ79XURN Q89\ZRM RL R<_ *M SJ(/&T'Stator_Teeth40$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0003233.x_b +Design_80.setup/NativeGeometryFiles/0003233.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -111571,15 +89884,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0003233.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0003233.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0003233.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0003233.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 Z+,+# Β?c5?)?@A4B+86<CDEn9gFG|^?JOn?:pΈ?FfHI9|^?JOn?:pΈڿGhJ9KGu?FT/?:pΈ?J LMNOGnKiPGQJiܧ)?ml8?:pΈ?P(RST/KnQjUKV>Vp?rXo]x?:pΈ?U/W3XTQnVkYQZPU@V? f @@ -111600,7 +89913,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block +9?4~G?)?:pΈڿar^<2R+PU@V? f ?)?:pΈ?ar^??3O+?Q?;f?;f?S???S???S???S???S???S???S???S???S???S???S}???Sx???St???Sq???Sn???S*???O&AEDT_EntityID_V1M/s+Xp+MJ+/#Pb nQ,:/R{QR+:PQ{-:b`R Q`.:_{R Q/:]`[R Q[0:YR R Q*:TWRR QW):UeR R MO-R  R  R R R Q3:R Q4:zxR Qx5:NLR QL6:Jx}R R R R R Rn Q<&:86cRf R R= *M SJ(h&T'Stator_Teeth42$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0005330.x_b +Design_80.setup/NativeGeometryFiles/0005330.x_b BIN000000008320 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -111616,15 +89929,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0005330.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0005330.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0005330.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0005330.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'F(( $)*2 *)++lY M?U N?ٺژ?WS? >,-+ V?Z r?7A`ڿ 2./ V?Z r?7A`? *0V 1n2,342.5nQ467892:;<=>+.8?@ n50A/]ba1?@[?7A`?A/@B5ͤ2j??7A`?/1C5 ͤ2j??7A`ڿCDEFG/nQD6CHIJEKLMCNOP-F H=QCBnGIRCSnQI6GDTRUVWGXYZ+S+G[?#`g0?7A`ڿ[,QS\ V?Z r?7A`ڿQ ]^_F[n\-_[B?#`g0?7A`?_`X@Q\nB.F\A]ba1?@[?7A`ڿQ`6_a]bXKML_RYW-@aN._AnQa6@8`cNd>P@EOe+d"P)>d=Nefg+PdN=Chij-OknN,Ylemng@>fM-mnonmpe_Mq-gmep;r-fsn>YrtMKEX@nq+KLuqvnMwxyQv~6qz{|}w{nWrq~x |nZqy4qt+ΌN?*>+7A`?ٺژ?[S?3y+?0u?V7A`ڿ ٺژ\St5fyl+/\??7s?7A`?WS?ٺژl6Ot3+ͤ2j??7A`??37l+]ba1?@[?7A`??83~+ΌN?*>+7A`ڿٺژ?[S?7nji~9w+HB?}?7A`?WSٺژ?:r~+?0u?V7A`? ٺژ\Srn;fw;Y+?#`g0?7A`ڿYnROf<x-+HB?}?7A`ڿWSٺژ?-=i +/\??7s?7A`ڿWS?ٺژinh-Q6i7hjFPi+ @@ -111632,7 +89945,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block +0Qq6)P6(#QZ)Qp6&Qr6RQ[RPAQ\S???Q]uS???Qt6uQ^oS???o num ++u0Qu6oQ_S???no -o0Qv61Q`1S???Q1w6Qa,S???Qx6,1kQbOkS???Qky6OQcYS???Qz6YksQdfsS???Qs{6fQerS???Q|6rs{Qfw{zS???Q{}6wvQzgqvS???Qhx|zS???Q|6xvQiS???QjiS???Qk7S???Q764S???RRRRRRRRRR2%+7A`ڿ??2&+n >~?qCG?\S? ٺژ2'u+ޣX?|3?ZSٺژ??R2+)o +7A`???ROSDL/TYSA_COLOURQnQ&RP(#ROAEDT_BODYFlagGroupColor_V1PQQmTMagnet1P(#QYRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMES???OAEDT_EntityID_V1RWUR?_pwn+pmgn.Ww-jhZCL+LKXEGj-RRR}=dP>F2<-Q86.4aRcRQ]6Q`HRbQH6F]DRRRTRJR9*# SJ(I&T'Magnet1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0005358.x_b +Design_80.setup/NativeGeometryFiles/0005358.x_b BIN000000004595 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -111648,15 +89961,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0005358.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0005358.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0005358.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0005358.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ1@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ1@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q1&'F(( )*3 )++?ݵ|г?h?Ӣm? ,-+7A`ڿh?Ӣm?ݵ|г? ./ܵ|г?7A`ڿ *0V 1n2,- @@ -111664,7 +89977,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block +M0QTD)QOXQV(4Y&QZRWQY&[\V]Q&0BV^RZPB_(#R^O_AEDT_BODYFlagGroupColor_V1P[`aQQ\%bcYdT]ShaftPbe(#Qcf\gRdPfDhhSg?OhSDL/TYSA_COLOUR_2OeAttGS_PS_LayerO aSDL/TYSA_NAMEPDiASX?OiSDL/TYSA_COLOUR8 2)? 0 )? =)SU?S9M2+MN +{Gz7A`???2N>++{Gz7A`ڿ??9S992-SP?SJ?SF?OCAEDT_EntityID_V1R;R7- +7A`?h?Ӣm?ݵ|г?* SJ(c@\Y6&T'Shaft$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0005367.x_b +Design_80.setup/NativeGeometryFiles/0005367.x_b BIN000000008320 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -111680,15 +89993,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0005367.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0005367.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0005367.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0005367.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'F(( $)*2 *+,+7A`ڿ?? >-.+td1?i? @@ -111705,7 +90018,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block M6?*>?7A`ڿQI9HSQM9LR R R @pAH3?-RROSDL/TYSA_COLOURS???S???S???OAEDT_EntityID_V1RRvR[ QR9/;PQ;976RRRRTR<*# SJ(M&T'Magnet2$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0005395.x_b +Design_80.setup/NativeGeometryFiles/0005395.x_b BIN000000167622 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -111721,15 +90034,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0005395.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0005395.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0005395.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0005395.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'F(( )*2 l+,+2 @@ -113424,7 +91737,7 @@ b RRR! RR=O* SJ(B&T'Rotor$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0006619.x_b +Design_80.setup/NativeGeometryFiles/0006619.x_b BIN000000004809 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113440,22 +91753,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0006619.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0006619.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0006619.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0006619.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 *+ZX?M݂_??? +,+n >~?qCG? ٺژ\S -.ͤ2j??  V/n012345.nQ3367894:;<+5 8:=>n.> ?#`g0?>5?. V?Z r??=>]ba1?@[?= @A5-?nQ@56=8BCADE:=F+G-- BE= nQB66-@HED<A-G10-D<*<D:E0-G=E1+1InG+,0-<+QI061J/KL+ KnF1; ,1M +lY M?U N?WS?ٺژM;2,+IW?CY$?WSٺژ?; 7n4+M2M+ޣX?|3?ٺژ?[S?Q726;NK3OP6PQ(#QN(R;7STQK16+SI7UROQS'R+KJNVRUPRWAQJ&R1IXSYSV???QX%R/ZJ[SY???Q//6X\I]QZ$R*\X^S[???*\nD + Q\.6*Z_/`S^???Q_-6ab\cR`Qa+de_fQb7P_'gRcPPh(#Q'8biRgTiMagnet1_Section1OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfMagnet1_Section1Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMER]OWSDL/TYSA_COLOURST???OQAEDT_EntityID_V1F5A++RL:DA<54;F-RHQ84653@sRCRsR9J)mNeaBb'P&6t(#T(NdFe35OtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0006715.x_b +Design_80.setup/NativeGeometryFiles/0006715.x_b BIN000000004809 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113471,15 +91784,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0006715.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0006715.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0006715.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0006715.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 *+b(?/˻8??? +,+ZeEQ?̶!?Q4<Φ -.'1?@Õ2?  V/n0+,12-3nQ134567289:+- 68; n3<td1?i? @@ -113488,7 +91801,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block 5n2EXQU(N95PYRW>PNZASY???OZSDL/TYSA_COLOURX9H,+|?`P?Q4<Φ??HEX+h ?cP?Q4<Φ?,X +Y?Ĵ'V??Q4<ΦSV???QO%N/[J\QR.4*[]/^RS=*RnC + Q[$N*RO_Q]-4`aRbR^<Q`+cd]eQa7L]'fRb;PLg(#Q'8ahRfThMagnet2_Section1OgAEDT_BODYFlagGroupColor_V1PcijQQd*kl`mTeMagnet2_Section1Pkn(#Ql#odpRmPoNqhSp???OqSDL/TYSA_COLOUR_2OnAttGS_PS_LayerO jSDL/TYSA_NAMES_???S\???SQ???OMAEDT_EntityID_V1:C8?0-0=:+Q644-1@rQ>64=@sRBDRsARrCR7BJ)lUd`>a'P&4t(#T(NdFe35OtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0006811.x_b +Design_80.setup/NativeGeometryFiles/0006811.x_b BIN000000010854 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113504,15 +91817,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0006811.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0006811.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0006811.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0006811.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 6*+Q<?? `+,+g6?%w}弿 ٺژ?\S? K-.b$%?b$%?  V/n01, 2345nQ267893:;0+4 8:<=n5H>?P%?R%?>G@A5?VOL??IB5.!|%$2?Q?BCD@E?n.JF? ݖ?`?FGH-I.nQG6FJKLHFMNO+-JP<F nIKMFQRnQK6IGSTMUVOIHNW-QSVIXYnRDIZ[%?Eg8??ZC\]RGI?-&m?[E^RA!~?p?^*_`ab[nAFc[>?#`g0?c&defaAnQd6cghieUjkclmn-f$gkocpna(hjc^qnQh6ad_rjU`eanst-q=aYuWf?D?Y<QvqH`^S?f(?u>wqx8|\?[R %?w.yzb{unx?Eu|,Sɔo!?Q?E }~Boxn|@bx6xrQ?},Ź6?b,^w|nA{|]'1?@Õ2?{0wn]B<ZDl?< 4-]nQ6<8JP:<1+0*UP0--:043;-41-1 n†<P+nŠ1;Q6; @@ -113525,7 +91838,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block  V?Z r?Q 6 Q6{y  R )Qy6wR 9Q6b_yR8Q_6^hR7R6VUMQW-Q+X+WIV+QS6QKR -R,\+R.QC6B}R/Q}6ECR0Q6o}gR1Qg6fdR2R3S???S???S???QRQS???QS???Q6QS???Q6Q;S???Q6; Q!"S???Q!1#$S"???Q61!/%Q#/&!'S$???Q/6#()Q&*(#*S'???*(n + Q(6*&+/,S*???Q+6-.(/R,Q-01+2Q.+'3R/P4(#Q'.5R3@T5Rotor_Section1O4AEDT_BODYFlagGroupColor_V1P067QQ189-:T2Rotor_Section1P8;(#Q9<1=R:P<>hS=???O>SDL/TYSA_COLOUR_2O;AttGS_PS_LayerO 7SDL/TYSA_NAMER),"R%!R RRS???OAEDT_EntityID_V1ta`+OUMF-O+Rncjs+R0:P+-0-Q8642?QJ6-G@R!R@-"R?!Rr5Ri4RT+RL*R9."J)91- .'P&6A(#T(M19_26GOAAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0007091.x_b +Design_80.setup/NativeGeometryFiles/0007091.x_b BIN000000004496 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113541,22 +91854,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007091.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007091.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007091.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007091.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ0@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ0@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q0&'(F)) * *2 *+?? ++ݵ|г?޵|г?;f;f ,-Q%?S%?  V.n/0  1234nQ1+5678290/-3 79,-n4--34 ܵ|г?Q7,531:;9<=/320>+,:=3 nQ:-5,7?=</9,>@A-</*/<9=A+>3=@+@ 6n>0+A,/-Q6*5@BC1D0 Cn9@E+@E +h?Ӣm?ݵ|г?E0++?QC)50F.6GP5HI(#QF J0CKBLQ.(5KMCNRG!QKJ.OFPQM'5*OQ.RRN1"*Mn< + QOJ*MKSQQ&5TUMVRRQT$WXQYQU.HQ'ZRVPH[(#Q'/U\RZT\Shaft_Section1O[AEDT_BODYFlagGroupColor_V1PW]^QQX#_`TaTYShaft_Section1P_b(#Q`cXdRaPcJehSd?OeSDL/TYSA_COLOUR_2ObAttGS_PS_LayerO ^SDL/TYSA_NAMEPJfASS?OfSDL/TYSA_COLOURSP?QB!J@6FgSL?Sg?OIAEDT_EntityID_V1RDR?2"R;!R83"J)`BXT:U'P&5h(#T(steel_stainlessOhAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0007793.x_b +Design_80.setup/NativeGeometryFiles/0007793.x_b BIN000000005974 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113572,22 +91885,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007793.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007793.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007793.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007793.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZT@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZT@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1QT&'(F)) * *2 *+.*)?~B??HG?}п %+,+`m8?;h?'[ e\ -.JE?qO?  V/n012 34-.nQ3K567849:0+- 79; n.< ,aQ?-aQ?<=>.C$W?E$W?=?@A<n>AB<WQ!?Uv.?ACDE=>nBFG> G,2?g1?FHI;EBnGEJB%?{?EKLFAGnJ;Gs#w?o;x?; MN-FJnQMM5;7HONPI9;Q+R-P0*IPLNFRST-9PN0-4:Q-Q-N+++ UnQS: R;IS+SVnRW+XQVH5SYZU[WZnT\S]X!S]^+8e ?|΃2? e\?'[] W2X+ 2?u2t?~C6)K^"\X_+R"?:#o??LXz??{Gz?\`na1W^_#1^,+LXz??Q?1bnc\_,$:_ +?LXz??Cl?: 6n4+,Q6J5:dU3eP5fg(#Qd=h:6ijQUI5+iV6kRezQi<h+UYdlRk{PhmAQY;hSVnioSl???Qn:hWZpYqSo???QZG5Wn`VrQp9h\`sntSq???Q`F5\pbZuQs8h1bvpwSt???QbE51s/`xQv7h/yszSw???Q/D5v{b|Qy6h*{v}Sz???*{nP + Q{C5*y~/S}???Q~B5{RrQ@~QRf~'RqPf(#Q'SRTStator_Teeth30_Section1OAEDT_BODYFlagGroupColor_V1PQQ?TStator_Teeth30_Section1P(#Q5RPhhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER|Z"RxuRutRrsOmSDL/TYSA_COLOURSj???OgAEDT_EntityID_V1cA@1+@P0D=c1-0P9@+DP@LAa\c-=0-LPDIETWa-aED\+TFLW+2]+!F8?#F8?;f;fR[|Q7L5-3MQHN5FMKROQKO5EHCR}QCP5AK?R~Q?Q5=CRR["RR8\"J)d?'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0007841.x_b +Design_80.setup/NativeGeometryFiles/0007841.x_b BIN000000007059 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113603,22 +91916,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007841.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007841.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007841.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007841.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 *+>BS?O??HG?}п 1+,+e(?kW?h9;?)f '-._q0]?*FaK?  V/n0123456nQ3c789:4;<=+5 9;>?n6#@AaY?nB1?@"B?6J=?'?A$C6D>jD4^?Sz?CEFGHAnD%HA.*keL?5-+?HIJCKDn.&LD J\hT?jÙ?LMN>B.nQMf7LOPQNRSTLUVW-> OT5LXnBPSL-@nQPg7BMYZSR[NBW\]--Y[BG nQYh7-P^_[R`S-]ab-G^`-CcnQ^i7GYEd`RF[Gbef-cGXgU4?.?X>c=@?$??g Kc?q? ?K hiHgn?!5g@ 0?e-?Qhl7KIjiR=JKk10-R=*=R;i0-JRiFHlmk-kHi1+1nnkmo0K=+QnZ71p/qrmqnl1+so/1s,+3TY?wt??LXz??{Gz?s.mto+@$&'?+i~?N\}0[2A,0\o +յ?;S?'[? e\?\unWaV,Qu_7\vwxyWLS\+awn]e\zVxnU\{|Qx`7V}u~U>NV+{ ~n€V<|+Vz+Ӗ?}A? e\?'[*<2|+R"?:#o??LXz??{Gz?z,a|t+?LXz??Cl?t-ezs+NBr3?~ܖ?)fh9;enb+atQ]7ewb-`e++nfme Q\7+qfGF++FRJ`Cf+l-lCJm+P7(#QL+Qq[7mnRQKmqpRPAQpJ1nS???QI/pS???Q/Y7nQH*S???*nR + QX7*/S???QW7RQUQm'RP(#Q'nRTStator_Teeth32_Section1OAEDT_BODYFlagGroupColor_V1PQQTTStator_Teeth32_Section1P(#QGRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMEROSDL/TYSA_COLOURQMeS???QNawvS???Qw^7auQvO\u}S???Q}PVxvS???QQ{~}S???Q~a7{x8QR<8S???< 8n4{Q8b7<~3S???RRROAEDT_EntityID_V1R2)+LXz??Q?({2+'0?E?wj?Զr?5T{+TRN;>{U-;RT=54<-R]B[a+RyRrQIk7HEhRjQEj7C^IRRRdR_RZQOe7>9MQ9d753ORRRQR:J)h'P&7(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0007889.x_b +Design_80.setup/NativeGeometryFiles/0007889.x_b BIN000000007059 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113634,22 +91947,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007889.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007889.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007889.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007889.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 *+&2ۓ?=ak??HG?}п 1+,+?ZfkcH?f8uN?бv. '-.lun5#?@Zz? )??"AB5LA?d?@$C5D<?’|?CEFGH@nD%=@.H1(?C6dw?= IJ4KDn.&LD V,?_X?LMNKG.nQMg6LOPQNRSTLU+V-KOT=LWnGPSLCXnQPh6GMEYSRFNGVZ[-XGW>Bcrm?_?WKXVAd?:`r?> 4XB.˿Z?REuD?B!H>?Z]|? p?H\]C-BnQ\j6HE^_]R`FHabc--^`HA nQ^k6-\de`Rf]-cgh-A df-?nQdl6A^ifR<`Ah10-R<*<R:f0-h-f1+1jnhgk0A<+QjZ61l/mngmnc1bok/1o,+%9?ux?fOy?vg?o.gpk+3TY?wt??LXz??{Gz?,0k +c? ?h9;?)fp-qro+Ų?[_4k?бv.f8uNܿqsnt+upr,;vp+t?"A>?)f?h9;?; 7n3urv+Zwr+։?3I?I)XP/߿ZxnVy+vw*uzv+?LXz??Cl?u {n|q;wz)b}w+LXz??Q?b~nagyz}(yz+O?=Y??LXz??{Gz?yn[bZ}Q]6y~x[GFy+FR]SC[ya-aC]b+P6(#QMyQ~\6bmQx^6ZRQNZxQ_6+xsR+nUZq QO+Qs`6q{RQPqsQ{a6us7RQQu{Q7b6;{2RQR;7RPAS???OSDL/TYSA_COLOURS???S???S???UKN++S???QLb~Qm[6gj~RQKgmlRQlJ1jS???QI/lS???Q/Y6jQH*S???*nR + QX6*/S???QW6RQUQm'RP(#Q'nRTStator_Teeth34_Section1OAEDT_BODYFlagGroupColor_V1PQQTTStator_Teeth34_Section1P(#QGRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERS???S???OAEDT_EntityID_V1|4Ju+JRT:=|ut-TRNJKtqU-:RJ<43;|-t=Tq+VLSZ+cH`g+RnRiReQEi6CP\R_RRYQOf6KIMQIe6=8ORQ8d642IRRRQR9J)d'P&6(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0007937.x_b +Design_80.setup/NativeGeometryFiles/0007937.x_b BIN000000007059 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113665,15 +91978,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007937.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007937.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007937.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007937.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 *+J?]_?͌Tj??HG?}п 1+,+?LXz??Cl? '-.F~G?B?  V/n01234-5nQ3c67894:;<+- 8:= n5!>?jZW?jEf?> @A5 @@ -113682,7 +91995,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block + QX6*/S???QW6RQUQmt'RPt(#Q'nRTStator_Teeth36_Section1OAEDT_BODYFlagGroupColor_V1PQQTTStator_Teeth36_Section1P(#QGRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERR S???|=R+= y-FnRVEyF|[-Qe6=8Q=Al?*I?AP> 7:?xMi[?Q8d6-3QQf6FDRQDg6BQSRRRRRo Rk Rc RUR9J)r'P&6(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0007985.x_b +Design_80.setup/NativeGeometryFiles/0007985.x_b BIN000000007059 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113698,15 +92011,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007985.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0007985.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007985.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0007985.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 *+}?>5}??HG?}п 1++Jn{~?l|??LXz??{Gz? ',-9?4~G?  V.n/0 1234nQ1c567829:;+3 79<=n4!=>FVp?oXo]x?= 3?4Eiܧ)?nl8?>"<4@r?n.by?< AB3C>n@#D>EGu?FT/?DFG,H@nE$I@J# Β?J5?IKLMNEnJ%CE-?9?,f+?COP<,Jn-&NJ {^?JOn?N QRI-nQQl5NKSRT;LNU0/-T;*;T9R/-LTRVIWXU-UIR0+0YnUX+/N;+QYZ50Z.[\X[nW0]^+00^ +D,F?T?ؒhPϿ^/X_++}ւ?qF? iJ)Q'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0008033.x_b +Design_80.setup/NativeGeometryFiles/0008033.x_b BIN000000007059 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113730,15 +92043,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0008033.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0008033.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0008033.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0008033.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 *+ |?sUN7??HG?}п 1+,+0z,?>?zmB?F*u '-.o* ?g?  V/n0123456nQ3c789:4;<=+5 9;>?n6@?)ygL? @@ -113747,7 +92060,7 @@ l 8n4vl~)vg|+j 2d?D`?kZb?ql?g(d~+4HA;[?h2?yRݐ￶X|*r~n+uE"??\ϗb? i}vu-FZJUCus{-;ZU=54<}-=Z;S0-0P=+JZNFG{rq-{CJr+NZWJKqo\-qGNo+ReRzfRklQRl7P_RcvRmR`uQMh7KIVRYtQIg7GEMRsQEf7CTIRrQTe7>9ERqQ9d753TRpRoR:nJ)R'P&7(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0008081.x_b +Design_80.setup/NativeGeometryFiles/0008081.x_b BIN000000005974 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113763,22 +92076,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0008081.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0008081.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0008081.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0008081.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZT@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZT@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1QT&'(F)) * *2 *+T5l?)TΧRq?HG?}п %+,+?LXz??Cl? -.UiIv?.I,?  V/n0+1 23-4nQ2K567839:0+- 79; n4<=Q?<>4Cl?=;4?^r(?8lR?; @A-B=n?C=Dl?v,?CEFG>?nDB?.2d.:?K[?BHI;GDn.GD ~Cŗ2?CG?GJKBC.nQJO5GHELKMFIGNOP-M0*FMQKCPRS-IMKABTUN-NBKO+OVnNRUWPGFR+RXnP+OYQXF5RZ[V\+[nSR Y RW1+Y=l?Hڨ?F*u?zmB?WOY+sRF?|d?zmB?F*u1!Y]+_Xs??]":1^+LXz??Q?: 6n3_]^#U],+㣷?CQ??H?U`nTO_^,$_^ +),q?rR??LXz??{Gz?_ anbU:,QaI5_c`6db-A_+AMI9;b_T-9MA0-3:b-T;IU+0M9Qe+QM0F>S+e-e>0->fQC<nQfQ5>EgP5hi(#QEP5CJfjRg"RjOiAEDT_EntityID_V1SCQ++Qc<k_almnQ`H5UlVaoQ6J5:ma2pRdQm=k:6cqRpPkrASq???OrSDL/TYSA_COLOURQl;kU`sctQVG5OsX`uRoQs:kOVZlvRuQZ9kRXwsxSv???Qw8k+[yZzSx???Q[E5+w/X{Qy7k/|w}Sz???Q/D5y~[Q|6k*~yS}???*~nM + Q~C5*|/S???QB5~RQ@QRh'RPh(#Q'SRTStator_Teeth42_Section1OAEDT_BODYFlagGroupColor_V1PQQ?TStator_Teeth42_Section1P(#Q5RPkhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER!R{St???Sn???R\QHN5B@JRLQ@M5;7HRQ7L5-2@RRR8"J)mf'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0008249.x_b +Design_80.setup/NativeGeometryFiles/0008249.x_b BIN000000009479 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113794,15 +92107,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0008249.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0008249.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0008249.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0008249.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 )*+Nm<@?q]?HG?}п I+,+?LXz??Q? 9-.FVp?oXo]x?  V/n012 3456nQ3789:4;<0+5 9;=>n67?.C$W?E$W??6@A6 ?.8B6 @@ -113812,7 +92125,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block + Q7*/S???Q7R: QQ'R9 P(#Q'RTStator_Yoke_Section1OAEDT_BODYFlagGroupColor_V1PQQ~TStator_Yoke_Section1P(#QkRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERk"R"R R R S???OAEDT_EntityID_V1a`+`Je]-]e+RC Qd7b_R"Q_7]dR"Q7a_R !R !Rl"Q7=9gQ9753Qg7fkR!R!R QS7-HR!R!R R OBKV+pPLz+LJDjEpzM-R~ Rq!QG7EiCRl!R!RT!RI!R:m"J)'P&7(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0008815.x_b +Design_80.setup/NativeGeometryFiles/0008815.x_b BIN000000079899 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -113828,15 +92141,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0008815.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0008815.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0008815.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0008815.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 *+h @@ -114207,7 +92520,7 @@ C (#T(vacuumO| AEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0008821.x_b +Design_80.setup/NativeGeometryFiles/0008821.x_b BIN000000004471 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -114223,22 +92536,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0008821.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0008821.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0008821.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0008821.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ0@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ0@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q0&'(F)) * *2 *+?? +,+? -.Q~?S~?  V/n0+1 234.nQ2+567839+0-4 79-:n.: O:4.gfffff?Q7,542;<9=>043+?+-;>4 nQ;-5-7@>=09-?AB+=0*0=9>B+?4>A-A 6n>+,B-0-Q6*5ACD2E+ Dn9A ,A1 +??gfffff?1,+gfffff?ifffff?;f;fQD)5+F/6GP5HI(#QF J+DKCLQ/(5KMDNRGP%QKJ/OFPQM'5*OQ/RRNT%*Mn= + QOJ*MKSQQ&5TUMVRRy"QT$WXQYQU.HQ'ZRVu"PH[(#Q'/U\RZT\RegionO[AEDT_BODYFlagGroupColor_V1PW]^QQX#_`TaTYRegionP_b(#Q`cXdRaPcJehSd???OeSDL/TYSA_COLOUR_2ObAttGS_PS_LayerO ^SDL/TYSA_NAMEPJfASS???OfSDL/TYSA_COLOURSP???QC!JA6FgSL???Sg???OIAEDT_EntityID_V1REv"R@U%R<w"R8V%J)`CXT;U'P&5h(#T(vacuumOhAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0009574.x_b +Design_80.setup/NativeGeometryFiles/0009574.x_b BIN000000004785 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -114254,22 +92567,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009574.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009574.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009574.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009574.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 *+(J?_Ljh??G*u?zmB? +,+9y:B?E"3s?zmBF*u? -9y:B?E"3s?  V.n/+0 123 nQ13456728+/-3 689:nQ64431;<8=>/32+?+9 ;>3@-n:3A-0:?ҵp?A@:lҏ!?:ͥ?-9: ^}?jא?@BC9AnQB64@;DC=/>@EFG+=/*/=8CG+>=C89?HE+E9CF-F5nCH,G@/-Q524FIJ1KH Jn>+FL,F0 +^}?jא?zmB?F*u0L,+lҏ!?:ͥ?F*u?zmB?LH0+0:?ҵp?F*uᅨzmBQJ14HMN5O+ Nn8H QN04+P.JQP4RS(#QP&T+NUMVQ./4UWNXRQh%QU%T.YPZQW.4*Y[.\RXg%*Wn= + QY$T*WU]Q[-4^_W`R\p%Q^+ab[cQ_7R['dR`f%PRe(#Q'8_fRdTfCoilOeAEDT_BODYFlagGroupColor_V1PaghQQb*ij^kTcCoilPil(#Qj#mbnRkPmTohSn???OoSDL/TYSA_COLOUR_2OlAttGS_PS_LayerO hSDL/TYSA_NAMEPTpAS]???OpSDL/TYSA_COLOURSZ???QM'THJPIqSV???QI(TF5MrSq???Sr???OSAEDT_EntityID_V1ROi%RKj%?3>H-Q;5496BsRDk%Rsn%R<m%R7l%J)jIb^B_'P&4t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0009588.x_b +Design_80.setup/NativeGeometryFiles/0009588.x_b BIN000000004789 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -114285,15 +92598,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009588.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009588.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009588.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009588.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 *+4?gjx??\ϗb? @@ -114305,7 +92618,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block Rn8G QT&O+RWPXQ//4WYRZRVw%QW%O/[T\QY.4*[]/^RZv%*Yn@ + Q[$O*YW_Q]-4`aYbR^u%Q`+cd]eQa7M]'fRbt%PMg(#Q'8ahRfThCoil_1OgAEDT_BODYFlagGroupColor_V1PcijQQd*kl`mTeCoil_1Pkn(#Ql#odpRmPoOqhSp???OqSDL/TYSA_COLOUR_2OnAttGS_PS_LayerO jSDL/TYSA_NAMEPOrAS_???OrSDL/TYSA_COLOURS\???SX???SU???SQ???ONAEDT_EntityID_V10@8=D+D;0-Q64431>sRE}%Rs|%R?z%R7{%J)lKd`<a'P&4t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0009599.x_b +Design_80.setup/NativeGeometryFiles/0009599.x_b BIN000000004789 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -114321,15 +92634,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009599.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009599.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009599.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009599.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 *+ `I?Ӊ")??8j@M?Hv? +,+*I?޶ ?8j@MIvԿ - @@ -114338,7 +92651,7 @@ E Mn9+LQM050N.JOP5PQ(#QN&R0MSTUQ./5SVMWQJ15+TM6XRO%QT'R+JNIYRX%PRZAQI(RG6T[SY???S[???OZSDL/TYSA_COLOURQS%R.\N]QV.5*\^._RW%*Vn> + Q\$R*VS`Q^-5abVcR_%Qa+de^fQb7P^'gRc%PPh(#Q'8biRgTiCoil_2OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfCoil_2Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMES`???S]???SU???OQAEDT_EntityID_V1RK%@4?+-Q<55:7CsRE%Rs%R=%R8%J)mIeaCb'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0009610.x_b +Design_80.setup/NativeGeometryFiles/0009610.x_b BIN000000004789 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -114354,22 +92667,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009610.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009610.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009610.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009610.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 *+< ?[??бv.?f8uN? +,+M+ ?TcL?f8uN?бv. -M5?.Sµ?  V.n/01 234 nQ235678390/-4 79:;nQ74542<=9>?/430@+: <?4ABn;4B?n?B:;-M+ ?TcL?-AB !MG?w?w ?ACD:-nQC65A<ED>/?AF+G+>/*/>9DG+?>D9:@HF+F:D+-+6nDH GA/-Q625+IJ2KH Jn?0+LQJ15HMN6O0 Nn9H,LH1+?n?бv.f8uNܿ1L,+!MG?w?w ?бv.?f8uN?,01 +M5?.Sµ?f8uNܿбv.?QN050P.JQP5RS(#QP&T0NUMVQ./5UWNXRQ%QU%T.YPZQW.5*Y[.\RX%*Wn> + QY$T*WU]Q[-5^_W`R\%Q^+ab[cQ_7R['dR`%PRe(#Q'8_fRdTfCoil_3OeAEDT_BODYFlagGroupColor_V1PaghQQb*ij^kTcCoil_3Pil(#Qj#mbnRkPmTohSn???OoSDL/TYSA_COLOUR_2OlAttGS_PS_LayerO hSDL/TYSA_NAMEPTpAS]???OpSDL/TYSA_COLOURSZ???QM'THJPIqSV???QI(T+6MrSq???Sr???OSAEDT_EntityID_V1RO%RK%@4?H-Q<55:7CsRE%Rs%R=%R8%J)jIb^C_'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0009621.x_b +Design_80.setup/NativeGeometryFiles/0009621.x_b BIN000000004789 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -114385,15 +92698,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009621.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009621.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009621.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009621.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 *+su+?G4l??)f?h9;? ++L?{r@}?)f?h9;? ,krW?«(?  V-n./  012 nQ03345617/.-2 5789nQ54320:;7<=.21/>+8 :=2?,n92@9 @@ -114402,7 +92715,7 @@ x Mn7G+QM03/N-JOP3PQ(#QN&R/MSTUQ-/3SVMWQJ13GTM4XRO%QT'RGJNIYRX%PRZAQI(RE4T[SY???S[???OZSDL/TYSA_COLOURQS%R-\N]QV.3*\^-_RW%*Vn< + Q\$R*VS`Q^-3abVcR_%Qa+de^fQb7P^'gRc%PPh(#Q'8biRgTiCoil_4OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfCoil_4Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMES`???S]???SU???OQAEDT_EntityID_V1RK%>2=G-Q:5385AsRC%Rs%R;%R6%J)mIeaAb'P&3t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0009632.x_b +Design_80.setup/NativeGeometryFiles/0009632.x_b BIN000000004789 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -114418,22 +92731,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009632.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0009632.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009632.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0009632.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 *+q!?%mKmU??)[? e\? +,+e:r?;l? e\?)[ -.!ƪ? %?  V/n01, 23-4nQ2356783910-- 79: n4;.{^L?Znm?;:4e:r?;l?.<4 @U.}?L4?<=>:.nQ=65<?@>A0B<C+D+: ?B-<;nQ?55:7=EBA>9:FGC+A0*9AB0-31F+F-BG-G HnB1+IC:>+-+6n>G Q625+JH2KP5LM(#QJ(N+6OPQH15GOQ6RRK%QO'NGHSJTQQ051S/HURR%1 Qn9GVQS&N1QWOXQ//5WYQZRU%QW%N/[S\QY.5*[]/^RZ%*YnA + Q[$N*YW_Q]-5`aYbR^%Q`+cd]eQa7L]'fRb%PLg(#Q'8ahRfThCoil_5OgAEDT_BODYFlagGroupColor_V1PcijQQd*kl`mTeCoil_5Pkn(#Ql#odpRmPoNqhSp???OqSDL/TYSA_COLOUR_2OnAttGS_PS_LayerO jSDL/TYSA_NAMEPNrAS_???OrSDL/TYSA_COLOURS\???SX???V1I+{^L?Znm? e\)[?IGV,+!ƪ? %?)[ e\,I +@U.}?L4?)[? e\?ST???SP???OMAEDT_EntityID_V10A9>D+D<0-Q745-2?sRE%Rs%R@%R8%J)lJd`=a'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0011298.x_b +Design_80.setup/NativeGeometryFiles/0011298.x_b BIN000000154880 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -114449,15 +92762,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0011298.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0011298.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0011298.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0011298.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>     @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZDS@@OSDL/TYSA_DENSITYP !(#TUNIT=mmO!AEDT_EntityName_V1P"#(#S{Gz?O#AEDT_ExtentScale_V1Q$%&F'' (  t()+Z,M|O?.2y>?YY? r *a;F?a;F?  V p+,- nQ+. /01, 2(+-k02 3*nQ0.-+452-,(6-3f47-89n*m-9 Z,M|O?.2y>?9h3:*XW?K5?:c8;9'p p`?e-?8a<=3>:n;^>?:Sh?z$?>\@A8B;n?YBC;`VSq? C?BWDE>F?nCTFG?tuy?m ?FRHIBJCnGOJKC]]'?c ?JMLMFNGnKJNOG_>+?~iR3q?NHPQJRKnOERSK[??RCTUNVOnS@VWOx`F?'?V>XYRZSnW;Z[S.t?F/@|?Z9\]V^Wn[6^_W!&??^4`aZb[n_1bc[ yA?5?b/de^f_nc,fg_PYg?dd?f*hibjcng'jkc?Dak ?j%lmfngnk"nogn\k?mQ .aR`?mQ .bRa@mQ .cRbAmQ .dRcBmQ.eRdCmQ.fReDmQ.gRfEmQ.hRgFmQ.iRhGmQ.jRiHmQ.kRjImQ.lRkJmQ.mRlKmQ.~|nRmLmQ|.zxoRnMmQx.vt|pRoNmQt.rpxqRpOmQp.nltrRqPmQl.jhpsRrQmQh.fdltRsRmQd.b`huRtSmQ`.^\dvRuTmQ\.ZX`wRvUmQX.VT\xRwVmQT.RPXyRxWmQP.NLTzRyXmQL.JHP{RzYmQH.FDL|R{ZmQD.B@H}R|[mQ@.><D~R}\mQ<.84@R~]mQ4.30<R^mR_mR5`mR1amJ'   %P$.(#T&vacuumOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_89.setup/NativeGeometryFiles/0022273.x_b +Design_80.setup/NativeGeometryFiles/0022273.x_b BIN000000080287 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -116005,15 +94318,15 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0022273.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_89.setup/NativeGeometryFiles/0022273.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0022273.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_80.setup/NativeGeometryFiles/0022273.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 *+?? u+,+6W^$?D?n?>@A6=.?9lcT??B6C-t/?4i?B9DEFG?nCH?Ie1?4eY?HeJKLMCnINCO(i?PZ?NPQRSInOTIU;GZ?600?TyVWXYOnUZO[$k?4[ ?Zi\]M^Un[_U`s>?OnS ?  ?naȔ?+mw?n̠d?0F2?ncėX?k%8?c_n۳`?Y*??nOF0?a4?nqt@ ?f?3na_?@[\]^_`{|}~0123456789************************** @@ -116436,113 +94749,105 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0000006.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0000006.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0000006.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0000006.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ @@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ @@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q &'F(( )*3 -+,+Gz濄[0 -ףp= -?࿭LXz -.+{t?3TY?:pΈ?EТ<}EB<j5px?9{Gz? h/0jEfݿsZW:pΈڿ *1V2n3456789nQ6 :;<=7>77?@?+8<ABCn9DE+Ѿ:pΈڿDFG9 -=.?ygL?:pΈ?EH9I`b*?+?伿:pΈڿHJKLMEnINEO<|:pΈ?NcPQRSInOTIUPQ!?Xv.?:pΈڿTVWXYOnULOZUiIv?.I,:pΈڿL[\]HUnZ^U_jEfݿsZW?:pΈڿ^4`abcZn_dZe q?:pΈ?dfghi_nej_k+Ѿ:pΈ?jlmnoenkbep|࿣<?:pΈڿb6qrs^knphkt pZ]|?:pΈ?huvwdpntxpy<?|?:pΈڿxz{|}tny~t -=.?ygL?:pΈڿ~"ynyYQ!Xv.:pΈ?[n ?q:pΈڿnygL? -=.?:pΈ? n>Vp?Xo]xп:pΈڿMnIiܧ)ml8?:pΈ?{nml8?Iiܧ)?:pΈ?nygL -=.ƿ:pΈڿ\nB?:pΈڿB8nml8?Iiܧ)?:pΈڿnq :pΈ?_SnmB1aY:pΈڿrnPQ!?Xv.:pΈڿn<?ɒ|:pΈ?!n`b*?^+??:pΈ?nsZW?jEfݿ:pΈ?naYdB1:pΈڿlnq ?:pΈ?n>Vp?rXo]x?:pΈ? nZ]|? p?:pΈ?njEf?sZW:pΈ?5n q?:pΈڿ:snPQ!Xv.?:pΈ?n[l8ԿIiܧ)?:pΈ?nmB1aY:pΈ?WnDŽR?_o?:pΈ? n - `b*?+?伿:pΈ? -  n Z]| p?:pΈڿF n >VprXo]xп:pΈ?knZ]|? p:pΈ?#n ygL -=.ƿ:pΈ?m!"#n $%btbtiZ:pΈڿ$&'() n%* + -=.ƿygL?:pΈڿ*,,-./%n+%0>VprXo]x?:pΈ?y123+n0 (+4 `O꿛9:pΈڿ(567$0n4 -809DŽR𿨥_oٿ:pΈڿ8b:;<=4n9 4>dB1?aY:pΈڿ?@9n> A9B`b*^+??:pΈ?AuCD3E>nB F>Cɒ|࿣<:pΈ?FQGHIJBnC8BK+Ѿ?:pΈڿKLCM p?Z]|?:pΈ?LNOPQKnMKRXv.YQ!?:pΈ?STiMnRMUav.PQ!:pΈڿpVWRnUXRYOv.?YQ!:pΈ?X+Z[\]UnYU^_o?DŽR:pΈ?7_`aYn^bYc߿ T:pΈڿbdefg^nc^hq? ?:pΈ?ijkcnhlcmbtbtiZ:pΈ?lnogphnmqhriO<&~?:pΈڿqstuvmnrwmx>Vp?Xo]xп:pΈ?wyz{rnx|r|Z]|? p?:pΈڿ|}~xxn|gxiO<&~:pΈ?gbl|n/|+?伿`b*?:pΈڿ/**n+?伿`b*:pΈڿnYQ!Xv.:pΈڿnn .I,?UiIv?:pΈڿ&n.I,UiIv?:pΈڿ(/n ^+??`b*?:pΈڿ$~n!_o?DŽR?:pΈڿn"-P?CP?:pΈ?n#>VprXo]x?:pΈڿPn$ q:pΈ?UIn%Iiܧ)?ml8Կ:pΈڿn&PQ!Xv.?:pΈڿ@n' -=.?ygL:pΈڿn(<?ɒ|:pΈڿn)ygL? -=.?:pΈڿn*q ?:pΈڿDn+XXv.?PQ!?:pΈڿXTn,sZWjEf?:pΈڿJn-.I,?UiIv:pΈڿn._oٿDŽR:pΈ?MJn/.I,UiIv?:pΈ?n0f-P?CPȿ:pΈڿf)bn1mB1?aY?:pΈڿXn2mB1?aY?:pΈ?Pn3Iiܧ)ml8?:pΈڿNn4<sZWjEfݿ:pΈڿ<d8n5ml8ԿIiܧ):pΈڿ~n6jEf?sZW:pΈڿn7 .I,?UiIv?:pΈ?n8_f3]?yػ?:pΈڿ  -  n9 _o?DŽR?:pΈ?n :JjEfݿsZW:pΈ?JOF n; [l8?Iiܧ):pΈڿn<p `O꿛9:pΈ?pln=>Vp?rXo]x?:pΈڿn>q? :pΈ?% !"n?P# ?q?:pΈ?P$%Ln#@&Xv.?PQ!?:pΈ?'()#n&A#*_f3]?yػ?:pΈ?+,-&n*B.&/UiIv.I,:pΈ?.q01E#*n/C2*3iO<&~?:pΈ?2456/n3D/7ygL -=.?:pΈڿR89:3n7E3;Iiܧ)?ml8?:pΈ? <=7n;F7>aYmB1?:pΈ??@;n>GA;B<|?:pΈ?ACDE>nBH>F+?伿`b*?:pΈ?GHIBnFIiBJdB1aY?:pΈ?iKLdFnJJwFM|࿣<?:pΈ?wNOPhJnMKJQDŽR𿺥_o?:pΈ?}RSEMnQLvMTbtbtiZ?:pΈڿvUVq7QnTMWQX+?伿`b*:pΈ?WEYZ[\TnXNT]^+??`b*?:pΈ?^_FXn]OsX` pZ]|?:pΈڿs8abb]n`Pu]c߿ T?:pΈڿude q`ncQ=`fIiܧ)[l8Կ:pΈڿ=`gh8cnfRci`b*+?伿:pΈڿZjklfniSfm_oٿDŽR:pΈڿ|no/inmTipIiܧ)[l8Կ:pΈ?iqrsmnpUmtjEf?sZW?:pΈ?uvQpntVpwrXo]x?>Vp?:pΈڿ xy~tnwWtz q:pΈڿt{|}wnzX~wrXo]x?>Vp:pΈ?~;aznYkzaY?mB1?:pΈ?k)nZDŽR?_oٿ:pΈ?{n[Z]| p:pΈڿhn\.I,?UiIv:pΈ?A\n]av.PQ!:pΈ?Yn^-P?CPȿ:pΈ?-nn_"aY?mB1:pΈ?"']n`.=.ƿygL:pΈڿnaIiܧ)?ml8?:pΈڿBnb[l8ԿIiܧ)?:pΈڿ0c.ncI p⿿Z]|:pΈ?ISFndEUiIv7.I,?:pΈ?EsA.ne|?<?:pΈڿnf0jEf?sZW?:pΈڿn0g7 `O꿛9?:pΈڿ7v(0nQ1 :7U57-(+-+n¹V7+Vv+v-n»7-(-n·QT :ni+:pΈڿ?'i=< ?h+ `O꿛9?yGz<?j+ffffffh"f:pΈڿ࿤LXz)\(?nk+:pΈ?Yd' 7 <;-?[]^S޿$I$IQ?"nl+=Y߿O:pΈڿElR 䰼?<yox?I{Gz?ynm+:pΈڿqp7s6L¬AT̹Q?[no+Xv.YQ!?:pΈ?cnp+:pΈ?P0w77?@?+8<ABCn9DE+Ѿ:pΈڿDFG9 +=.?ygL?:pΈ?EH9I`b*?+?伿:pΈڿHJKLMEnINEO<|:pΈ?NcPQRSInOTIUQQ!?Xv.?:pΈڿTVWXYOnULOZUiIv?.I,:pΈڿL[\]HUnZ^U_jEfݿsZW?:pΈڿ^4`abcZn_dZe q?:pΈ?dfghi_nej_k+Ѿ:pΈ?jlmnoenkbep|࿣<?:pΈڿb6qrs^knphkt pZ]|?:pΈ?huvwdpntxpy<?|?:pΈڿxz{|}tny~t +=.?ygL?:pΈڿ~"ynyZQ!Xv.:pΈ?[n ?q:pΈڿnygL? +=.?:pΈ? n>Vp?Xo]xп:pΈڿMnJiܧ)ml8?:pΈ?{nml8?Jiܧ)?:pΈ?nygL +=.ƿ:pΈڿ\nB?:pΈڿB8nml8?Jiܧ)?:pΈڿnq :pΈ?_SnmB1aY:pΈڿrnQQ!?Xv.:pΈڿn<?ʒ|:pΈ?!n`b*?^+??:pΈ?nsZW?jEfݿ:pΈ?naYeB1:pΈڿlnq ?:pΈ?n>Vp?rXo]x?:pΈ? nZ]|? p?:pΈ?njEf?sZW:pΈ?5n q?:pΈڿ:snQQ!Xv.?:pΈ?n[l8ԿJiܧ)?:pΈ?nmB1aY:pΈ?WnDŽR?_o?:pΈ? n + `b*?+?伿:pΈ? +  n Z]| p?:pΈڿF n >VprXo]xп:pΈ?knZ]|? p:pΈ?#n ygL +=.ƿ:pΈ?m!"#n $%bt`tiZ:pΈڿ$&'() n%* + +=.ƿygL?:pΈڿ*,,-./%n+%0>VprXo]x?:pΈ?y123+n0 (+4 `O꿖9:pΈڿ(567$0n4 +809DŽR𿨥_oٿ:pΈڿ8b:;<=4n9 4>eB1?aY:pΈڿ?@9n> A9B`b*^+??:pΈ?AuCD3E>nB F>Cʒ|࿣<:pΈ?FQGHIJBnC8BK+Ѿ?:pΈڿKLCM p?Z]|?:pΈ?LNOPQKnMKRXv.ZQ!?:pΈ?STiMnRMU`v.QQ!:pΈڿpVWRnUXRYPv.?ZQ!:pΈ?X+Z[\]UnYU^_o?DŽR:pΈ?7_`aYn^bYc߿ T:pΈڿbdefg^nc^hq? ?:pΈ?ijkcnhlcmbt`tiZ:pΈ?lnogphnmqhriO<&~?:pΈڿqstuvmnrwmx>Vp?Xo]xп:pΈ?wyz{rnx|r|Z]|? p?:pΈڿ|}~xxn|gxiO;&~:pΈ?gbl|n/|+?伿`b*?:pΈڿ/**n+?伿`b*:pΈڿnZQ!Xv.:pΈڿnn .I,?UiIv?:pΈڿ&n.I,UiIv?:pΈڿ(/n ^+??`b*?:pΈڿ$~n!_o?DŽR?:pΈڿn"-P?CP?:pΈ?n#>VprXo]x?:pΈڿPn$ q:pΈ?UIn%Jiܧ)?ml8Կ:pΈڿn&QQ!Xv.?:pΈڿ@n' +=.?ygL:pΈڿn(<?ʒ|:pΈڿn)ygL? +=.?:pΈڿn*q ?:pΈڿDn+XXv.?QQ!?:pΈڿXTn,sZWjEf?:pΈڿJn-.I,?UiIv:pΈڿn._oٿDŽR:pΈ?MJn/.I,UiIv?:pΈ?n0f-P?CPȿ:pΈڿf)bn1mB1?aY?:pΈڿXn2mB1?aY?:pΈ?Pn3Jiܧ)ml8?:pΈڿNn4<sZWjEfݿ:pΈڿ<d8n5ml8ԿJiܧ):pΈڿ~n6jEf?sZW:pΈڿn7 .I,?UiIv?:pΈ?n8_f3]?yػ?:pΈڿ  +  n9 _o?DŽR?:pΈ?n :JjEfݿsZW:pΈ?JOF n; [l8?Jiܧ):pΈڿn<p `O꿖9:pΈ?pln=>Vp?rXo]x?:pΈڿn>q? :pΈ?% !"n?P# ?q?:pΈ?P$%Ln#@&Xv.?QQ!?:pΈ?'()#n&A#*_f3]?yػ?:pΈ?+,-&n*B.&/UiIv.I,:pΈ?.q01E#*n/C2*3iO<&~?:pΈ?2456/n3D/7ygL +=.?:pΈڿR89:3n7E3;Jiܧ)?ml8?:pΈ? <=7n;F7>aYmB1?:pΈ??@;n>GA;B<|?:pΈ?ACDE>nBH>F+?伿`b*?:pΈ?GHIBnFIiBJeB1aY?:pΈ?iKLdFnJJwFM|࿣<?:pΈ?wNOPhJnMKJQDŽR𿻥_o?:pΈ?}RSEMnQLvMTbtctiZ?:pΈڿvUVq7QnTMWQX+?伿`b*:pΈ?WEYZ[\TnXNT]^+??`b*?:pΈ?^_FXn]OsX` pZ]|?:pΈڿs8abb]n`Pu]c߿T?:pΈڿude q`ncQ=`fJiܧ)[l8Կ:pΈڿ=`gh8cnfRci`b*+?伿:pΈڿZjklfniSfm_oٿDŽR:pΈڿ|no/inmTipJiܧ)[l8Կ:pΈ?iqrsmnpUmtjEf?sZW?:pΈ?uvQpntVpwrXo]x?>Vp?:pΈڿ xy~tnwWtz q:pΈڿt{|}wnzX~wrXo]x?>Vp:pΈ?~;aznYkzaY?mB1?:pΈ?k)nZDŽR?_oٿ:pΈ?{n[Z]| p:pΈڿhn\.I,?UiIv:pΈ?A\n]`v.QQ!:pΈ?Yn^-P?CPȿ:pΈ?-nn_"aY?mB1:pΈ?"']n`/=.ƿygL:pΈڿnaJiܧ)?ml8?:pΈڿBnb[l8ԿJiܧ)?:pΈڿ0c.ncI p⿿Z]|:pΈ?ISFndEUiIv7.I,?:pΈ?EsA.ne|?<?:pΈڿnf0jEf?sZW?:pΈڿn0g7 `O꿘9?:pΈڿ7v(0nQ1 :7U57-(+-+n¹V7+Vv+v-n»7-(-n·QT :ni+:pΈڿ?'i=< ?h+ `O꿚9?zGz<?j+lfffffh"f:pΈڿ࿨LXz*\(?nk+:pΈ?Xd' 7 <;-?]]^S޿$I$IQ?"nl+=Y߿O:pΈڿElR 䰼?=yox?H|Gz?ynm+:pΈڿqp7s6L¦AT̹Q?[no+Xv.ZQ!?:pΈ?cnp+:pΈ?P0w+:pΈ?QgpI<x?ć ?жm۶m{B9C+DŽR𿺥_o?:pΈڿ?BDnSEF>C|G>H+O,q?8rR:pΈڿ%aܚl,;G%?!?(?{Gz?GInJKLCH}MCN+:pΈ?뜻pfVprXo]x?:pΈڿ?n2EW+rR?O,q?:pΈ?2L?$I$IVp?Xo]xп:pΈڿ?nz+_oٿDŽR:pΈڿ?n+O,qڡrR:pΈ?mcܚl;G%<!(?8{Gz?pn+:pΈڿYd' 7 ?;-?[]^S?$I$In?@9=A9B+i|?Jn{~?:pΈ?hE<,P< -"|>.5u?X{Gz?ACnDE=B=F+Ov.?YQ!:pΈ?PGnHIBFJB.+Gz?:pΈ?br^<? -ףp= -?JKnLMF.NF +:pΈڿs4+i+:pΈ?QgpI<z?ć ?Զm۶m{B9C+DŽR𿻥_o?:pΈڿ?BDnSEF>C|G>H+O,q?8rR:pΈڿ$aܚl.;G%?!?*?{Gz?GInJKLCH}MCN+:pΈ?ꜻpfVprXo]x?:pΈڿ?n2EW+rR?O,q?:pΈ?2L?$I$IVp?Xo]xп:pΈڿ?nz+_oٿDŽR:pΈڿ?n+O,qڡrR:pΈ?ncܚl;G%<!)?8|Gz?pn+:pΈڿXd' 7 ?;-?]]^S?$I$In?@9=A9B+i|?Jn{~?:pΈ?hE<,P< +"|@.5u?Y{Gz?ACnDE=B=F+Pv.?ZQ!:pΈ?PGnHIBFJB.+Gz?:pΈ?ar^<? ףp= -?@n7<+ygL?.=.ƿ:pΈ?<Zn8+:pΈ?ҩ=en +UiIv7.I,?:pΈ?tn!f -+:pΈڿ?(h`윲?r췈8?lp ࿋$I$IQ?n %+<|?:pΈڿ?% nD! +:pΈ?B[1s^b<AT̹?>L?$I$In +UiIv7.I,?:pΈ?tn!f ++:pΈڿ?(h`윲?t췈8?mp ࿋$I$IQ?n %+<|?:pΈڿ?% nD! +:pΈ?B[1n^b<AT̹?>L?$I$IVp?rXo]x?:pΈ?n+:pΈڿeF|olDUfв?lRХ9+ ?"^]?:pΈ?VFg<%6=<O?C]@?X9{Gz?=?n@AE:>B:C+_oٿDŽR?:pΈ?BDnEF>CG>H+ml8ԿIiܧ):pΈ?GInJKCH CL+O"?#o:pΈڿ6p8I़?pE=4翑 '?{Gz?mMnN HL!HO+YQ!Xv.:pΈ?PnQLO"LR+"^] ֿ:pΈ?KRď?Iٔʿ:pΈ?br^?HiW -bܑ?F]<.5u? -"|?{Gz?n»>+O=Y߿:pΈ?fElR<]~ ?삁<yox?F{Gz?dn? -+6#o?X":pΈ?U^*6᡼*<F?hC?{Gz? -,n@+O,q rR?:pΈ?2AA&c<cVϓƿ$}~9{Gz?tnA+:pΈ?57+iVprXo]xп:pΈ?n}M+<|:pΈ?nQNLY+:pΈڿ\P0w??Iٔʿ:pΈڿbr^<HiW -bܑ?F]Lᅨ$I$IQ?FnX+UiIv?.I,?:pΈڿ?nY+|˿Jn{~:pΈڿ \iryHc0?%[I+ )j?{Gz?nZ+_މ+?:pΈڿbr^<𿉂̈́q?֪пOج𓼚?[g+ygL -=.ƿ:pΈڿ?gkn"dp\& ++??`b*:pΈ?&!n"" ]#+<?|?:pΈ?$n{% #^Q &+aYdB1:pΈڿ?Q'n(#&_s#)+ ?"^]:pΈڿNVFg<%6=?O?]@ۿX{Gz?s*n+bo&)`&,+sZW?jEfݿ:pΈ?-n.F),a)/+=Y߿O?:pΈڿ1;&Y<e??&aI?{Gz?50n1,/b+,2+=Y?O:pΈ?fElR <F?yox?I9{Gz?+43n4&/2c/5+ ֿ"^]?:pΈڿVFg<%6=?O??C]@?9{Gz?16n7825d29+:pΈڿeF|ol0Ufв?lRХ?K9<fK9+Xo]xп>Vp:pΈڿ?K?n@GA<gB<+:pΈڿ -2%]?}?Q -K?Vp?rXo]x?:pΈ?n+:pΈڿeF|olDUfв?lRХ:+ ?#^]?:pΈ?VFg<$6=<O?@]@?X9|Gz?=?n@AE:>B:C+_oٿDŽR?:pΈ?BDnEF>CG>H+ml8ԿJiܧ):pΈ?GInJKCH CL+P"?#o:pΈڿ6p8I़?qE=4翓 '?{Gz?mMnN HL!HO+ZQ!Xv.:pΈ?PnQLO"LR+#^] ֿ:pΈ?LRď^*6᡼z*?FzhC?{Gz?qWnXY RV$RZ+:pΈڿNj?:?wIٔʿ:pΈ?ar^?HiW +bܑ?L]<+O=Y߿:pΈ?hElRVprXo]xп:pΈ?n}M+<|:pΈ?nQNLY+:pΈڿbP0w??wIٔʿ:pΈڿar^<HiW +bܑ?L]Lᅪ$I$IQ?FnX+UiIv?.I,?:pΈڿ?nY+|˿Jn{~:pΈڿ \iryHc0?%[I+ )j?{Gz?nZ+_މ+?:pΈڿar^<𿅂̈́q?֪пSج𓼚?[g+ygL +=.ƿ:pΈڿ?gkn"dp\& ++??`b*:pΈ?&!n"" ]#+<?|?:pΈ?$n{% #^Q &+aYeB1:pΈڿ?Q'n(#&_s#)+ ?#^]:pΈڿQVFg<&6=?O?]@ۿY|Gz?s*n+bo&)`&,+sZW?jEfݿ:pΈ?-n.F),a)/+=Y߿O?:pΈڿ6;&Y<e? ?&aI?{Gz?50n1,/b+,2+=Y?O:pΈ?hElR <G?yox?I9|Gz?+43n4&/2c/5+ ֿ#^]?:pΈڿVFg<$6=?O??@]@?9|Gz?16n7825d29+:pΈڿeF|ol0Ufв?iRХ?J9<fK9+Xo]xп>Vp:pΈڿ?K?n@GA<gB<+:pΈڿ2%]?}?Q +K?LAT̹?޶m۶mUQ?vvnwrurx+O?=Y߿:pΈ?!;&Y;zF<^&aI?"?I9{Gz? ynzux}u{+:pΈڿCPgpيI?o?ć жm۶mQ?}|n}xx{,x~+sZWjEfݿ:pΈڿ?,n€}){~{+v$I(~?:pΈ?br^?s4hпp];{d#q?n„~~+:pΈڿ7#G$xtLAT̹?۶m۶mUQ?vvnwrurx+O?=Y߿:pΈ?";&Y;zF<^&aI?!?I9{Gz? ynzux}u{+:pΈڿAPgpڊI?q?ć Ӷm۶mQ?}|n}xx{,x~+sZWjEfݿ:pΈڿ?,n€}){~{+z$N(~?:pΈ?ar^?s4hпr];{d#q?n„~~+:pΈڿ7#G$xt+_f3]?yػyGz<?>n!+ ?q:pΈ?!wn+iO<&~?yGz<?n5>J+ɒ|࿣<:pΈڿ?JnH-GY+:pΈڿ=e<= ɏ@?D~b;^ZOжm۶mQ?YsnF+DŽR?_oٿ:pΈڿ?FnˆBy+:pΈڿ?(h`윲?r췈8lp ?$I$I+_f3]?yػzGz<?>n!+ ?q:pΈ?!wn+iO<&~?zGz<?n5>J+ʒ|࿣<:pΈڿ?JnH-GY+:pΈڿ=e<.5uӿx9{Gz?H n!"+Jn{~i|?:pΈ?hE|9|<>.5uӿ -"|{Gz?x#n$"M+ffffffh"f?:pΈ??࿭LXz?)\(?%n&"M<"Y+?#o?O"?:pΈڿ4^*6᡼*?F?_hC{Gz?YMV+i|˿Jn{~?:pΈڿhE<,P? -"|?.5u?X{Gz?-'n(8YQ'7 :)p*(Uq.++UdqU7(,8+U(V*-+.../*0n+1/*(-1213+I-4+/1+3.5p,+31/-567,/p3-p8n/l9,65.q8(-6:6,7F;-765-<=;F7+;<E7q-<E>E<;=c?B@+7Uqc;+U17^@+c2AE^BnQA :c`CBcDE_oٿDŽR?:pΈڿD[FB.=.ƿygL:pΈ?E{BGIiܧ)?ml8Կ:pΈ?{HIwEnG]EJPQ!?Xv.:pΈ?])K3X"GnJLGMɒ|࿣<:pΈڿLxNO/}JnMJP.I,UiIv:pΈڿQMnPQMR|?<?:pΈ?QSLPnR\PTdB1?aY:pΈ?\-UVWXRnTRXsZW?jEfݿ:pΈڿY.TnXITZ -=.ƿygL?:pΈ?I[XnZ}X\sZW?jEf?:pΈڿ}]^x_Zn\`ZaXo]xп>Vp:pΈ?`Ib@[\na\0rXo]xп>Vp?:pΈ?c5Ian0.adrXo]xп>Vp?:pΈڿd0edB1aY?:pΈڿ<fgdne:dh`b*^+??:pΈڿ:Tijkenh elsZW?jEf?:pΈ? mhnlhn+??`b*:pΈ??oplnnlq p?Z]|?:pΈڿrsnnqnt|?<:pΈ?3uvwqntqx<|:pΈڿfy<tnxstzDŽR𿨥_oٿ:pΈ?sg{|Rxnzx} p?Z]|:pΈڿ~zn}z>VprXo]xп:pΈڿ^=}nW} ?q:pΈ?W/w\n _f3]?yػ:pΈڿ _nDŽR?_oٿ:pΈڿnUiIv?.I,:pΈ? -n?:pΈ?Lono+Ѿ?:pΈ?omjnMygL?.=.ƿ:pΈڿMHnEsZWjEf?:pΈ?EAnaYmB1?:pΈڿBnSZ]| p:pΈ?SaNnq? :pΈڿnDŽR𿺥_o?:pΈڿLnRsZWjEfݿ:pΈ?ResNnZ]|? p:pΈڿn|?<:pΈڿnXv.YQ!?:pΈڿ>nZ]| p?:pΈ?AnrXo]x?>Vp?:pΈ?Fn)PQ!?Xv.?:pΈ?)knml8ԿIiܧ):pΈ?K`n_DŽR?_o?:pΈڿ_} nUiIv?.I,?:pΈ?naYdB1:pΈ?](nw p?Z]|:pΈ?w1 Wn)iO<&~:pΈڿ)$fn+??`b*:pΈڿ"n_oٿDŽR?:pΈ??Pn} p⿿Z]|:pΈڿ}vtLn3ygL -=.?:pΈ?3wAnq? ?:pΈڿ -Y|n]UiIv?.I,?:pΈڿ]LnrXo]x?>Vp:pΈڿn6btbtiZ?:pΈ?62nkUiIv7.I,?:pΈڿkVl:nG -=.?ygL:pΈ?=~nGD<?|?:pΈ?GnQF :{-~~-~x-{x+{o- ^o+o +o+v+v*s+v-j+~%+|-~|%-US+ nNU|+Udx+dU}a+{}d-naQK :co+O?=Y?:pΈڿ!;&Ys;zF?^&aI?"߅9{Gz?n+:pΈ??mæo< ?p6+ b>?Iٔ?:pΈ?br^?HiW -bܑF]骼?6n2q+ b>?Iٔ?:pΈڿbr^<HiW -bܑF]骼?nr|+:pΈڿh\<>?<E<;=c?B@+7Uqc;+U17^@+c2AE^BnQA :c`CBcDE_oٿDŽR?:pΈڿD[FB/=.ƿygL:pΈ?E{BGJiܧ)?ml8Կ:pΈ?{HIwEnG]EJQQ!?Xv.:pΈ?])K3X"GnJLGMʒ|࿣<:pΈڿLxNO/}JnMJP.I,UiIv:pΈڿQMnPQMR|?<?:pΈ?QSLPnR\PTeB1?aY:pΈ?\-UVWXRnTRXsZW?jEfݿ:pΈڿY.TnXITZ +=.ƿygL?:pΈ?I[XnZ}X\sZW?jEf?:pΈڿ}]^x_Zn\`ZaXo]xп>Vp:pΈ?`Ib@[\na\0rXo]xп>Vp?:pΈ?c5Ian0.adrXo]xп>Vp?:pΈڿd0eeB1aY?:pΈڿ<fgdne:dh`b*^+??:pΈڿ:Tijkenh elsZW?jEf?:pΈ? mhnlhn+??`b*:pΈ??oplnnlq p?Z]|?:pΈڿrsnnqnt|?<:pΈ?3uvwqntqx<|:pΈڿfy<tnxstzDŽR𿨥_oٿ:pΈ?sg{|Rxnzx} p?Z]|:pΈڿ~zn}z>VprXo]xп:pΈڿ^=}nW} ?q:pΈ?W/w\n _f3]?yػ:pΈڿ _nDŽR?_oٿ:pΈڿnUiIv?.I,:pΈ? +n?:pΈ?Lono+Ѿ?:pΈ?omjnMygL?/=.ƿ:pΈڿMHnEsZWjEf?:pΈ?EAnaYmB1?:pΈڿBnSZ]| p:pΈ?SaNnq? :pΈڿnDŽR𿻥_o?:pΈڿLnRsZWjEfݿ:pΈ?ResNnZ]|? p:pΈڿn|?<:pΈڿnXv.ZQ!?:pΈڿ>nZ]| p?:pΈ?AnrXo]x?>Vp?:pΈ?Fn)QQ!?Xv.?:pΈ?)knml8ԿJiܧ):pΈ?K`n_DŽR?_o?:pΈڿ_} nUiIv?.I,?:pΈ?naYeB1:pΈ?](nw p?Z]|:pΈ?w1 Wn)iO;&~:pΈڿ)$fn+??`b*:pΈڿ"n_oٿDŽR?:pΈ??Pn} p⿿Z]|:pΈڿ}vtLn3ygL +=.?:pΈ?3wAnq? ?:pΈڿ +Y|n]UiIv?.I,?:pΈڿ]LnrXo]x?>Vp:pΈڿn6btctiZ?:pΈ?62nkUiIv7.I,?:pΈڿkVl:nG +=.?ygL:pΈ?=~nGD<?|?:pΈ?GnQF :{-~~-~x-{x+{o- ^o+o +o+v+v*s+v-j+~%+|-~|%-US+ nNU|+Udx+dU}a+{}d-naQK :co+O?=Y?:pΈڿ!;&Yq;zF?^&aI?!9{Gz?n+:pΈ?? mæo< ?p6+ b>?wIٔ?:pΈ?ar^?HiW +bܑL]骼?6n2q+ b>?wIٔ?:pΈڿar^<HiW +bܑL]骼?nr|+:pΈڿh\<>?L?AT̹?#I$I<9Q?;<+|࿣<?:pΈ?g=nrp;<;>+E|?Jn{~:pΈ?ZiryHc0<%[I?* )j?99{Gz?<?n@<><A+:pΈ?7#G$xtA>D+:pΈ?EL?AT̹#I$IL9Q?EnFuADAG+rXo]x?>Vp?:pΈڿ?GHn°DGADI+.=.ƿygL:pΈ?AJnžKGIG9+O"??#o:pΈ?6p8I<^E=4? '?O9{Gz?(KnL%I9pIM+rXo]xп>Vp?:pΈ?M49N+aY?mB1:pΈ?4OnPoMNMQ+O"?#o:pΈ?U^*6<"ۘ<𿃦hC?FI9{Gz?\RnSNQ$NT+.I,UiIv?:pΈڿ?$Un<!QTQV+Jn{~?|˿:pΈڿ[iry<)RA?+ )j%[I9{Gz?WnXLTVT+3TY?{t:pΈڿ.vVp:pΈڿn -P?CP?:pΈڿ un ?q?:pΈڿna[l8?Iiܧ):pΈ?a9~n-_f3]?yػ:pΈ?-nlFUiIv.I,:pΈڿlXknFDygL?.=.ƿ:pΈ?w + +?#oP":pΈ?6pL?AT̹?#I$I<9Q?;<+|࿣<?:pΈ?g=nrp;<;>+E|?Jn{~:pΈ?ZiryHc0<'[I?* )j?99{Gz?<?n@<><A+:pΈ?7#G$xtA>D+:pΈ?@L?AT̹$I$IL9Q?EnFuADAG+rXo]x?>Vp?:pΈڿ?GHn°DGADI+/=.ƿygL:pΈ?AJnžKGIG9+P"??#o:pΈ?6p8I<`E=4? '?P9{Gz?(KnL%I9pIM+rXo]xп>Vp?:pΈ?M49N+aY?mB1:pΈ?4OnPoMNMQ+P"?#o:pΈ?T^*6<"ۘ<𿅦hC?FI9|Gz?\RnSNQ$NT+.I,UiIv?:pΈڿ?$Un<!QTQV+Jn{~?|˿:pΈڿ[iry<)RA?+ )j%[I9{Gz?WnXLTVT+3TY?{t:pΈڿ/vVp:pΈڿn -P?CP?:pΈڿ un ?q?:pΈڿna[l8?Jiܧ):pΈ?a9~n-_f3]?yػ:pΈ?-nlFUiIv.I,:pΈڿlXknFDygL?/=.ƿ:pΈ?w FnQ :y <-YK F-KMLX-M<+zF-zw+Fw+F+Ft u+tq+\ ut-p \L+  @@ -117094,85 +95399,85 @@ yQ R xP  AS -???O +???O SDL/TYSA_COLOURS -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S -???S| -???Sy -???Sv -???Ss -???Sp -???Sm -???Sj -???Sg -???Sd -???Sa -???S^ -???S[ -???SX -???SU -???SR -???SO -???SL -???SI -???SF -???SC -???S@ -???S= -???S: -???S7 -???S4 -???S1 -???S. -???S+ -???S( -???S% -???S" -???S -???S -???S -???S -???S -???S -???S -???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S +???S| +???Sy +???Sv +???Ss +???Sp +???Sm +???Sj +???Sg +???Sd +???Sa +???S^ +???S[ +???SX +???SU +???SR +???SO +???SL +???SI +???SF +???SC +???S@ +???S= +???S: +???S7 +???S4 +???S1 +???S. +???S+ +???S( +???S% +???S" +???S +???S +???S +???S +???S +???S +???S +???S -???S -???S -???S -???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???Q =? +???S +???S +???S +???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???Q =? Qn :A ? @@ -117233,290 +95538,289 @@ Qlf :M Q Ml  Qe :n [l R Q n] - R Q] [   S ???Q 7 ] S ???Qc :7 4[ Q 24 -  S ???Q4b :2  Q - 6   S ???Qa :6 + R Q] [   S ???Q 7 ] S ???Qc :7 4[ Q 24 +  S ???Q4b :2  Q + 6   S ???Qa :6  4 Q   -  S ??? n 6Q ` :  Q   S ???Q_ : %  Q %   S ???Q%^ :  Q    S ???Q] : % Q    S ???Q\ :  Q 3!  " S ???Q[ :3 0# Q! .0$  % S" ???Q0Z :.! j& Q$ 2j' ! ( S% ???QjY :2$ 0) Q' @* $ + S( ???QX :@' >j, Q* >- ' . S+ ???Q>W :* / Q- 0 * 1 S. ???QV :- >2 Q0 - 3 S1 ???QU :0 4 Q 5 0 6 S3 ???Q5 7 8 S6 ???QS :5 9 Q7 : 5 ; S8 ???QR :7 < Q: = 7 > S; ???QQ :: ? Q= @ : A S> ???QP := B Q@ C = D SA ???QO :@ E QC F @ G SD ???QN :C H QF eI C J SG ???QM :eF cK QI acF L SJ ???QcL :aI M Q N I O SL ???QN P Q SO ???QJ :N R QP S N T SQ ???QI :P QU QS NQPP V ST ???QQH :NS HW QP EHFS X SV ???QF BCY PZ SX ???QY <G[ F\ SZ ???QGE :<Y :C] Q[ :^ Y _ S\ ???Q:D :[ G` Q^ a [ b S_ ???QC :^ :c Qa d ^ e Sb ???QB :a f Qd g a h Se ???QA :d [i Qg [j d k Sh ???Q[@ :g l Qj  m g n Sk ???Q? :j [[o Qm ~ [p j q Sn ???Q[> :m 4r Qp } n4s m t Sq ???Q4= :np k[u Qs | ik[p v St ???Qk< :is S4w Q[{ mSQs x Sv ???QQz NOy [z Sx ???Qy y R{ Q| Sz ???QR9 :y O} Q{ x )y ~ S| ???Q8 :{ 'R Q)w ' { S~ ???Q v 8p ) S ???Qp6 :8 6' Q u 6 S ???Q65 : p Q t  S ???Q4 : 06 Q s 0 S ???Q03 :  Q r  S ???Q2 : 0 Q q  S ???Q1 :  Q p  S ???Q0 :  Q o - S ???Q/ : -  Q n  S ???Q. :  Q m  S ???Q- :   Q l z S ???Q, :z w Q k uw S ???Qw+ :u  Q j y S ???Q* :y 6w Q i 46 S ???Q6) :4 j Q h 8j S ???Qj( :8 6 Q g l S ???Q' :l j Q f  S ???Q& :  Q e  S ???Q% :   Q d  S ???Q$ :  Q c  S ???Q# :  Q b  S ???Q" : ' Q a ' S ???Q'! :  Q `  S ???Q : ' Q _  S ???Q : 9 Q ^ 9 S ???Q9 :  Q ]  S ???Q : 9 Q \  S ???Q :  Q [  S ???Q :  Q Z . S ???Q :. , Q Y , S ???Q, :  Q X  S ???Q : M, Q W M S ???QM :   Q V   S ???Q  :  WM Q U W S ???QW :   Q T Y S ???Q :Y W Q S  S ???Q :   Q R  S ???w n  Q  :  Q Q  S ???Q :   Q P  S ???Q :  Q O  S ???Q :  Q N  S ???Q :  Q M  S ???Q :  Q L   S ???Q :  Q K   S ???Q :  Q J   S ???Q +  S ??? n 6Q ` :  Q   S ???Q_ : %  Q %   S ???Q%^ :  Q    S ???Q] : % Q    S ???Q\ :  Q 3!  " S ???Q[ :3 0# Q! .0$  % S" ???Q0Z :.! j& Q$ 2j' ! ( S% ???QjY :2$ 0) Q' @* $ + S( ???QX :@' >j, Q* >- ' . S+ ???Q>W :* / Q- 0 * 1 S. ???QV :- >2 Q0 - 3 S1 ???QU :0 4 Q 5 0 6 S3 ???Q5 7 8 S6 ???QS :5 9 Q7 : 5 ; S8 ???QR :7 < Q: = 7 > S; ???QQ :: ? Q= @ : A S> ???QP := B Q@ C = D SA ???QO :@ E QC F @ G SD ???QN :C H QF eI C J SG ???QM :eF cK QI acF L SJ ???QcL :aI M Q N I O SL ???QN P Q SO ???QJ :N R QP S N T SQ ???QI :P QU QS NQPP V ST ???QQH :NS HW QP EHFS X SV ???QF BCY PZ SX ???QY <G[ F\ SZ ???QGE :<Y :C] Q[ :^ Y _ S\ ???Q:D :[ G` Q^ a [ b S_ ???QC :^ :c Qa d ^ e Sb ???QB :a f Qd g a h Se ???QA :d [i Qg [j d k Sh ???Q[@ :g l Qj  m g n Sk ???Q? :j [[o Qm ~ [p j q Sn ???Q[> :m 4r Qp } n4s m t Sq ???Q4= :np k[u Qs | ik[p v St ???Qk< :is S4w Q[{ mSQs x Sv ???QQz NOy [z Sx ???Qy y R{ Q| Sz ???QR9 :y O} Q{ x )y ~ S| ???Q8 :{ 'R Q)w ' { S~ ???Q v 8p ) S ???Qp6 :8 6' Q u 6 S ???Q65 : p Q t  S ???Q4 : 06 Q s 0 S ???Q03 :  Q r  S ???Q2 : 0 Q q  S ???Q1 :  Q p  S ???Q0 :  Q o + S ???Q/ : +  Q n  S ???Q. :  Q m  S ???Q- :   Q l z S ???Q, :z w Q k uw S ???Qw+ :u  Q j y S ???Q* :y 6w Q i 46 S ???Q6) :4 j Q h 8j S ???Qj( :8 6 Q g l S ???Q' :l j Q f  S ???Q& :  Q e  S ???Q% :   Q d  S ???Q$ :  Q c  S ???Q# :  Q b  S ???Q" : ' Q a ' S ???Q'! :  Q `  S ???Q : ' Q _  S ???Q : 9 Q ^ 9 S ???Q9 :  Q ]  S ???Q : 9 Q \  S ???Q :  Q [  S ???Q :  Q Z . S ???Q :. , Q Y , S ???Q, :  Q X  S ???Q : M, Q W M S ???QM :   Q V   S ???Q  :  WM Q U W S ???QW :   Q T Y S ???Q :Y W Q S  S ???Q :   Q R  S ???w n  Q  :  Q Q  S ???Q :   Q P  S ???Q :  Q O  S ???Q :  Q N  S ???Q :  Q M  S ???Q :  Q L   S ???Q :  Q K   S ???Q :  Q J   S ???Q : * - Q I *  S ???Q* :   Q H     S ??? ntQ  : * Q G t  S ???Q :t q  Q F oq   S ???Qq :o * Q E s*   S ???Q* :s q Q D b   S ???Q :b _* Q C ]_   S ???Q_ :]   Q B a !  " S ???Q  :a _# Q! A $  % S" ???Q :! | & Q$ @ }|' ! ( S% ???Q| :}$ z) Q' ? xz* $ + S( ???Qz -:x' |, Q* > |- ' . S+ ???Q -:|* z/ Q- = 0 * 1 S. ???Q -:- 2 Q0 < 3 - 4 S1 ???Q -:0 Y5 Q3 ; Y6 0 7 S4 ???QY -:3 8 Q6 : 9 3 : S7 ???Q -:6 Y; Q9 9 < 6 = S: ???Q -:9 6> Q< 8 6? 9 @ S= ???Q6 -:< A Q? 7 8B < C S@ ???Q -:8? :6D QB 6 :E ? F SC ???Q: -:B WG QE 5 WH B I SF ???QW -:E :J QH 4 LK E L SI ???Q -:LH IWM QK 3 GIH N SL ???QI -:GK O Q2 KK P SN ???Q1 Q R SP ???QQ 0 S T SR ???Q -:Q U QS / V Q W ST ???Q -:S X QV . Y S Z SW ???Q -:V [ \ QY - X[ ] V ^ SZ ???X[ n]VQ[ -:XY __ Q] , ]_` Y a S^ ???Q_ -:]] h[ b Q` + hc ] d Sa ???Qh -:` _e Qc * @f ` g Sd ???Q -:@c 0hh Qf ) 0i c j Sg ???Q0 -:f k Qi ( 1l f m Sj ???Q -:1i a0n Ql ' ao i p Sm ???Qa -:l q Qo & r l s Sp ???Q -:o at Qr % u o v Ss ???Q -:r 0w Qu $ 0x r y Sv ???Q0 -:u z Qx # f{ u | Sy ???Q -:fx e0} Q{ " ce~ x  S| ???Qe -:c{  Q~ !  { S ???Q -:~ e Q  ~ S ???Q -:  Q  > S ???Q -:> = Q  = S ???Q= -:  Q   S ???Q -: = Q   S ???Q -: - Q  - S ???Q- -:  Q  F S ???Q -:F D- Q  BD S ???QD -:B j Q  Ej S ???Qj -:E D Q   S ???Q -: dj Q  d S ???Qd -:  Q  % S ???Q -:% #d Q  !# S ???Q# -:! U Q  $U S ???QU -:$  # Q  < S ???< n“9$Q -:< ;U Q  9; S ???Q; -:9   Q   S ???Q + Q I *  S ???Q* :   Q H     S ??? ntQ  : * Q G t  S ???Q :t q  Q F oq   S ???Qq :o * Q E s*   S ???Q* :s q Q D b   S ???Q :b _* Q C ]_   S ???Q_ :]   Q B a !  " S ???Q  :a _# Q! A $  % S" ???Q :! | & Q$ @ }|' ! ( S% ???Q| :}$ z) Q' ? xz* $ + S( ???Qz +:x' |, Q* > |- ' . S+ ???Q +:|* z/ Q- = 0 * 1 S. ???Q +:- 2 Q0 < 3 - 4 S1 ???Q +:0 Y5 Q3 ; Y6 0 7 S4 ???QY +:3 8 Q6 : 9 3 : S7 ???Q +:6 Y; Q9 9 < 6 = S: ???Q +:9 6> Q< 8 6? 9 @ S= ???Q6 +:< A Q? 7 8B < C S@ ???Q +:8? :6D QB 6 :E ? F SC ???Q: +:B WG QE 5 WH B I SF ???QW +:E :J QH 4 LK E L SI ???Q +:LH IWM QK 3 GIH N SL ???QI +:GK O Q2 KK P SN ???Q1 Q R SP ???QQ 0 S T SR ???Q +:Q U QS / V Q W ST ???Q +:S X QV . Y S Z SW ???Q +:V [ \ QY - X[ ] V ^ SZ ???X[ n]VQ[ +:XY __ Q] , ]_` Y a S^ ???Q_ +:]] h[ b Q` + hc ] d Sa ???Qh +:` _e Qc * @f ` g Sd ???Q +:@c 0hh Qf ) 0i c j Sg ???Q0 +:f k Qi ( 1l f m Sj ???Q +:1i a0n Ql ' ao i p Sm ???Qa +:l q Qo & r l s Sp ???Q +:o at Qr % u o v Ss ???Q +:r 0w Qu $ 0x r y Sv ???Q0 +:u z Qx # f{ u | Sy ???Q +:fx e0} Q{ " ce~ x  S| ???Qe +:c{  Q~ !  { S ???Q +:~ e Q  ~ S ???Q +:  Q  > S ???Q +:> = Q  = S ???Q= +:  Q   S ???Q +: = Q   S ???Q +: - Q  - S ???Q- +:  Q  F S ???Q +:F D- Q  BD S ???QD +:B j Q  Ej S ???Qj +:E D Q   S ???Q +: dj Q  d S ???Qd +:  Q  % S ???Q +:% #d Q  !# S ???Q# +:! U Q  $U S ???QU +:$  # Q  < S ???< n“9$Q +:< ;U Q  9; S ???Q; +:9   Q   S ???Q : ; Q   Q -:  Q   S ???Q -:  Q  S ???Q -:  Q  S ???Q -:  Q c S ???Q +:  Q   S ???Q +:  Q  S ???Q +:  Q  S ???Q +:  Q c S ???Q :c a Q - _a S ???Qa -:_  Q b S ???Q -:b  a Q    S ???Q  -:   Q   S ???. n²^Q -:   Q   S ???Q -:   Q   S ???Q -:  Q   S ???Q -: h Q  h S ???Qh -:  Q  ~ S ???Q -:~ h Q   S ???Q -:  Q  S ???Q -:  Q   S ???Q -: H Q  H S ???QH -: 2 Q  2 S ???Q2 -: H Q   S ???Q -: 2 Q   S ???Q -:   Q  I S ???IO nV Q -:I G Q  G S ???QG -:   Q    S ???Q -: G Q    S ???Q -:  Q    S ???Q + _a S ???Qa +:_  Q b S ???Q +:b  a Q    S ???Q  +:   Q   S ???. n²^Q +:   Q   S ???Q +:   Q   S ???Q +:  Q   S ???Q +: h Q  h S ???Qh +:  Q  ~ S ???Q +:~ h Q   S ???Q +:  Q  S ???Q +:  Q   S ???Q +: H Q  H S ???QH +: 2 Q  2 S ???Q2 +: H Q   S ???Q +: 2 Q   S ???Q +:   Q  I S ???IO nV Q +:I G Q  G S ???QG +:   Q    S ???Q +: G Q    S ???Q +:  Q    S ???Q :  Q  <  - S ???Q + S ???Q :< : Q  8:  S - ???Q: -:8  Q  ;  S ???Q -:; : Q    S ???Q -:  Q     S ???Q -:  Q     S ???Q -:  Q     S ???Q -: = Q  =   S ???Q= -: r Q  pr!  " S ???Qr -:p =# Q!  g$  % S" ???Q -:g! er& Q$  de' ! ( S% ???Qe -:d$ f) Q'  ff* $ + S( ???Qf -:f' e, Q*  - ' . S+ ???Q -:* f/ Q-  !0 * 1 S. ???Q -:!- 2 Q0  3 - 4 S1 ???Q -:0 5 Q3  6 0 7 S4 ???Q -:3 8 Q6  9 3 : S7 ???Q -:6 J; Q9  AJ< 6 = S: ???QJ -:A9 ?> Q<  K?? 9 @ S= ???Q? -:K< IJA Q?  GIB < C S@ ???QI -:G? ?D QB  JE ? F SC ???Q -:JB sIG QE  -sH B I SF ???Qs -:-E +J QH  )+K E L SI ???Q+ -:)H sM QK  ,N H O SL ???Q -:,K +P QN  }Q K R SO ???Q -:}N S QQ  T N U SR ???Q -:Q V QT  W Q X SU ???Q -:T Y QW  Z T [ SX ???Q -:W D\ QZ  BD] W ^ S[ ???QD -:BZ _ Q]  F` Z a S^ ???Q -:F]  Db Q`  % c ] d Sa ???Q  -:%` $e Qc  $f ` g Sd ???Q$ -:c  h Qf  i c j Sg ???Q -:f '$k Qi  Q'l f m Sj ???Q' -:Qi Pn Ql  Po i p Sm ???QP -:l 'q Qo  r l s Sp ???Q -:o  Pt Qr   u o v Ss ???Q  -:r w Qu  x r y Sv ???Q -:u } z Qx  {}{ u | Sy ???Q} -:{x } Q{  ~ x  S| ???Q -:{ $} Q~  $ { S ???Q$ -:~  Q  ' ~ S ???Q -:' $$ Q  "$ S ???Q$ -:" ! Q  &! S ???Q! -:& ($ Q  ( S ???Q( -: ! Q   S ???Q -: ( Q   S ???Q -:  Q   S ???Q -:  Q   S ???Q -:  Q   S ???Q -:  Q   S ???Q -: 8 Q  p8 S ???Q8 -:p n Q  ln S ???Qn -:l &8 Q  o& S ???Q& -:o On Q  4O S ???QO -:4 2& Q  2 S ???Q2~ -:  O Q   S ??? n_ +1Q } -:  2 Q   S ??? n > + 1Q | -:   Q   S ???  ne +e1Q { -:   Q  e S ???e n¹ d + 1Q z -:e   Q   S ??? ne+ +e+1Q y -:   Q  + S ???+ n¼ + ???Q: +:8  Q  ;  S ???Q +:; : Q    S ???Q +:  Q     S ???Q +:  Q     S ???Q +:  Q     S ???Q +: = Q  =   S ???Q= +: r Q  pr!  " S ???Qr +:p =# Q!  g$  % S" ???Q +:g! er& Q$  de' ! ( S% ???Qe +:d$ f) Q'  ff* $ + S( ???Qf +:f' e, Q*  - ' . S+ ???Q +:* f/ Q-  !0 * 1 S. ???Q +:!- 2 Q0  3 - 4 S1 ???Q +:0 5 Q3  6 0 7 S4 ???Q +:3 8 Q6  9 3 : S7 ???Q +:6 J; Q9  AJ< 6 = S: ???QJ +:A9 ?> Q<  K?? 9 @ S= ???Q? +:K< IJA Q?  GIB < C S@ ???QI +:G? ?D QB  JE ? F SC ???Q +:JB sIG QE  -sH B I SF ???Qs +:-E +J QH  )+K E L SI ???Q+ +:)H sM QK  ,N H O SL ???Q +:,K +P QN  }Q K R SO ???Q +:}N S QQ  T N U SR ???Q +:Q V QT  W Q X SU ???Q +:T Y QW  Z T [ SX ???Q +:W D\ QZ  BD] W ^ S[ ???QD +:BZ _ Q]  F` Z a S^ ???Q +:F]  Db Q`  % c ] d Sa ???Q  +:%` $e Qc  $f ` g Sd ???Q$ +:c  h Qf  i c j Sg ???Q +:f '$k Qi  Q'l f m Sj ???Q' +:Qi Pn Ql  Po i p Sm ???QP +:l 'q Qo  r l s Sp ???Q +:o  Pt Qr   u o v Ss ???Q  +:r w Qu  x r y Sv ???Q +:u } z Qx  {}{ u | Sy ???Q} +:{x } Q{  ~ x  S| ???Q +:{ $} Q~  $ { S ???Q$ +:~  Q  ' ~ S ???Q +:' $$ Q  "$ S ???Q$ +:" ! Q  &! S ???Q! +:& ($ Q  ( S ???Q( +: ! Q   S ???Q +: ( Q   S ???Q +:  Q   S ???Q +:  Q   S ???Q +:  Q   S ???Q +:  Q   S ???Q +: 8 Q  p8 S ???Q8 +:p n Q  ln S ???Qn +:l &8 Q  o& S ???Q& +:o On Q  4O S ???QO +:4 2& Q  2 S ???Q2~ +:  O Q   S ??? n_ +1Q } +:  2 Q   S ??? n > + 1Q | +:   Q   S ???  ne +e1Q { +:   Q  e S ???e n¹ d + 1Q z +:e   Q   S ??? ne+ +e+1Q y +:   Q  + S ???+ n¼ - 1Q x -:+   Q   S ???  n+ -+ 1Q w -:   Q   S ???  n - 1Q v -:   Q   S ???  n i - 1Q u -:   Q   S ???  n  - 1Q t -:   Q   S ??? n  - 1Q s -:   Q   S ???  n - 1Q r -:   Q   S ???  n + 1Q q -:  Q    S ???  n  + 1Q p -:  Q  S???n +:+   Q   S ???  n+ -+ 1Q w +:   Q   S ???  n - 1Q v +:   Q   S ???  n i - 1Q u +:   Q   S ???  n  - 1Q t +:   Q   S ??? n  - 1Q s +:   Q   S ???  n - 1Q r +:   Q   S ???  n + 1Q q +:  Q    S ???  n  + 1Q p +:  Q  S???n   - 1Qo :  Q - S ??? + S ???  n -1Q n : -Q S???n +Q S???n  + 1Qm -: Q S???n -1Ql -:!"Q !#$S???!ns  %-s 1Q!k -:&'Q# s &()S$???s &n­o r *-o 1Q&j -:s #+!,Q( o +-#.S)???o +ns w m /-s w 1Q+i -:o (0&1Q- w 02(3S.???w 0no { u 4-o { 1Q0h -:w -5+6Q2 { 57-8S3???{ +: Q S???n -1Ql +:!"Q !#$S???!ns  %-s 1Q!k +:&'Q# s &()S$???s &n­o r *-o 1Q&j +:s #+!,Q( o +-#.S)???o +ns w m /-s w 1Q+i +:o (0&1Q- w 02(3S.???w 0no { u 4-o { 1Q0h +:w -5+6Q2 { 57-8S3???{ 5nw  y 9-w  1Q5g -:{ 2:0;Q7  :<2=S8??? :n{ ~ >-{ 1Q:f -: 7?5@Q< ?A7BS=??? ?n C- 1Q?e -: <D:EQA DF<GSB??? Dn¯ H- 1QDd -: AI?JQF IKALSG??? In³ M N- M1QIc -: FODPQK MOQFRSL???MOn· ST U- S1QOb -:MKVIWQQ SVXKYSR???SVnM Z [-M 1QVa -:SQ\O]QX \^Q_SY??? !\nS `-S1Q\` -: XaVbQ^ acXdS_???%an  e- 1Qa_ -:^f\gQc fh^iSd??? (fn j- 1Qf^ -: ckalQh kmcnSi??? ,kn o- 1Qk] -: hpfqQm prhsSn??? /pn t u- t1Qp\ -: mvkwQr tvxmySs???t2vn z{ |- z1Qv[ -:tr}p~Qx z}rSy???z5}nt -t1Q}Z -:zxvQ xS???8nz -z1QY -:}Q S???;n -1QX -:Q S???>nˆ  - 1QW -:Q S??? An - 1QV -: Q S??? En©  - 1QU -: Q S???In  - 1QT -:Q S???Mnµ ,-1QS -:Q S???Qn -1QR -:Q S???Un -1QQ -:Q S???Xn¹  - 1QP -:Q S??? \n™ - 1QO -: Q S??? `n‡ - 1QN -: Q S??? dn W - W 1QM -: Q W S???W hnŸ U - 1QL -:W Q S???lnW  -W 1QK -:Q S???onª_  -_ 1QJ -:Q _ S???_ qn¡] -1QI -:_ Q S???un_  -_ 1QH -:Q S???xn -1QG -:Q S???{n  - 1QF -:Q  S??? n  - 1QE -: Q  S??? n  -  1QD -: Q  S??? n G  - G 1QC -: Q G S???G n O E - O 1QB -:G Q O S???O nG N -G 1QA -:O Q  S???nO +:{ 2:0;Q7  :<2=S8??? :n{ ~ >-{ 1Q:f +: 7?5@Q< ?A7BS=??? ?n C- 1Q?e +: <D:EQA DF<GSB??? Dn¯ H- 1QDd +: AI?JQF IKALSG??? In³ M N- M1QIc +: FODPQK MOQFRSL???MOn· ST U- S1QOb +:MKVIWQQ SVXKYSR???SVnM Z [-M 1QVa +:SQ\O]QX \^Q_SY??? !\nS `-S1Q\` +: XaVbQ^ acXdS_???%an  e- 1Qa_ +:^f\gQc fh^iSd??? (fn j- 1Qf^ +: ckalQh kmcnSi??? ,kn o- 1Qk] +: hpfqQm prhsSn??? /pn t u- t1Qp\ +: mvkwQr tvxmySs???t2vn z{ |- z1Qv[ +:tr}p~Qx z}rSy???z5}nt -t1Q}Z +:zxvQ xS???8nz -z1QY +:}Q S???;n -1QX +:Q S???>nˆ  - 1QW +:Q S??? An - 1QV +: Q S??? En©  - 1QU +: Q S???In  - 1QT +:Q S???Mnµ ,-1QS +:Q S???Qn -1QR +:Q S???Un -1QQ +:Q S???Xn¹  - 1QP +:Q S??? \n™ - 1QO +: Q S??? `n‡ - 1QN +: Q S??? dn W - W 1QM +: Q W S???W hnŸ U - 1QL +:W Q S???lnW  -W 1QK +:Q S???onª_  -_ 1QJ +:Q _ S???_ qn¡] -1QI +:_ Q S???un_  -_ 1QH +:Q S???xn -1QG +:Q S???{n  - 1QF +:Q  S??? n  - 1QE +: Q  S??? n  -  1QD +: Q  S??? n G  - G 1QC +: Q G S???G n O E - O 1QB +:G Q O S???O nG N -G 1QA +:O Q  S???nO  -O 1Q@ -:  Q  S ???  n - 1Q ? -: Q~ S??? n¬ > - >1Q> -:  Q} >S???>n¼ < - 1Q= -:>Q| S???n> ->1Q< -: !Q{  "#S??? n $-1Q ; -:%&Q"z %'(S#???%nC  )-C 1Q%: -:"* +Q'y C *,"-S(???C *nS B .-S 1Q*9 -:C '/%0Q,x S /1'2S-???S /nC 3 Q 3-C 3 1Q/8 -:S ,4*5Q1w 3 46,7S2???3 4nS 1 8-S 1Q47 -:3 19/:Q6v 9;1<S7???9n3 = >-3 =1Q96 -:6?4@Q;u =?A6BS<???=?n¦k C D-k 1Q?5 -:=;E9FQAt k EG;HSB???k En=[ i I-=[ 1QE4 -:k AJ?KQGs [ JLAMSH???[ Jnk K Z N-k K 1QJ3 -:[ GOEPQLr K OQGRSM???K On[ ; I S-[ ; 1QO2 -:K LTJUQQq ; TVLWSR???; TnK + 9 X-K + 1QT1 -:; QYOZQVp + Y[Q\SW???+ Yn;  * ]-;  1QY0 -:+ V^T_Q[o  ^`VaS\??? ^n+  b-+ 1Q^/ -: [cYdQ`n ce[fSa???cn c  g- c 1Qc. -:`h^iQem c hj`kSf???c hn# a l-# 1Qh- -:c emcnQjl # moepSk???# mnc  ! q-c  1Qm, -:# jrhsQok  rtjuSp??? rn#  v-# 1Qr+ -: owmxQtj wyozSu??? wn g {- g 1Qw* -: t|r}Qyi g |~tSz???g |n¦ f - 1Q|) -:g ywQ~h yS???ng  -g 1Q( -:~|Qg ~S???n€ -1Q' -:Qf S???nœ  - 1Q& -:Qe S??? n± -1Q% -: Qd S???n›  - 1Q$ -:Qc S???n–  - 1Q# -:Qb S??? n -1Q" -: Qa S???nƒ +:  Q  S ???  n - 1Q ? +: Q~ S??? n¬ > - >1Q> +:  Q} >S???>n¼ < - 1Q= +:>Q| S???n> ->1Q< +: !Q{  "#S??? n $-1Q ; +:%&Q"z %'(S#???%nC  )-C 1Q%: +:"* +Q'y C *,"-S(???C *nS B .-S 1Q*9 +:C '/%0Q,x S /1'2S-???S /nC 3 Q 3-C 3 1Q/8 +:S ,4*5Q1w 3 46,7S2???3 4nS 1 8-S 1Q47 +:3 19/:Q6v 9;1<S7???9n3 = >-3 =1Q96 +:6?4@Q;u =?A6BS<???=?n¦k C D-k 1Q?5 +:=;E9FQAt k EG;HSB???k En=[ i I-=[ 1QE4 +:k AJ?KQGs [ JLAMSH???[ Jnk K Z N-k K 1QJ3 +:[ GOEPQLr K OQGRSM???K On[ ; I S-[ ; 1QO2 +:K LTJUQQq ; TVLWSR???; TnK + 9 X-K + 1QT1 +:; QYOZQVp + Y[Q\SW???+ Yn;  * ]-;  1QY0 +:+ V^T_Q[o  ^`VaS\??? ^n+  b-+ 1Q^/ +: [cYdQ`n ce[fSa???cn c  g- c 1Qc. +:`h^iQem c hj`kSf???c hn# a l-# 1Qh- +:c emcnQjl # moepSk???# mnc  ! q-c  1Qm, +:# jrhsQok  rtjuSp??? rn#  v-# 1Qr+ +: owmxQtj wyozSu??? wn g {- g 1Qw* +: t|r}Qyi g |~tSz???g |n¦ f - 1Q|) +:g ywQ~h yS???ng  -g 1Q( +:~|Qg ~S???n€ -1Q' +:Qf S???nœ  - 1Q& +:Qe S??? n± -1Q% +: Qd S???n›  - 1Q$ +:Qc S???n–  - 1Q# +:Qb S??? n -1Q" +: Qa S???nƒ  - 1Q! :Q` - S??? + S??? n -1Q : - Q_ S???n + Q_ S???n 2 - 21Q -:Q^ 2S???2n 1 - 1Q -:2Q] S??? n2 -2 1Q -: Q\ S??? n£ - 1Q -: Q[ S??? n : - :1Q -: QZ :S???:n— 6 - 1Q -::QY S??? n:/ -:/ 1Q -: QX / S???/ n“ - - 1Q -:/ QW S??? n/  -/  1Q -: QV  S??? n‹ '  - ' 1Q -: QU ' S???' n 7 % - 7 1Q -:' QT 7 S???7 n' 6 -' 1Q -:7 QS S???n7  -7 1Q -:QR S??? +:Q^ 2S???2n 1 - 1Q +:2Q] S??? n2 -2 1Q +: Q\ S??? n£ - 1Q +: Q[ S??? n : - :1Q +: QZ :S???:n— 6 - 1Q +::QY S??? n:/ -:/ 1Q +: QX / S???/ n“ - - 1Q +:/ QW S??? n/  -/  1Q +: QV  S??? n‹ '  - ' 1Q +: QU ' S???' n 7 % - 7 1Q +:' QT 7 S???7 n' 6 -' 1Q +:7 QS S???n7  -7 1Q +:QR S??? n  - 1Q -:QQ S??? n -1Q -: QP S???n ?  - ? 1Q -:QO ? S???? n= -1Q +:QQ S??? n -1Q +: QP S???n ?  - ? 1Q +:QO ? S???? n= -1Q :? QN   -S???n? ) -? )1Q +S???n? ) -? )1Q :  Q M ) S -???) n½ -1Q  -:) S???Q +???) n½ -1Q  +:) S???Q :& RwQ Q& RP (#ROAEDT_BODYFlagGroupColor_V1PQQ -T Stator_YokeP(#QL RP !hS ???O!SDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAME3)lq+?Q?;f?;f? 1 )3lc >+O,q rR?)?:pΈ?br^??3z +?#o?O"?) {l+?Q?;f?;f?3{ .>+?Q?;f?;f?3.C {+O=Y߿)?IٔʿyGz<𿚙?HiW -bܑ?3r +?Q?;f?;f?3q +ffffffh"f?)\(?࿭LXz?3p +O?=Y߿)?:pΈڿbr^<38k3 ` +O"?#o)+O,q?8rR)Y+?Q?;f?;f?3X_ >+?Q?;f?;f?3W +?Q?;f?;f?3V' +?Q?;f?;f?3U +?Q?;f?;f?3T:+?Q?;f?;f?3S+O"??#o)> + ֿ"^]?)?Iٔ?yGz<??HiW -bܑ37 X+?Q?;f?;f?3X6; +3TYrt)+O,q rR?)?:pΈ?ar^??3z +?#o?P"?) {l+?Q?;f?;f?3{ .>+?Q?;f?;f?3.C {+O=Y߿)?wIٔʿzGz<𿚙?HiW +bܑ?3r +?Q?;f?;f?3q +dfffffh"f?)\(?߿LXz?3p +O?=Y߿)?:pΈڿar^<38k3 ` +P"?#o)+O,q?8rR)Y+?Q?;f?;f?3X_ >+?Q?;f?;f?3W +?Q?;f?;f?3V' +?Q?;f?;f?3U +?Q?;f?;f?3T:+?Q?;f?;f?3S+P"??#o)> + ֿ#^]?)?wIٔ?zGz<??HiW +bܑ37 X+?Q?;f?;f?3X6; +3TYrt) ?> >>LJ-?@ @?@@B]-AB@]@+AULBLL>J>+BLR  C DC CComM-DE EDEE8A-AFAA8EE+FAAmGmmoCMC+GmBR  H+IH HHjmn-I?+?I??7@-mcmmjHnH+cmGR R -R R >7FR R R R R R R R R R R R R R R R R R R} Rz Rw Rt Rq Rn Rk Rh Re Rb R_ R\ RY RV RS RP RM RJ RG RD RA R> R; R8 R5 R2 R/ R, R) R& R# R R R R R R R R R R R R R  iI+dB1?aY:pΈڿ?j +_o?DŽR:pΈ? k+:pΈڿcJqBOӴ?lp r췈8뿋$I$IQ?l +rXo]x?>Vp:pΈ?m+:pΈڿB[1i^b?AT̹?>Lᅨ$I$IQ?R R R R R R R ~R }R |R {R zR yR xR wR vR uR tR sR rR qR pS ???R oR nR mR lR kR jR iR hR gR fR eR dR cR bR aR `R _R ^R ]R} \Rz [Rw ZRt YRq XRn WRk VRh URe TRb SR_ RR\ QRX PRU ORO LRM KRJ JRG IRD HRA GR> FR; ER8 DR5 CR2 BR/ AR, @R) ?R& >R# =R <R ;R :R 9R 8R 7U++Urt++U+p+-U++U+U +Z-U +U +U +  -U +U / + UL +/zJ%L n  H%L -QJ :/nNKQn :JLQN :LJMRKyQ :}N{NRMxQ{ :ORNwQ :{VPROvQV :QRPuQ :VRRQtQ :STRRsQS :URTrjS~lnQ :SyVRUqQy :WRVpQ :<y:XRWoQ: :8gYRXnQg :=:ZRYmQ :g[RZlQ :j\R[kQj :]R\jQ :lj^R]iQ :ki_R^hQi ::8`R_gQ8 :iaR`fQ :8bRaeQ :cRbdQ :dRccQ :peRdbQp :fReaQ :pgRf`Q :hRg_Q - :iRh^Q :jRi]Q :fkRj\Qf :lRk[Q :famRlZQa :sqnRmYQq :ba`oRnXQ` :^qApRoWRpVlqjq :pΈڿql_o?DŽR:pΈڿrqnQr :sQ :rtQ :ruRsQ :vRuQ :wRvQ :xRwQ :QyRxQQ :zRyQ :Q{RzQ :|R{~Q :}R|}Q :n~R}|R~{Q :~RtQ~ :RQ :?~RQ? :RQ :?RQ :~RQ~ :RQ :~RQ :RQ :YRQY :RQ :YRQ :RQ :RQ :MJRQJ :H[RQ[ :LJRQ :]y[RQy :RQ :yRQ :RQ :RQ :B<RQ< :86RRRLzU }" +UX& Y+XU, +& % |YX-UXN. +NU2 +UN-8 +2 1 (N--U: +U-> .+UD +> = Q.-U<F +U:8J +:U=P +J I r;=:-U:R +U(V +(U\ +V U |(-U(l^ +Ukb +U:h +b a D:-Uj +Un +Ukt l+n m -kU7v 8+7Uk z 4+ U7x y+z y D74 -xU  u+Ux z+U +  @z-U +U +R R >7FR R R R R R R R R R R R R R R R R R R} Rz Rw Rt Rq Rn Rk Rh Re Rb R_ R\ RY RV RS RP RM RJ RG RD RA R> R; R8 R5 R2 R/ R, R) R& R# R R R R R R R R R R R R R  iI+eB1?aY:pΈڿ?j +_o?DŽR:pΈ? k+:pΈڿcJqGOӴ?mp t췈8뿌$I$IQ?l +rXo]x?>Vp:pΈ?m+:pΈڿB[1m^b?AT̹?>Lᅩ$I$IQ?R R R R R R R ~R }R |R {R zR yR xR wR vR uR tR sR rR qR pS ???R oR nR mR lR kR jR iR hR gR fR eR dR cR bR aR `R _R ^R ]R} \Rz [Rw ZRt YRq XRn WRk VRh URe TRb SR_ RR\ QRX PRU ORO LRM KRJ JRG IRD HRA GR> FR; ER8 DR5 CR2 BR/ AR, @R) ?R& >R# =R <R ;R :R 9R 8R 7U++Urt++U+p+-U++U+U +Z-U +U +U +  -U +U / + UL +/zJ%L n  H%L -QJ :/nNKQn :JLQN :LJMRKyQ :}N{NRMxQ{ :ORNwQ :{VPROvQV :QRPuQ :VRRQtQ :STRRsQS :URTrjS~lnQ :SyVRUqQy :WRVpQ :<y:XRWoQ: :8gYRXnQg :=:ZRYmQ :g[RZlQ :j\R[kQj :]R\jQ :lj^R]iQ :ki_R^hQi ::8`R_gQ8 :iaR`fQ :8bRaeQ :cRbdQ :dRccQ :peRdbQp :fReaQ :pgRf`Q :hRg_Q + :iRh^Q :jRi]Q :fkRj\Qf :lRk[Q :famRlZQa :sqnRmYQq :ba`oRnXQ` :^qApRoWRpVlqjq :pΈڿql_o?DŽR:pΈڿrqnQr :sQ :rtQ :ruRsQ :vRuQ :wRvQ :xRwQ :QyRxQQ :zRyQ :Q{RzQ :|R{~Q :}R|}Q :n~R}|R~{Q :~RtQ~ :RQ :?~RQ? :RQ :?RQ :~RQ~ :RQ :~RQ :RQ :YRQY :RQ :YRQ :RQ :RQ :MJRQJ :H[RQ[ :LJRQ :]y[RQy :RQ :yRQ :RQ :RQ :B<RQ< :86RRRLzU }" +UX& Y+XU, +& % |YX-UXN. +NU2 +UN-8 +2 1 (N--U: +U-> .+UD +> = Q.-U<F +U:8J +:U=P +J I r;=:-U:R +U(V +(U\ +V U |(-U(l^ +Ukb +U:h +b a D:-Uj +Un +Ukt l+n m -kU7v 8+7Uk z 4+ U7x y+z y D74 -xU  u+Ux z+U +  @z-U +U +U +  L -U +U1s +1Ub +  Obb1-rU+o++Urs+U`+b++sr-`U ]+ U`a+U} +v a`-}U{}+{U}x+U{|+VH{x}-U+UZ+ZU+-UZ+U7+7U+.-R 6R 5R 4R 3R 2R 1R 0R /R .R -R ,R +R *R )R (R 'R &R %R $R #R "R !R R R R R R R R R R R R R R R R R R R R R R R -R R R} Rw Ru Rr Ro Rl Ri Rf Rc R` R] RW RU RR RM RK RH RE RB R? R< R9 R4 R2 R/ R, R) R& R# R R R R R R R R S ???S -???S -???S -???S -???S -???S -???S -???S -???S -???S ???O AEDT_EntityID_V1Q T :F^QS : Q^U : RQV :^RQW :GRQGX :[RQ[Y :IGcRQcZ :[RQ[ :cR Q\ :R Q] :PNR QN^ :wuR +R R R} Rw Ru Rr Ro Rl Ri Rf Rc R` R] RW RU RR RM RK RH RE RB R? R< R9 R4 R2 R/ R, R) R& R# R R R R R R R R S ???S +???S +???S +???S +???S +???S +???S +???S +???S +???S ???O AEDT_EntityID_V1Q T :F^QS : Q^U : RQV :^RQW :GRQGX :[RQ[Y :IGcRQcZ :[RQ[ :cR Q\ :R Q] :PNR QN^ :wuR Qu_ :hNfR Qf` :duKRQKa :ifSRQSb :KRQc :S?RQ?d :RQe :?RQf :CRQCg :ARQh :ECRRQRi :RQj :R1RQ1k :RQl :31CRQCm :ARQn :EC0RQ0o :.{RQ{p :#0!RQ!q :{RQr :!qRQqs :{RQ{t :sqRQu :R{PRQPv :NRQw :SPRQx :RQy :RQz :RQ{ :RQ| :RQ} :RQ~ :IGRQG :FRQ :JGRQ :RQ :bRQb :` RQ :[bYRQY :W RQ :\YRQ :oRQo :RQ :oRQ :~RQ :a_RQ_ :RQ :_uRQu :RQ :wuRQ :WURQU :\ZRQZ :XUKRQK :]ZRQ :"K RQ  :RQ : RQ :RQ :RQ :HRQH :{yRQy :wHRRQR :RQQ :uRQuP :SRQSO :QNuRQNN :L$SRQ$M :PNRQL :'$RQ'K :RQJ :)'RQI :kiRQiH :RQG :iRR X PNW-VUP/ +Q  : RQ : RQ :RQ :RQ :RQ :<RQ< :RQ :<mRQm : RRQ@ :-+Q+? :QA :fR'R&Q> :s+R(Qs= :4R)Q4< :2sR*Q; :6n4R+Qn: :R,Q9 :pnnR-Qn8 :lR.Q7 :gdnR/Qd6 :bR0Q5 :fdR2Q4 :)&R1Q&3 :$5R3Q52 :(&R4R5Q! :rQr :Q" :RFQ# :XVREQV$ :Tv RDQv% :YV R CQ& :v} R BQ}' :|z R AQz( :x}] R @Q]) :}zR ?Q* :_]R>Q+ :  R=Q , :R<Q- :  dR;Qd. :usR:Qs/ :qdUR9QU0 :vsR8R7Q :rRGQ :RHQ :RIQ :xRJQx :RKQ :~xRLQ :RMQ :RNQ :ROQ :/,RPQ, :*. RQQ. :.,!R RQ :A."R!SR"TQlC :jf#Rh%QD :ol$R#$QE :%R$#R%"R^RR!RCUR*RMRNRRRIR\RTRR6R=* SJ( m&T 'Stator_Yoke$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0002465.x_b +Design_89.setup/NativeGeometryFiles/0002465.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -117566,33 +95870,33 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0002465.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0002465.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0002465.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0002465.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z)++ )?Xz?)5267nQ5%89:;2<=>?@+6;:ABCn7kDE )?Xz?:pΈ?DjFG7 A?ou-!UfntknQ/8tlt{-]tC p?Z]|?:pΈڿ\u|?<?:pΈ?C^6_X?W,?:pΈ?_C7`r?"VAd?:pΈڿu[k|?<?:pΈڿ2k-{yv+.n{}y{ztY-y-{zyvF-YFz+nYYt+k+n­Q8nr+:pΈڿpf+YZ+ F-  -  .z+  Zr-  ho-r@~h +L~)@?rjqp-q? nj p_j`=+_7`_p[K-=<2Kp`-=npqQ 8 o4+REuD?(˿Z?:pΈ?h9;?)f? P:4p+ )?Xz?:pΈڿ?q34 +_X?W,?:pΈڿ?3EnA rq+ )?Xz?:pΈ?)f꿽h9;?s + p?Z]|?:pΈڿ?Q831A63+DAB-Af-fA3-6a-G Ub+_a6+_B+_|+B9!6n"s-"As#s"k+"B+"s--+Vf+VXNW+f#$enV-Q$,8f%P8&'(#Q+8$(Q-8$)R% R) R( O'AEDT_EntityID_V1s-#@*n" +-0Q*8#,-./6.n¬#_ 0+#0C-n#  1-# 03+U#12+=Y?O?)5267nQ5%89:;2<=>?@+6;:ABCn7kDE )?Wz?:pΈ?DjFG7 A?nu-!UfntknQ/8tlt{-]tC p?Z]|?:pΈڿ\u|?<?:pΈ?C^6_X?W,?:pΈ?_C7`r?#VAd?:pΈڿu[k|?<?:pΈڿ2k-{yv+.n{}y{ztY-y-{zyvF-YFz+nYYt+k+n­Q8nr+:pΈڿpf+YZ+ F-  +  .z+  Zr-  ho-r@~h +L~)@?rjqp-q? nj p_j`=+_7`_p[K-=<2Kp`-=npqQ 8 o4+REuD?(˿Z?:pΈ?h9;?)f?P:4p+ )?Wz?:pΈڿ?q34 +_X?W,?:pΈڿ?3EnA rq+ )?Wz?:pΈ?)f꿾h9;?s + p?Z]|?:pΈڿ?Q831A63+DAB-Af-fA3-6a-G Ub+_a6+_B+_|+B9!6n"s-"As#s"k+"B+"s--+Vf+VXNW+f#$enV-Q$,8f%P8&'(#Q+8$(Q-8$)R% R) R( O'AEDT_EntityID_V1s-#@*n" +-0Q*8#,-./6.n¬#_ 0+#0C-n#  1-# 03+U#12+=Y?O?)42+Y4= -+%?!Ut?)BAJ\q,?2=X>++-r?:pΈڿbr^<?n ++%?!Ut?)@AJ\q,?2=X>++.r?:pΈڿar^<?n @ =+ -@03>W2=+?Q?;f?;f?1An³ >+032V+>+{t?3TY?)W2=+?Q?;f?;f?1An³ >+032V+>+{t?3TY?)?:pΈ?br^??21T0++_? Bcrm?)=H,-,9n Q9$8,P5QQPR,9STQ#8S9URQ QSRPVRU PRWAQRSXSV???QRYZSX???QYR[\SZ???Q 8Y]Q[R^Y_S\???Q8[`Q^Ra[bS_???Q8^cQaR^dSb???Q8aeQRfagSd???QfRhSg???Q8fiQRjfkSh???QjRlmSk???Q8jnQlRWojpSm???Q8WlqQoRrlsSp???Q8otQrRuovSs???Q8rwQuRxrySv???Q8uz{QxRcz|u}Sy???c)zn[Qz8cx~Q|RxS}???Q8|zQR|S???Q8QR}S???Q8}QRS???Q8QRS???Q8QRS???Q8QRS???Q 8QRS???Q 8QRS???QRq S???Q  -8qQRS???Q 8 QR3S???QR1MS???Q18LQMRKLS???QR -NMS???QN8 -?LQR?GS???Q?8DNQGR@DCS???QCRBGS???QRACS???QA8.BQR.,S???Q.8*AQ,R#*S???QR-,S???Q-8:*QR :9S???Q:8 7-Q9R475S???Q5R)39S???S???R R R R R R R R R R R R R R R R R R~ R{ Rw Rt Rq Rn Ri Re Rc R` R] OWSDL/TYSA_COLOURST???><2J-RO 2<O I+_X?W,?)?:pΈ?ar^??21T0++_? Bcrm?)=H,-,9n Q9$8,P5QQPR,9STQ#8S9URQ QSRPVRU PRWAQRSXSV???QRYZSX???QYR[\SZ???Q 8Y]Q[R^Y_S\???Q8[`Q^Ra[bS_???Q8^cQaR^dSb???Q8aeQRfagSd???QfRhSg???Q8fiQRjfkSh???QjRlmSk???Q8jnQlRWojpSm???Q8WlqQoRrlsSp???Q8otQrRuovSs???Q8rwQuRxrySv???Q8uz{QxRcz|u}Sy???c)zn[Qz8cx~Q|RxS}???Q8|zQR|S???Q8QR}S???Q8}QRS???Q8QRS???Q8QRS???Q8QRS???Q 8QRS???Q 8QRS???QRq S???Q  +8qQRS???Q 8 QR3S???QR1MS???Q18LQMRKLS???QR +NMS???QN8 +?LQR?GS???Q?8DNQGR@DCS???QCRBGS???QRACS???QA8.BQR.,S???Q.8*AQ,R#*S???QR-,S???Q-8:*QR :9S???Q:8 7-Q9R475S???Q5R)39S???S???R R R R R R R R R R R R R R R R R R~ R{ Rw Rt Rq Rn Ri Re Rc R` R] OWSDL/TYSA_COLOURST???><2J-RO 2<O I+_X?W,?)?@[\]^_`{|}~0123456789************************** @@ -117608,24 +95912,24 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0002593.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0002593.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0002593.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0002593.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+)?U4?)I59V̌ -.+$??=@?:pΈڿ? n/0jÙ?I\hT?:pΈڿ *1VF2n34586789nQ6%:;<=7>?@3A-84<BCDn9bEF5-+?$keL?:pΈڿEaGH9bz?>jD4^?:pΈڿFcI9Je-?0?:pΈ?I%KL/MFnJdNFO ?q?:pΈڿN/PQR/JnOeMJD$??=@?:pΈ?M#STIUOnDf8OV$??=@?:pΈڿVgWDX ?q?:pΈ?WYZ[\VnXh]V^ *FaK?aq0]?:pΈ?]_`aXn^iaXb *FaK?aq0]?:pΈڿacde]^nbjf^g)?U4?:pΈ?fhijGbngk\bkmB1?aY?:pΈ?\lmWjgnklCg0e-?0?:pΈڿC2no8Rkn0mek &?G=?:pΈڿe pqra0nQp6:esctquvwexyz+r s{|eHnQs5:r}p~{zr-|}GrnH`rE&?G=?:pΈ?_[H5-+?$keL?:pΈ?[3UWn^RmB1?aY?:pΈڿR0CNn]jbz?>jD4^?:pΈ?j\fn\UjÙ?I\hT?:pΈ?U!M[n[|)?U4?:pΈڿQ-:US{xU+(xxz/qy-/x-+n€y.TU-;TMB-+M+"n™U{+`r- nQ:n`+&?G=?:pΈ?~e\?H[?O:+&?G=?:pΈڿ4^n4^n?4+ ?q?:pΈ?4CnQ+{t?3TY?:pΈ?vjD4^?:pΈڿ?n+)?U4?:pΈڿ?n+$??=@?:pΈڿZ[?~e\5nw+{t?3TY?:pΈڿP2\-G jD4^?:pΈڿ0[2A?I\}?nbU<7nw+ *FaK?aq0]?:pΈ?4^n<4^n<;nx+e-?0?:pΈڿԶr㿛wj鿺nbU3ny5+e-?0?:pΈڿ??nL-5z+5-+?$keL?:pΈڿ?{5+bz?>jD4^?:pΈ?š)f꿙h9;?n|+?#o?O"?:pΈڿ6p@vrH? '忂E=4?0{Gz?1n}+:pΈڿQgpI<x?ć ?жm۶mI59X̌ -.+$??=@?:pΈڿ? n/0jÙ?J\hT?:pΈڿ *1VF2n34586789nQ6%:;<=7>?@3A-84<BCDn9bEF5-+?$keL?:pΈڿEaGH9cz?>jD4^?:pΈڿFcI9Je-?0?:pΈ?I%KL/MFnJdNFO ?q?:pΈڿN/PQR/JnOeMJD$??=@?:pΈ?M#STIUOnDf8OV$??=@?:pΈڿVgWDX ?q?:pΈ?WYZ[\VnXh]V^*FaK?aq0]?:pΈ?]_`aXn^iaXb*FaK?aq0]?:pΈڿacde]^nbjf^g)?U4?:pΈ?fhijGbngk\bkmB1?aY?:pΈ?\lmWjgnklCg0e-?0?:pΈڿC2no8Rkn0mek &?H=?:pΈڿe pqra0nQp6:esctquvwexyz+r s{|eHnQs5:r}p~{zr-|}GrnH`rE&?H=?:pΈ?_[H5-+?$keL?:pΈ?[3UWn^RmB1?aY?:pΈڿR0CNn]jcz?>jD4^?:pΈ?j\fn\UjÙ?J\hT?:pΈ?U!M[n[|)?U4?:pΈڿQ-:US{xU+(xxz/qy-/x-+n€y.TU-;TMB-+M+"n™U{+`r- nQ:n`+&?H=?:pΈ?~e\?D[?O:+&?H=?:pΈڿ4^n4^n?4+ ?q?:pΈ?4CnQ+{t?3TY?:pΈ?!vjD4^?:pΈڿ?n+)?U4?:pΈڿ?n+$??=@?:pΈڿ][?~e\5nw+{t?3TY?:pΈڿN2\-C 0"n. +jÙ?J\hT?:pΈڿ?Q :uG+ n¤Q!:]+ +n¦o+:pΈ??T!?N\O?Cl?p+jÙ?J\hT?:pΈ?][~e\?q+:pΈڿ?T!?N\O?Cl?nvr+$??=@?:pΈ?Զr?wj?nbU<$nžs+?#o?P"?:pΈ?Ļ<瑥< [+e\?Y9{Gz?&nyt+)?U4?:pΈ?h9;á)f꿳O:<u+*FaK?aq0]?:pΈڿh9;?)f?6n„v+cz?>jD4^?:pΈڿ0[2A?J\}?nbU<7nw+*FaK?aq0]?:pΈ?4^n<4^n<;nx+e-?0?:pΈڿԶr㿞wj鿾nbU3ny5+e-?0?:pΈڿ??nL-5z+5-+?$keL?:pΈڿ?{5+cz?>jD4^?:pΈ?á)f꿘h9;?n|+?#o?P"?:pΈڿ6p@vrH? '忂E=4?0{Gz?1n}+:pΈڿQgpI<z?ć ?Զm۶m7[->L?)>@?j+j@+`f+`]i+j-f+|-di|-Jd+dav-if`-id]-a+ev-rz+vuqa+u-uv|d+uR -+,n”u +1Q:'n£ ,-1:n -12W +-r?:pΈڿbr^< 1 ))K!n+> "-+1Q!:)#$%&+I%n') --')12"P)()+5-+?$keL?)jD4^?)?:pΈ?br^??3n +1Q3:425P:67(#Q4839:;Q:93<Q2::3=>R5$ ++,n”u +1Q:'n£ ,-1:n -12W +.r?:pΈڿar^< 1 ))K!n+> "-+1Q!:)#$%&+I%n') +-')12"P)()+5-+?$keL?)jD4^?)?:pΈ?ar^??3n +1Q3:425P:67(#Q4839:;Q:93<Q2::3=>R5$ Q:824?@Q=:?22AR># =n (-1Q?8=:BCQ2:B=DRA" QB82?EFQ:4E2GRDK @@ -117646,7 +95950,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block Qm8jpqQ:prRo= Qp8mstQ:suRr< Qs8pvRu; -P8wAQ8sxySv???Qx8z{Sy???Q:x|Qz8x}~S{???Q:zQ}8zS~???Q:}Q8}S???Q8S???Q:Q8S???Q:Q8S???Q:Q8S???Q8S???Q8S???Q":Q8S???Q#:;Q8;S???Q;$:6S???R. +P8wAQ8sxySv???Qx8z{Sy???Q:x|Qz8x}~S{???Q:zQ}8zS~???Q:}Q8}S???Q8S???Q:Q8S???Q:Q8S???Q:Q8S???Q8S???Q8S???Q":Q8S???Q#:;Q8;S???Q;$:6S???R. R/ R0 R3 @@ -117655,15 +95959,15 @@ notransmitlCCCDCCDI finger_indexdI finger_block R7 R8 R|9 -OwSDL/TYSA_COLOURSt???Sq???Sn???Sk???Sh???Se???Sb???S_???S\???SY???SV???SS???SP???SL???SI???SF???SC???S@???Q984R<% -Q89S???Q8S???Q:/Q8/S???Q/:+Q8 +S???Q+: /Q8 S??? Dn '  - '1Q: -+Q8'-S???Q-:'%Q8+%#S???Q%:+!-Q#8)!S???S???R, +OwSDL/TYSA_COLOURSt???Sq???Sn???Sk???Sh???Se???Sb???S_???S\???SY???SV???SS???SP???SL???SI???SF???SC???S@???Q984R<% +Q89S???Q8S???Q:/Q8/S???Q/:+Q8 +S???Q+: /Q8 S??? Dn '  - '1Q: -+Q8'-S???Q-:'%Q8+%#S???Q%:+!-Q#8)!S???S???R, R+ R* -3 X ,+{t?3TY?)0LBC-L0Io+B08T--uw8+uC + .moR-.Hm'm. \+o. CL-.omI-I+0BLM-wuq/+/*wNI nT8w-Q*:/PKQP):NQK+:ISRZ +S;???O7AEDT_EntityID_V10>0LBC-L0Io+B08T--uw8+uC + .moR-.Hm'm. \+o. CL-.omI-I+0BLM-wuq/+/*wNI nT8w-Q*:/PKQP):NQK+:ISRZ QS,:MKRY RX Q(:RnPR[ @@ -117693,7 +95997,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block R=_ *M SJ(_&T'Stator_Teeth32$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0002721.x_b +Design_89.setup/NativeGeometryFiles/0002721.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -117709,41 +96013,43 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0002721.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0002721.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0002721.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0002721.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+ 5 -?3s?)?@ABC-8/<DEFn9aFG{?%?:pΈڿF`8H9g1? G,2?:pΈڿGbI9J G,2?g1?:pΈڿI(KLMNGnJcOGPwO?JE?:pΈڿO QRSTJnPdUJV G,2?g1?:pΈ?UWX/YPnVeZP[{?%?:pΈ?Z\A]^Vn[fTV_wO?JE?:pΈ?T `aOb[n_gb[cJE?nO?:pΈ?bdeTf_nchg_hp;x?s#w?:pΈ?gijY]cnhikclXv.?PQ!?:pΈڿk#mno/hnljohpPQ!?Xv.?:pΈڿo$qrNklnpkMlss#w?p;x?:pΈڿM*tuEIpnslfp0JE?wO?:pΈڿfvwbsn0m]s g1? G,2?:pΈ?]xygZ0nQx1:]i\zy>@?]D{|+>8?}@>7yZ~-?>y78-D|8y{?-{6nyB.|Dj]~-4j|g+a~g|+nˆ~]@+~Z-+n~-Q:-n€ w+{?%?:pΈ?C6)K濚~濰nbUv+Xv.?PQ!?:pΈ?x+g1? G,2?:pΈ?H[~e\?yB+{?%?:pΈڿ?B9nA{z+O"??#o?:pΈڿU^*6᡼"ۘ?hC⿩F?I9{Gz?%n¤{+g1? G,2?:pΈڿC6)K?~?nbU<0n|+:pΈڿ?>? -6&fb?Cl? n®}+s#w?p;x?:pΈڿ?<n²B~+wO?JE?:pΈ?4^n< -n¶5+p;x?s#w?:pΈ?~e\H[&P:<na5+%?{?:pΈڿ?5+s#w?p;x?:pΈ?Ue\[?n¾+?#o?O"?:pΈڿĻꢼY瑥?H[?~e\{Gz?2n+:pΈڿe<><? -6&fb?Cl?nQ#:;T+;nQ;$:6b+f-ef-;+Mw-eb-eYu+Ye+ab-aT+ ga- RT- DR +Z+,+5 +?3s?)?@ABC-8/<DEFn9aFG{?%?:pΈڿF`8H9g1? G,2?:pΈڿGbI9J G,2?g1?:pΈڿI(KLMNGnJcOGPwO?JE?:pΈڿO QRSTJnPdUJV G,2?g1?:pΈ?UWX/YPnVeZP[{?%?:pΈ?Z\A]^Vn[fTV_wO?JE?:pΈ?T `aOb[n_gb[cJE?nO?:pΈ?bdeTf_nchg_hp;x?s#w?:pΈ?gijY]cnhikclXv.?QQ!?:pΈڿk#mno/hnljohpQQ!?Xv.?:pΈڿo$qrNklnpkMlss#w?p;x?:pΈڿM*tuEIpnslfp0JE?wO?:pΈڿfvwbsn0m]s g1? G,2?:pΈ?]xygZ0nQx1:]i\zy>@?]D{|+>8?}@>7yZ~-?>y78-D|8y{?-{6nyB.|Dj]~-4j|g+a~g|+nˆ~]@+~Z-+n~-Q:-n€ w+{?%?:pΈ? +C6)K濜~濲nbUv+Xv.?QQ!?:pΈ?x+g1? G,2?:pΈ?G[~e\?yB+{?%?:pΈڿ?B9nA{z+P"??#o?:pΈڿU^*6᡼"ۘ?hC⿪F?I9|Gz?%n¤{+g1? G,2?:pΈڿ +C6)K?~?nbU<0n|+:pΈڿ?ŕ>? 6&fb?Cl? n®}+s#w?p;x?:pΈڿ?<n²B~+wO?JE?:pΈ?4^n< +n¶5+p;x?s#w?:pΈ?~e\G[%P:<na5+%?{?:pΈڿ?5+s#w?p;x?:pΈ?We\[?n¾+?#o?P"?:pΈڿĻꢼ_瑥?G[?~e\{Gz?2n+:pΈڿe<><? 6&fb?Cl?nQ#:;T+;nQ;$:6b+f-ef-;+Mw-eb-eYu+Ye+ab-aT+ ga- RT- DR R O-O+ REj- ER+ wO+ ! w f+ wM+ I +XuI->uM-uXY-YUgHnU+/+S+/3kU nL3U-I L IX-3 /+ 3LN-N3 -/-L))Kn ,-1Q:)Hn) -)13,Y) -+O"??#o?)?:pΈڿbr^<  n’  +13W+?Cl?;f?;f? n -12V+_Sc3˥?:pΈ?br^?? !n  + 12U"+ G,2?g1?)?:pΈڿar^<  n’  +13W+?Cl?;f?;f? n -12V+_Sc3˥?:pΈ?ar^?? !n  + 12U"+ G,2?g1?) (-+12*P,(+g1? G,2?) (-+12*P,(+g1? G,2?)QQ5:O:`?R; +1Q.:0$1/F/2^n-/rS-2/rk-^3ZS4nnA^--An%ACZ7B@+^+CAn- kC2+ ?+ 8+jDE-E-58M6nQ5':E<t76]E48p;x?s#w?:pΈڿ4\^96Xv.?QQ!?:pΈ?8^S6HQQ!?Xv.?:pΈ?S:^O8nH_Y8Fs#w?p;x?:pΈ?Q:4:S3Q;P:<=(#Q33:^\:>QQ5:O:`?R; Q`6:TQd@R? Qd7:b`vAR@ Qv8:fdBRA RB Q\2:Zx3CR> RC -O=AEDT_EntityID_V19[N4%?{?:pΈڿN&DIo9nQD*:NKqEQK):ItDFQq+:oDmGRE +O=AEDT_EntityID_V19[N4%?{?:pΈڿN&DIo9nQD*:NKqEQK):ItDFQq+:oDmGRE Qm,:kqHRG Q-:/mWIRH QW.:UJRI @@ -117768,7 +96074,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block QhO!eklQ :k!2mRj QkO hnoQ2:n pRm QnO2kqRp -POrAQO4nsSq???QOtSs???QOuvSt???QuOwxSv???Q :uyQwOBuz{Sx???Q :Bw|QzO{w}~S{???Q :{zQ}OzS~???Q:}QO}S???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???QO-S???Q:-QOS???Q :QOS???Q!:QOS???Q":QOS???QO;S???S???R +POrAQO4nsSq???QOtSs???QOuvSt???QuOwxSv???Q :uyQwOBuz{Sx???Q :Bw|QzO{w}~S{???Q :{zQ}OzS~???Q:}QO}S???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???Q:QOS???QO-S???Q:-QOS???Q :QOS???Q!:QOS???Q":QOS???QO;S???S???R R R R @@ -117791,8 +96097,8 @@ notransmitlCCCDCCDI finger_indexdI finger_block R R| Ry -OrSDL/TYSA_COLOURSo???Sl???Si???Sf???Sc???S`???S]???SY???SV???QPO0RS -QO)PS???S???SR???Q:&R +OrSDL/TYSA_COLOURSo???Sl???Si???Sf???Sc???S`???S]???SY???SV???QPO0RS +QO)PS???S???SR???Q:&R QQ&9<R P<(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth34P(#QRPOhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER R @@ -117804,7 +96110,7 @@ notransmitlCCCDCCDI finger_indexdI finger_block R= *M SJ(v&T'Stator_Teeth34$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0002849.x_b +Design_89.setup/NativeGeometryFiles/0002849.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -117820,26 +96126,27 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0002849.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0002849.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0002849.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0002849.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+=@?$??)?@A4B-86<CDEn9bFG=@?$??:pΈڿFaHI9q? ?:pΈڿGcJ9K>jD4^?Pz?:pΈ?JLM/NGnKdOGP$keL?5-+?:pΈڿO/QRSTKnPeUKVG=?&?:pΈ?UWXYPnVfZP[aq0]?*FaK?:pΈ?Z \]^_Vn[g^V`q? ?:pΈ?^abcZ[n`hc[daY?mB1?:pΈ?cefg^`ndiN`hU4?)?:pΈ?NijJkdnhjldEaY?mB1?:pΈڿl%mnTHhnEk8hoI\hT?jÙ?:pΈڿolTE00?e-?:pΈڿT*pqOlon0mSo >jD4^?Pz?:pΈڿS1rsDO0nQr(:StQusvwxSMyz-D3t{8S|nQt':D<r}{~zDj-|^DU4?)?:pΈڿ]g|0?e-?:pΈ?__|Iaq0]?*FaK?:pΈڿ_ ZYnI`YFG=?&?:pΈڿY_UInQ7:YWCY-AU-C8?-8+5nŒY+-_+_-nŽY+U+;n‘Q;$:6x+G=?&?:pΈ?4^n<4^n<w+q? ?:pΈڿ?y+aq0]?*FaK?:pΈڿ4^n4^n? -n¢z5+I\hT?jÙ?:pΈڿ?Bn“4y5{+$keL?5-+?:pΈڿ?|5+3TY?{t?:pΈ?p2\-<6Af<h9;Ὺ)f?u{Gz?n¸}+=@?$??:pΈڿwj?Զr?nbU<9nq~+U4?)?:pΈ?h9;ῆ)f?n+>jD4^?Pz?:pΈڿh9;?)f2nŸ+aY?mB1?:pΈ?&n-+aq0]?*FaK?:pΈ?)f?h9;?O:n+U4?)?:pΈڿ?<njy+O"??#o?:pΈ?6p<8I<pE=4? '{Gz?n+:pΈ??bd?1?Cl? n¦+=@?$??:pΈ?1e\ [?n+I\hT?jÙ?:pΈڿ1e\? [7n–+0?e-?:pΈ?wj鿇Զrn+:pΈ?^5i"zjD4^?Pz?:pΈڿ?y?nMs+>jD4^?Pz?:pΈ?R\}?0[2A?nr4+=@?$??:pΈڿ?4EnAq+3TY?{t?:pΈڿ.v;!v ? ZݿHm1o?{Gz?p+$keL?5-+?:pΈڿR\}0[2A0no+I\hT?jÙ?:pΈ?$[ e\P:<nXQ:XU+XZ-Xk@+CkX-kNnQ0:ki  ->@?kC+ Akg n\k I\hT?jÙ?:pΈ? [=@?$??:pΈ?Q 1:  AB74@+g cnQ 2:g eP:(#Qe3:c aRR Qa4:^e\RQ Q\5:ZaRP Q6:_\RO RN OAEDT_EntityID_V1DBAg-BAq-@>7->J?++g+c+c-(lf+Tn-fc-fl--!Hb-nH-+-$n Q:- "nb-Q:!"b#$%^+#Gb&$#Rb/-%#bRH-^$+/x+f^-J+/'3HJ nxvs3J-vLw)3vxw/R$+wv3sO-R#%$O3w-Sw+O%+Dz+z~M{S-~>z(M~zJsyx+~{MN-N]+])jZ-);*)]_-j)]N{+)jD-Z+*:+nž() ,-(1Q+:*-./0,/n* 1+*1(=.n*~ 2-*12,S*13+\Л-? ?) --&)125O):+>jD4^?Pz?)?:pΈڿbr^<Q;:<=.>C=n& ?-&1Q=:@A;B&FAn+# C-+12?VDC+0?e-?)?:pΈ?br^??3CW&?E+3TY?{t?)) Q7:&4R9- Q7Q&97R! P(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth36P(#QRPPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER0' Q'-:/LH#%l/FnQ,:Hm'Qm+:lpRX Qp*:TQmRY QQ):OrpRZ R[ QL.:J'iRW Qi/:NLRV RU R"; R < ?>78-q?+qnTB+BT-R S R +Z+,+=@?$??)?@A4B-86<CDEn9bFG=@?$??:pΈڿFaHI9q? ?:pΈڿGcJ9K>jD4^?Pz?:pΈ?JLM/NGnKdOGP$keL?5-+?:pΈڿO/QRSTKnPeUKVH=?&?:pΈ?UWXYPnVfZP[aq0]?*FaK?:pΈ?Z \]^_Vn[g^V`q? ?:pΈ?^abcZ[n`hc[daY?mB1?:pΈ?cefg^`ndiN`hU4?)?:pΈ?NijJkdnhjldEaY?mB1?:pΈڿl%mnTHhnEk8hoJ\hT?jÙ?:pΈڿolTE00?e-?:pΈڿT*pqOlon0mSo >jD4^?Pz?:pΈڿS1rsDO0nQr(:StQusvwxSMyz-D3t{8S|nQt':D<r}{~zDj-|^DU4?)?:pΈڿ]g|0?e-?:pΈ?__|Iaq0]?*FaK?:pΈڿ_ ZYnI`YFH=?&?:pΈڿY_UInQ7:YWCY-AU-C8?-8+5nŒY+-_+_-nŽY+U+;n‘Q;$:6x+H=?&?:pΈ?4^n<4^n<w+q? ?:pΈڿ?y+aq0]?*FaK?:pΈڿ4^n4^n? +n¢z5+J\hT?jÙ?:pΈڿ?Bn“4y5{+$keL?5-+?:pΈڿ?|5+3TY?{t?:pΈ?s2\-<9Af<h9;Ὺ)f?u|Gz?n¸}+=@?$??:pΈڿwj?Զr?nbU<9nq~+U4?)?:pΈ?h9;ῂ)f?n+>jD4^?Pz?:pΈڿh9;?)f2nŸ+aY?mB1?:pΈ?&n-+aq0]?*FaK?:pΈ?)f?h9;?O:n+U4?)?:pΈڿ?<njy+P"??#o?:pΈ?6p<8I<qE=4? '{Gz?n+:pΈ??bd?1?Cl? n¦+=@?$??:pΈ?0e\[?n+J\hT?jÙ?:pΈڿ0e\?[7n–+0?e-?:pΈ?wj鿆Զrn+:pΈ?[5i"zjD4^?Pz?:pΈڿ?y?nMs+>jD4^?Pz?:pΈ?P\}?0[2A?nr4+=@?$??:pΈڿ?4EnAq+3TY?{t?:pΈڿ,v8!v ? ZݿLm1o?{Gz?p+$keL?5-+?:pΈڿP\}0[2A0no+J\hT?jÙ?:pΈ?&[ e\P:<nXQ:XU+XZ-Xk@+CkX-kNnQ0:ki  +>@?kC+ Akg n\k J\hT?jÙ?:pΈ? [=@?$??:pΈ?Q 1:  AB74@+g cnQ 2:g eP:(#Qe3:c aRR Qa4:^e\RQ Q\5:ZaRP Q6:_\RO RN OAEDT_EntityID_V1DBAg-BAq-@>7->J?++g+c+c-(lf+Tn-fc-fl--!Hb-nH-+-$n Q:- "nb-Q:!"b#$%^+#Gb&$#Rb/-%#bRH-^$+/x+f^-J+/'3HJ nxvs3J-vLw)3vxw/R$+wv3sO-R#%$O3w-Sw+O%+Dz+z~M{S-~>z(M~zJsyx+~{MN-N]+])jZ-);*)]_-j)]N{+)jD-Z+*:+nž() ,-(1Q+:*-./0,/n* 1+*1(=.n*~ 2-*12,S*13+[Л-? ?) +-&)125O):+>jD4^?Pz?)?:pΈڿar^<Q;:<=.>C=n& ?-&1Q=:@A;B&FAn+# C-+12?VDC+0?e-?)?:pΈ?ar^??3CW&?E+3TY?{t?)) Q7:&4R9- Q7Q&97R! P(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth36P(#QRPPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER0' Q'-:/LH#%l/FnQ,:Hm'Qm+:lpRX Qp*:TQmRY QQ):OrpRZ R[ QL.:J'iRW Qi/:NLRV RU R"; R < ?>78-q?+qnTB+BT-R S R T R6 R> R? R. QW8:URM RL Q<&:86tR}] R^ Ru\ R=_ *M SJ(W&T'Stator_Teeth36$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0002977.x_b +Design_89.setup/NativeGeometryFiles/0002977.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -117855,26 +96162,26 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0002977.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0002977.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0002977.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0002977.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+W,?_X?)?@3A-8><BCDn9\EF"VAd?7`r?:pΈ?E[G9 Bcrm?_?:pΈڿF]H9Ioug8uNܿбv.?{Gz?3n”+:pΈڿ?(h`윲<{췈8?cp ?$I$I7Cv+>L)>@?Z-vZ@-?>7W-VW+Z+#G+g+G(ZgEng-Q,:GuxP:  +Z+,+W,?_X?)?@3A-8><BCDn9\EF#VAd?7`r?:pΈ?E[G9 Bcrm?_?:pΈڿF]H9InuP:=-nV.+ Bcrm?_?:pΈڿI)뿃XP/߿nbU)n. + Bcrm?_?:pΈڿ?5n.Q:l+7+vC-vG-G-l-0Yy+Y+3l+3AC7@+A3Q+@>7Cv+>L)>@?Z-vZ@-?>7W-VW+Z+#G+g+G(ZgEng-Q,:GuxP:  (#Qu+:ZX Qx-:ge R Qe.:cxq R  Qq/:heR  R QX*:WjuR  Qj):Y~XR Q~(:ljR Q':C<~R Q<&:86R R O -AEDT_EntityID_V1cK+yc-<k8f-ykg-kyY-?nQ :p+:pΈ?Yd' 7 ?;-?[]^S?$I$IQ<9?@S=???Q:<AQ?<BCS@???Q:?DQB?EFSC???Q:BGQEBHISF???Q:EJQHEKLSI???Q:HMQKHNOSL???Q:KPQNKQSO???Q:NRQNSTSQ???QSUVST???Q:SWQUSXYSV???Q :UZQXU[\SY???Q!:X]Q[X^_S\???Q":[`aQ^-`[bcS_???-`nd Q`#:-^;eQb;^fSc???Q;$:b`6gSf???Rg Re dhR-+hihjd\k+hdjNl+A|Nd--|Rrk+|hb+rmkh|-kmr_Rd-m_n_mk\-m_rso-V\j+VSj+jhSl-lpQS-pAqplWV-QplNA-pQ?+q@rnp s-1Qr:qtuvw;vn+q x++q1Eunq y-q12sSqz{+|dyЭ?D1?) ,-1Q|:)}~Hn) +)12,Y) -+"VAd?7`r?)?:pΈڿbr^<"nn +n12U{+_Sc3˥?:pΈ?br^??3{Tis+?Cl?;f?;f?inh {-1Q:i2 ni -i1Q:2Ox+ou R; R8 R5 R2 R/ R+ O&SDL/TYSA_COLOURS#???S ???R S???fKBc+R R Qa2:LJR QJ3:HanR Qn4:MJ^R Q^5:\n{R Q{6:R^PR QP7:N{UR QU8:SPR R R R= *M SJ(bU&T'Stator_Teeth38$end 'x_b' +AEDT_EntityID_V1cK+yc-<k8f-ykg-kyY-?nQ :p+:pΈ?Xd' 7 ?;-?]]^S?$I$IQ<9?@S=???Q:<AQ?<BCS@???Q:?DQB?EFSC???Q:BGQEBHISF???Q:EJQHEKLSI???Q:HMQKHNOSL???Q:KPQNKQSO???Q:NRQNSTSQ???QSUVST???Q:SWQUSXYSV???Q :UZQXU[\SY???Q!:X]Q[X^_S\???Q":[`aQ^-`[bcS_???-`nd Q`#:-^;eQb;^fSc???Q;$:b`6gSf???Rg Re dhR-+hihjd\k+hdjNl+A|Nd--|Rrk+|hb+rmkh|-kmr_Rd-m_n_mk\-m_rso-V\j+VSj+jhSl-lpQS-pAqplWV-QplNA-pQ?+q@rnp s-1Qr:qtuvw;vn+q x++q1Eunq y-q12sSqz{+|dyЭ?D1?) ,-1Q|:)}~Hn) +)12,Y) ++#VAd?7`r?)?:pΈڿar^<"nn +n12U{+_Sc3˥?:pΈ?ar^??3{Tis+?Cl?;f?;f?inh {-1Q:i2 ni -i1Q:2Ox+nu R; R8 R5 R2 R/ R+ O&SDL/TYSA_COLOURS#???S ???R S???fKBc+R R Qa2:LJR QJ3:HanR Qn4:MJ^R Q^5:\n{R Q{6:R^PR QP7:N{UR QU8:SPR R R R= *M SJ(bU&T'Stator_Teeth38$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0003105.x_b +Design_89.setup/NativeGeometryFiles/0003105.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -117890,30 +96197,31 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0003105.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0003105.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0003105.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0003105.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+5Mg?WOa?)?@AB-//;CD n8\EFF~G?B?:pΈڿE[G8l?*I?:pΈ?F]H8IsZW?jEf?:pΈڿH#JKLMFnI^NFO??s)s?:pΈڿN*PQDRInO_SIT\Ygm?U8Acg8uNܿбv.?nx+l?*I?:pΈڿ?Bn4AyA+F~G?B?:pΈڿ?A?n@z+:pΈ??PPO-?޳ K?Cl?{+??s)s?:pΈڿ?6nz|+F~G?B?:pΈ?bge;aHCZٿn}+DŽR?_o?:pΈڿ?~+5Mg?WOa?:pΈڿ?5nc+??s)s?:pΈ?vԿ8j@M?L0"=nž+B.?0xئ?:pΈ?ѱv.f8uNܿO:<nƒ+O?=Y?:pΈڿhgoFۍ?f8uN?ѱv.I{Gz?2n4+B.?0xئ?:pΈڿ?4Ent+:pΈڿ?PPO-?޳ K?Cl?n-+O?=Y?:pΈ?!;&Yg8uN?бv..n.Q9/+!>+D[+tCD-Dtq_4+C/>-CtG-=?>GC+>=7/-=A>@n= -1Q9=n¤ ,-1Cn -12T - +F~G?B?)R=1 P3?AQ3@;AS>???Q@3BCSA???Q9@DQB3E@FSC???Q9BGQE3HBISF???Q9EJQH3KELSI???Q9HMQK3NHOSL???Q9KPQN3QKRSO???Q9NSQQ3TNUSR???Q9QVQT3WQXSU???Q9TYQW3ZT[SX???Q9W\QZ3]W^S[???Q9Z_Q]3`ZaS^???Q9]%bQ`3%c]dSa???Q%9`eQc3f`gSd???Q9c%hQf3ciSg???Q9fjQ3kflSi???Qk3mnSl???Q9koQm3pkqSn???Q9mrQp3smtSq???Q9puQs3vpwSt???Q 9sxQv3yszSw???Q 9v{Qy3|v}Sz???Q 9y~Q|3AyS}???Q -9A|Q3|S???Q 9Q34S???Q942Q32S???Q29Q3.S???.n, -1Q9.2Q3S??? n. -+.1Q9Q3S???Q9Q3S???Q3S???Q9Q3S???9n +1Q9Q3S???Q9Q3S???Q3S???Q9Q3S???Q9Q3+ S???Q9+ Q 3) S???S???R, R+ R* R( R' 3P+?Q?;f?;f?3O.+?Cl?;f?;f?2Q +-r?:pΈڿbr^<2 R +Z+,+5Mg?WOa?)?@AB-//;CD n8\EFF~G?B?:pΈڿE[G8l?*I?:pΈ?F]H8IsZW?jEf?:pΈڿH#JKLMFnI^NFO??s)s?:pΈڿN*PQDRInO_SIT\Ygm?U8AcP:,n+sZW?jEf?:pΈ?<nKA+#^]? ?:pΈڿRďtS]qk?6C˿D?|Gz?%n5+ 7:?Mi[?:pΈڿZQDž HC׿'n5.+ 7:?Mi[?:pΈڿ?.5 +B.?0xئ?:pΈڿ;g8uN?бv..n.Q9/+!>+D[+tCD-Dtq_4+C/>-CtG-=?>GC+>=7/-=A>@n= -1Q9=n¤ ,-1Cn -12T + +F~G?B?)R=1 P3?AQ3@;AS>???Q@3BCSA???Q9@DQB3E@FSC???Q9BGQE3HBISF???Q9EJQH3KELSI???Q9HMQK3NHOSL???Q9KPQN3QKRSO???Q9NSQQ3TNUSR???Q9QVQT3WQXSU???Q9TYQW3ZT[SX???Q9W\QZ3]W^S[???Q9Z_Q]3`ZaS^???Q9]%bQ`3%c]dSa???Q%9`eQc3f`gSd???Q9c%hQf3ciSg???Q9fjQ3kflSi???Qk3mnSl???Q9koQm3pkqSn???Q9mrQp3smtSq???Q9puQs3vpwSt???Q 9sxQv3yszSw???Q 9v{Qy3|v}Sz???Q 9y~Q|3AyS}???Q +9A|Q3|S???Q 9Q34S???Q942Q32S???Q29Q3.S???.n, -1Q9.2Q3S??? n. ++.1Q9Q3S???Q9Q3S???Q3S???Q9Q3S???9n +1Q9Q3S???Q9Q3S???Q3S???Q9Q3S???Q9Q3+ S???Q9+ Q 3) S???S???R, R+ R* R( R' 3P+?Q?;f?;f?3O.+?Cl?;f?;f?2Q +.r?:pΈڿar^<2 R +^:#?>& -?)?:pΈ?br^??R& R$ R# R" RK RJ RI RH R~G R{F RxE RuD RrC RoB Rj@ Rh? Re> Rb= R_< R\; RY: RV9 RS8 RP7 RM6 RJ5 RG4 RD3 O?SDL/TYSA_COLOURS<???(,*W)-+S9???S5???O2AEDT_EntityID_V1G[_-q-[-_X-_[Dt4-'\+q+G?+e+GqeEn?=7e-Q19GsgQs09qyQg29enRS Qn39hgRR RQ Qy/9dbsRT Qb.9`yRU Q-9MJbRV QJ,9HjRW Qj+9L|JRX Q|*9ljRY Q)9RP|RZ QP(9N^R[ Q^'9D;PR\ Q;&9/6^R] R^ K@h->KKBHo+@Be7A?+B@K-HB+L+okH-}l3&-R% Q9& R- QQ&91R! P1(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth40P(#QRP3hS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER) RA R2 Qv59WURP QU69SvZRO QZ79XURN Q89\ZRM RL R<_ *M SJ(/&T'Stator_Teeth40$end 'x_b' +?)?:pΈ?ar^??R& R$ R# R" RK RJ RI RH R~G R{F RxE RuD RrC RoB Rj@ Rh? Re> Rb= R_< R\; RY: RV9 RS8 RP7 RM6 RJ5 RG4 RD3 O?SDL/TYSA_COLOURS<???(,*W)-+S9???S5???O2AEDT_EntityID_V1G[_-q-[-_X-_[Dt4-'\+q+G?+e+GqeEn?=7e-Q19GsgQs09qyQg29enRS Qn39hgRR RQ Qy/9dbsRT Qb.9`yRU Q-9MJbRV QJ,9HjRW Qj+9L|JRX Q|*9ljRY Q)9RP|RZ QP(9N^R[ Q^'9D;PR\ Q;&9/6^R] R^ K@h->KKBHo+@Be7A?+B@K-HB+L+okH-}l3&-R% Q9& R- QQ&91R! P1(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth40P(#QRP3hS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER) RA R2 Qv59WURP QU69SvZRO QZ79XURN Q89\ZRM RL R<_ *M SJ(/&T'Stator_Teeth40$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0003233.x_b +Design_89.setup/NativeGeometryFiles/0003233.x_b BIN000000015758 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -117929,36 +96237,36 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0003233.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0003233.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0003233.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0003233.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ:@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q:&'F(( N)*2 -Z+,+# Β?c5?)?@A4B+86<CDEn9gFG|^?JOn?:pΈ?FfHI9|^?JOn?:pΈڿGhJ9KGu?FT/?:pΈ?J LMNOGnKiPGQIiܧ)?ml8?:pΈ?P(RST/KnQjUKV>Vp?rXo]x?:pΈ?U/W3XTQnVkYQZOU@V? f -?:pΈڿY[\]^VnZl_V0?9?,f+?:pΈڿ_`ab]Zn0mDZ OU@V? f -?:pΈ?D4cd8X0nQc':D<efdghiD\jk+X1elDUmnQe(:XcWnlopqXars+mbXtu?9?,f+?:pΈ?ta]vm9?4~G?:pΈڿucNmwGu?FT/?:pΈڿN xyzJunwdbuIn?f.by?:pΈڿb{|/_wnIeOwFѼ-SX?8l?:pΈ?O}hJ~InQ}7:OLhgdO-~OnQ8:~}~i+[~Ѽ-SX?8l?:pΈڿ\zEIiܧ)?ml8?:pΈڿzNnE]8# Β?c5?:pΈ?^TEn?f.by?:pΈ?T*pUPn_v>Vp?rXo]x?:pΈڿHznv`^t# Β?c5?:pΈڿ^YHvnQ1:^[>@?^C-HA^FnQ2:HABH74@-L3)3A-BA3-4Gn7j@>7H->F@+^@+n§H++nŸQ:n¡w+Jn{~?i|?:pΈڿYiry[&RA?) )j.[I?"9{Gz?vr+?9?,f+?:pΈڿ?xj+OU@V? f -?:pΈڿ?jBnd4y+"^]? ?:pΈڿq8:?=v?8j@M{Gz?n­-z+Ѽ-SX?8l?:pΈ?\ϗb?iVp?rXo]x?:pΈڿ?5.+Gu?FT/?:pΈڿ8j@M?v?O:n. +"^]? ?:pΈ?VFg<.<C]@?O?{Gz?+n.Q:ST+)nQ:T|+o+n?f.by?:pΈڿ?p+# Β?c5?:pΈڿ)i?@A4B+86<CDEn9gFG|^?JOn?:pΈ?FfHI9|^?JOn?:pΈڿGhJ9KGu?FT/?:pΈ?J LMNOGnKiPGQJiܧ)?ml8?:pΈ?P(RST/KnQjUKV>Vp?rXo]x?:pΈ?U/W3XTQnVkYQZPU@V? f +?:pΈڿY[\]^VnZl_V0?9?,f+?:pΈڿ_`ab]Zn0mDZ PU@V? f +?:pΈ?D4cd8X0nQc':D<efdghiD\jk+X1elDUmnQe(:XcWnlopqXars+mbXtu?9?,f+?:pΈ?ta]vm9?4~G?:pΈڿucNmwGu?FT/?:pΈڿN xyzJunwdbuIn?g.by?:pΈڿb{|/_wnIeOwFѼ-SX?8l?:pΈ?O}hJ~InQ}7:OLhgdO-~OnQ8:~}~i+[~Ѽ-SX?8l?:pΈڿ\zEJiܧ)?ml8?:pΈڿzNnE]8# Β?c5?:pΈ?^TEn?g.by?:pΈ?T*pUPn_v>Vp?rXo]x?:pΈڿHznv`^t# Β?c5?:pΈڿ^YHvnQ1:^[>@?^C-HA^FnQ2:HABH74@-L3)3A-BA3-4Gn7j@>7H->F@+^@+n§H++nŸQ:n¡w+Jn{~?i|?:pΈڿYirya&RA?) )j*[I?"9|Gz?vr+?9?,f+?:pΈڿ?xj+PU@V? f +?:pΈڿ?jBnd4y+#^]? ?:pΈڿq8:?=v?8j@M}Gz?n­-z+Ѽ-SX?8l?:pΈ?\ϗb?iVp?rXo]x?:pΈڿ?5.+Gu?FT/?:pΈڿ8j@M?v?O:n. +#^]? ?:pΈ?VFg<.<@]@?O?|Gz?+n.Q:ST+)nQ:T|+o+n?g.by?:pΈڿ?p+# Β?c5?:pΈڿ&iq|oqpb-po|lT-b -&z+P-P-IUS-z-3-3BU+SUB+-SSP+?+8k+?>78-Dh+k\CD-@\kYdji-Ck8?+C\^-Y+igdY-gDigih~-O+J+~-N+N+]y+]_YtnyN-!yyJ-y] -/M- s /+  a]- ; !a  s_lrq-s aX-r<"nlQ" :r#$P:%&(#Q#'r"()*Q -:("+Q :)",R$ Q)'#-.Q :-/R, Q-')01Q:02R/ Q0'-34Q:35R2 Q3'067Q:68R5 Q6'39:Q:9;R8 Q9'6<=Q:<>R; Q<'9?R> P'@AQ'<AS????Q'BCSA???QB'DESC???Q:BFQD'BGHSE???Q:DIQG'DJKSH???Q:GLQJ'G MSK???Q:JNQ '-JOSM???Q' PQSO???QP'RSSQ???Q:PTQR'PUVSS???Q:RWQU'RXYSV???Q:UZQX'U[SY???Q:X\Q'X]^S[???Q]'_`S^???Q :]aQ_']bcS`???Q!:_dQb'_efSc???Q":bgQe'bhiSf???Q#:e;jQh';ekSi???Q;$:h6lSk???Rl Rj Rg Rd Ra R\ RZ RW RT RN RL RI RF O@SDL/TYSA_COLOURS=???S:???S7???S4???S1???S.???Q('m#nQ :jmoR+ Qm'jp(qQ:4p2rRo Qp'4smtQ2:suvRr Qs'2wpxQu:wy2zRv un {-1Qw'u|s}Qy:|~uRz  yn +1Q|'ywQ~:yR  ~n¬ ,-1Q'~|Q:~R %n -1Q'Q:R ,n! +!1Q'Q:!R !:n  -1Q'!Q:R =n!o -!1Q'Q:R ?n -1Q'Q:R Cn+g -+1Q'Q:+R +En> --1Q'+Q:R Hn+) ++)1Q'Q:)R )Kn -1Q')Q:&R QQ&9%R P%(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth42P(#QRP'hS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMES???3V)+Jn{~?i|?)?:pΈڿbr^<2R+OU@V? f -?)?:pΈ?br^??3O+?Q?;f?;f?S???S???S???S???S???S???S???S???S???S???S}???Sx???St???Sq???Sn???S*???O&AEDT_EntityID_V1M/s+Xp+MJ+/#Pb nQ,:/R{QR+:PQ{-:b`R Q`.:_{R Q/:]`[R Q[0:YR R Q*:TWRR QW):UeR R MO-R  R  R R R Q3:R Q4:zxR Qx5:NLR QL6:Jx}R R R R R Rn Q<&:86cRf R R= *M SJ(h&T'Stator_Teeth42$end 'x_b' +:("+Q :)",R$ Q)'#-.Q :-/R, Q-')01Q:02R/ Q0'-34Q:35R2 Q3'067Q:68R5 Q6'39:Q:9;R8 Q9'6<=Q:<>R; Q<'9?R> P'@AQ'<AS????Q'BCSA???QB'DESC???Q:BFQD'BGHSE???Q:DIQG'DJKSH???Q:GLQJ'G MSK???Q:JNQ '-JOSM???Q' PQSO???QP'RSSQ???Q:PTQR'PUVSS???Q:RWQU'RXYSV???Q:UZQX'U[SY???Q:X\Q'X]^S[???Q]'_`S^???Q :]aQ_']bcS`???Q!:_dQb'_efSc???Q":bgQe'bhiSf???Q#:e;jQh';ekSi???Q;$:h6lSk???Rl Rj Rg Rd Ra R\ RZ RW RT RN RL RI RF O@SDL/TYSA_COLOURS=???S:???S7???S4???S1???S.???Q('m#nQ :jmoR+ Qm'jp(qQ:4p2rRo Qp'4smtQ2:suvRr Qs'2wpxQu:wy2zRv un {-1Qw'u|s}Qy:|~uRz  yn +1Q|'ywQ~:yR  ~n¬ ,-1Q'~|Q:~R %n -1Q'Q:R ,n! +!1Q'Q:!R !:n  -1Q'!Q:R =n!o -!1Q'Q:R ?n -1Q'Q:R Cn+g -+1Q'Q:+R +En> +-1Q'+Q:R Hn+) ++)1Q'Q:)R )Kn -1Q')Q:&R QQ&9%R P%(#ROAEDT_BODYFlagGroupColor_V1PQQTStator_Teeth42P(#QRP'hS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMES???3V)+Jn{~?i|?)?:pΈڿar^<2R+PU@V? f +?)?:pΈ?ar^??3O+?Q?;f?;f?S???S???S???S???S???S???S???S???S???S???S}???Sx???St???Sq???Sn???S*???O&AEDT_EntityID_V1M/s+Xp+MJ+/#Pb nQ,:/R{QR+:PQ{-:b`R Q`.:_{R Q/:]`[R Q[0:YR R Q*:TWRR QW):UeR R MO-R  R  R R R Q3:R Q4:zxR Qx5:NLR QL6:Jx}R R R R R Rn Q<&:86cRf R R= *M SJ(h&T'Stator_Teeth42$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0005330.x_b +Design_89.setup/NativeGeometryFiles/0005330.x_b BIN000000008320 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -117974,26 +96282,23 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0005330.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0005330.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0005330.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0005330.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'F(( $)*2 -*)++mY M?R N?ٺژ?TS? >,-+ V?W r?7A`ڿ 2./ V?W r?7A`? *0V 1n2,342.5nQ467892:;<=>+.8?@ n50A/]ba1?@[?7A`?A/@B5ͤ2j??7A`?/1C5 ͤ2j??7A`ڿCDEFG/nQD6CHIJEKLMCNOP-F H=QCBnGIRCSnQI6GDTRUVWGXYZ+S+G[?#`g0?7A`ڿ[,QS\ V?W r?7A`ڿQ ]^_F[n\-_[B?#`g0?7A`?_`X@Q\nB.F\A]ba1?@[?7A`ڿQ`6_a]bXKML_RYW-@aN._AnQa6@8`cNd>P@EOe+d"P)>d=Nefg+PdN=Chij-OknN,Ylemng@>fM-mnonmpe_Mq-gmep;r-fsn>YrtMKEX@nq+KLuqvnMwxyQv~6qz{|}w{nWrq~x |nZqy4qt+ΌN?*>+7A`?ٺژ?]S?3y+;0u?V7A`ڿ -ٺژ]St5fyl+/\?B7s?7A`?TS?ٺژl6Ot3+ͤ2j??7A`??37l+]ba1?@[?7A`??83~+ΌN?*>+7A`ڿٺژ?]S?7nji~9w+IB?}?7A`?TSٺژ?:r~+;0u?V7A`? -ٺژ]Srn;fw;Y+?#`g0?7A`ڿYnROf<x-+IB?}?7A`ڿTSٺژ?-=i +/\?B7s?7A`ڿTS?ٺژinh-Q6i7hjFPi+ -nxiQ6|ZhQ<+jZjGVxL+<:2^Fh-:<^:<;Q?,V+;:^2.grp+?UWV.^,;-,n^O VU?RQZx-UVnuU +u0Qs6unoK +o0n“): +)02(++LW?BY$?ٺژTS? 0 ))!n‘d -+0Qq6)P6(#QZ)Qp6&Qr6RQ[RPAQ\S???Q]uS???Qt6uQ^oS???o num ++u0Qu6oQ_S???no -o0Qv61Q`1S???Q1w6Qa,S???Qx6,1kQbOkS???Qky6OQcYS???Qz6YksQdfsS???Qs{6fQerS???Q|6rs{Qfw{zS???Q{}6wvQzgqvS???Qhx|zS???Q|6xvQiS???QjiS???Qk7S???Q764S???RRRRRRRRRR2%+7A`ڿ??2&+n >~?rCG?]S? -ٺژ2'u+ޣX?|3?]Sٺژ??R2+)o -+7A`???ROSDL/TYSA_COLOURQnQ&RP(#ROAEDT_BODYFlagGroupColor_V1PQQmTMagnet1P(#QYRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMES???OAEDT_EntityID_V1RWUR?_pwn+pmgn.Ww-jhZCL+LKXEGj-RRR}=dP>F2<-Q86.4aRcRQ]6Q`HRbQH6F]DRRRTRJR9*# SJ(I&T'Magnet1$end 'x_b' +*)++lY M?U N?ٺژ?WS? >,-+ V?Z r?7A`ڿ 2./ V?Z r?7A`? *0V 1n2,342.5nQ467892:;<=>+.8?@ n50A/]ba1?@[?7A`?A/@B5ͤ2j??7A`?/1C5 ͤ2j??7A`ڿCDEFG/nQD6CHIJEKLMCNOP-F H=QCBnGIRCSnQI6GDTRUVWGXYZ+S+G[?#`g0?7A`ڿ[,QS\ V?Z r?7A`ڿQ ]^_F[n\-_[B?#`g0?7A`?_`X@Q\nB.F\A]ba1?@[?7A`ڿQ`6_a]bXKML_RYW-@aN._AnQa6@8`cNd>P@EOe+d"P)>d=Nefg+PdN=Chij-OknN,Ylemng@>fM-mnonmpe_Mq-gmep;r-fsn>YrtMKEX@nq+KLuqvnMwxyQv~6qz{|}w{nWrq~x |nZqy4qt+ΌN?*>+7A`?ٺژ?[S?3y+?0u?V7A`ڿ ٺژ\St5fyl+/\??7s?7A`?WS?ٺژl6Ot3+ͤ2j??7A`??37l+]ba1?@[?7A`??83~+ΌN?*>+7A`ڿٺژ?[S?7nji~9w+HB?}?7A`?WSٺژ?:r~+?0u?V7A`? ٺژ\Srn;fw;Y+?#`g0?7A`ڿYnROf<x-+HB?}?7A`ڿWSٺژ?-=i +/\??7s?7A`ڿWS?ٺژinh-Q6i7hjFPi+ +nxiQ6|ZhQ<+jZjGVxL+<:2^Fh-:<^:<;Q?,V+;:^2.grp+?UWV.^,;-,n^O VU?RQZx-UVnuU +u0Qs6unoK +o0n“): +)02(++IW?BY$?ٺژWS? 0 ))!n‘d ++0Qq6)P6(#QZ)Qp6&Qr6RQ[RPAQ\S???Q]uS???Qt6uQ^oS???o num ++u0Qu6oQ_S???no -o0Qv61Q`1S???Q1w6Qa,S???Qx6,1kQbOkS???Qky6OQcYS???Qz6YksQdfsS???Qs{6fQerS???Q|6rs{Qfw{zS???Q{}6wvQzgqvS???Qhx|zS???Q|6xvQiS???QjiS???Qk7S???Q764S???RRRRRRRRRR2%+7A`ڿ??2&+n >~?qCG?\S? ٺژ2'u+ޣX?|3?ZSٺژ??R2+)o ++7A`???ROSDL/TYSA_COLOURQnQ&RP(#ROAEDT_BODYFlagGroupColor_V1PQQmTMagnet1P(#QYRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMES???OAEDT_EntityID_V1RWUR?_pwn+pmgn.Ww-jhZCL+LKXEGj-RRR}=dP>F2<-Q86.4aRcRQ]6Q`HRbQH6F]DRRRTRJR9*# SJ(I&T'Magnet1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0005358.x_b +Design_89.setup/NativeGeometryFiles/0005358.x_b BIN000000004595 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -118009,23 +96314,23 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0005358.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0005358.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0005358.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0005358.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ1@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ1@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q1&'F(( )*3 -)++?ݵ|г?h?Ѣm? ,-+7A`ڿh?Ѣm?ݵ|г? ./ݵ|г?7A`ڿ *0V 1n2,- -32./nQ3.4567282299+.6: n/ ݵ|г?7A`?Q6/4.3;:<::.=,=+<:>=?==.:,-,5n: Q5-4,@13AP4BC(#Q@#D,5EFQ1,4EG5HRAQE"D1I@JQG+4>IK1LRH>GnM< N-M0QI!D>GOEPQK*4MOQGRRLMKn>)S ++>)0QO DMKTIUQQ)4)TVKWRR) QnM8 +)++?ݵ|г?h?Ӣm? ,-+7A`ڿh?Ӣm?ݵ|г? ./ܵ|г?7A`ڿ *0V 1n2,- +32./nQ3.4567282299+.6: n/ ܵ|г?7A`?Q6/4.3;:<::.=,=+<:>=?==.:,-,5n: Q5-4,@13AP4BC(#Q@#D,5EFQ1,4EG5HRAQE"D1I@JQG+4>IK1LRH>GnM< N-M0QI!D>GOEPQK*4MOQGRRLMKn>)S ++>)0QO DMKTIUQQ)4)TVKWRR) QnM8 +M0QTD)QOXQV(4Y&QZRWQY&[\V]Q&0BV^RZPB_(#R^O_AEDT_BODYFlagGroupColor_V1P[`aQQ\%bcYdT]ShaftPbe(#Qcf\gRdPfDhhSg?OhSDL/TYSA_COLOUR_2OeAttGS_PS_LayerO aSDL/TYSA_NAMEPDiASX?OiSDL/TYSA_COLOUR8 2)? 0 )? =)SU?S9M2+MN -+yGz7A`???2N>++yGz7A`ڿ??9S992-SP?SJ?SF?OCAEDT_EntityID_V1R;R7- +7A`?h?Ѣm?ݵ|г?* SJ(c@\Y6&T'Shaft$end 'x_b' ++{Gz7A`???2N>++{Gz7A`ڿ??9S992-SP?SJ?SF?OCAEDT_EntityID_V1R;R7- +7A`?h?Ӣm?ݵ|г?* SJ(c@\Y6&T'Shaft$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0005367.x_b +Design_89.setup/NativeGeometryFiles/0005367.x_b BIN000000008320 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -118041,27 +96346,32 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0005367.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0005367.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0005367.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0005367.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'F(( $)*2 -*+,+7A`ڿ?? >-.+td1?k? -,m?7A`ڿ 2/0M6?*>?7A`? *1V 2n3456378nQ69:;<3=>?@A+7;B/Cn8-DEO~T ?بk?7A`?D,FG8+1?>Õ2?7A`ڿE.H8CO~T ?بk?7A`ڿH I@FJEnC/7EK+1?>Õ2?7A`?K0LC0td1?k? -,m?7A`ڿLMNJKn01OK td1?k? +*+,+7A`ڿ?? >-.+td1?i? +,m?7A`ڿ 2/0 +M6?*>?7A`? *1V 2n3456378nQ69:;<3=>?@A+7;B/Cn8-DEO~T ?بk?7A`?D,FG8'1?@Õ2?7A`ڿE.H8CO~T ?بk?7A`ڿH I@FJEnC/7EK'1?@Õ2?7A`?K0LC0td1?i? +,m?7A`ڿLMNJKn01OK td1?i? ,m?7A`?OPQ/F0nQP9ORSTQUVWON-X-/RY7O nF SZOHDnQS9FPI[Z=?>FB4\+=?]?=3ZH^_`->=Z37abc+BdX\7Z4>-4enZfg\dBNFhi^-d\jNd\XLQ-h+hkl^L\iW+i mnhn_o^kh`F?_+kl+`k^lHpq+_ -rn^iqsQr9_tmuvqun`_wxs8_yo+cM?j_?7A`ڿQ4<Φ?y7bxs+cM?j_?7A`?Q4<Φ?o9is5+Uv?iMgצ?7A`ڿQ4<Φ??5:oz+O~T ?بk?7A`??z;n5{+\+E?ۏ83?7A`??Q4<Φn|nV}iz{<}z.+Uv?iMgצ?7A`?Q4<Φ??}~nXbn{.={ +&r?sw?7A`?Q4<ΦnA-b.Q{9A@Ya+-nNf bn>}yQ|9b~P9(#QebQ~}9}|RQf}~Q|~9n~mRQgn|Qm9i|rRQhimtRPAQti_rS???QjqutS???Qu9qr:Qkw:S???w:nlqQ:9wu6S???Rlk`hJWw+3wg+\+E?ۏ83?7A`ڿ?Q4<Φg44++1?>Õ2?7A`ڿ5fgx+M6?*>?7A`??fnY4-x6qy+&r?sw?7A`ڿQ4<ΦQy9feYAp/f+"p)pY@J`ql-UWVJYfp-a/AV-cOVn-ac>b-VUQ/n+UWWUQLlw-n¦jU +j1Qt9 n+ ++1jn§]d +]12%+Y?´'V?Q4<Φ??? 1 ))!n] ,+]1Qq9)]nj)= +j)12,)) -+YeEQ?̶!??Q4<Φ2(j,+|?`P?ᅨQ4<Φ??2'+7A`???2&]+g ?cP?Q4<ΦQr9]Q[]Qs9jRQ\jRQ]S???Q^S???Qu9Q_+S???+nk --1Qv9+2Q`2S???Q2w9eQa4eS???Qex942QbfS???Qc-S???Qz9-QdS???S???RRR RRQZ)S???S???Qp9&RQnQ&RP(#ROAEDT_BODYFlagGroupColor_V1PQQmTMagnet2P(#QYRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERca7X}-XdNBOc}+JHLGnQ9JIMG+JDM6?*>?7A`ڿQI9HSQM9LR R -R @pAH3?-RROSDL/TYSA_COLOURS???S???S???OAEDT_EntityID_V1RRvR[ QR9/;PQ;976RRRRTR<*# SJ(M&T'Magnet2$end 'x_b' +rn^iqsQr9_tmuvqun`_wxs8_yo+aM? +j_?7A`ڿQ4<Φ?y7bxs+aM? +j_?7A`?Q4<Φ?o9is5+Uv?hMgצ?7A`ڿQ4<Φ??5:oz+O~T ?بk?7A`??z;n5{+\+E?؏83?7A`??Q4<Φn|nV}iz{<}z.+Uv?hMgצ?7A`?Q4<Φ??}~nXbn{.={ +&r?sw?7A`?Q4<ΦnA-b.Q{9A@Ya+-nNf bn>}yQ|9b~P9(#QebQ~}9}|RQf}~Q|~9n~mRQgn|Qm9i|rRQhimtRPAQti_rS???QjqutS???Qu9qr:Qkw:S???w:nlqQ:9wu6S???Rlk`hJWw+3wg+\+E?؏83?7A`ڿ?Q4<Φg44+'1?@Õ2?7A`ڿ5fgx+ +M6?*>?7A`??fnY4-x6qy+&r?sw?7A`ڿQ4<ΦQy9feYAp/f+"p)pY@J`ql-UWVJYfp-a/AV-cOVn-ac>b-VUQ/n+UWWUQLlw-n¦jU +j1Qt9 n+ ++1jn§]d +]12%+Y?Ĵ'V?Q4<Φ??? 1 ))!n] ,+]1Qq9)]nj)= +j)12,)) ++ZeEQ?̶!??Q4<Φ2(j,+|?`P?￈Q4<Φ??2'+7A`???2&]+i ?cP?Q4<ΦQr9]Q[]Qs9jRQ\jRQ]S???Q^S???Qu9Q_+S???+nk +-1Qv9+2Q`2S???Q2w9eQa4eS???Qex942QbfS???Qc-S???Qz9-QdS???S???RRR RRQZ)S???S???Qp9&RQnQ&RP(#ROAEDT_BODYFlagGroupColor_V1PQQmTMagnet2P(#QYRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERca7X}-XdNBOc}+JHLGnQ9JIMG+JD +M6?*>?7A`ڿQI9HSQM9LR R +R @pAH3?-RROSDL/TYSA_COLOURS???S???S???OAEDT_EntityID_V1RRvR[ QR9/;PQ;976RRRRTR<*# SJ(M&T'Magnet2$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0005395.x_b +Design_89.setup/NativeGeometryFiles/0005395.x_b BIN000000167622 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -118077,249 +96387,224 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0005395.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0005395.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0005395.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0005395.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'F(( )*2 -l+,+2 -ub濩Sh+-?ٺژ?S? -.+ۿ3b@?7A`ڿٺژ?]S /08|\?RR %ҿ7A`ڿ *1V2n3456789nQ6:;<=7>77?@?+8<3ABn9CDb$%?b$%7A`?CEF9GI-&mп7A`ڿDG9HP r? V7A`?GIJKLDnHMDNVOL?7A`ڿMOPQRHnNSHT -%lD?zW#?7A`ڿSUVWXNnTANY8|\?[R %?7A`?AZ[8\TnY]T^GÕ2ҿ+17A`ڿ]=_`abYn^cYd>Õ2ҿ+1?7A`?cefgh^ndi^jWfDʿ7A`?iklmndnjodp+1>Õ2ҿ7A`?oqrstjnpujvGI-&mп7A`?uwxyEpnvzp{Wf?D?7A`?z|}~vn{v?#`g0?7A`?z{n{6xrQ?},Ź6?7A`ڿXnQ%?Q%ٿ7A`?xnRR %ҿ8|\7A`ڿDan},Ź6п6xrQ?7A`?n#`g0ȿ?7A`ڿn"|%$2?Q?7A`?n`? ݖ7A`ڿ~nk? -,mܿtd17A`ڿ6bnbk? -,mܿtd17A`?b8]n},Ź6п-xrQ7A`ڿKnp̿!~?7A`ڿnqW#%lD޿7A`ڿnÕ2?+17A`ڿn>Õ2?+1?7A`ڿn?#`g0ȿ7A`?tn%Fg8?޿7A`?wn,Sɔo!Q뱿7A`?nzW# -%lD?7A`ڿnRR %ҿ8|\7A`?Fn *~q?7A`ڿ@ -   n td1k? -,mܿ7A`ڿk n !~?p?7A`ڿZn-xrQ?},Ź6п7A`?_nX?&m?GI?7A`?X S!n"k? -,m?td17A`ڿ}#$n"%&,Sɔo!Q?7A`?%'()*"n&+",[R %?8|\7A`ڿ+-./&n,0&1},Ź6?6xrQ7A`ڿ023/4,n15,6H`^S㿼f(?7A`ڿ57891n6:1;},Ź6?-xrQ?7A`?:)<=>?6n;@6A4/_7- <丿7A`?@BCD;nAE;F~`ܿ ݖ7A`ڿE/GHIAnF>AJq?*~?7A`ڿ>.KLM:FnJNFOWf?Dʿ7A`ڿNkPQRSJnOTJU"|%$2?Q뱿7A`ڿTVWXOnUYOZ#`g0?7A`?Y[\]KUnZ^U_Fg8?޿%?7A`ڿ^c`abcZn_dZe,Sɔo!?Q?7A`ڿddfghi_nej_kp?!~7A`ڿjlm4nenkoepH`^S?f(7A`?o5qrstknpukv-&m?GI7A`ڿuwxRypnvpz},Ź6п-xrQ7A`?M{|}vnz~v%?Fg8??7A`ڿ~pznz},Ź6п6xrQ?7A`ڿn ݖ?`?7A`ڿRn,Sɔo!Q뱿7A`ڿnRR %?8|\?7A`?"?n"|%$2Q뱿7A`ڿn*~?q̿7A`ڿdSn,Sɔo!?Q뱿7A`?Tn?#`g0?7A`ڿ^n V?f r7A`ڿnFg8??%?7A`ڿnLP r? V7A`ڿLGnf(?H`^S?7A`ڿWn%?Fg8??7A`?nqW#? -%lD޿7A`?.tnH`^S㿼f(7A`ڿ|nk? -,m?td1?7A`?n,Sɔo!?Q?7A`?ny%lD?qW#7A`?yunGI??&mп7A`?'n#`g0ȿ7A`ڿ`n8|\?[R %?7A`ڿVnH`^S㿼f(7A`?~nm!~p̿7A`ڿmin?JVOL7A`? nf(?H`^S7A`ڿn#`g0?7A`ڿNn[R %?8|\7A`?+n[R %ҿ8|\?7A`ڿn`ܿ ݖ?7A`?\cnk? -,m?td17A`?nWf㿯D?7A`?I  - n 4/_7-?4n:?4@=/_7-?<丿7A`?? AB:n@=:Cf(H`^S7A`ڿ=!DEF9@nCG@Hvwxyonuzo{W r? V?7A`?z|}~un{uGI??&mп7A`ڿ%{n{qW#%lD޿7A`?En]D?Wf7A`ڿ]nYnQ?,Sɔo!?7A`ڿznnD?Wf7A`?nj]n%Fg8??7A`?n+1?>Õ2?7A`ڿTnVOL?7A`ڿnQ?"|%$27A`?Rn>Õ2?+1?7A`?n>Õ2?+17A`?nFf(H`^S7A`?F#=nD VP r7A`ڿD@nR-&m?GI7A`?RMunq̿*~7A`?T}n Z=/_7-n$L"|%$2Q?7A`?LG)n% Wf㿯D?7A`ڿ G n&h"|%$2?Q?7A`ڿhfdn'W r V?7A`?n(td1?k? -,m?7A`ڿQxn)GI?-&m?7A`ڿjn* Õ2?7A`?/B#`g0ȿ7A`ڿn07?&mпGI7A`?7>3n1f(?H`^S?7A`?n2<丿=/_7-7A`ڿn3Q?"|%$2?7A`?n4 ݖ?`?7A`?n5qW#?%lD?7A`?n6X"|%$2?Q뱿7A`?XTn7Q뱿,Sɔo!?7A`ڿin8* ,Sɔo!Q?7A`ڿ* - %Vn 9   ݖ~`?7A`?  n : 8|\RR %?7A`?4 n;Q  y 迄VOL7A`ڿy!"un ?g#W r? V?7A`ڿg$%&c n#@W ' -%lD?zW#?7A`?W()S#n'A#*?VOL?7A`?+,'n*B)'-"|%$2Q?7A`ڿ)./L%*n-Ca*0GÕ2ҿ+17A`?a?12]-n0D -3*~q?7A`? B45 0n3E06%lD?qW#7A`ڿ78y3n6F93:^ r V7A`?9;<=6n:G 6>-xrQ},Ź6?7A`? ;?@:n>HR:AWf?Dʿ7A`?RmBCN>nAI>DzW# -%lD?7A`? -EF5AnDJAG8|\RR %?7A`ڿ2HIJDnGKDK%Fg8??7A`ڿLM9GnKLNGO%lD޿qW#?7A`?NsPQRKnOMKSDʿWf7A`ڿYTUOnSNOVFg8??%?7A`?WXYSnVOSZ[R %ҿ8|\?7A`?[\hVnZP]V^6xrQ},Ź6п7A`ڿ]_`aZn^QZb?VOL?7A`ڿhcdh^nbR^e=/_7-?<丿7A`ڿfg?bneSbhD?Wf?7A`ڿ5ijkMenhTeltd1?k? -,m?7A`?mnhnlUho?JVOL7A`ڿpqXlnoVhlr>Õ2ҿ+1?7A`ڿhstconrWouqW#?%lD?7A`ڿlvwrnuXirxQ뱿,Sɔo!?7A`?iyzdunxYu{?#`g0ȿ7A`ڿr|}Rxn{Z?x~},Ź6?-xrQ?7A`ڿ?':{n~[{qW#? -%lD޿7A`ڿ,~n\~Q?"|%$27A`ڿQn]#`g0?7A`?Pn^td1k? -,mܿ7A`?pn_td1?k? -,mܿ7A`?J*n`<丿=/_7-7A`?9na8|\?RR %ҿ7A`?X/nb迄VOL7A`?yncKÕ2ҿ7A`ڿtoneJ+1>Õ2?7A`?J-nftd1k? -,m?7A`?&ngFg8?޿%7A`ڿ(IFnhmDʿWf?7A`ڿmniRR %?8|\?7A`ڿ njIFg8?޿%7A`?I*EnkkD?Wf?7A`?k7ynl V?f r7A`? ?nmH`^S?f(?7A`?nnVOL?7A`?noh<丿4/_7-?7A`?hdnp V?W r?7A`ڿ`inq877?@?+8<3ABn9CDb$%?b$%7A`?CEF9GI,&mп7A`ڿDG9HQ r? V7A`?GIJKLDnHMDNzVOL?7A`ڿMOPQRHnNSHT %lD?vW#?7A`ڿSUVWXNnTANY8|\?[R %?7A`?AZ[8\TnY]T^CÕ2ҿ'17A`ڿ]=_`abYn^cYd?Õ2ҿ'1?7A`?cefgh^ndi^jWf㿿Dʿ7A`?iklmndnjodp'1?Õ2ҿ7A`?oqrstjnpujvGI,&mп7A`?uwxyEpnvzp{Wf?D?7A`?z|}~vn{v?#`g0?7A`?z{n{6xrQ?},Ź6?7A`ڿXnP%?R%ٿ7A`?xnOR %ҿ8|\7A`ڿDan|,Ź6п6xrQ?7A`?n#`g0ȿ?7A`ڿn!|%$2?Q?7A`?n`? ݖ7A`ڿ~nj? +,mܿtd17A`ڿ6bnbj? +,mܿtd17A`?b8]n},Ź6п/xrQ7A`ڿKnp̿!~?7A`ڿnsW#%lD޿7A`ڿn>VOL??7A`ڿn)Sɔo!?Q뱿7A`ڿnQ?)Sɔo!?7A`?nGI?-&m?7A`?n_ r V7A`ڿn>Õ2?'17A`ڿnAÕ2?'1?7A`ڿn?#`g0ȿ7A`?tn&Dg8?޿7A`?wn,Sɔo!Q뱿7A`?nvW# %lD?7A`ڿnOR %ҿ8|\7A`?Fn '~q?7A`ڿ@ +   n td1h? +,mܿ7A`ڿk n !~?p?7A`ڿZn.xrQ?~,Ź6п7A`?_nX?&m?GI?7A`?X S!n"h? +,m?td17A`ڿ}#$n"%&)Sɔo!Q?7A`?%'()*"n&+",YR %?8|\7A`ڿ+-./&n,0&1{,Ź6?7xrQ7A`ڿ023/4,n15,6E`^S㿿f(?7A`ڿ57891n6:1;|,Ź6?/xrQ?7A`?:)<=>?6n;@6A5/_7- <丿7A`?@BCD;nAE;F~`ܿ ݖ7A`ڿE/GHIAnF>AJq?'~?7A`ڿ>.KLM:FnJNFOWf?Dʿ7A`ڿNkPQRSJnOTJU!|%$2? +R뱿7A`ڿTVWXOnUYOZ#`g0?7A`?Y[\]KUnZ^U_Dg8?޿%?7A`ڿ^c`abcZn_dZe,Sɔo!?Q?7A`ڿddfghi_nej_kp?!~7A`ڿjlm4nenkoepE`^S?f(7A`?o5qrstknpukv+&m?GI7A`ڿuwxRypnvpz},Ź6п/xrQ7A`?M{|}vnz~v%?Eg8??7A`ڿ~pznz|,Ź6п6xrQ?7A`ڿn ݖ?`?7A`ڿRn,Sɔo!Q뱿7A`ڿnNR %?8|\?7A`?"?n!|%$2Q뱿7A`ڿn&~?q̿7A`ڿdSn)Sɔo!?Q뱿7A`?Tn?#`g0?7A`ڿ^n V?d r7A`ڿnCg8??(?7A`ڿnLQ r? V7A`ڿLGnf(?E`^S?7A`ڿWn%?Eg8??7A`?nuW#?%lD޿7A`?.tnH`^S㿼f(7A`ڿ|ni? +,m?td1?7A`?n,Sɔo!?Q?7A`?ny%lD?sW#7A`?yunGI?A&mп7A`?'n#`g0ȿ7A`ڿ`n8|\?[R %?7A`ڿVnH`^S㿼f(7A`?~nm!~p̿7A`ڿmin?HVOL7A`? nf(?H`^S7A`ڿn#`g0?7A`ڿNnYR %?8|\7A`?+nZR %ҿ8|\?7A`ڿn`ܿ ݖ?7A`?\cnh? +,m?td17A`?nWf㿮D?7A`?I  + n 5/_7-?4n:?4@>/_7-?<丿7A`?? AB:n@=:Cf(E`^S7A`ڿ=!DEF9@nCG@H>VOL?7A`ڿGIJKLCnHMCNQ?,Sɔo!7A`?MOPQRHnNcHSi? +,mܿtd1?7A`?c^TU^NnSVNW VZ r?7A`?VXY*ZSnW bS[Dg8?޿%?7A`?be\]^Wn[ +W^P%?R%ٿ7A`ڿt_`~[n^ [a~`ܿ ݖ7A`?1bcE^na d^e<丿5/_7-?7A`ڿdfghiane aj#`g0ȿ?7A`?klmenjneoR뱿!|%$27A`?npqrsjnotju#`g0??7A`?t>vwxyonuzo{Z r? V?7A`?z|}~un{uGI?A&mп7A`ڿ%{n{sW#%lD޿7A`?En]D?Wf7A`ڿ]nYnQ?)Sɔo!?7A`ڿznnD?Wf7A`?nj]n(Cg8??7A`?n'1?@Õ2?7A`ڿTnVOL?7A`ڿnQ?!|%$27A`?RnAÕ2?'1?7A`?n>Õ2?'17A`?nFf(E`^S7A`?F#=nD VS r7A`ڿD@nR+&m?GI7A`?RMunq̿'~7A`?T}n Z>/_7-n$L!|%$2R?7A`?LG)n% Wf㿮D?7A`ڿ G n&h!|%$2?Q?7A`ڿhfdn'W r V?7A`?n(td1?i? +,m?7A`ڿQxn)GI?-&m?7A`ڿjn* +3n1f(?E`^S?7A`?n2<丿?/_7-7A`ڿn3R?!|%$2?7A`?n4 ݖ?`?7A`?n5rW#?%lD?7A`?n6X!|%$2? +R뱿7A`?XTn7Q뱿,Sɔo!?7A`ڿin8* )Sɔo!Q?7A`ڿ* + %Vn 9   ݖ|`?7A`?  n : 8|\NR %?7A`?4 n;Q  +y ~VOL7A`ڿy!"un ?g#Z r? V?7A`ڿg$%&c n#@W ' %lD?vW#?7A`?W()S#n'A#*?VOL?7A`?+,'n*B)'-!|%$2R?7A`ڿ)./L%*n-Ca*0CÕ2ҿ'17A`?a?12]-n0D -3'~q?7A`? B45 0n3E06%lD?sW#7A`ڿ78y3n6F93:_ r V7A`?9;<=6n:G 6>/xrQ|,Ź6?7A`? ;?@:n>HR:AWf?Dʿ7A`?RmBCN>nAI>DvW# %lD?7A`? +EF5AnDJAG8|\NR %?7A`ڿ2HIJDnGKDK(Cg8??7A`ڿLM9GnKLNGO%lD޿rW#?7A`?NsPQRKnOMKSDʿWf7A`ڿYTUOnSNOVCg8??(?7A`?WXYSnVOSZZR %ҿ8|\?7A`?[\hVnZP]V^6xrQ|,Ź6п7A`ڿ]_`aZn^QZb?VOL?7A`ڿhcdh^nbR^e>/_7-?<丿7A`ڿfg?bneSbhD?Wf?7A`ڿ5ijkMenhTeltd1?i? +,m?7A`?mnhnlUho?HVOL7A`ڿpqXlnoVhlr?Õ2ҿ'1?7A`ڿhstconrWourW#?%lD?7A`ڿlvwrnuXirxQ뱿,Sɔo!?7A`?iyzdunxYu{?#`g0ȿ7A`ڿr|}Rxn{Z?x~|,Ź6?/xrQ?7A`ڿ?':{n~[{uW#?%lD޿7A`ڿ,~n\~Q?!|%$27A`ڿQn]#`g0?7A`?Pn^td1h? +,mܿ7A`?pn_td1?j? +,mܿ7A`?J*n`<丿?/_7-7A`?9na8|\?OR %ҿ7A`?X/nb~VOL7A`?yncK>VOL?7A`?KGndt'1?Õ2ҿ7A`ڿtoneJ'1AÕ2?7A`?J-nftd1i? +,m?7A`?&ngDg8?޿)7A`ڿ(IFnhmDʿWf?7A`ڿmniNR %?8|\?7A`ڿ njIDg8?޿)7A`?I*EnkkD?Wf?7A`?k7ynl V?d r7A`? ?nmH`^S?f(?7A`?nnVOL?7A`?noh<丿5/_7-?7A`?hdnp V?Z r?7A`ڿ`inq8CVOL7A`?83rnr|`? ݖ?7A`? Yns!|%$2Q뱿7A`?ntnWf㿿Dʿ7A`ڿninutd1i? +,m?7A`ڿ$ nvCg8??&7A`?nw,&mпGI?7A`ڿxNnxW r V?7A`ڿhnyS&~?q̿7A`?SfNnztd1?j? +,mܿ7A`ڿHn{Q뱿!|%$2?7A`ڿn|/xrQ|,Ź6?7A`ڿ9 n}i? +,mܿtd1?7A`ڿYn~0Q뱿*Sɔo!7A`?s=n0= Q뱿*Sɔo!7A`ڿ=90nQz:=;=-J-s-  s+ n   =+   ---n =+-nQD: ! n"#$I%&+<丿=/_7-7A`ڿٺژ?S%H'(+RR %ҿ8|\7A`ڿ?qX4<Φ?&J)*+O~T بkҿ7A`ڿ!G4<Φ??)+n,-.&*K/&0+ ݖ⿇`ܿ7A`ڿF4<Φ/t1n234*0L5*6+-xrQ},Ź6?7A`ڿ5:7n89:06M;0<+0/࿪O(7A`ڿ -ٺژ]S?;=n>?@6<NA6B+,Sɔo!Q?7A`?=ACnDEF<BOG<H+k? -,m?td1?7A`??GInJKLBHPMBN+>?h;?7A`?Q4<Φ?M#OnPQRHNQSHT+!~?p?7A`ڿ}ؿ2k?SYUnVWXNTRYNZ+P r? V7A`??Y[n\]^TZS_T`+!~p̿7A`ڿ_anbcdZ`TeZf+td1?k? -,mܿ7A`??eIgnhij`fUk`l+6xrQ?},Ź6?7A`?J4<Φ??kmnnopflVqfr+6xrQ},Ź6п7A`ڿqsntuvlrWlw+Q뱿,Sɔo!7A`?xn rwXyrz+\+Eҿۏ83ݿ7A`ڿQ4<Φ?yj{n|}~wzYw+W r V?7A`??n‚zZz+?&m?GI?7A`ڿnˆ[+"1?GÕ2ҿ7A`??PnŽ\+f(H`^S?7A`ڿkn”]+%?Fg8??7A`ڿn^+~`ܿ ݖ7A`ڿ0nŸ_+p?!~7A`ڿ2k?}?n¥`+},Ź6п-xrQ7A`ڿ2k?}ؿQn«a+f(?H`^S7A`ڿn±b+},Ź6п6xrQ?7A`ڿJ4<Φ?n·c+%?Fg8?޿7A`ڿU4<Φ?@n½dF+"|%$2Q?7A`ڿFnAe+Q뱿"|%$2?7A`ڿ -\3&nf+%Fg8??7A`ڿV4<Φ?ng^+V;0u7A`ڿ]Sٺژ?^nYh+`? ݖ7A`ڿ?F4<Φni+=/_7-?h;?7A`ڿQ4<Φ?nR t~ +4~ҿ[޿7A`?ٺژ?]S~gn<yu+},Ź6?-xrQ?7A`?2k}?1nv +,Sɔo!?Q?7A`ڿ!ng"# w$%+>ҿh;ҿ7A`ڿQ4<Φ?$C&n'() %x* ++O~T بkҿ7A`?!G4<Φ??*,n-.-%+y9%/+8|\RR %?7A`?X4<Φ?9<0n125+/zj+3+%{?3+6ݿ7A`ڿQ4<ΦjG4n5e6/3{/7+?ͤ2j?7A`ڿٺژ?S8n9:37|3;+},Ź6?6xrQ7A`ڿ<n=>7;}?7@+GÕ2ҿ+17A`???>AnB)C;@~D;E+ۿ3b@?7A`?ٺژ?]SDQFnGHI@EJ@K+*>?M6?7A`ڿ?O4<Φ?JLnMNEKOEP+f(?H`^S7A`ڿ:idjp.OQnRSKP3KT+%Fg8?޿7A`ڿ3vUnVW/PTXPY+%{Կ3+6?7A`??Q4<Φ?X'Zn[\]TY^T_+%Fg8?޿7A`ڿa<f8;f^{`nabWY_cYd+>Õ2?+17A`??cenfgh_di_j+O(?0/7A`ڿ]S -ٺژiknldjmdn+}ϿIB?7A`ڿٺژTSmonpqjnrjs+VOL?7A`ڿrtnuvwnsxny+%?Fg8??7A`?a<f?8;f?xzn{|}sy~s+WfDʿ7A`ڿ~nyy+bMgצUv?7A`ڿᅮQ4<Φ?n+4~?[?7A`?ٺژ]S?Cn}+h;?>ҿ7A`??Q4<Φ?Yn‘++1>Õ2ҿ7A`??n—+ VW r?7A`??nœ+zW# -%lD?7A`ڿOp.?Lid?n +4~?[?7A`ڿٺژ]S?Bn%#+"|%$2?Q?7A`ڿ#n}+ ݖ?`?7A`?tF4<Φ??}n«x+DʿWf7A`ڿZn°+y=ߧ?Wʿ7A`?`Q4<Φ?Rnµ+بk?O~T 7A`ڿ(G4<Φ?nº+3+6ݿ%{Կ7A`?Q4<Φ?9nC+p̿!~?7A`ڿ2k}ؿn +?VOL?7A`?u߈]?[$n++^ r V7A`??>?$@+f(H`^S7A`ڿ;f?;f??'AnBCD>@>E+Fg8?޿%?7A`ڿ8;fa<f?iFnGH@E@I+VOL?7A`?[$?u߈]?JnKLEIMEN+Q?,Sɔo!?7A`ڿ=?MOnPQRINKIS+3+6?%{?7A`?Q4<Φ?KTnUVGNSCNW+Wʿy=ߧ7A`ڿ?oQ4<Φ?C<XnY?SWZS[+]ba1@[7A`?BS%ٺژ?Z\n]'^W[_W`+\+E?ۏ83?7A`ڿ?Q4<Φ_Panbc[`[d+?%3b@7A`? -ٺژ]S?uenfg`dh`i+VOL?7A`ڿ[$￞u߈]hjnklmdindo+;0u?V7A`? -ٺژ]Snpnqrsiotiu+@[?]ba17A`ڿ%ٺژBStvnwxyouoz+=/_7-?<丿7A`?S?ٺژ?{n|}uzu~+Q?"|%$27A`? -L9y<?n€ -z~z+`ܿ ݖ?7A`??[n„~~+DʿWf?7A`ڿnŠ+8|\?RR %ҿ7A`ڿbX4<Φ?\n+Q?,Sɔo!7A`?غژ?S?n“^+#`g0?7A`??n—+}?IB7A`ڿٺژ?TS?nœ]+οͤ2j7A`?ٺژS?n +*~q?7A`ڿAn¦2+ ݖ?`?7A`??n@+Q?,Sɔo!?7A`?=?n®Q.+]ba1@[7A`ڿBS%ٺژ?.n²^*+Q뱿"|%$27A`?[$}t߈]?n¶+RR %?8|\?7A`?X4<Φ*n¼+H`^S㿼f(7A`ڿjp.:id?no+cM?j_?7A`?Q4<Φ?onk+;0uῗV?7A`?ٺژ?]S?nh+j_?cMԿ7A`ڿQ4<Φ??hnc]+td1k? -,m?7A`??]%nX+Fg8?޿%7A`?? V4<Φ?2n+Q뱿,Sɔo!?7A`?غژ忊Sng+[?4~ҿ7A`ڿ]S?ٺژ?gxn¨4+td1k? -,mܿ7A`??4qn/+O(0/?7A`?]S? -ٺژ?n+,Sɔo!Q뱿7A`?S?غژn+;0uῗV?7A`ڿٺژ?]S?n+-xrQ?},Ź6п7A`ڿ^n -c+WfDʿ7A`?S?غژcnv_+Fg8?޿%?7A`?8;fa<f?mnV+W?y=ߧ?7A`ڿ}Q4<ΦVnKX+6xrQ?},Ź6?7A`ڿJ4<Φ??XWnS+ΌNڿ*>+?7A`ڿٺژ]Sn~+h;ҿ>?7A`?Q4<Φ5n : -  +Fg8?޿%?7A`ڿ d nH +"|%$2?Q뱿7A`ڿt߈][$n- @ +UvbMgצ7A`?Q4<Φ@n;+>Õ2?+1?7A`??nV+cMԿj_ҿ7A`??Q4<Φng+j_?cMԿ7A`?Q4<Φ??gn !c"+4/_7- <丿7A`ڿ#n$%"&+V?;0u?7A`?]S? -ٺژ'n(m"&")+y=ߧ?Wʿ7A`ڿ`Q4<Φ?N*n+i&)&,+O(0/?7A`ڿ]S? -ٺژ?-n.),)/+k? -,m?td17A`??0n15,/,2+ ݖ?~`ܿ7A`ڿB3n46/2/5+Fg8?޿%7A`ڿ? V4<Φ?.6n782592:+"|%$2Q뱿7A`ڿ?\3&9;n<=&5:>5?+ͤ2j?ο7A`?S翑ٺژ>(@nABC:?q:D+#`g0ȿ?7A`??qEnFGm?D?H+]ba1?@[?7A`ڿKS?%ٺژiInJKDHLDL+Q뱿"|%$2?7A`ڿLMnNOHLPHQ+بkҿO~T ?7A`ڿ?G4<ΦPwRnSTULQVLW+6xrQ},Ź6п7A`?$J4<ΦVXnYZQW[Q\+!~?p?7A`ڿ[]n^_W\`Wa+qW#? -%lD޿7A`ڿ`-bncdB\ae\f+qW#?%lD?7A`ڿegnwhafiaj+f(H`^S7A`ڿi"knlDmfjnfo+D?Wf7A`ڿnpnqrsjojt+Q?,Sɔo!7A`ڿunvotow+qW#%lD޿7A`ڿxny.twTtz+-&mпGI?7A`ڿTy{n|}Pwz~w+ܿM67A`?O4<Φn®m +p̿!~?7A`?2k}ؿn² D+ -%lD޿zW#7A`?LidOp.?D$nµ?i +"|%$2Q?7A`?t߈]?[$?n¸+UvbMgצ7A`ڿQ4<Φn@+},Ź6?-xrQ?7A`ڿ(n¾Q+?#`g0?7A`??n‚_+ -%lD?zW#?7A`?Lid?Op.n+f(?H`^S?7A`ڿ;f;fn+>ҿh;ҿ7A`?Q4<Φ?Gn'(]+V;0u7A`?]Sٺژ?]nY+},Ź6п-xrQ7A`?2k?}ؿUn+6xrQ},Ź6п7A`ڿ$J4<ΦnZu^+6xrQ?},Ź6?7A`ڿ^n‡4[+D?Wf7A`ڿغژ?S?nr+},Ź6?6xrQ7A`??,J4<Φnh.+Wf㿯D?7A`ڿHn.y +بk?O~T 7A`?(G4<Φ?ynt.Ql:yvRy+nyQm:wu++-&m?GI7A`ڿK+O~T ?بk?7A`ڿ G4<ΦB+M6?#*>ܿ7A`ڿO4<Φ?B+n`>+\+E?ۏ83?7A`??Q4<Φn}l+Q?"|%$27A`ڿlnh+},Ź6п-xrQ7A`ڿLn' +Q뱿"|%$27A`ڿ n+k? -,mܿtd1?7A`??_nO+VOL?7A`ڿ[$?u߈]?O n -Lv +ΌNڿ*>+?7A`?ٺژ]S n d~ +*>+?ΌN?7A`ڿ]Sٺژ?nG  ++ -%lD?zW#?7A`ڿN?n@AJ;>W;B+ ݖ⿇`ܿ7A`?F4<ΦWxCnD^3>BE>F+-xrQ?},Ź6п7A`?}?2k?EgGnHI BFBJ+H`^S?f(?7A`ڿKnLeFJFM+>Õ2ҿ+1?7A`??NnOJMJP+Uv?iMgצ?7A`?Q4<Φ??QnR@oMPMS+Q?"|%$2?7A`ڿ[$?t߈]TnUVPSPW+Fg8??%7A`?8;f?a<fXnYOSWSZ+Fg8??%7A`ڿ8;f?a<f[n\]WZ^W_+[޿4~?7A`?]Sٺژ^U`nYHZ_}Za+ ݖ⿇`ܿ7A`??}mbncy_a/_d+ΌN?*>+7A`ڿٺژ?]S?/]enf*Wadag+q?*~?7A`ڿmٺژ S?4hnidgdj+p̿!~?7A`ڿknl mgjgn+ VP r7A`??onpjncjq+Uv?iMgצ?7A`ڿQ4<Φ??cSrns_nqQnt+Q?"|%$2?7A`ڿQunvMqtqw+},Ź6?-xrQ?7A`ڿ2k}?-xnytw_tz+Wf?D?7A`ڿ_{n|[wzw}+"|%$2?Q?7A`ڿe~nz}Hz+[޿4~?7A`ڿ]SٺژHTnƒ^D}}+ V?f r7A`?? n‡(w+@[]ba1?7A`ڿ%ٺژ?KS?w~nŠr}+H`^S㿼f(?7A`ڿ;f?;fnŽ!>+p?!~7A`?2k?}?>n’+td1?k? -,m?7A`??nnd+M6?#*>ܿ7A`?O4<Φ?d/n—`++1>Õ2?7A`??,nœ\#+Q뱿"|%$2?7A`? -\3&#n i+%{?3+6ݿ7A`?Q4<ΦiKn£e+%Fg8??7A`?V4<Φ? n§+zW# -%lD?7A`ڿ n«+Wf?D?7A`?Sغژ?n¯pu+!~p̿7A`?}?2kun³q]+`? ݖ7A`??F4<Φ]n¶+bMgצUv?7A`?ᅮQ4<Φ?nU+ͤ2j?7A`?S?ٺژ?n¼Z+8|\[R %ҿ7A`ڿZn¿VG+}ϿIB?7A`?ٺژTSGnq+H`^S㿼f(?7A`ڿn}+بkҿO~T ?7A`??G4<Φ}{nwT+},Ź6п6xrQ?7A`?J4<Φ?n+Q?,Sɔo!?7A`ڿnR~:+8|\RR %?7A`ڿX4<Φ?:8n5+f(?H`^S?7A`ڿn+?VOL?7A`ڿnd#h+?&mпGI7A`ڿn+V?;0u?7A`ڿ]S? -ٺژnh+GI?-&m?7A`ڿhne4+H`^S?f(7A`ڿ;f;f?49n0+H`^S?f(7A`?;f;f?=n,+ͤ2j?ο7A`ڿS翑ٺژ,$nC(+Q뱿,Sɔo!?7A`ڿغژ忊Sn#'+迄VOL7A`ڿu߈][$?'n"Z+H`^S?f(?7A`ڿjp.?:idmnK+zW# -%lD?7A`?Op.?Lid?nv+!~p̿7A`ڿ}?2kvnqc+3+6ݿ%{Կ7A`ڿQ4<Φ?5n+=/_7-?<丿7A`ڿS?ٺژ?n  +RR %ҿ8|\7A`??qX4<Φ?N n  ! +bMgצ?Uv7A`ڿ?Q4<Φ! n$lg  l  +bMgצ?Uv7A`??Q4<Φl ni!    +=/_7- n? < = < @ +]ba1?@[?7A`?KS?%ٺژA nB 7= @ = C +q?*~?7A`?mٺژ S?8D nE @ C H@ F +`ܿ ݖ?7A`?|F4<Φ?HfG nH  C F C I +*~q?7A`? SmٺژJJ nK -F I F L +#*>ܿM67A`ڿO4<ΦM nN I L I O +<丿=/_7-7A`??P n#iL O (L Q +RR %ҿ8|\7A`ڿ(ER nS $O Q O T +ۏ83ݿ\+E?7A`ڿQ4<Φ??XU nV ^Q T )Q W +Wʿy=ߧ7A`??oQ4<Φ?)@X nY $?T W bT Z +H`^S㿼f(7A`ڿb}[ n\ ^W Z W ] +h;?>ҿ7A`ڿ?Q4<Φ?U^ n_ Z ] RZ ` +?7A`ڿO4<Φ?s nt o r o u +\+Eҿۏ83ݿ7A`?Q4<Φ?ov nw 4}r u r x +%?Fg8??7A`ڿa<f?8;f?oy nz { u x Cu | +GI??&mп7A`ڿC&} n~ >,x | Ax  +*>?M6?7A`??O4<Φ?A n N|  m| +@[?]ba17A`?%ٺژBSm nhx   +"|%$2?Q?7A`? n† s   +"|%$2?Q뱿7A`ڿ  nŠ }  r +*>+ΌNڿ7A`?]S?ٺژr n n  E +"|%$2Q?7A`ڿt߈]?[$?E n A   +zGzyGz<7A`ڿ;f?;f?ݵ|г?s n`{   + -%lD?zW#?7A`ڿLid?Op. n• A  -| +H`^S?f(?7A`?jp.?:id| n˜ 7x   +h;ҿ>?7A`ڿQ4<Φ 1 nœ -   +%?Fg8?޿7A`ڿ; nŸ 4   +*>+?ΌN?7A`?]Sٺژ? n¢ m  V ++7A`?ٺژ?]S? n½ r   +},Ź6?6xrQ7A`ڿ?,J4<Φ n >   +cMԿj_ҿ7A`ڿ?Q4<Φ n V  s +*>+ΌNڿ7A`ڿ]S?ٺژs n n   +%{Կ3+6?7A`ڿ?Q4<Φ?# n ]   +-xrQ},Ź6?7A`?}ؿ2kC n   L +3+6?%{?7A`ڿQ4<Φ?L n G=  I +#`g0?7A`??IO n D-   +}?IB7A`?ٺژ?TS? n s  - +?JVOL7A`ڿ- n (   + -%lD޿zW#7A`ڿ n   !} +,Sɔo!?Q뱿7A`ڿ?} n   " +#`g0ȿ7A`?? n   # +y=ߧῊW?7A`?}Q4<Φ?. n   $ +Q?7A`?O4<Φ?  n   * +GI?&m?7A`ڿ n   + +,Sɔo!?Q뱿7A`?? n   , +q̿*~7A`?mٺژ? S\ n   -( +0/?O(?7A`? -ٺژ?]S( +--n =+-nQD: ! n"#$I%&+<丿?/_7-7A`ڿٺژ?S%H'(+OR %ҿ8|\7A`ڿ?qX4<Φ?&J)*+O~T بkҿ7A`ڿ!G4<Φ??)+n,-.&*K/&0+ ݖ⿇`ܿ7A`ڿF4<Φ/t1n234*0L5*6+/xrQ|,Ź6?7A`ڿ5:7n89:06M;0<+-/࿧O(7A`ڿ ٺژ\S?;=n>?@6<NA6B+)Sɔo!Q?7A`?=ACnDEF<BOG<H+i? +,m?td1?7A`??GInJKLBHPMBN+>?h;?7A`?Q4<Φ?M#OnPQRHNQSHT+!~?p?7A`ڿ}ؿ2k?SYUnVWXNTRYNZ+Q r? V7A`??Y[n\]^TZS_T`+!~p̿7A`ڿ_anbcdZ`TeZf+td1?j? +,mܿ7A`??eIgnhij`fUk`l+6xrQ?},Ź6?7A`?J4<Φ??kmnnopflVqfr+6xrQ|,Ź6п7A`ڿqsntuvlrWlw+Q뱿*Sɔo!7A`?xn rwXyrz+\+Eҿ׏83ݿ7A`ڿQ4<Φ?yj{n|}~wzYw+W r V?7A`??n‚zZz+?&m?GI?7A`ڿnˆ[+&1?CÕ2ҿ7A`??PnŽ\+f(H`^S?7A`ڿkn”]+%?Eg8??7A`ڿn^+~`ܿ ݖ7A`ڿ0nŸ_+p?!~7A`ڿ2k?}?n¥`+},Ź6п/xrQ7A`ڿ2k?}ؿQn«a+f(?H`^S7A`ڿn±b+|,Ź6п6xrQ?7A`ڿJ4<Φ?n·c+(?Dg8?޿7A`ڿU4<Φ?@n½dF+!|%$2R?7A`ڿFnAe+Q뱿!|%$2?7A`ڿ\3&nf+(Cg8??7A`ڿV4<Φ?ng^+V?0u7A`ڿ[Sٺژ?^nYh+`? ݖ7A`ڿ?F4<Φni+>/_7-?h;?7A`ڿQ4<Φ?nR t~ +6~ҿ[޿7A`?ٺژ?YS~gn<yu+|,Ź6?/xrQ?7A`?2k}?1nv +,Sɔo!?Q?7A`ڿ!ng"# w$%+>ҿh;ҿ7A`ڿQ4<Φ?$C&n'() %x* ++O~T بkҿ7A`?!G4<Φ??*,n-.-%+y9%/+8|\NR %?7A`?X4<Φ?9<0n125+/zj+3+!{?3+6ݿ7A`ڿQ4<ΦjG4n5e6/3{/7+?ͤ2j?7A`ڿٺژ?S8n9:37|3;+{,Ź6?7xrQ7A`ڿ<n=>7;}?7@+CÕ2ҿ'17A`???>AnB)C;@~D;E+ۿ3b@?7A`?ٺژ?[SDQFnGHI@EJ@K+*>? M6?7A`ڿ?O4<Φ?JLnMNEKOEP+f(?H`^S7A`ڿ8idgp.OQnRSKP3KT+&Dg8?޿7A`ڿ3vUnVW/PTXPY+#{Կ2+6?7A`??Q4<Φ?X'Zn[\]TY^T_+&Dg8?޿7A`ڿc<f6;f^{`nabWY_cYd+>Õ2?'17A`??cenfgh_di_j+O(?-/7A`ڿ]S ٺژiknldjmdn+}ϿHB?7A`ڿٺژWSmonpqjnrjs+VOL?7A`ڿrtnuvwnsxny+%?Eg8??7A`?b<f?7;f?xzn{|}sy~s+Wf㿿Dʿ7A`ڿ~nyy+fMgצUv?7A`ڿ￑Q4<Φ?n+6~?[?7A`?ٺژXS?Cn}+h;?>ҿ7A`??Q4<Φ?Yn‘+'1?Õ2ҿ7A`??n—+ VZ r?7A`??nœ+vW# %lD?7A`ڿKp.?Nid?n +6~?[?7A`ڿٺژXS?Bn%#+!|%$2?Q?7A`ڿ#n}+ ݖ?`?7A`?sF4<Φ??}n«x+DʿWf7A`ڿZn°+|=ߧ?Wʿ7A`?`Q4<Φ?Rnµ+بk?O~T 7A`ڿ)G4<Φ?nº+3+6ݿ#{Կ7A`?Q4<Φ?9nC+p̿!~?7A`ڿ2k}ؿn +?VOL?7A`?u߈]?Z$n+/_7-?7A`??n+f(?H`^S7A`?8idgp.nS ++Q?,Sɔo!7A`ڿغژ?S? +n+Q뱿*Sɔo!7A`ڿ+)Sɔo!Q?7A`ڿ=nFd+Wf㿿Dʿ7A`ڿS?غژdn_+Cg8??(?7A`ڿV4<Φ +n+W?|=ߧ?7A`?￀Q4<Φn+)Sɔo!?Q뱿7A`ڿn+D?Wf?7A`ڿ6n+Q?!|%$27A`ڿ L9y<?n+3b@ۿ7A`?[S? ٺژ?cn+ j_ҿbM?7A`?Q4<Φn+3b@??7A`ڿ[Sٺژ;n+.xrQ?~,Ź6п7A`ڿ +}?2k?cn  + +#`g0??7A`??= n  +&Dg8?޿7A`?c<f6;fnb  +YR %?8|\7A`ڿn+ j_ҿbM?7A`ڿQ4<Φn+E`^S㿿f(?7A`?;f?;fn !"#+!|%$2Q뱿7A`ڿ"$n%&'#()+!|%$2? +R뱿7A`?t߈]^$(!*n+,-#)#.+3b@??7A`?[Sٺژ?/n0).1)2+`? ݖ7A`??13n456.27.8+O~T ?بk?7A`?G4<Φ79n:|282$+|`? ݖ?7A`ڿ ;n<=8$8>+_ r V7A`??>?$@+f(E`^S7A`ڿ;f?;f??'AnBCD>@>E+Dg8?޿%?7A`ڿ7;fb<f?iFnGH@E@I+VOL?7A`?Z$?u߈]?JnKLEIMEN+Q?)Sɔo!?7A`ڿ=?MOnPQRINKIS+2+6?#{?7A`?Q4<Φ?KTnUVGNSCNW+Wʿ|=ߧ7A`ڿ?pQ4<Φ?C<XnY?SWZS[+]ba1@[7A`?DS&ٺژ?Z\n]'^W[_W`+\+E?؏83?7A`ڿ?Q4<Φ_Panbc[`[d+?)3b@7A`? ٺژ\S?uenfg`dh`i+zVOL?7A`ڿZ$ᅳu߈]hjnklmdindo+?0u?V7A`? ٺژ\Snpnqrsiotiu+@[?]ba17A`ڿ&ٺژDStvnwxyouoz+>/_7-?<丿7A`?S?ٺژ?{n|}uzu~+Q?!|%$27A`? L9y<?n€ +z~z+`ܿ ݖ?7A`??[n„~~+DʿWf?7A`ڿnŠ+8|\?OR %ҿ7A`ڿbX4<Φ?\n+Q?,Sɔo!7A`?غژ?S?n“^+#`g0?7A`??n—+}?HB7A`ڿٺژ?VS?nœ]+οͤ2j7A`?ٺژS?n +'~q?7A`ڿAn¦2+ ݖ?`?7A`??n@+Q?)Sɔo!?7A`?=?n®Q.+]ba1@[7A`ڿDS&ٺژ?.n²^*+R뱿!|%$27A`?]$ᅥt߈]?n¶+NR %?8|\?7A`?ᅡX4<Φ*n¼+H`^S㿼f(7A`ڿgp.8id?no+aM? +j_?7A`?Q4<Φ?onk+?0u῕V?7A`?ٺژ?[S?nh+j_?cMԿ7A`ڿQ4<Φ??hnc]+td1i? +,m?7A`??]%nX+Dg8?޿)7A`?? +V4<Φ?2n+Q뱿,Sɔo!?7A`?غژ忉Sng+[?6~ҿ7A`ڿYS?ٺژ?gxn¨4+td1h? +,mܿ7A`??4qn/+O(-/?7A`?\S? ٺژ?n+,Sɔo!Q뱿7A`?S?غژn+?0u῕V?7A`ڿٺژ?[S?n+.xrQ?~,Ź6п7A`ڿ^n +c+Wf㿿Dʿ7A`?S?غژcnv_+Dg8?޿%?7A`?7;fb<f?mnV+W?|=ߧ?7A`ڿ￀Q4<ΦVnKX+6xrQ?},Ź6?7A`ڿJ4<Φ??XWnS+ΌNڿ*>+?7A`ڿٺژZSn~+h;ҿ>?7A`?Q4<Φ5n : +  +Dg8?޿%?7A`ڿ d nH +!|%$2? +R뱿7A`ڿt߈]^$n- @ +UveMgצ7A`?Q4<Φ@n;+AÕ2?'1?7A`??nV+bMԿ j_ҿ7A`??Q4<Φng+j_?cMԿ7A`?Q4<Φ??gn !c"+5/_7- <丿7A`ڿ#n$%"&+V??0u?7A`?\S? ٺژ'n(m"&")+|=ߧ?Wʿ7A`ڿ`Q4<Φ?N*n+i&)&,+O(-/?7A`ڿ\S? ٺژ?-n.),)/+h? +,m?td17A`??0n15,/,2+ ݖ?~`ܿ7A`ڿB3n46/2/5+Dg8?޿)7A`ڿ? +V4<Φ?.6n782592:+!|%$2Q뱿7A`ڿ?\3&9;n<=&5:>5?+ͤ2j?ο7A`?S翍ٺژ>(@nABC:?q:D+#`g0ȿ?7A`??qEnFGm?D?H+]ba1?@[?7A`ڿFS?&ٺژiInJKDHLDL+Q뱿!|%$2?7A`ڿLMnNOHLPHQ+بkҿO~T ?7A`ڿ?G4<ΦPwRnSTULQVLW+6xrQ|,Ź6п7A`?$J4<ΦVXnYZQW[Q\+!~?p?7A`ڿ[]n^_W\`Wa+uW#?%lD޿7A`ڿ`-bncdB\ae\f+rW#?%lD?7A`ڿegnwhafiaj+f(E`^S7A`ڿi"knlDmfjnfo+D?Wf7A`ڿnpnqrsjojt+Q?,Sɔo!7A`ڿunvotow+sW#%lD޿7A`ڿxny.twTtz+,&mпGI?7A`ڿTy{n|}Pwz~w+/_7-?7A`ڿٺژS?~nzz+Cg8??(?7A`ڿn…+%lD޿rW#?7A`ڿrnŠU"+5/_7-?ܿ M67A`?O4<Φn®m +p̿!~?7A`?2k}ؿn² D+%lD޿vW#7A`?MidKp.?D$nµ?i +!|%$2R?7A`?t߈]?^$?n¸+UveMgצ7A`ڿQ4<Φn@+|,Ź6?/xrQ?7A`ڿ(n¾Q+?#`g0?7A`??n‚_+ %lD?vW#?7A`?Nid?Kp.n+f(?E`^S?7A`ڿ;f;fn+>ҿh;ҿ7A`?Q4<Φ?Gn'(]+V?0u7A`?[Sٺژ?]nY+},Ź6п/xrQ7A`?2k?}ؿUn+6xrQ|,Ź6п7A`ڿ$J4<ΦnZu^+6xrQ?},Ź6?7A`ڿ^n‡4[+D?Wf7A`ڿغژ?S?nr+{,Ź6?7xrQ7A`??+J4<Φnh.+Wf㿮D?7A`ڿHn.y +بk?O~T 7A`?)G4<Φ?ynt.Ql:yvRy+nyQm:wu+++&m?GI7A`ڿK+O~T ?بk?7A`ڿG4<ΦB+ M6?*>ܿ7A`ڿO4<Φ?B+n`>+\+E?؏83?7A`??Q4<Φn}l+Q?!|%$27A`ڿlnh+},Ź6п/xrQ7A`ڿLn' +R뱿!|%$27A`ڿ n+i? +,mܿtd1?7A`??_nO+VOL?7A`ڿZ$?u߈]?O n +Lv +ΌNڿ*>+?7A`?ٺژZS n d~ +*>+?ΌN?7A`ڿ[Sٺژ?nG  +>VOL?7A`ڿnE+R뱿!|%$27A`ڿ]$ᅥt߈]? n+{Gz{Gz<7A`?;f?;f?ܵ|г?wn+HB}Ͽ7A`?VS?ٺژn+<丿5/_7-?7A`ڿn +Q뱿,Sɔo!?7A`ڿ!n"# $%+>/_7-?<丿7A`??$&n'() %* ++HB?}?7A`ڿWSٺژ?*_,n-./%+0%1+uW#?%lD޿7A`?Lp.Mid062n345+1 ++6+8|\?OR %ҿ7A`?bX4<Φ? +`7n816 19+<丿?/_7-7A`?ٺژ?S :n69m6;+%lD޿vW#7A`ڿMidKp.?m <n=i9;N9>+ %lD?vW#?7A`ڿN?n@AJ;>W;B+ ݖ⿇`ܿ7A`?F4<ΦWxCnD^3>BE>F+.xrQ?~,Ź6п7A`? +}?2k?EgGnHI BFBJ+H`^S?f(?7A`ڿKnLeFJFM+?Õ2ҿ'1?7A`??NnOJMJP+Uv?hMgצ?7A`?Q4<Φ??QnR@oMPMS+R?!|%$2?7A`ڿ^$?t߈]TnUVPSPW+Cg8??&7A`?6;f?c<fXnYOSWSZ+Cg8??&7A`ڿ6;f?c<f[n\]WZ^W_+[޿6~?7A`?XSٺژ^U`nYHZ_}Za+ ݖ⿇`ܿ7A`??}mbncy_a/_d+ΌN?*>+7A`ڿٺژ?[S?/]enf*Wadag+q?'~?7A`ڿiٺژS?4hnidgdj+p̿!~?7A`ڿknl mgjgn+ VS r7A`??onpjncjq+Uv?hMgצ?7A`ڿQ4<Φ??cSrns_nqQnt+R?!|%$2?7A`ڿQunvMqtqw+|,Ź6?/xrQ?7A`ڿ2k}?-xnytw_tz+Wf?D?7A`ڿ_{n|[wzw}+!|%$2?Q?7A`ڿe~nz}Hz+[޿6~?7A`ڿXSٺژHTnƒ^D}}+ V?d r7A`?? n‡(w+@[]ba1?7A`ڿ&ٺژ?FS?w~nŠr}+E`^S㿿f(?7A`ڿ;f?;fnŽ!>+p?!~7A`?2k?}?>n’+td1?i? +,m?7A`??nnd+ M6?*>ܿ7A`?O4<Φ?d/n—`+'1AÕ2?7A`??,nœ\#+Q뱿!|%$2?7A`?\3&#n i+!{?3+6ݿ7A`?Q4<ΦiKn£e+(Cg8??7A`?V4<Φ? n§+vW# %lD?7A`ڿ n«+Wf?D?7A`?S翾غژ?n¯pu+!~p̿7A`?}?2kun³q]+`? ݖ7A`??F4<Φ]n¶+fMgצUv?7A`?￑Q4<Φ?nU+ͤ2j?7A`?S?ٺژ?n¼Z+8|\ZR %ҿ7A`ڿZn¿VG+}ϿHB?7A`?ٺژWSGnq+E`^S㿿f(?7A`ڿn}+بkҿO~T ?7A`??G4<Φ}{nwT+|,Ź6п6xrQ?7A`?J4<Φ?n+Q?)Sɔo!?7A`ڿnR~:+8|\NR %?7A`ڿX4<Φ?:8n5+f(?E`^S?7A`ڿn+?VOL?7A`ڿnd#h+@&mпGI7A`ڿn+V??0u?7A`ڿ\S? ٺژnh+GI?-&m?7A`ڿhne4+E`^S?f(7A`ڿ;f;f?49n0+E`^S?f(7A`?;f;f?=n,+ͤ2j?ο7A`ڿS翍ٺژ,$nC(+Q뱿,Sɔo!?7A`ڿغژ忉Sn#'+~VOL7A`ڿu߈]Z$?'n"Z+H`^S?f(?7A`ڿgp.?7idmnK+vW# %lD?7A`?Kp.?Nid?nv+!~p̿7A`ڿ}?2kvnqc+3+6ݿ#{Կ7A`ڿQ4<Φ?5n+>/_7-?<丿7A`ڿS?ٺژ?n  +OR %ҿ8|\7A`??qX4<Φ?N n  ! +dMgצ?Uv7A`ڿ?Q4<Φ! n$lg  l  +dMgצ?Uv7A`??Q4<Φl ni!    +>/_7- n? < = < @ +]ba1?@[?7A`?FS?&ٺژA nB 7= @ = C +q?'~?7A`?iٺژS?8D nE @ C H@ F +`ܿ ݖ?7A`?|F4<Φ?HfG nH  C F C I +'~q?7A`?SiٺژJJ nK -F I F L +*>ܿ M67A`ڿO4<ΦM nN I L I O +<丿?/_7-7A`??P n#iL O (L Q +OR %ҿ8|\7A`ڿ(ER nS $O Q O T +؏83ݿ\+E?7A`ڿQ4<Φ??XU nV ^Q T )Q W +Wʿ|=ߧ7A`??pQ4<Φ?)@X nY $?T W bT Z +H`^S㿼f(7A`ڿb}[ n\ ^W Z W ] +h;?>ҿ7A`ڿ?Q4<Φ?U^ n_ Z ] RZ ` +/_7-?7A`?ٺژS?Ra nb M] ` ] c +)Sɔo!Q?7A`ڿd ne ` c v` f +@[]ba1?7A`?&ٺژ?FS?vg nh Orc f c i +?ͤ2j?7A`?ٺژ?Sj nk Jf i & f l +&~?q̿7A`?S?iٺژ?& nm nn " i l i o +CVOL7A`ڿ p nq l o l r + M6*>?7A`ڿO4<Φ?s nt o r o u +\+Eҿ׏83ݿ7A`?Q4<Φ?ov nw 4}r u r x +%?Eg8??7A`ڿb<f?7;f?oy nz { u x Cu | +GI?A&mп7A`ڿC&} n~ >,x | Ax  +*>? M6?7A`??O4<Φ?A n N|  m| +@[?]ba17A`?&ٺژDSm nhx   +!|%$2?Q?7A`? n† s   +!|%$2? +R뱿7A`ڿ  nŠ }  r +*>+ΌNڿ7A`?ZS?ٺژr n n  E +!|%$2R?7A`ڿt߈]?^$?E n A   +{Gz{Gz<7A`ڿ;f?;f?ܵ|г?s n`{   + %lD?vW#?7A`ڿNid?Kp. n• A  +| +H`^S?f(?7A`?gp.?7id| n˜ 7x   +h;ҿ>?7A`ڿQ4<Φ 1 nœ +   +(?Dg8?޿7A`ڿ; nŸ 4   +*>+?ΌN?7A`?[Sٺژ? n¢ m  V +>VOL??7A`ڿV n¥ :   +,Sɔo!?Q?7A`ڿSغژ?c n¨ .   +zVOL?7A`?Z$ᅳu߈] n« l  C +Dg8?޿)7A`ڿC) n® 8?  . +H`^S㿼f(7A`?gp.8id?. n± )  - +GI,&mп7A`ڿ- n´ *)  & +~VOL7A`?u߈]Z$?& n· 9"   +؏83ݿ\+E?7A`?Q4<Φ??] nº    +ΌN?*>+7A`?ٺژ?[S? n½ r   +{,Ź6?7xrQ7A`ڿ?+J4<Φ n >   +bMԿ j_ҿ7A`ڿ?Q4<Φ n V  s +*>+ΌNڿ7A`ڿZS?ٺژs n n   +#{Կ2+6?7A`ڿ?Q4<Φ?# n ]   +/xrQ|,Ź6?7A`?}ؿ2kC n   L +2+6?#{?7A`ڿQ4<Φ?L n G=  I +#`g0?7A`??IO n D-   +}?HB7A`?ٺژ?VS? n s  - +?HVOL7A`ڿ- n (   +%lD޿vW#7A`ڿ n   !} +)Sɔo!?Q뱿7A`ڿ?} n   " +#`g0ȿ7A`?? n   # +|=ߧΐW?7A`?Q4<Φ?. n   $ +Q<{Gz<7A`ڿ;f?;f?=l?F n_  %? +>/_7-?7A`?O4<Φ?  n   * +GI?&m?7A`ڿ n   + +)Sɔo!?Q뱿7A`?? n   , +q̿'~7A`?hٺژ?S\ n   -( +-/?O(?7A`? ٺژ?]S( n $  .{  -+ ݖ?`?7A`ڿtF4<Φ??{ q ++ ݖ?`?7A`ڿsF4<Φ??{ q n   /   -+*~?q̿7A`ڿ e ++&~?q̿7A`ڿ e n E  0=  -+,Sɔo!Q뱿7A`ڿ= ++,Sɔo!Q뱿7A`ڿ= n . 9  1 -+q̿*~7A`ڿmٺژ? SX ++q̿'~7A`ڿhٺژ?SX n   2  -+W r? V?7A`?? ++Z r? V?7A`?? n ~  32  -+-xrQ},Ź6?7A`ڿ}ؿ2k2? ++/xrQ|,Ź6?7A`ڿ}ؿ2k2? n 9  4  -+},Ź6п6xrQ?7A`ڿ ++|,Ź6п6xrQ?7A`ڿ n   5^  -+迄VOL7A`ڿ^ ++~VOL7A`ڿ^ n Z.  6S  -+%lD?qW#7A`ڿS ++%lD?sW#7A`ڿS n O  7.   -+"|%$2Q뱿7A`??\3&.  ++!|%$2Q뱿7A`??\3&.  n %=  8# -+O(?0/7A`?]S -ٺژ#! ++O(?-/7A`?]S ٺژ#! n"   9 # -+cM?j_?7A`ڿQ4<Φ?U$ ++aM? +j_?7A`ڿQ4<Φ?U$ n% Xc # :\ & -+y=ߧῊW?7A`ڿ}Q4<Φ?\*' ++|=ߧΐW?7A`ڿQ4<Φ?\*' n( X# & ;Q# ) -+RR %?8|\?7A`ڿX4<ΦQ&* ++NR %?8|\?7A`ڿᅡX4<ΦQ&* n+ M& ) <& , -+qW#? -%lD޿7A`ڿOp.Lid2- ++uW#?%lD޿7A`ڿLp.Mid2- n. 5d) , =!) / -+%Fg8??7A`ڿ!0 ++(Cg8??7A`ڿ!0 n1 , / >s, 2 -+,Sɔo!?Q?7A`?Sغژ?s3 ++,Sɔo!?Q?7A`?Sغژ?s3 n4 n/ 2 ?/ 5 -+%3b@ۿ7A`ڿ]S? -ٺژ?_6 ++3b@ۿ7A`ڿ[S? ٺژ?_6 n7 2 5 @m2 8 -+DʿWf?7A`ڿغژ忥Sm9 ++DʿWf?7A`ڿغژ忢Sm9 n: 5 8 A5 ; -+Fg8??%7A`ڿ< ++Cg8??&7A`ڿ< n= ]8 ; B=8 -5+Fg8??%?7A`?V4<Φ=> +5+Cg8??(?7A`?V4<Φ=> n? L; 5C; @ -++1?>Õ2?7A`??@ ++'1?@Õ2?7A`??@ D5A -+`ܿ ݖ?7A`ڿ|F4<Φ?bB ++`ܿ ݖ?7A`ڿ|F4<Φ?bB nC @ A ER@ D -+RR %?8|\?7A`ڿR!E ++NR %?8|\?7A`ڿR!E nF MA D F A -(+8|\RR %?7A`ڿ +(+8|\NR %?7A`ڿ 3G nH  D (GD -%+q?*~?7A`ڿ/I +%+q?'~?7A`ڿ/I nJ (QI S :K @@ -118503,110 +96788,110 @@ X n ! -?&m?GI?7A`ڿ +?&m?GI?7A`ڿ   -+1>Õ2?7A`ڿ +'1AÕ2?7A`ڿ & -/_7-?7A`ڿ& ~g n  -VOL??7A`? R -%lD޿qW#?7A`ڿRq +%lD޿rW#?7A`ڿRq N n s - VW r?7A`ڿs + VZ r?7A`ڿs o n  -p̿!~?7A`? +p̿!~?7A`? n i -4/_7-?/_7- - -%lD޿zW#7A`ڿ> +%lD޿vW#7A`ڿ> 97 n s h -!~p̿7A`? +!~p̿7A`? ]m nh t -k? -,m?td1?7A`ڿ +i? +,m?td1?7A`ڿ uyh o -#`g0??7A`ڿy< +#`g0??7A`ڿy< W tk no vY -~`? ݖ?7A`ڿ +|`? ݖ?7A`ڿ wo H`^S?f(?7A`ڿn @@ -118754,49 +97038,49 @@ L~ n x~ -/_7-?7A`?~ z& n ys -Q뱿"|%$27A`ڿs +R뱿!|%$27A`ڿs n n z4 -p?!~7A`?4 +p?!~7A`?4 0j n { - ݖ?~`ܿ7A`?C + ݖ?~`ܿ7A`?C 2 n | -Fg8??%7A`ڿ +Cg8??&7A`ڿ  n } -DʿWf7A`?[ +DʿWf7A`?[  n ~2 - ݖ?~`ܿ7A`ڿ2A + ݖ?~`ܿ7A`ڿ2A . n  - ݖ⿇`ܿ7A`ڿl   n  + ݖ⿇`ܿ7A`ڿl   n  -8|\[R %ҿ7A`ڿ +8|\ZR %ҿ7A`ڿ   a n 9 -H`^S㿼f(?7A`?9  5 +E`^S㿿f(?7A`?9  5 nQ +:9L7    9 -   @@ -118846,45 +97130,44 @@ J C +D t E t D  + D   - D t -E F n+ D G ++ 1QF :E H I J K +J nA E B -+A E 1 I nE  L +E 12G &E M N +,$b Y??O4<Φ?? 1 ))O nP Q R -P 1QO :)S T U V P U nW )X Y +W )1Q Z )[ 3R )\ ] +zGzyGz<?ݵ|г?;f?;f?2\ 7 ^ R +m׵FQDtd5?]S? -ٺژ?2] _ R ` +_G߿;z?a<f?8;f?_ ga nb c d ] +b c 12` e ] f + z:PݿᅢF4<Φ?e rg nh i j ` +h i 12f k ` l + z:?Pݿ?U4<Φ?k >m nn o p f +n o 12l  -f q +x?eο2k?}ؿ ++A E 1 I nE  L +E 12G &E M N ++$b Y??O4<Φ?? 1 ))O nP Q R -P 1QO :)S T U V P U nW )X Y +W )1Q Z )[ 3R )\ ] +{Gz{Gz<?ܵ|г?;f?;f?2\ 7 ^ R +n׵FQEtd5?\S? ٺژ?2] _ R ` +^G߿7z?b<f?8;f?_ ga nb c d ] +b c 12` e ] f + z:PݿᅥF4<Φ?e rg nh i j ` +h i 12f k ` l + z:?Pݿ?V4<Φ?k >m nn o p f +n o 12l  +f q +x?eο2k? +}ؿ ar n s l + -s 12q t l u +2 -ubSh+-ǿ%ٺژ?BS??t v nw x y q +w x 12u z q { + k.ѿ`=VxX4<Φ?z H| n} ~  u +} ~ 12{  u +@ޱcmɿFL"5ٺژ?]S? ] nƒ { + 12 R -{ +e?x?}?2k?R +s 12q t l u +2 +ubSh+-ǿ'ٺژ?ES??t v nw x y q +w x 12u z q { + k.ѿ]=VyX4<Φ?z H| n} ~  u +} ~ 12{  u +EޱcmɿFL"5ٺژ?[S? ] nƒ { + 12 R +{ +d?x?}?2k?R + n` O Q +` O 12 - +2 -ub?Sh+-ǿٺژS?? " n‹ + 12  +m׵FQ/td5]S?ٺژ?  n‘ + 12  +FL"5@ޱcmɿ]Sٺژ?  n’ + 12  +|`P?}Q4<Φ ( n  + 12  +`P׿|?Q4<Φ??  nž + 12  +gwP?Q???  n¤ + 12  +0L?u߈]?[$?  nª + 12  +|?`P׿?`Q4<Φ? L no + +2 +ub?Sh+-ǿٺژS?? " n‹ + 12  +l׵FQ-td5ZS?ٺژ?  n‘ + 12  +FL"5DޱcmɿZSٺژ?  n’ + 12  +|`P?￀Q4<Φ ( n  + 12  +`P׿|?Q4<Φ??  nž + 12  +gwP?Q???  n¤ + 12  +3L?u߈]?Z$?  nª + 12  +|?`P׿?_Q4<Φ? L no +o -12  +f?E v,?Q4<Φ???  n´ W + W 12  - +f?E v,ҿQ4<Φ? +12  +f?E v,?Q4<Φ???  n´ W + W 12  + +f?E v,ҿQ4<Φ? S n­ + -12  +QqMgܿ<@6N?Q4<Φ?? 3 n» + 12  +Q?gwP??  n + 12 c - +E v,?f??Q4<Φ?c +12  +QqMgܿ8@6N?Q4<Φ?? 3 n» + 12  +Q?gwP??  n + 12 c + +E v,?f??Q4<Φ?c  nj ` a +j ` -12  +$b Y׿?G4<Φ? u nc +c 12  +_G߿;z;f?;f? % n + 12  +L?7?[$↓u߈]?  n + 12  +FL"5?@ޱcmɿ]S? -ٺژ?? o ns +s 12  +Sh+-ǿ2 -ubS?ٺژ??  n + 12  +LW:Y$ٺژTS  nŽ + 12 s +SD -?˿mٺژ? Ss h n +12  +%b Y׿?G4<Φ? u nc +c 12  +aG߿7z;f?;f? % n + 12  +L?7?Z$│u߈]?  n + 12  +FL"5?Eޱcmɿ\S? ٺژ?? o ns +s 12  +Sh+-ǿ2 +ubS?ٺژ??  n + 12  +IW?Y$ٺژVS  nŽ + 12 s +SD +?˿iٺژ?Ss h n + - 12  +0?Lu߈][$?? n + 12  +]Ib?f^]7?7A`ڿ??D n \ + 12  +-?Lu߈]Z$?? n + 12  +aIb?f^]7?7A`ڿ??D n \ - \ -12  +t,g?0Az?S?ٺژ?  nŸ + 12 ! +|`P׿ᅳQ4<Φ?  n 7 + 7 12 " +0Az?|,g?غژ?S?  n¡ + 12 # +?SD -S?غژ n + 12 $ M +`=V? k.??J4<Φ  n  + 12M % G +,?$b Y׿￾O4<Φ? ) nˆ   M +  1Q :     0 nŒ n +12  +v,g?3Az?S?ٺژ?  nŸ + 12 ! +|`P׿ᅳQ4<Φ?  n 7 + 7 12 " +1Az?,g?غژ?S?  n¡ + 12 # +?SD +S?غژ n + 12 $ M +`=V? k.??J4<Φ  n  + 12M % G +*?'b Y׿O4<Φ? ) nˆ   M +  1Q :     0 nŒ n + n 1 *  ~ B+  c`-~   C+ qB~ -q W, - @@ -118917,7 +97200,7 @@ s    +Ij! n -" E" Q! :I# $ G$ " I% +*~?q̿7A`ڿ S?mٺژ?% @" +Q : + 12< 5 : ? +Sh+-ǿ2 -ub?BS?%ٺژ? |@ n A < + 12? 6 < 5 +$b Y׿,O4<Φ?? B n C ? + 125 7 ? D +"?L?}t߈][$?2D 8E 5 F +˿SD -?Sغژ?E G nH I J D +H I 12F 9K D L + z:?P??tF4<ΦK M nN O P F +N O 12L :q -F Q +P? z:?V4<Φ?q +120 2. 7 8 +Sh+-?2 +ub?S翍ٺژ?27 1c 9 0 +IJ߿]7?gp.?8id?28 3A 0 : +L?^$?t߈]?A ; n? +@ 8 +? +12: 4 8 < +GJ߿^7Kp.?Nid?? = n > : + 12< 5 : ? +Sh+-ǿ2 +ub?ES?%ٺژ? |@ n A < + 12? 6 < 5 +'b Y׿+O4<Φ?? B n C ? + 125 7 ? D +?L?t߈]^$?2D 8E 5 F +˿SD +?Sغژ?E G nH I J D +H I 12F 9K D L + +z:?P??tF4<ΦK M nN O P F +N O 12L :q +F Q +P? z:?V4<Φ?q R nv l p L +v l -12Q ; L S +E v,ҿf?Q4<Φ?? T nU V Q +U 12S < Q W +`P׿|oQ4<Φ? :X n¸ } Y S + } 12W =Z S [ +/td5m׵FQ? -ٺژ]S?Z \ n] ^ _ W +] ^ 12[ >N W ` +<@6N?QqMg?Q4<ΦN a n\ +12Q ; L S +E v,ҿf?Q4<Φ?? T nU V Q +U 12S < Q W +`P׿|qQ4<Φ? :X n¸ } Y S + } 12W =Z S [ +1td5l׵FQ? ٺژ\S?Z \ n] ^ _ W +] ^ 12[ >N W ` +<@6N?QqMg?Q4<ΦN a n\ K b [ +\ -K 12` ?c [ d +P? z:F4<Φc e nf g h ` +f g 12d @i ` j +E v,?f?Q4<Φ?i k nl m n d +l m 12j Ad o +Q뱿gwP=p n  j + 12o Bi j q +;z_G߿8;fa<f?i yr ne s t o +e s 12q Cx o u +L0[$?u߈]??x v nt w x q +t w 12u D q y +L?)[$ᅩt߈]?? z n  u + 12y E u { +Q뱿gwP? -\3&<? | n§ ] } y + ] 12{ Fw y ~ +gwPQ뱿\3&?w  nx { +x 12~ G { +x?d?2k?}?  nƒ ~ + 12 H ~ +FL"5?@ޱcm?]S?ٺژ  nˆ + 12 I +LW?BY$?ٺژ?TS?  n + 12 J +SD -˿غژ忥S  n” + 12 K +JJ?]7jp.:id?? ng +g 12 L +m׵FQ?Ltd5]S -ٺژ  n  + 12 M +]7?JJ?:idjp.?  nO +O 12 NU + k.ѿ`=V?J4<Φ??U  nI +I 12 O +QqMgܿ<@6N??Q4<Φ V n5 b +5 b 12 P +$b Y?(G4<Φ??? n‘ + 12 Q +t,g9AzS翑ٺژ n©  + 12 R +fE v,ҿQ4<Φ?  n¬ + 12 Sh +<@6NQqMgܿQ4<Φ??h h n„ e + e 12 T +Pݿ z:U4<Φ? , n + 12 U + z:P?V4<Φ  n   +  12 Vj - +`P?|?}Q4<Φ?j +K 12` ?c [ d +P? z:F4<Φc e nf g h ` +f g 12d @i ` j +E v,?f?Q4<Φ?i k nl m n d +l m 12j Ad o +Q뱿gwP=p n  j + 12o Bi j q +7z^G߿6;fd<f?i yr ne s t o +e s 12q Cx o u +L1Z$?u߈]??x v nt w x q +t w 12u D q y +L?)^$ᅩt߈]?? z n  u + 12y E u { +Q뱿gwP?\3&<? | n§ ] } y + ] 12{ Fw y ~ +gwPQ뱿\3&?w  nx { +x 12~ G { +x?d?2k?§}?  nƒ ~ + 12 H ~ +FL"5?Gޱcm?ZS?ٺژ  nˆ + 12 I +IW?BY$?ٺژ?WS?  n + 12 J +SD +˿غژ忣S  n” + 12 K +HJ?^7fp.8id?? ng +g 12 L +n׵FQ?Mtd5\S ٺژ  n  + 12 M +]7?JJ?8idgp.?  nO +O 12 NU + k.ѿ`=V?J4<Φ??U  nI +I 12 O +QqMgܿ<@6N??Q4<Φ V n5 b +5 b 12 P +$b Y?)G4<Φ??? n‘ + 12 Q +v,g5AzS翔ٺژ n©  + 12 R +fE v,ҿQ4<Φ?  n¬ + 12 Sh +=@6NQqMgܿQ4<Φ??h h n„ e + e 12 T +Pݿ z:V4<Φ? , n + 12 U + z:P?V4<Φ  n   +  12 Vj + +`P?|?Q4<Φ?j  nl c i +l c -12 WW +|?`P??Q4<ΦW  n± P + P 12 Xg +_G?;za<f8;fg nc +c 12 Y~ +eοx}ؿ2k~ O nz +z 12 Z? +gwPQ?=??  n: A > +: A 12 [ +2 -ub?Sh+-?%ٺژBS?  n› + 12 \} +E v,ҿfQ4<Φ} A n¼ z + z 12 ] +@ޱcm?FL"5ٺژ]S n + 12 ^x +12 WW +|?`P??Q4<ΦW  n± P + P 12 Xg +\G?7zd<f6;fg nc +c 12 Y~ +eοx}ؿ2k~ O nz +z 12 Z? +gwPQ?=??  n: A > +: A 12 [ +2 +ub?Sh+-?%ٺژES?  n› + 12 \} +E v,ҿfQ4<Φ} A n¼ z + z 12 ] +Cޱcm?FL"5ٺژZS n + 12 ^x - +JJ?]7?Op.Lid?x + +EJ?^7?Kp.Nid?x  n{ v w +{ v 12 - _ +]7?JJ߿LidOp.??2 ` - +:Y$?LWTS?ٺژ n + 12 a +0Az?t,gٺژ?S n   +  12 bn +;z?_G߿;f?;f??n 7 n k + k 12 c +fE v,?Q4<Φ? / n '  + ' 12 d\ - +]Ib?f^]7?7A`???\ + _ +]7?GJ߿MidMp.??2 ` + +>Y$?IWVS?ٺژ n + 12 a +3Az?v,gٺژ?S n   +  12 bn +6z?aG߿;f?;f??n 7 n k + k 12 c +fE v,?Q4<Φ? / n '  + ' 12 d\ + +aIb?f^]7?7A`???\ u nN +N 12 ev - +_G?;z?;f;f??v + +`G?7z?;f;f??v  nx q t +x q -12 f +<@6NQqMg?Q4<Φ?? ! n   +  12 g +gwP?Q뱿  n  + 12 hl - +QqMg?<@6N?Q4<Φ?l +12 f +8@6NQqMg?Q4<Φ?? ! n   +  12 g +gwP?Q뱿  n  + 12 hl + +QqMg?8@6N?Q4<Φ?l  nq j k +q j -12 i+ +xe?2k}?+ = n' - * +' - 12 j - ,+`=V? k.ѿ?jX4<Φ? +12 i+ +xd?2k}?+ = n' - * +' - 12 j + ,+\=V? k.ѿ?iX4<Φ? Z n + 12,k -+d?x}?2k n l ,+ l 1Q :   l n i N + i 1   0m+  ++d?x}?2k n l ,+ l 1Q :   l n i N + i 1   0m+  /=-  j +m3j-I   @@ -119024,28 +97305,28 @@ S-R  - 6-h + h 41-h c h ] -4   1+ 4 6+ {f    1 -   4 5-1 $  + $m   1l -$ 1 ! +  $fc-. $! -fn  c+n f.h+n i n +  +n f g- gf+ l1+  54+Y ] +Y + h = -Yy% + = Y-m  ni   +i 1Q :m   k  -  nm  +m 12 m  +`P?|Q4<Φ2 :   +0Azt,g?ٺژS?2    +t,g?0AzS?غژ  n  + 12    +BY$?LW?]S?ٺژ? @ nZ +  nm  +m 12 m  +`P?|Q4<Φ2 :   +3Azv,g?ٺژS?2    +u,g?1AzS?غژ  n  + 12    +AY$?HW?XS?ٺژ? @ nZ   +Z -12 w   +$b Y׿?!G4<Φ?w  ns t   +s t 12    +(td5?m׵FQٺژ?]S??  n  + 12    +0Az|,gغژ忊S  nw   +w 12 '   +`=V k.?X4<Φ' 6 n + %  + + 12    +xdο2k}ؿ  n— !  + 12 H  " +@ޱcmɿFL"5?ٺژ?]S?H # n^ E $  +^ E 12" b  % +Pݿ z:?|F4<Φ??b `& n  _ ' " + _ 12% ` -" ( + k.?`=V?X4<Φ?` +12 w   +%b Y׿?!G4<Φ?w  ns t   +s t 12    +*td5?l׵FQٺژ?ZS??  n  + 12    +1Azx,gغژ忈S  nw   +w 12 '   +\=V k.?￁X4<Φ' 6 n + %  + + 12    +xdο2k}ؿ  n— !  + 12 H  " +EޱcmɿFL"5?ٺژ?ZS?H # n^ E $  +^ E 12" b  % +Pݿ +z:?}F4<Φ??b `& n  _ ' " + _ 12% ` +" ( + k.?\=V?X4<Φ?` $) nc R _ % +c R 12( O -% +?SD -? S?mٺژ?O +% +?SD +?S?jٺژ?O 2* nR Z M ( +R Z -12  ( + +Ltd5m׵FQ -ٺژ]S?2+ ^ , +BY$LW?TSٺژ?^ - nZ H . + +Z H 12,  + / +"L}t߈]?[$?? 0 n 1 , + 12/ I , 2 +dοx?}ؿ2k?I 3 nE U 4 / +E U 122  / 5 +LW?IY$ٺژ?]S v6 n f  2 + f 125  2 7 +Sh+-?2 -ubBS%ٺژ?? 8 n”  5 + 127  5 9 +`=V k.ѿ$J4<Φ? : n ; 7 + 129 O 7 < +;z?_G?8;f?a<fO = nK > 9 +K 12< s 9 ? +]7JJ߿:id?jp.??s @ ni w A < +i w 12? 5 < B +LWBY$?ٺژ]S?5 RC n0 3 ? +0 12B - ? D +SD -?mٺژ S?- DE n+ 0 , B ++ 0 12D  B ^ +;z_G?;f;f? F n  - D +  12^ ] D \ +|,g0Az?Sغژ?] G n« Z H ^ + Z 1QG :] I \ | J H ] H K "d+K H zh-"H zL +V +12  ( + +Jtd5o׵FQ ٺژ\S?2+ ^ , +AY$IW?WSٺژ?^ - nZ H . + +Z H 12,  + / +$Lt߈]?^$?? 0 n 1 , + 12/ I , 2 +dοx?}ؿ2k?I 3 nE U 4 / +E U 122  / 5 +HW?GY$ٺژ?YS v6 n f  2 + f 125  2 7 +Sh+-?2 +ubES'ٺژ?? 8 n”  5 + 127  5 9 +`=V k.ѿ#J4<Φ? : n ; 7 + 129 O 7 < +7z?_G?8;f?b<fO = nK > 9 +K 12< s 9 ? +^7IJ߿8id?fp.??s @ ni w A < +i w 12? 5 < B +HWAY$?ٺژXS?5 RC n0 3 ? +0 12B - ? D +SD +?jٺژS?- DE n+ 0 , B ++ 0 12D  B ^ +7z`G?;f;f? F n  + D +  12^ ] D \ +{,g1Az?Sغژ?] G n« Z H ^ + Z 1QG :] I \ | J H ] H K "d+K H zh-"H zL +V g"-V MM  V N-gV @@ -119141,242 +97422,242 @@ K d   QF :  I  R `Q d F QI : F F  R _Q d  I H R ^Pd  AQH -d E F S ???Q -d +J H S ???QJ :+ F ;  Q -d A ; S ???Q; :A J  Q -d ?  S ???Q :? ;  Q -d :  S ???:  n7 ? 9 +7 ? 1Q ::   Q -d 7  S ???7  n : 6 \ + : 1Q :7   Q -d  S ???Q :   Q -d  S ???Q :  :  Q -d : S ???Q: :   Q -d  S ???Q : :  Q -d  S ???Q :   Q -d  S ???Q :   Q -d  S ???Q :   Q -d  S ???Q :    Q -d  S ???Q :    Q -d w  S ???Q :w  v  Q -d x v S ???Qv :x  v  Q -d t v S ???Qv :t v   Q -d w  S ???Q :w v @  Q -d s @ S ???Q@ :s  r  Q -d i r S ???Qr :i @ g  Q -d e g S ???Qg :e r  Q -d h  S ???Q :h g  Q -d  S ??? d n€ h 9 + h 1Q :   Q -d  S ???Q :   Q -d  S ??? V n~ +~ 1Q :   Q -d ~  S ???Q :~  |  Q -d z | S ???Q| :z   Q -d }  S ???Q :} | X  Q -d X S ???QX :   Q -d  S ???Q : X  Q -d  S ???Q :   Q -d  S ???Q :  =  Q -d = S ???Q= :  B Q -d B S ???QB : = Q -d  S???Q : B 0 Q -d 0 S???Q0 :  p  Q +d E F S ???Q +d +J H S ???QJ :+ F ;  Q +d A ; S ???Q; :A J  Q +d ?  S ???Q :? ;  Q +d :  S ???:  n7 ? 9 +7 ? 1Q ::   Q +d 7  S ???7  n : 6 \ + : 1Q :7   Q +d  S ???Q :   Q +d  S ???Q :  :  Q +d : S ???Q: :   Q +d  S ???Q : :  Q +d  S ???Q :   Q +d  S ???Q :   Q +d  S ???Q :   Q +d  S ???Q :    Q +d  S ???Q :    Q +d w  S ???Q :w  v  Q +d x v S ???Qv :x  v  Q +d t v S ???Qv :t v   Q +d w  S ???Q :w v @  Q +d s @ S ???Q@ :s  r  Q +d i r S ???Qr :i @ g  Q +d e g S ???Qg :e r  Q +d h  S ???Q :h g  Q +d  S ??? d n€ h 9 + h 1Q :   Q +d  S ???Q :   Q +d  S ??? V n~ +~ 1Q :   Q +d ~  S ???Q :~  |  Q +d z | S ???Q| :z   Q +d }  S ???Q :} | X  Q +d X S ???QX :   Q +d  S ???Q : X  Q +d  S ???Q :   Q +d  S ???Q :  =  Q +d = S ???Q= :  B Q +d B S ???QB : = Q +d  S???Q : B 0 Q +d 0 S???Q0 :  p  Q d p  - S???Qp :0  Q + S???Qp :0  Q  -d   S ???Q : +d   S ???Q : p Q  d  - S???Q :   Q -d m  S???Q -d i k  S???Qk :i  Q -d l   S???Q :l k Q -d  S???Q -d  S???Q :  Q -d  S???Q :   Q -d  !"S???Q :   #Q! -d  $%S"???Q : !  &Q$ -d  !'(S%???Q : $ )*Q' -d )$+,S(??? )n -+ 1Q) : ' .Q+ -d  '/0S,???Q : +)8 1Q/ -d 8 +23S0???Q8 : / 4Q2 -d  /56S3???Q : 28 7Q5 -d  289S6???Q : 5 :Q8 -d g  5;<S9???Q :g 8 e =Q; -d c e 8>?S<???Qe :c ; @AQ> -d f @;BCS????f z@n c  D+ c 1Q@ :f >e 6 EQB -d 6 >FGSC???Q6  : B@ HQF -d  BIJSG???Q  : F6 KQI -d s  FLMSJ???Q  :s I r NQL + S???Q :   Q +d m  S???Q +d i k  S???Qk :i  Q +d l   S???Q :l k Q +d  S???Q +d  S???Q :  Q +d  S???Q :   Q +d  !"S???Q :   #Q! +d  $%S"???Q : !  &Q$ +d  !'(S%???Q : $ )*Q' +d )$+,S(??? )n -+ 1Q) : ' .Q+ +d  '/0S,???Q : +)8 1Q/ +d 8 +23S0???Q8 : / 4Q2 +d  /56S3???Q : 28 7Q5 +d  289S6???Q : 5 :Q8 +d g  5;<S9???Q :g 8 e =Q; +d c e 8>?S<???Qe :c ; @AQ> +d f @;BCS????f z@n c  D+ c 1Q@ :f >e 6 EQB +d 6 >FGSC???Q6  : B@ HQF +d  BIJSG???Q  : F6 KQI +d s  FLMSJ???Q  :s I r NQL d -r IOPSM???Qr  : +r IOPSM???Qr  : L QQO d - LRSSP???Q  : + LRSSP???Q  : Or TQR d - OUVSS???Q  : + OUVSS???Q  : R WQU -d  RXYSV???Q  : U Z[QX -d o ZU\]SY???o EZnk ^ _+k 1QZ :o X m `Q\ -d k m XabS]???Qm +d  RXYSV???Q  : U Z[QX +d o ZU\]SY???o EZnk ^ _+k 1QZ :o X m `Q\ +d k m XabS]???Qm :k \Z cQa -d n  \deSb???Q :n am  fQd -d   a gSe???Q : d  hQ -d  dijSg???Qi -d   klSj???Q  : i z mQk -d z inoSl???Qz  : k pQn -d   kqrSo???Q  : nz sQq -d   ntuSr???Q  : q vQt -d   qwxSu???Q  : t 2yQw -d 2tz{Sx???Q2 :w |Qz -d 4w}~S{???Q :4z2Q} -d ^zS~???Q :^}]Q -d []}S???Q] :[{Q -d _{S???Q{ :_]Q -d S???Q :{6 Q -d 6 S???Q6  :Q -d "S???Q :"6 !Q -d !S???Q! :Q -d #S???Q :#!Q -d S???Q :Q -d hS???Q :hgQ -d egS???Qg :eKQ -d KS???QK :gQ -d S???Q! :KQ -d S???Q" :Q -d S???Q# :Q -d @S???@n7% Q$ :@QQ -d QS???QQ% :Q -d oS???Q& :oQmQ -d kmS???Qm' :kQ -d pS???Q( :pmQ -d S???Q) : Q -d  S???Q * : Q -d r S???Q + :r pQ -d npS???Qp, :n 3 +d n  \deSb???Q :n am  fQd +d   a gSe???Q : d  hQ +d  dijSg???Qi +d   klSj???Q  : i z mQk +d z inoSl???Qz  : k pQn +d   kqrSo???Q  : nz sQq +d   ntuSr???Q  : q vQt +d   qwxSu???Q  : t 2yQw +d 2tz{Sx???Q2 :w |Qz +d 4w}~S{???Q :4z2Q} +d ^zS~???Q :^}]Q +d []}S???Q] :[{Q +d _{S???Q{ :_]Q +d S???Q :{6 Q +d 6 S???Q6  :Q +d "S???Q :"6 !Q +d !S???Q! :Q +d #S???Q :#!Q +d S???Q :Q +d hS???Q :hgQ +d egS???Qg :eKQ +d KS???QK :gQ +d S???Q! :KQ +d S???Q" :Q +d S???Q# :Q +d @S???@n7% Q$ :@QQ +d QS???QQ% :Q +d oS???Q& :oQmQ +d kmS???Qm' :kQ +d pS???Q( :pmQ +d S???Q) : Q +d  S???Q * : Q +d r S???Q + :r pQ +d npS???Qp, :n 3 Q d s3 -S???Q3 -- :sp Q d  S???Q . :3 -Q d S???Q/ : A Q d A S???QA 0 :9Q d 79S???Q91 :7A Q d | S???Q 2 :|9zQ d xzS???Qz3 :x Q d }S???Q4 :}zQ d S???Q5 :Q d S???Q6 : Q - d  S???Q 7 : +S???Q3 +- :sp Q d  S???Q . :3 +Q d S???Q/ : A Q d A S???QA 0 :9Q d 79S???Q91 :7A Q d | S???Q 2 :|9zQ d xzS???Qz3 :x Q d }S???Q4 :}zQ d S???Q5 :Q d S???Q6 : Q + d  S???Q 7 : Q d {  -S???Q -8 :{  y Q d y S???Qy 9 : -Q d S???Q: :y Q d KS???KknQ; :KIQ d IS???QI< :Q d S???Q= :I~Q d ~S???Q~> : Q d  S???Q ? :~0 Q d .0 S???Q0 @ :. ,Q d *,S???Q,A :*0 e Q d /e - S???QeB :/,3  Q - d W3  S ???Q3 C :W +S???Q +8 :{  y Q d y S???Qy 9 : +Q d S???Q: :y Q d KS???KknQ; :KIQ d IS???QI< :Q d S???Q= :I~Q d ~S???Q~> : Q d  S???Q ? :~0 Q d .0 S???Q0 @ :. ,Q d *,S???Q,A :*0 e Q d /e + S???QeB :/,3  Q + d W3  S ???Q3 C :W eUQ  d SU -S???QUD :S 3 Q d X S???QE :XU$ +S???QUD :S 3 Q d X S???QE :XU$ Q d $ -S???Q$ -F :rQ d crS???QrG :c$ -aQ d _aS???QaH :_r Q d   S???Q I :a!Q d "#S ???QJ : $Q" d %&S#???QK :"/'Q% d /"()S&???Q/L :% *Q( d  %+,S)???Q M :(/-Q+! d (./S,???QN :+ D 0Q." d D +12S/???QD O :.3Q1# d .45S2???QP :1D h6Q4$ d h178S5???QhQ :49Q7% d 4K -:S8???QR :7hI +S???Q$ +F :rQ d crS???QrG :c$ +aQ d _aS???QaH :_r Q d   S???Q I :a!Q d "#S ???QJ : $Q" d %&S#???QK :"/'Q% d /"()S&???Q/L :% *Q( d  %+,S)???Q M :(/-Q+! d (./S,???QN :+ D 0Q." d D +12S/???QD O :.3Q1# d .45S2???QP :1D h6Q4$ d h178S5???QhQ :49Q7% d 4K +:S8???QR :7hI ;QK & d I -7<=S:???Q<' d xK ->?S=???QxT :<I -@Q>( d <ABS????QU :>xCQA) d >DESB???QV :A* +7<=S:???Q<' d xK +>?S=???QxT :<I +@Q>( d <ABS????QU :>xCQA) d >DESB???QV :A* FQD* d Q* -AGHSE???Q* -W :QDOIQG+ d MODJKSH???QOX :MG* +AGHSE???Q* +W :QDOIQG+ d MODJKSH???QOX :MG* E LQJ, d RE -GMNSK???QE -Y :RJOOQM- d JPQSN???QZ :ME -RQP. d MSTSQ???Q[ :PUQS/ d PVWST???Q\ :SXQV0 d VSYZSW???Q] :VVT[QY1 d KTV\]SZ???QT^ :KYI^Q\2 d GIY_`S]???QI_ :G\T aQ_3 d L \bcS`???Q ` :L_I> +GMNSK???QE +Y :RJOOQM- d JPQSN???QZ :ME +RQP. d MSTSQ???Q[ :PUQS/ d PVWST???Q\ :SXQV0 d VSYZSW???Q] :VVT[QY1 d KTV\]SZ???QT^ :KYI^Q\2 d GIY_`S]???QI_ :G\T aQ_3 d L \bcS`???Q ` :L_I> dQb4 d => -_efSc???Q> -a :=b ;gQe5 d ;bhiSf???Q;b :e> -jQh6 d eklSi???Qc :h;mQk7 d hnoSl???Qd :kpQn8 d kqrSo???Qe :nsQq9 d ntuSr???Qf :qvQt: d qwxSu???Qg :tyQw; d tz{Sx???Qh :w |Qz< d  w}~S{???Q i :z Q}= d A zS~???Q j :A} ?Q> d N?}S???Q?k :N LQ? d JLS???QLl :J?j Q@ d j S???Qj m :LQA d S???Qn :j 8QB d 8( S???Q8o :& Q( C d :& S???QD d V ( S???Q q :V& TQE d TS???QTr : QF d S???Qs :TuQG d QuS???Qut :QOQH d MOS???QOu :Mua QI d Ra S???Qa v :ROQJ d S???Qw :a QK d ~S???Qx :~ +_efSc???Q> +a :=b ;gQe5 d ;bhiSf???Q;b :e> +jQh6 d eklSi???Qc :h;mQk7 d hnoSl???Qd :kpQn8 d kqrSo???Qe :nsQq9 d ntuSr???Qf :qvQt: d qwxSu???Qg :tyQw; d tz{Sx???Qh :w |Qz< d  w}~S{???Q i :z Q}= d A zS~???Q j :A} ?Q> d N?}S???Q?k :N LQ? d JLS???QLl :J?j Q@ d j S???Qj m :LQA d S???Qn :j 8QB d 8( S???Q8o :& Q( C d :& S???QD d V ( S???Q q :V& TQE d TS???QTr : QF d S???Qs :TuQG d QuS???Qut :QOQH d MOS???QOu :Mua QI d Ra S???Qa v :ROQJ d S???Qw :a QK d ~S???Qx :~ QL d  -S???Q -y :QM d S???Qz : -QN d S???Q{ :-QO d -S???Q-| :QP d S???Q} :-QQ d S???Q~ :QR d S???Q :NQS d NS???QN :QT d S???Q :NQU d S???Q :: QV d : S???Q: :QW d S???Q :: QX d S???Q : +S???Q +y :QM d S???Qz : +QN d S???Q{ :-QO d -S???Q-| :QP d S???Q} :-QQ d S???Q~ :QR d S???Q :NQS d NS???QN :QT d S???Q :NQU d S???Q :: QV d : S???Q: :QW d S???Q :: QX d S???Q : QY d  -S???Q - :QZ d S???Q : - Q[ d  S???Q  : kQ\ d kS???Qk : 9 +S???Q + :QZ d S???Q : + Q[ d  S???Q  : kQ\ d kS???Qk : 9 Q] d m9 -S???Q9 - :mk Q^ d  S???Q :9 -Q_ d S???Q : Q` d S???Q :Qa d GS???Q :GEQb d qES???QE :qoQc d moS???Qo :mE'Qd d 'S???Q' :oQe d S???Q :'Qf d S???Q :Qg d S???Q :Qh d S???Q :Qi d S???Q :Qj d #S???Q :#!Qk d ! S???Q! : -Ql d   S ???Q :!J Q m d JS ???QJ : MQn d LM S???QM :LJ Qo d O S???Q  :OMg Qp d vg S???Qg :v tQq d rtS???Qt :rg Qr d wS???Q :wtQs d } !S???Q :}{"Q t d T{#$S!???Q{ :T R%Q#u d PR &'S$???QR :P#{ (Q&v d U #)*S'???Q :U&R+Q)w d &,-S*???Q :) > .Q,x d > )/0S-???Q> :,1Q/y d ,23S0???Q :/> 4Q2z d /56S3???Q :2F7Q5{ d F289S6???QF :5G :Q8| d HG 5;<S9???QG :H8F =Q;} d  8>?S<???Q  : ;G B +S???Q9 + :mk Q^ d  S???Q :9 +Q_ d S???Q : Q` d S???Q :Qa d GS???Q :GEQb d qES???QE :qoQc d moS???Qo :mE'Qd d 'S???Q' :oQe d S???Q :'Qf d S???Q :Qg d S???Q :Qh d S???Q :Qi d S???Q :Qj d #S???Q :#!Qk d ! S???Q! : +Ql d   S ???Q :!J Q m d JS ???QJ : MQn d LM S???QM :LJ Qo d O S???Q  :OMg Qp d vg S???Qg :v tQq d rtS???Qt :rg Qr d wS???Q :wtQs d } !S???Q :}{"Q t d T{#$S!???Q{ :T R%Q#u d PR &'S$???QR :P#{ (Q&v d U #)*S'???Q :U&R+Q)w d &,-S*???Q :) > .Q,x d > )/0S-???Q> :,1Q/y d ,23S0???Q :/> 4Q2z d /56S3???Q :2F7Q5{ d F289S6???QF :5G :Q8| d HG 5;<S9???QG :H8F =Q;} d  8>?S<???Q  : ;G B @Q>~ d B -;ABS????QB - :> CQA d >DESB???Q :AB - FQD d  AGHSE???Q :DIQG d DJKSH???Q :G U LQJ d U GMNSK???QU :J`OQM d ^`JPQSN???Q` :^MU RQP d HMSTSQ???Q :HP`FUQS d DFPVWST???QF :DS XQV d I SYZSW???Q :IVF[\QY d -[V]^SZ???-M[n/ I Q[ :-Y J _Q] d J Y`aS^???QJ :][bQ` d ]cdSa???Q :`J eQc d `fgSd???Q :c hQf d  cijSg???Q :fkQi d flmSj???Q :i  +;ABS????QB + :> CQA d >DESB???Q :AB + FQD d  AGHSE???Q :DIQG d DJKSH???Q :G U LQJ d U GMNSK???QU :J`OQM d ^`JPQSN???Q` :^MU RQP d HMSTSQ???Q :HP`FUQS d DFPVWST???QF :DS XQV d I SYZSW???Q :IVF[\QY d -[V]^SZ???-M[n/ I Q[ :-Y J _Q] d J Y`aS^???QJ :][bQ` d ]cdSa???Q :`J eQc d `fgSd???Q :c hQf d  cijSg???Q :fkQi d flmSj???Q :i  nQl d 2 -iopSm???Q - :2l0qQo d 90lrsSp???Q0 :9o -7tQr d 57ouvSs???Q7 :5r0wQu d :rxySv???Q ::u7zQx d u{|Sy???Q :xG +iopSm???Q + :2l0qQo d 90lrsSp???Q0 :9o +7tQr d 57ouvSs???Q7 :5r0wQu d :rxySv???Q ::u7zQx d u{|Sy???Q :xG }Q{ d G -x~S|???QG +x~S|???QG : -{ Q~ d  {S???Q : ~G - Q d  ~S???Q : Q d S???Q : ' +{ Q~ d  {S???Q : ~G + Q d  ~S???Q : Q d S???Q : ' Q d \' -S???Q' - :\ZQ d XZS???QZ :X' -Q d ]S???Q :]Z Q d  S???Q :Q d S???Q :  Q d  S???Q :Q d S???Q : Q d S???Q :0 +S???Q' + :\ZQ d XZS???QZ :X' +Q d ]S???Q :]Z Q d  S???Q :Q d S???Q :  Q d  S???Q :Q d S???Q : Q d S???Q :0 Q d !0 -S???Q0 - :!Q d S???Q :0 -Q d S???Q :Q d S???Q :Q d S???Q : Q d  S???Q :Q d S???Q : s Q d s S???Qs :Q d S???Q :s Q d  S???Q :Q d S???Q : Q d S???Q :Q d S???Q : Q d E S???Q :ECQ d ACS???QC :A Q d FS???Q :FCQ d S???Q : Q d  S???Q :d Q d d S???Qd : Q d S???Q :d Q d S???Q :Q d S???Q : Q d ? S???Q :?=Q d ;=S???Q= :; Q d @S???Q :@=Q d S???Q :Q d S???Q :Q d S???Q : Q d  S???Q :XQ d VXS???QX :V Q d ZS???Q :ZXQ d S???Q :Q d uS???Q :usQ d qsS???Qs :qQ d v S???Q :vs -Q d c  S ???Q :ca Q  d _aS ???Qa :_ Q d d S???Q :da Q d  S???Q  :Q d ~S???Q :~ Q d S???Q :Q d S???Q : Q d   !S???Q :"Q  d #$S!???Q :  %Q# d  &'S$???Q :#o(Q& d o#)*S'???Qo :&+Q) d &,-S*???Q :)o.Q, d )/0S-???Q :,#1Q/ d #,23S0???Q# :/, 4Q2 d %, /56S3???Q, :%2# +S???Q0 + :!Q d S???Q :0 +Q d S???Q :Q d S???Q :Q d S???Q : Q d  S???Q :Q d S???Q : s Q d s S???Qs :Q d S???Q :s Q d  S???Q :Q d S???Q : Q d S???Q :Q d S???Q : Q d E S???Q :ECQ d ACS???QC :A Q d FS???Q :FCQ d S???Q : Q d  S???Q :d Q d d S???Qd : Q d S???Q :d Q d S???Q :Q d S???Q : Q d ? S???Q :?=Q d ;=S???Q= :; Q d @S???Q :@=Q d S???Q :Q d S???Q :Q d S???Q : Q d  S???Q :XQ d VXS???QX :V Q d ZS???Q :ZXQ d S???Q :Q d uS???Q :usQ d qsS???Qs :qQ d v S???Q :vs +Q d c  S ???Q :ca Q  d _aS ???Qa :_ Q d d S???Q :da Q d  S???Q  :Q d ~S???Q :~ Q d S???Q :Q d S???Q : Q d   !S???Q :"Q  d #$S!???Q :  %Q# d  &'S$???Q :#o(Q& d o#)*S'???Qo :&+Q) d &,-S*???Q :)o.Q, d )/0S-???Q :,#1Q/ d #,23S0???Q# :/, 4Q2 d %, /56S3???Q, :%2# 7Q5 d .  -289S6???Q +289S6???Q :. 5, :Q8 d = -5;<S9???Q +5;<S9???Q :=8 -;=Q; d 9;8>?S<???Q; :9; - @Q> d & ;ABS????Q :&>;$CQA d "$>DESB???Q$:"A FQD d 'AGHSE???Q:'D$\IQG d Z\DJKSH???Q\:ZG +;=Q; d 9;8>?S<???Q; :9; + @Q> d & ;ABS????Q :&>;$CQA d "$>DESB???Q$:"A FQD d 'AGHSE???Q:'D$\IQG d Z\DJKSH???Q\:ZG LQJ d ^ -GMNSK???Q -:^J\OQM d .JPQSN???Q:.M -,RQP d *,MSTSQ???Q,:*P UQS d - PVWST???Q :-S,+XQV d )+SYZSW???Q+:)V [QY d . V\]SZ???Q :.Y+x^Q\ d xY_`S]???Qx -:\ aQ_ d \bcS`???Q :_xdQb d _efSc???Q :b[ gQe d b[ bhiSf???Q[ :be`jQh d ^`eklSi???Q`:^h[ CmQk d WChnoSl???QC:Wk`UpQn d 3UkqrSo???QU:3nC1sQq d /1ntuSr???Q1:/qUvQt d 4qwxSu???Q:4t1v yQw d v tz{Sx???Qv :wb|Qz d }bw}~S{???Qb:}zv {Q} d y{zS~???Q{:y}bQ d ~}S???Q:~{ Q d  S???Q :Q d S???Q: Q d S???Q:6 +GMNSK???Q +:^J\OQM d .JPQSN???Q:.M +,RQP d *,MSTSQ???Q,:*P UQS d - PVWST???Q :-S,+XQV d )+SYZSW???Q+:)V [QY d . V\]SZ???Q :.Y+x^Q\ d xY_`S]???Qx +:\ aQ_ d \bcS`???Q :_xdQb d _efSc???Q :b[ gQe d b[ bhiSf???Q[ :be`jQh d ^`eklSi???Q`:^h[ CmQk d WChnoSl???QC:Wk`UpQn d 3UkqrSo???QU:3nC1sQq d /1ntuSr???Q1:/qUvQt d 4qwxSu???Q:4t1v yQw d v tz{Sx???Qv :wb|Qz d }bw}~S{???Qb:}zv {Q} d y{zS~???Q{:y}bQ d ~}S???Q:~{ Q d  S???Q :Q d S???Q: Q d S???Q:6 Q d 6 -S???Q6 -: Q d  S???Q :6 -Q d S???Q: +S???Q6 +: Q d  S???Q :6 +Q d S???Q: Q d  -S???Q -:Q d S???Q: - Q d  S???Q :Q d S???Q :  Q d  S???Q !:Q d S???Q": Q d 'S???'Jn­%Q#:'Q d S???Q$:R Q d (R S???QR %:(&Q d $&S???Q&&:$R X Q d )X S???QX ':)&AQ d ?AS???QA(:?X XQ d CXS???QX):CAQ d S???Q*:X8 Q d 8 S???Q8 +:Q d S???Q,:8 Q d S???Q-:Q d S???Q.:6Q d 6S???Q6/: Q d 8 S???Q 0:86 Q d C S???Q 1:C AQ d ?AS???QA2:? Q d DS???Q3:DAkQ d ikS???Qk4:i<Q d m<S???Q<5:mkQ d S???Q6:< Q - d  S???Q 7:M Q d M S???QM 8: Q d S???Q9:M Q d S???Q::Q d S???Q;:Q d S???Q<:p Q d p S???Qp =:Q d S???Q>:p xQ d xS???Qx?:Q d S???Q@: x Q d  S???Q A::Q d :  -S???Q:B:   Q  d  S -???QC: : Q d  S ???Q d  S???Q E:! +S???Q +:Q d S???Q: + Q d  S???Q :Q d S???Q :  Q d  S???Q !:Q d S???Q": Q d 'S???'Jn­%Q#:'Q d S???Q$:R Q d (R S???QR %:(&Q d $&S???Q&&:$R X Q d )X S???QX ':)&AQ d ?AS???QA(:?X XQ d CXS???QX):CAQ d S???Q*:X8 Q d 8 S???Q8 +:Q d S???Q,:8 Q d S???Q-:Q d S???Q.:6Q d 6S???Q6/: Q d 8 S???Q 0:86 Q d C S???Q 1:C AQ d ?AS???QA2:? Q d DS???Q3:DAkQ d ikS???Qk4:i<Q d m<S???Q<5:mkQ d S???Q6:< Q + d  S???Q 7:M Q d M S???QM 8: Q d S???Q9:M Q d S???Q::Q d S???Q;:Q d S???Q<:p Q d p S???Qp =:Q d S???Q>:p xQ d xS???Qx?:Q d S???Q@: x Q d  S???Q A::Q d :  +S???Q:B:   Q  d  S +???QC: : Q d  S ???Q d  S???Q E:! Q d #! -S???Q! -F:# P Q d P S???QP G:! -kQ d ikS???QkH:iP  Q d l S???Q I:lk Q d !  S???Q J:! !Q d g"#S ???QK:g e$Q" d ce%&S#???QeL:c"'Q% d h"()S&???QM:h%e*Q(! d %+,S)???QN:(-Q+" d (./S,???QO:+ 0Q.# d  +12S/???Q P:.3Q1$ d >.45S2???QQ:>1 <6Q4% d <178S5???Q<R:49Q7& d 4:;S8???QS:7< <Q:' d  7=>S;???Q T::?Q=( d :@AS>???QU:= BQ@) d =CDSA???QV:@ EQC* d r @FGSD???Q W:rCpHQF+ d npCIJSG???QpX:nF KQI, d s FLMSJ???Q Y:sIp NQL- d  IOPSM???Q Z:L QQO. d LRSSP???Q[:O TQR/ d OUVSS???Q\:RWQU0 d ]RXYSV???Q]:]U[ZQX1 d Y[U[\SY???Q[^:YX]Q[2 d ^X^_S\???Q_:^[[`Q^3 d [abS_???Q`:^cQa4 d ^deSb???Qa:afQd5 d -aghSe???Qb: -diQg6 d djkSh???Qc:gulQj7 d ugmnSk???Qud:joQm8 d jpqSn???Qe:mu rQp9 d  mstSq???Q f:puQs: d lpvwSt???Qg:ls jxQv; d hjsyzSw???Qjh:hv {Qy< d m v|}Sz???Q i:myj~Q|= d xyS}???Qj:x| vQ> d tv|S???Qvk:tQ? d yS???Q@ d S???QA d S???Qn:QB d S???Qo: +S???Q! +F:# P Q d P S???QP G:! +kQ d ikS???QkH:iP  Q d l S???Q I:lk Q d !  S???Q J:! !Q d g"#S ???QK:g e$Q" d ce%&S#???QeL:c"'Q% d h"()S&???QM:h%e*Q(! d %+,S)???QN:(-Q+" d (./S,???QO:+ 0Q.# d  +12S/???Q P:.3Q1$ d >.45S2???QQ:>1 <6Q4% d <178S5???Q<R:49Q7& d 4:;S8???QS:7< <Q:' d  7=>S;???Q T::?Q=( d :@AS>???QU:= BQ@) d =CDSA???QV:@ EQC* d r @FGSD???Q W:rCpHQF+ d npCIJSG???QpX:nF KQI, d s FLMSJ???Q Y:sIp NQL- d  IOPSM???Q Z:L QQO. d LRSSP???Q[:O TQR/ d OUVSS???Q\:RWQU0 d ]RXYSV???Q]:]U[ZQX1 d Y[U[\SY???Q[^:YX]Q[2 d ^X^_S\???Q_:^[[`Q^3 d [abS_???Q`:^cQa4 d ^deSb???Qa:afQd5 d +aghSe???Qb: +diQg6 d djkSh???Qc:gulQj7 d ugmnSk???Qud:joQm8 d jpqSn???Qe:mu rQp9 d  mstSq???Q f:puQs: d lpvwSt???Qg:ls jxQv; d hjsyzSw???Qjh:hv {Qy< d m v|}Sz???Q i:myj~Q|= d xyS}???Qj:x| vQ> d tv|S???Qvk:tQ? d yS???Q@ d S???QA d S???Qn:QB d S???Qo: QC d S -S???Q -p:SQQD d OQS???QQq:O -XQE d XS???QXr:QQF d S???Qs:X[QG d [S???Q[t:QH d ]S???Qu:][< +S???Q +p:SQQD d OQS???QQq:O +XQE d XS???QXr:QQF d S???Qs:X[QG d [S???Q[t:QH d ]S???Qu:][< QI d < -S???Q< -v:QJ d S???Qw:< -0QK d 0S???Q0x: QL d 5 S???Q y:503QM d 13S???Q3z:1 QN d 6S???Q{:63* QO d * S???Q* |:QP d gS???Q}:g* eQQ d eS???Qe~:QR d S???Q:e QS d  S???Q :m QT d & m S???Qm :&  $ QU d " $ # S???Q$ :" m ! Q# V d I! S???QW d EG# S???QG:E!  +S???Q< +v:QJ d S???Qw:< +0QK d 0S???Q0x: QL d 5 S???Q y:503QM d 13S???Q3z:1 QN d 6S???Q{:63* QO d * S???Q* |:QP d gS???Q}:g* eQQ d eS???Qe~:QR d S???Q:e QS d  S???Q :m QT d & m S???Qm :&  $ QU d " $ # S???Q$ :" m ! Q# V d I! S???QW d EG# S???QG:E!  QX d  -S???Q -: GQY d S???Q: +S???Q +: GQY d S???Q: 7QZ d -7S???Q7: -Q[ d S???Q:7Q\ d S???Q:Q] d S???Q: Q^ d  S???Q :^ Q_ d ^ S???Q^ : Q` d S???Q:^ Qa d S???Q:*Qb d *S???Q*:Qc d iS???Q:i*gQd d egS???Qg:e4Qe d j4S???Q4:jgQf d 6S???Q:643Qg d 3S???Q3:Qh d S???Q:3Qi d S???Q: Qj d  S???Q :Qk d 4S???Q:4 2Ql d 02S???Q2:0 Qm d 5   -S???Q :52- +7S???Q7: +Q[ d S???Q:7Q\ d S???Q:Q] d S???Q: Q^ d  S???Q :^ Q_ d ^ S???Q^ : Q` d S???Q:^ Qa d S???Q:*Qb d *S???Q*:Qc d iS???Q:i*gQd d egS???Qg:e4Qe d j4S???Q4:jgQf d 6S???Q:643Qg d 3S???Q3:Qh d S???Q:3Qi d S???Q: Qj d  S???Q :Qk d 4S???Q:4 2Ql d 02S???Q2:0 Qm d 5   +S???Q :52-  Q n d -   S -???Q- -:  Q o d d S ???Q:d - -bQp d `b S???Qb:`Qq d BS???Q:Bb@Qr d >@S???Q@:>} Qs d C} S???Q} :C@Qt d ,S???Q:,} * Qu d (*!"S???Q*:( #Q!v d - $%S"???Q :-!*&Q$w d !'(S%???Q:$ )Q'x d  $*+S(???Q :' ,Q*y d  '-.S+???Q : * /Q-z d } *01S.???Q :}- {2Q0{ d {-34S1???Q{:0 5Q3| d 067S4???Q:3{8Q6} d 39:S7???Q:6;Q9~ d 6<=S:???Q:9 +???Q- +:  Q o d d S ???Q:d - +bQp d `b S???Qb:`Qq d BS???Q:Bb@Qr d >@S???Q@:>} Qs d C} S???Q} :C@Qt d ,S???Q:,} * Qu d (*!"S???Q*:( #Q!v d - $%S"???Q :-!*&Q$w d !'(S%???Q:$ )Q'x d  $*+S(???Q :' ,Q*y d  '-.S+???Q : * /Q-z d } *01S.???Q :}- {2Q0{ d {-34S1???Q{:0 5Q3| d 067S4???Q:3{8Q6} d 39:S7???Q:6;Q9~ d 6<=S:???Q:9 >Q< d ( -9?@S=???Q -:(<&AQ? d $&<BCS@???Q&:$? -;DQB d );?ESC???Q;:)B&6FSE???RFRDRAR>R;R8R5R2R/R,R)R&R#R RRRRRRR RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR~R{RxRuRrRoRlRiRfRcR`R]RZRWRTRQRNRKRHRERBR?R<R9R6R3R0R-R*R'R$R!RRRRR R  R  R RRRRRRRRRRRRRRRRRRR R!R"R#R$R%R&R'R(R)R*R+ GS '+ Iz G -S  H('+`'S -`]'$I--U} +9?@S=???Q +:(<&AQ? d $&<BCS@???Q&:$? +;DQB d );?ESC???Q;:)B&6FSE???RFRDRAR>R;R8R5R2R/R,R)R&R#R RRRRRRR RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR~R{RxRuRrRoRlRiRfRcR`R]RZRWRTRQRNRKRHRERBR?R<R9R6R3R0R-R*R'R$R!RRRRR R  R  R RRRRRRRRRRRRRRRRRRR R!R"R#R$R%R&R'R(R)R*R+ GS '+ Iz G -S  H('+`'S -`]'$I--U}  - J}+ |G+ P~ | J -J | -K  |J+ KG+K{" \ K Y 2H+ S G -Y Ka)B+2 IHaY -H 2'S (- B'} ' HI`$+I '2]B?Y-BY YaI?+YY BL]C+Y ;Y LY Y9 -H`YCL-HE-EH7 - 9 H+ cEM7+ 4 c 9 -M 7-7 M E+ -7   7NCB+ MI -N BI C-B NlE?+ &B l B=Oi=+E @@ -119442,9 +97723,8 @@ z }+4 bq |s+qb! 4 {n+| g4 -s -! b qyr+ b! zu+b ~t+u } ! -bn\rp+nbAnk+bRn8mo+n [\nk-Rblh+bRh+b{g}+ ~n¥ z + 1Q~ :  2. +m׵FQ?6td5?]S -ٺژ??2 - -+˿SD - Smٺژ2/ 9 +?$b Y?G4<Φ?? n˜ W + 129 0 7 +IY$LW]SٺژQ :  Qh +s -! b qyr+ b! zu+b ~t+u } ! -bn\rp+nbAnk+bRn8mo+n [\nk-Rblh+bRh+b{g}+ ~n¥ z + 1Q~ :  2. +l׵FQ?3td5?\S ٺژ??2 - -+˿SD +Siٺژ2/ 9 +?'b Y?G4<Φ?? n˜ W + 129 0 7 +DY$HWYSٺژQ :  Qh d Q :  Q : = RQi d  Q= :O  M RQj d O = QM :K = a RQk @@ -119492,43 +97772,42 @@ s  / RQz d { 2 1 RQ1 { -d . / S???Q| -d 3 1 S???Q3 : / Q} -d  S???Q : 3 Q~ -d  S???Q :  Q -d S??? n›  + 1Q :  Q -d  S???Q : T Q -d T S???QT :  Q -d U  S???Q :U T 3 Q -d I 3 S???Q3 :I  G Q -d E G S???QG :E 3 # Q -d H # S???Q# :H G - Q -d ^ - S???Q- :^ # \ Q -d Z \ I S???Q\ :Z - G QI -d ] G S???Q -d | I S???Q| : G Q -d  S???Q : | @ Q -d @ e S???Q@ :  Qe -d  ` S???S???RnRoRpRrRsRtRuRvRwRxRyRz. 2 D+Dtd5?m׵FQ? -ٺژ?]S2Z -L +@ޱcm?FL"5?ٺژ]S??2Df  +QqMg?<@6NR4<Φ?2  D +SD -??غژ?S? n…  s  +  1Q :  Q` +d . / S???Q| +d 3 1 S???Q3 : / Q} +d  S???Q : 3 Q~ +d  S???Q :  Q +d S??? n›  + 1Q :  Q +d  S???Q : T Q +d T S???QT :  Q +d U  S???Q :U T 3 Q +d I 3 S???Q3 :I  G Q +d E G S???QG :E 3 # Q +d H # S???Q# :H G - Q +d ^ - S???Q- :^ # \ Q +d Z \ I S???Q\ :Z - G QI +d ] G S???Q +d | I S???Q| : G Q +d  S???Q : | @ Q +d @ e S???Q@ :  Qe +d  ` S???S???RnRoRpRrRsRtRuRvRwRxRyRz. 2 D+Etd5?n׵FQ? ٺژ?\S2Z +L +Eޱcm?FL"5?ٺژZS??2Df  +QqMg?=@6NR4<Φ?2  D +SD +??غژ?S? n…  s  +  1Q :  Q` d Q :  Q :  RQa d  Q :  ~RQb d  RQc -d ~S???Qd -d  S???Q : ~ Qe -d  S???Q :  Qf -d  S???Q :   Qg +d ~S???Qd +d  S???Q : ~ Qe +d  S???Q :  Qf +d  S???Q :   Qg d   -S???S -???R RRS???Q_ +S???S +???R RRS???Q_ d    Q :   RQ ^ d  Q :  R Q] d   Q :W U RQ\ d W  QU :P O RQ[ d P U S RQS Z -d )O S???S???S???S???S???S ???S???2L  +]7JJ?Lid?Op.?.&U +d )O S???S???S???S???S???S ???S???2L  +^7EJ?Nid?Kp.?.&U +.~+.g U -U @@ -119559,9 +97838,8 @@ gW +X  %wy - P+ P P + M+ + b -+  PvQ-v, U+ QP+} T -Uv-R{R|R}S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???RS???2-, _ +Q?gwP? -L9y?2_+o Y -+<@6N?QqMgܿQ4<Φ??3Y *P w _+QR ?R @R AR BR CR DR ER FR GR HR IR JR KR LR MR NR OR PR QR RR SR TR UR VR WR XR YR ZR [R \O SDL/TYSA_COLOURS ???S ???S ???S ???S ???S ???S ???S| ???Sy ???Su ???Sq ???Sn ???Sk ???Rh mSg ???Oc AEDT_EntityID_V1 uO Kh -RJ qA s A 6\ +6A y-\ A 7ba+ +5R4PR5QR[RWRT RQ!RN"RK#RH$RE%RA&R='R:(R7)R4*R1+R.,R*-R&.R#/R 0R1R3R4R6R7R 8R 9R:R;R<R =R >R ?R @R AR BR CR DR ER FR GR HR IR JR KR LR MR NR OR PR QR RR SR TR UR VR WR XR YR ZR [R \O SDL/TYSA_COLOURS ???S ???S ???S ???S ???S ???S ???S| ???Sy ???Su ???Sq ???Sn ???Sk ???Rh mSg ???Oc AEDT_EntityID_V1 uO Kh -RJ qA s A 6\ +6A y-\ A 7ba+ \ - K8   a^V- 9,)y-9 "E. -, :yE)+y ,6+ ,w  y:-* -: ,u --- ] u*:+  -.6+ |w \ K D7+A \ 6 .-D w W;+t V7D-7t a\ b-t zai at 7V @@ -119812,7 +98090,7 @@ b RRR! RR=O* SJ(B&T'Rotor$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0006619.x_b +Design_89.setup/NativeGeometryFiles/0006619.x_b BIN000000004809 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -119828,23 +98106,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0006619.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0006619.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0006619.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0006619.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+YX?D݂_??? +,+n >~?rCG? -ٺژ]S -.ͤ2j??  V/n012345.nQ3367894:;<+5 8:=>n.> ?#`g0?>5?. V?W r??=>]ba1?@[?= @A5-?nQ@56=8BCADE:=F+G-- BE= nQB66-@HED<A-G10-D<*<D:E0-G=E1+1InG+,0-<+QI061J/KL+ KnF1; ,1M +mY M?R N?TS?ٺژM;2,+LW?BY$?TSٺژ?; -7n4+M2M+ޣX?|3?ٺژ?]S?Q726;NK3OP6PQ(#QN(R;7STQK16+SI7UROQS'R+KJNVRUPRWAQJ&R1IXSYSV???QX%R/ZJ[SY???Q//6X\I]QZ$R*\X^S[???*\nD -+ Q\.6*Z_/`S^???Q_-6ab\cR`Qa+de_fQb7P_'gRcPPh(#Q'8biRgTiMagnet1_Section1OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfMagnet1_Section1Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMER]OWSDL/TYSA_COLOURST???OQAEDT_EntityID_V1F5A++RL:DA<54;F-RHQ84653@sRCRsR9J)mNeaBb'P&6t(#T(NdFe35OtAEDT_MaterialName_V1$end 'x_b' +*+ZX?M݂_??? +,+n >~?qCG? ٺژ\S -.ͤ2j??  V/n012345.nQ3367894:;<+5 8:=>n.> ?#`g0?>5?. V?Z r??=>]ba1?@[?= @A5-?nQ@56=8BCADE:=F+G-- BE= nQB66-@HED<A-G10-D<*<D:E0-G=E1+1InG+,0-<+QI061J/KL+ KnF1; ,1M +lY M?U N?WS?ٺژM;2,+IW?CY$?WSٺژ?; +7n4+M2M+ޣX?|3?ٺژ?[S?Q726;NK3OP6PQ(#QN(R;7STQK16+SI7UROQS'R+KJNVRUPRWAQJ&R1IXSYSV???QX%R/ZJ[SY???Q//6X\I]QZ$R*\X^S[???*\nD ++ Q\.6*Z_/`S^???Q_-6ab\cR`Qa+de_fQb7P_'gRcPPh(#Q'8biRgTiMagnet1_Section1OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfMagnet1_Section1Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMER]OWSDL/TYSA_COLOURST???OQAEDT_EntityID_V1F5A++RL:DA<54;F-RHQ84653@sRCRsR9J)mNeaBb'P&6t(#T(NdFe35OtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0006715.x_b +Design_89.setup/NativeGeometryFiles/0006715.x_b BIN000000004809 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -119860,23 +98137,24 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0006715.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0006715.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0006715.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0006715.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+b(?,˻8??? +,+YeEQ?̶!?Q4<Φ -.+1?>Õ2?  V/n0+,12-3nQ134567289:+- 68; n3<td1?k? -,m?<=3.M6?*>?= >?;<n.;< O~T ?بk?; @A-=.nQ@54;6>BAC?8;DEF-C:*?C:A=F+0-8CA:-29D-D-AE+E GnD+9HF;?+++InFE QI04+J/GKP4LM(#QJ&N+IOPQQ//4ORISQG14EPI5TRK@QP'NEGJUVQ5249UG1WRT?9 -5n2EXQU(N95PYRW>PNZASY???OZSDL/TYSA_COLOURX9H,+|?`P?Q4<Φ??HEX+g ?cP?Q4<Φ?,X +Y?´'V??Q4<ΦSV???QO%N/[J\QR.4*[]/^RS=*RnC -+ Q[$N*RO_Q]-4`aRbR^<Q`+cd]eQa7L]'fRb;PLg(#Q'8ahRfThMagnet2_Section1OgAEDT_BODYFlagGroupColor_V1PcijQQd*kl`mTeMagnet2_Section1Pkn(#Ql#odpRmPoNqhSp???OqSDL/TYSA_COLOUR_2OnAttGS_PS_LayerO jSDL/TYSA_NAMES_???S\???SQ???OMAEDT_EntityID_V1:C8?0-0=:+Q644-1@rQ>64=@sRBDRsARrCR7BJ)lUd`>a'P&4t(#T(NdFe35OtAEDT_MaterialName_V1$end 'x_b' +*+b(?/˻8??? +,+ZeEQ?̶!?Q4<Φ -.'1?@Õ2?  V/n0+,12-3nQ134567289:+- 68; n3<td1?i? +,m?<=3. +M6?*>?= >?;<n.;< O~T ?بk?; @A-=.nQ@54;6>BAC?8;DEF-C:*?C:A=F+0-8CA:-29D-D-AE+E GnD+9HF;?+++InFE QI04+J/GKP4LM(#QJ&N+IOPQQ//4ORISQG14EPI5TRK@QP'NEGJUVQ5249UG1WRT?9 +5n2EXQU(N95PYRW>PNZASY???OZSDL/TYSA_COLOURX9H,+|?`P?Q4<Φ??HEX+h ?cP?Q4<Φ?,X +Y?Ĵ'V??Q4<ΦSV???QO%N/[J\QR.4*[]/^RS=*RnC ++ Q[$N*RO_Q]-4`aRbR^<Q`+cd]eQa7L]'fRb;PLg(#Q'8ahRfThMagnet2_Section1OgAEDT_BODYFlagGroupColor_V1PcijQQd*kl`mTeMagnet2_Section1Pkn(#Ql#odpRmPoNqhSp???OqSDL/TYSA_COLOUR_2OnAttGS_PS_LayerO jSDL/TYSA_NAMES_???S\???SQ???OMAEDT_EntityID_V1:C8?0-0=:+Q644-1@rQ>64=@sRBDRsARrCR7BJ)lUd`>a'P&4t(#T(NdFe35OtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0006811.x_b +Design_89.setup/NativeGeometryFiles/0006811.x_b BIN000000010854 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -119892,28 +98170,28 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0006811.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0006811.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0006811.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0006811.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 -6*+Q<?? `+,+g6?)w}弿 -ٺژ?]S? K-.b$%?b$%?  V/n01, 2345nQ267893:;0+4 8:<=n5H>?Q%?Q%?>G@A5?VOL??IB5."|%$2?Q?BCD@E?n.JF? ݖ?`?FGH-I.nQG6FJKLHFMNO+-JP<F nIKMFQRnQK6IGSTMUVOIHNW-QSVIXYnRDIZ[%?Fg8??ZC\]RGI?-&m?[E^RA!~?p?^*_`ab[nAFc[>?#`g0?c&defaAnQd6cghieUjkclmn-f$gkocpna(hjc^qnQh6ad_rjU`eanst-q=aYuWf?D?Y<QvqH`^S?f(?u>wqx8|\?[R %?w.yzb{unx?Eu|,Sɔo!?Q?E }~Boxn|@bx6xrQ?},Ź6?b,^w|nA{|]+1?>Õ2?{0wn]B<ZDl?< 4-]nQ6<8JP:<1+0*UP0--:043;-41-1 n†<P+nŠ1;Q6; -n3M+Q8?KS%ٺژ?n§R+L??u߈][$?n«S+^U&?v!?S?غژ)ntsT+f?v C?Q4<Φ1n³U+Cs?ɇx?a<f8;fnWNV+Z(L?;ܸ0?Q4<Φ?n·;W1+Q<?X+ U?Ԭ ? G4<Φ??n»Y+gwP?Q??n¾Z+r?^?S?غژ!n+[N+kE?_?tF4<ΦN7nH\m+cBP?oVnQ6@C\X@ZnQ6\U\-XQ\nQ6XS UVX-9X -=qW#?%lD? -8ptd1?k? -,m?=:4vݵ|г?v;o=Y4/_7-??P%?R%?>G@A5?VOL??IB5.!|%$2?Q?BCD@E?n.JF? ݖ?`?FGH-I.nQG6FJKLHFMNO+-JP<F nIKMFQRnQK6IGSTMUVOIHNW-QSVIXYnRDIZ[%?Eg8??ZC\]RGI?-&m?[E^RA!~?p?^*_`ab[nAFc[>?#`g0?c&defaAnQd6cghieUjkclmn-f$gkocpna(hjc^qnQh6ad_rjU`eanst-q=aYuWf?D?Y<QvqH`^S?f(?u>wqx8|\?[R %?w.yzb{unx?Eu|,Sɔo!?Q?E }~Boxn|@bx6xrQ?},Ź6?b,^w|nA{|]'1?@Õ2?{0wn]B<ZDl?< 4-]nQ6<8JP:<1+0*UP0--:043;-41-1 n†<P+nŠ1;Q6; +n3M+Q<{Gz<;f?;f?=l?L+Ƕx?c?}?2kN+P`!?\{F*?J4<Φ-n›O;+{Gz{Gz<?;f?;f?ܵ|г?P+h7?.J?gp.7id?n¡Q+bw?\]>8?FS&ٺژ?n§R+L??u߈]Z$?n«S+^U&?v!?S?غژ)ntsT+f?u C?Q4<Φ1n³U+Cs?ɇx?b<f7;fnWNV+](L?;ܸ0?Q4<Φ?n·;W1+Q<?X+ U?̬ ?G4<Φ??n»Y+gwP?Q??n¾Z+r?^?S?غژ!n+[N+kE?_?sF4<ΦN7nH\m+cBP?oVnQ6@C\X@ZnQ6\U\-XQ\nQ6XS UVX-9X +=rW#?%lD? +8ptd1?i? +,m?=:4vڵ|г?v;o=Y5/_7-?hS=???O>SDL/TYSA_COLOUR_2O;AttGS_PS_LayerO 7SDL/TYSA_NAMER),"R%!R RRS???OAEDT_EntityID_V1ta`+OUMF-O+Rncjs+R0:P+-0-Q8642?QJ6-G@R!R@-"R?!Rr5Ri4RT+RL*R9."J)91- .'P&6A(#T(M19_26GOAAEDT_MaterialName_V1$end 'x_b' + V?Z r?Q 6 Q6{y  R )Qy6wR 9Q6b_yR8Q_6^hR7R6VUMQW-Q+X+WIV+QS6QKR -R,\+R.QC6B}R/Q}6ECR0Q6o}gR1Qg6fdR2R3S???S???S???QRQS???QS???Q6QS???Q6Q;S???Q6; Q!"S???Q!1#$S"???Q61!/%Q#/&!'S$???Q/6#()Q&*(#*S'???*(n ++ Q(6*&+/,S*???Q+6-.(/R,Q-01+2Q.+'3R/P4(#Q'.5R3@T5Rotor_Section1O4AEDT_BODYFlagGroupColor_V1P067QQ189-:T2Rotor_Section1P8;(#Q9<1=R:P<>hS=???O>SDL/TYSA_COLOUR_2O;AttGS_PS_LayerO 7SDL/TYSA_NAMER),"R%!R RRS???OAEDT_EntityID_V1ta`+OUMF-O+Rncjs+R0:P+-0-Q8642?QJ6-G@R!R@-"R?!Rr5Ri4RT+RL*R9."J)91- .'P&6A(#T(M19_26GOAAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0007091.x_b +Design_89.setup/NativeGeometryFiles/0007091.x_b BIN000000004496 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -119929,22 +98207,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007091.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007091.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007091.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007091.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ0@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ0@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q0&'(F)) * *2 -*+?? ++ݵ|г?ݵ|г?;f;f ,-Q%?Q%?  V.n/0  1234nQ1+5678290/-3 79,-n4--34 ݵ|г?Q7,531:;9<=/320>+,:=3 nQ:-5,7?=</9,>@A-</*/<9=A+>3=@+@ 6n>0+A,/-Q6*5@BC1D0 -Cn9@E+@E +h?Ѣm?ݵ|г?E0++?QC)50F.6GP5HI(#QF J0CKBLQ.(5KMCNRG!QKJ.OFPQM'5*OQ.RRN1"*Mn< +*+?? ++ݵ|г?޵|г?;f;f ,-Q%?S%?  V.n/0  1234nQ1+5678290/-3 79,-n4--34 ܵ|г?Q7,531:;9<=/320>+,:=3 nQ:-5,7?=</9,>@A-</*/<9=A+>3=@+@ 6n>0+A,/-Q6*5@BC1D0 +Cn9@E+@E +h?Ӣm?ݵ|г?E0++?QC)50F.6GP5HI(#QF J0CKBLQ.(5KMCNRG!QKJ.OFPQM'5*OQ.RRN1"*Mn< + QOJ*MKSQQ&5TUMVRRQT$WXQYQU.HQ'ZRVPH[(#Q'/U\RZT\Shaft_Section1O[AEDT_BODYFlagGroupColor_V1PW]^QQX#_`TaTYShaft_Section1P_b(#Q`cXdRaPcJehSd?OeSDL/TYSA_COLOUR_2ObAttGS_PS_LayerO ^SDL/TYSA_NAMEPJfASS?OfSDL/TYSA_COLOURSP?QB!J@6FgSL?Sg?OIAEDT_EntityID_V1RDR?2"R;!R83"J)`BXT:U'P&5h(#T(steel_stainlessOhAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0007793.x_b +Design_89.setup/NativeGeometryFiles/0007793.x_b BIN000000005974 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -119960,22 +98238,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007793.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007793.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007793.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007793.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZT@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZT@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1QT&'(F)) * *2 -*+.*)?~B??HG?}п %+,+dm8?;h?$[ e\ -.JE?nO?  V/n012 34-.nQ3K567849:0+- 79; n.< +aQ?+aQ?<=>.@$W?I$W?=?@A<n>AB<YQ!?Xv.?ACDE=>nBFG> G,2?g1?FHI;EBnGEJB%?{?EKLFAGnJ;Gs#w?p;x?; MN-FJnQMM5;7HONPI9;Q+R-P0*IPLNFRST-9PN0-4:Q-Q-N+++ UnQS: R;IS+SVnRW+XQVH5SYZU[WZnT\S]X!S]^+Ď8e ?|΃2? e\?$[] W2X+ 2?u2t?~C6)K^"\X_+O"?6#o??LXz??{Gz?\`na1W^_#1^,+LXz??Q?1bnc\_,$:_ +?LXz??Cl?: -6n4+,Q6J5:dU3eP5fg(#Qd=h:6ijQUI5+iV6kRezQi<h+UYdlRk{PhmAQY;hSVnioSl???Qn:hWZpYqSo???QZG5Wn`VrQp9h\`sntSq???Q`F5\pbZuQs8h1bvpwSt???QbE51s/`xQv7h/yszSw???Q/D5v{b|Qy6h*{v}Sz???*{nP -+ Q{C5*y~/S}???Q~B5{RrQ@~QRf~'RqPf(#Q'SRTStator_Teeth30_Section1OAEDT_BODYFlagGroupColor_V1PQQ?TStator_Teeth30_Section1P(#Q5RPhhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER|Z"RxuRutRrsOmSDL/TYSA_COLOURSj???OgAEDT_EntityID_V1cA@1+@P0D=c1-0P9@+DP@LAa\c-=0-LPDIETWa-aED\+TFLW+2]+&F8?&F8?;f;fR[|Q7L5-3MQHN5FMKROQKO5EHCR}QCP5AK?R~Q?Q5=CRR["RR8\"J)d?'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' +*+.*)?~B??HG?}п %+,+`m8?;h?'[ e\ -.JE?qO?  V/n012 34-.nQ3K567849:0+- 79; n.< ,aQ?-aQ?<=>.C$W?E$W?=?@A<n>AB<WQ!?Uv.?ACDE=>nBFG> G,2?g1?FHI;EBnGEJB%?{?EKLFAGnJ;Gs#w?o;x?; MN-FJnQMM5;7HONPI9;Q+R-P0*IPLNFRST-9PN0-4:Q-Q-N+++ UnQS: R;IS+SVnRW+XQVH5SYZU[WZnT\S]X!S]^+8e ?|΃2? e\?'[] W2X+ 2?u2t?~C6)K^"\X_+R"?:#o??LXz??{Gz?\`na1W^_#1^,+LXz??Q?1bnc\_,$:_ +?LXz??Cl?: +6n4+,Q6J5:dU3eP5fg(#Qd=h:6ijQUI5+iV6kRezQi<h+UYdlRk{PhmAQY;hSVnioSl???Qn:hWZpYqSo???QZG5Wn`VrQp9h\`sntSq???Q`F5\pbZuQs8h1bvpwSt???QbE51s/`xQv7h/yszSw???Q/D5v{b|Qy6h*{v}Sz???*{nP ++ Q{C5*y~/S}???Q~B5{RrQ@~QRf~'RqPf(#Q'SRTStator_Teeth30_Section1OAEDT_BODYFlagGroupColor_V1PQQ?TStator_Teeth30_Section1P(#Q5RPhhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER|Z"RxuRutRrsOmSDL/TYSA_COLOURSj???OgAEDT_EntityID_V1cA@1+@P0D=c1-0P9@+DP@LAa\c-=0-LPDIETWa-aED\+TFLW+2]+!F8?#F8?;f;fR[|Q7L5-3MQHN5FMKROQKO5EHCR}QCP5AK?R~Q?Q5=CRR["RR8\"J)d?'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0007841.x_b +Design_89.setup/NativeGeometryFiles/0007841.x_b BIN000000007059 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -119991,22 +98269,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007841.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007841.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007841.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007841.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 -*+:BS?O??HG?}п 1+,+e(?kW?h9;?)f '-.aq0]? *FaK?  V/n0123456nQ3c789:4;<=+5 9;>?n6#@AaY?mB1?@"B?6G=?&?A$C6D>jD4^?Pz?CEFGHAnD%HA.-keL?5-+?HIJCKDn.&LD I\hT?jÙ?LMN>B.nQMf7LOPQNRSTLUVW-> OT5LXnBPSL-@nQPg7BMYZSR[NBW\]--Y[BG nQYh7-P^_[R`S-]ab-G^`-CcnQ^i7GYEd`RF[Gbef-cGXgU4?)?X>c=@?$??g Kc?q? ?K hiHgn?!5g@0?e-?Qhl7KIjiR=JKk10-R=*=R;i0-JRiFHlmk-kHi1+1nnkmo0K=+QnZ71p/qrmqnl1+so/1s,+3TY?{t??LXz??{Gz?s.mto+=$&'?0i~?R\}0[2A,0\o +յ?=S?$[? e\?\unWaV,Qu_7\vwxyWLS\+awn]e\zVxnU\{|Qx`7V}u~U>NV+{ ~n€V<|+Vz+Ӗ?}A? e\?$[*<2|+O"?6#o??LXz??{Gz?z,a|t+?LXz??Cl?t-ezs+NBr3?~ܖ?)fh9;enb+atQ]7ewb-`e++nfme Q\7+qfGF++FRJ`Cf+l-lCJm+P7(#QL+Qq[7mnRQKmqpRPAQpJ1nS???QI/pS???Q/Y7nQH*S???*nR -+ QX7*/S???QW7RQUQm'RP(#Q'nRTStator_Teeth32_Section1OAEDT_BODYFlagGroupColor_V1PQQTTStator_Teeth32_Section1P(#QGRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMEROSDL/TYSA_COLOURQMeS???QNawvS???Qw^7auQvO\u}S???Q}PVxvS???QQ{~}S???Q~a7{x8QR<8S???< -8n4{Q8b7<~3S???RRROAEDT_EntityID_V1R2)+LXz??Q?({2+'0?E?wj?Զr?5T{+TRN;>{U-;RT=54<-R]B[a+RyRrQIk7HEhRjQEj7C^IRRRdR_RZQOe7>9MQ9d753ORRRQR:J)h'P&7(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' +*+>BS?O??HG?}п 1+,+e(?kW?h9;?)f '-._q0]?*FaK?  V/n0123456nQ3c789:4;<=+5 9;>?n6#@AaY?nB1?@"B?6J=?'?A$C6D>jD4^?Sz?CEFGHAnD%HA.*keL?5-+?HIJCKDn.&LD J\hT?jÙ?LMN>B.nQMf7LOPQNRSTLUVW-> OT5LXnBPSL-@nQPg7BMYZSR[NBW\]--Y[BG nQYh7-P^_[R`S-]ab-G^`-CcnQ^i7GYEd`RF[Gbef-cGXgU4?.?X>c=@?$??g Kc?q? ?K hiHgn?!5g@ 0?e-?Qhl7KIjiR=JKk10-R=*=R;i0-JRiFHlmk-kHi1+1nnkmo0K=+QnZ71p/qrmqnl1+so/1s,+3TY?wt??LXz??{Gz?s.mto+@$&'?+i~?N\}0[2A,0\o +յ?;S?'[? e\?\unWaV,Qu_7\vwxyWLS\+awn]e\zVxnU\{|Qx`7V}u~U>NV+{ ~n€V<|+Vz+Ӗ?}A? e\?'[*<2|+R"?:#o??LXz??{Gz?z,a|t+?LXz??Cl?t-ezs+NBr3?~ܖ?)fh9;enb+atQ]7ewb-`e++nfme Q\7+qfGF++FRJ`Cf+l-lCJm+P7(#QL+Qq[7mnRQKmqpRPAQpJ1nS???QI/pS???Q/Y7nQH*S???*nR ++ QX7*/S???QW7RQUQm'RP(#Q'nRTStator_Teeth32_Section1OAEDT_BODYFlagGroupColor_V1PQQTTStator_Teeth32_Section1P(#QGRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMEROSDL/TYSA_COLOURQMeS???QNawvS???Qw^7auQvO\u}S???Q}PVxvS???QQ{~}S???Q~a7{x8QR<8S???< +8n4{Q8b7<~3S???RRROAEDT_EntityID_V1R2)+LXz??Q?({2+'0?E?wj?Զr?5T{+TRN;>{U-;RT=54<-R]B[a+RyRrQIk7HEhRjQEj7C^IRRRdR_RZQOe7>9MQ9d753ORRRQR:J)h'P&7(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0007889.x_b +Design_89.setup/NativeGeometryFiles/0007889.x_b BIN000000007059 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120022,22 +98300,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007889.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007889.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007889.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007889.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 -*+&2ۓ?=ak??HG?}п 1+,+?XfkcH?f8uN?бv. '-.oun5#?@Xz? )??"AB5LA?f?@$C5D<?|?CEFGH@nD%=@.M1(?C6dw?= IJ4KDn.&LD W,?_X?LMNKG.nQMg6LOPQNRSTLU+V-KOT=LWnGPSLCXnQPh6GMEYSRFNGVZ[-XGW> Bcrm?_?WKX"VAd?7`r?> 4XB1˿Z?REuD?B!H>?Z]|? p?H\]C-BnQ\j6HE^_]R`FHabc--^`HA nQ^k6-\de`Rf]-cgh-A df-?nQdl6A^ifR<`Ah10-R<*<R:f0-h-f1+1jnhgk0A<+QjZ61l/mngmnc1bok/1o,+%9?ux?iOy?vg?o.gpk+3TY?{t??LXz??{Gz?,0k +c? ?h9;?)fp-qro+Ų?Z_4k?бv.f8uNܿqsnt+upr,;vp+t?"A>?)f?h9;?; -7n3urv+Zwr+։?/I?I)뿁XP/߿ZxnVy+vw*uzv+?LXz??Cl?u {n|q;wz)b}w+LXz??Q?b~nagyz}(yz+O?=Y??LXz??{Gz?yn[bZ}Q]6y~x[GFy+FR]SC[ya-aC]b+P6(#QMyQ~\6bmQx^6ZRQNZxQ_6+xsR+nUZq QO+Qs`6q{RQPqsQ{a6us7RQQu{Q7b6;{2RQR;7RPAS???OSDL/TYSA_COLOURS???S???S???UKN++S???QLb~Qm[6gj~RQKgmlRQlJ1jS???QI/lS???Q/Y6jQH*S???*nR -+ QX6*/S???QW6RQUQm'RP(#Q'nRTStator_Teeth34_Section1OAEDT_BODYFlagGroupColor_V1PQQTTStator_Teeth34_Section1P(#QGRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERS???S???OAEDT_EntityID_V1|4Ju+JRT:=|ut-TRNJKtqU-:RJ<43;|-t=Tq+VLSZ+cH`g+RnRiReQEi6CP\R_RRYQOf6KIMQIe6=8ORQ8d642IRRRQR9J)d'P&6(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' +*+&2ۓ?=ak??HG?}п 1+,+?ZfkcH?f8uN?бv. '-.lun5#?@Zz? )??"AB5LA?d?@$C5D<?’|?CEFGH@nD%=@.H1(?C6dw?= IJ4KDn.&LD V,?_X?LMNKG.nQMg6LOPQNRSTLU+V-KOT=LWnGPSLCXnQPh6GMEYSRFNGVZ[-XGW>Bcrm?_?WKXVAd?:`r?> 4XB.˿Z?REuD?B!H>?Z]|? p?H\]C-BnQ\j6HE^_]R`FHabc--^`HA nQ^k6-\de`Rf]-cgh-A df-?nQdl6A^ifR<`Ah10-R<*<R:f0-h-f1+1jnhgk0A<+QjZ61l/mngmnc1bok/1o,+%9?ux?fOy?vg?o.gpk+3TY?wt??LXz??{Gz?,0k +c? ?h9;?)fp-qro+Ų?[_4k?бv.f8uNܿqsnt+upr,;vp+t?"A>?)f?h9;?; +7n3urv+Zwr+։?3I?I)XP/߿ZxnVy+vw*uzv+?LXz??Cl?u {n|q;wz)b}w+LXz??Q?b~nagyz}(yz+O?=Y??LXz??{Gz?yn[bZ}Q]6y~x[GFy+FR]SC[ya-aC]b+P6(#QMyQ~\6bmQx^6ZRQNZxQ_6+xsR+nUZq QO+Qs`6q{RQPqsQ{a6us7RQQu{Q7b6;{2RQR;7RPAS???OSDL/TYSA_COLOURS???S???S???UKN++S???QLb~Qm[6gj~RQKgmlRQlJ1jS???QI/lS???Q/Y6jQH*S???*nR ++ QX6*/S???QW6RQUQm'RP(#Q'nRTStator_Teeth34_Section1OAEDT_BODYFlagGroupColor_V1PQQTTStator_Teeth34_Section1P(#QGRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERS???S???OAEDT_EntityID_V1|4Ju+JRT:=|ut-TRNJKtqU-:RJ<43;|-t=Tq+VLSZ+cH`g+RnRiReQEi6CP\R_RRYQOf6KIMQIe6=8ORQ8d642IRRRQR9J)d'P&6(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0007937.x_b +Design_89.setup/NativeGeometryFiles/0007937.x_b BIN000000007059 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120053,25 +98331,24 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007937.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007937.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007937.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007937.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 -*+ -J?]_?͌Tj??HG?}п 1+,+?LXz??Cl? '-.F~G?B?  V/n01234-5nQ3c67894:;<+- 8:= n5!>?jZW?jEf?> @A5DŽR?_o??"B5C}^?\7M[?BDEFG?nC#H?I??a)s?HJKGLCnI$LCM5Mg?WOa?LNOHPInM%FI.B.?0xئ?FQR=BMn.&GM \Ygm?U8Acn0@<+Qrl6@qsP6tu(#Qqk6PNrvRs QNj6LJqwRvQJi6HSNxRwRxOuAEDT_EntityID_V1OVlKLZ_h-ZHO_+:Vy<-4;z-yVR:=z{|-; -7n4{}z-y{+{ ~nz;Q~a6{7n|\{({+v 7:?xMi[?Q8d6-3QQf6FDRQDg6BQSRRRRRo Rk Rc RUR9J)r'P&6(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' +*+J?]_?͌Tj??HG?}п 1+,+?LXz??Cl? '-.F~G?B?  V/n01234-5nQ3c67894:;<+- 8:= n5!>?jZW?jEf?> @A5 +DŽR?_o??"B5C}^?\7M[?BDEFG?nC#H?I??c)s?HJKGLCnI$LCM5Mg?WOa?LNOHPInM%FI.B.?0xئ?FQR=BMn.&GM \Ygm?V8Acn0@<+Qrl6@qsP6tu(#Qqk6PNrvRs QNj6LJqwRvQJi6HSNxRwRxOuAEDT_EntityID_V1OVlKLZ_h-ZHO_+:Vy<-4;z-yVR:=z{|-; +7n4{}z-y{+{ ~nz;Q~a6{7n|\{({+v 7:?xMi[?Q8d6-3QQf6FDRQDg6BQSRRRRRo Rk Rc RUR9J)r'P&6(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0007985.x_b +Design_89.setup/NativeGeometryFiles/0007985.x_b BIN000000007059 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120087,24 +98364,23 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007985.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0007985.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007985.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0007985.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 -*+}?;5}??HG?}п 1++Jn{~?i|??LXz??{Gz? ',-9?4~G?  V.n/0 1234nQ1c567829:;+3 79<=n4!=>GVp?rXo]x?= 3?4Iiܧ)?ml8?>"<4@n?o.by?< AB3C>n@#D>EGu?FT/?DFG,H@nE$I@J# Β?Q5?IKLMNEnJ%CE-?9?,f+?COP<,Jn-&NJ {^?JOn?N QRI-nQQl5NKSRT;LNU0/-T;*;T9R/-LTRVIWXU-UIR0+0YnUX+/N;+QYZ50Z.[\X[nW0]^+00^ +C,F?T?ؒhPϿ^/X_++}ւ?jF?iJ)Q'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' +*+}?>5}??HG?}п 1++Jn{~?l|??LXz??{Gz? ',-9?4~G?  V.n/0 1234nQ1c567829:;+3 79<=n4!=>FVp?oXo]x?= 3?4Eiܧ)?nl8?>"<4@r?n.by?< AB3C>n@#D>EGu?FT/?DFG,H@nE$I@J# Β?J5?IKLMNEnJ%CE-?9?,f+?COP<,Jn-&NJ {^?JOn?N QRI-nQQl5NKSRT;LNU0/-T;*;T9R/-LTRVIWXU-UIR0+0YnUX+/N;+QYZ50Z.[\X[nW0]^+00^ +D,F?T?ؒhPϿ^/X_++}ւ?qF? iJ)Q'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0008033.x_b +Design_89.setup/NativeGeometryFiles/0008033.x_b BIN000000007059 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120120,24 +98396,24 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0008033.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0008033.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0008033.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0008033.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZo@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Qo&'(F)) * *2 -*+ |?lUN7??HG?}п 1+,+.z,?;?zmB?B*u '-.o* ?h?  V/n0123456nQ3c789:4;<=+5 9;>?n6@?%ygL? +*+ |?sUN7??HG?}п 1+,+0z,?>?zmB?F*u '-.o* ?g?  V/n0123456nQ3c789:4;<=+5 9;>?n6@?)ygL? =.?@A6 -l? ބ<&?? 56Bjr?^cx?B!C?D.?aŝB?CEF>GBnD"GBH)üv?;mPg?GIJCKDnH#KDLɕ?UU_?KMNGOHnL$PHQ`b*?+??P RSALnQ%>L.&?4JU?> TU5CQn.&OQ "@(?Cs0?OVWK-.nQVi7OMXYWZ[NO\]^--X[OA nQXj7-V_`[ZaW-^+b-A_a-P@nQ_k7AXRcaZS[Abde-Z=*SZ=aPe10-b-ad+dfnb1+geAS1+1hnediQhZ71j/fki-1lm++,q?rR??LXz??{Gz?l,<ni+Jn{~?i|??LXz??{Gz?m.oi2+?LXz??Cl?opnq]rm2/m,+LXz??Q?,0s2 +wׯ?Zģs|?iFs+rxn{os|v yn}s<~Qya7vt8}5Uv+< -8n4vl~)vg|+j 2d?D`?kZb?ql?g(d~+4HA;[?h2?|Rݐ￸X|*r~n+tE"??\ϗb?i}vu-FZJUCus{-;ZU=54<}-=Z;S0-0P=+JZNFG{rq-{CJr+NZWJKqo\-qGNo+ReRzfRklQRl7P_RcvRmR`uQMh7KIVRYtQIg7GEMRsQEf7CTIRrQTe7>9ERqQ9d753TRpRoR:nJ)R'P&7(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' +l? ބ<&?? 56Bjr?Wcx?B!C?D.?eŝB?CEF>GBnD"GBH,üv?L.#?4JU?> TU5CQn.&OQ "@(?Cs0?OVWK-.nQVi7OMXYWZ[NO\]^--X[OA nQXj7-V_`[ZaW-^+b-A_a-P@nQ_k7AXRcaZS[Abde-Z=*SZ=aPe10-b-ad+dfnb1+geAS1+1hnediQhZ71j/fki-1lm+),q?rR??LXz??{Gz?l,<ni+Jn{~?l|??LXz??{Gz?m.oi2+?LXz??Cl?opnq]rm2/m,+LXz??Q?,0s2 +wׯ?Pģs|? iFs+rxn{os|v yn}s<~Qya7vt8}5Uv+< +8n4vl~)vg|+j 2d?D`?kZb?ql?g(d~+4HA;[?h2?yRݐ￶X|*r~n+uE"??\ϗb? i}vu-FZJUCus{-;ZU=54<}-=Z;S0-0P=+JZNFG{rq-{CJr+NZWJKqo\-qGNo+ReRzfRklQRl7P_RcvRmR`uQMh7KIVRYtQIg7GEMRsQEf7CTIRrQTe7>9ERqQ9d753TRpRoR:nJ)R'P&7(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0008081.x_b +Design_89.setup/NativeGeometryFiles/0008081.x_b BIN000000005974 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120153,22 +98429,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0008081.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0008081.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0008081.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0008081.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZT@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZT@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1QT&'(F)) * *2 -*+T5l?)TΧRq?HG?}п %+,+?LXz??Cl? -.UiIv?!.I,?  V/n0+1 23-4nQ2K567839:0+- 79; n4<=Q?<>4Cl?=;4?[r(?;lR?; @A-B=n?C=Dl?z,?CEFG>?nDB?.2d.:?K[?BHI;GDn.GD ~Cŗ2?CG?GJKBC.nQJO5GHELKMFIGNOP-M0*FMQKCPRS-IMKABTUN-NBKO+OVnNRUWPGFR+RXnP+OYQXF5RZ[V\+[nSR Y RW1+Y=l?Iڨ?B*u?zmB?WOY+pRF?|d?zmB?B*u1!Y]+aXs??]":1^+LXz??Q?: -6n3_]^#U],+ݣ?BQ??H?U`nTO_^,$_^ ++,q?rR??LXz??{Gz?_ anbU:,QaI5_c`6db-A_+AMI9;b_T-9MA0-3:b-T;IU+0M9Qe+QM0F>S+e-e>0->fQC<nQfQ5>EgP5hi(#QEP5CJfjRg"RjOiAEDT_EntityID_V1SCQ++Qc<k_almnQ`H5UlVaoQ6J5:ma2pRdQm=k:6cqRpPkrASq???OrSDL/TYSA_COLOURQl;kU`sctQVG5OsX`uRoQs:kOVZlvRuQZ9kRXwsxSv???Qw8k+[yZzSx???Q[E5+w/X{Qy7k/|w}Sz???Q/D5y~[Q|6k*~yS}???*~nM -+ Q~C5*|/S???QB5~RQ@QRh'RPh(#Q'SRTStator_Teeth42_Section1OAEDT_BODYFlagGroupColor_V1PQQ?TStator_Teeth42_Section1P(#Q5RPkhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER!R{St???Sn???R\QHN5B@JRLQ@M5;7HRQ7L5-2@RRR8"J)mf'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' +*+T5l?)TΧRq?HG?}п %+,+?LXz??Cl? -.UiIv?.I,?  V/n0+1 23-4nQ2K567839:0+- 79; n4<=Q?<>4Cl?=;4?^r(?8lR?; @A-B=n?C=Dl?v,?CEFG>?nDB?.2d.:?K[?BHI;GDn.GD ~Cŗ2?CG?GJKBC.nQJO5GHELKMFIGNOP-M0*FMQKCPRS-IMKABTUN-NBKO+OVnNRUWPGFR+RXnP+OYQXF5RZ[V\+[nSR Y RW1+Y=l?Hڨ?F*u?zmB?WOY+sRF?|d?zmB?F*u1!Y]+_Xs??]":1^+LXz??Q?: +6n3_]^#U],+㣷?CQ??H?U`nTO_^,$_^ +),q?rR??LXz??{Gz?_ anbU:,QaI5_c`6db-A_+AMI9;b_T-9MA0-3:b-T;IU+0M9Qe+QM0F>S+e-e>0->fQC<nQfQ5>EgP5hi(#QEP5CJfjRg"RjOiAEDT_EntityID_V1SCQ++Qc<k_almnQ`H5UlVaoQ6J5:ma2pRdQm=k:6cqRpPkrASq???OrSDL/TYSA_COLOURQl;kU`sctQVG5OsX`uRoQs:kOVZlvRuQZ9kRXwsxSv???Qw8k+[yZzSx???Q[E5+w/X{Qy7k/|w}Sz???Q/D5y~[Q|6k*~yS}???*~nM ++ Q~C5*|/S???QB5~RQ@QRh'RPh(#Q'SRTStator_Teeth42_Section1OAEDT_BODYFlagGroupColor_V1PQQ?TStator_Teeth42_Section1P(#Q5RPkhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMER!R{St???Sn???R\QHN5B@JRLQ@M5;7HRQ7L5-2@RRR8"J)mf'P&5(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0008249.x_b +Design_89.setup/NativeGeometryFiles/0008249.x_b BIN000000009479 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120184,24 +98460,25 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0008249.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0008249.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0008249.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0008249.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 -)*+Nm<@?q]?HG?}п I+,+?LXz??Q? 9-.GVp?rXo]x?  V/n012 3456nQ3789:4;<0+5 9;=>n67?.@$W?I$W??6@A6 ?.8B6 DŽR?_o?BCDEF.nQC7BGHIDJKLBMNO-EGLPBQnFHKB-RnQH7FCSTKJUDFOVW--SUFX nR0FYQIiܧ)?ml8?Y/Z[RZ]|? p?Q1ER\jZW?jEf?\2]Q^UiIv?!.I,?]!_`ab\n^3b\cQ?b#de]@^nc4f^Aq? ?fgh=ZcnA5Pc?<?|?PijZEAnQi7PkGljJLmPnop-ZkmfPYnQk7ZgiqmJjhZrsn-J0*hJmtfuvr-rfms+swnrovxnZjo+oynnzs{Qy7o|}w~z}npNo{Ao+?LXz??Q?@{+O"?6#o??LXz??{Gz?BV{+4^]? ??LXz??{Gz?VnO+NC1+_a_??1$nˆD<x+?LXz??Q?< -8n4xEs2+3TY?{t??LXz??{Gz?2Fx+ G?? G??;f;fGz2,+O?=Y??LXz??{Gz?,H +Jn{~?i|??LXz??{Gz?nŒ+,Q7-+n“+nWV Q7+WFU++UJK-W+-JUX-J`a-X-a[nX+Q7XSaX]n[.XY%ygL? -=.?-a[`b*?+??,=>aY?mB1?= t5fn>+5YQ!?Xv.?*>+"v?+"v?@nQ7J0-@%b?nQ7@dJe@1+eJ`b-b1-@+&n¦1Q7"nª?+LXz?? ?>++,q?rR??LXz??{Gz? n™=+?LXz??Q?<+?LXz??Q?;v+?LXz??Q?vnus:N+?LXz??Q?NnMVzQ7N}MEDN+P7(#QvNQ7VQ}7zyR Qwz}|R PAQ|xoyS???Qysw|S???Qw7syQzvS???Q7vwQ{S??? nv<Q78Q|<8S???Q87<3S???R R 5t+tJh;=u-;Jt054<-u=hv+0J;+0-R R OSDL/TYSA_COLOURQuVR Qt+S???QsS???QrS???Q7QqS???Q7QpS???Q7QoS???Qn1S???Q71/Qm/S???Q/7Ql*S???*nJ -+ Q7*/S???Q7R: QQ'R9 P(#Q'RTStator_Yoke_Section1OAEDT_BODYFlagGroupColor_V1PQQ~TStator_Yoke_Section1P(#QkRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERk"R"R R R S???OAEDT_EntityID_V1a`+`Je]-]e+RC Qd7b_R"Q_7]dR"Q7a_R +)*+Nm<@?q]?HG?}п I+,+?LXz??Q? 9-.FVp?oXo]x?  V/n012 3456nQ3789:4;<0+5 9;=>n67?.C$W?E$W??6@A6 ?.8B6 +DŽR?_o?BCDEF.nQC7BGHIDJKLBMNO-EGLPBQnFHKB-RnQH7FCSTKJUDFOVW--SUFX nR0FYQEiܧ)?nl8?Y/Z[RZ]|? p?Q1ER\jZW?jEf?\2]Q^UiIv?.I,?]!_`ab\n^3b\cQ?b#de]@^nc4f^Aq? ?fgh=ZcnA5Pc?<?’|?PijZEAnQi7PkGljJLmPnop-ZkmfPYnQk7ZgiqmJjhZrsn-J0*hJmtfuvr-rfms+swnrovxnZjo+oynnzs{Qy7o|}w~z}npNo{Ao+?LXz??Q?@{+R"?:#o??LXz??{Gz?BV{+3^]? ??LXz??{Gz?VnO+NC1+_a_??1$nˆD<x+?LXz??Q?< +8n4xEs2+3TY?wt??LXz??{Gz?2Fx+G??G??;f;fGz2,+O?=Y??LXz??{Gz?,H +Jn{~?l|??LXz??{Gz?nŒ+,Q7-+n“+nWV Q7+WFU++UJK-W+-JUX-J`a-X-a[nX+Q7XSaX]n[.XY)ygL? +=.?-a[`b*?+??,=>aY?nB1?= t5fn>+5WQ!?Uv.?*>+"v?+"v?@nQ7J0-@%b?nQ7@dJe@1+eJ`b-b1-@+&n¦1Q7"nª?+LXz?? ?>+),q?rR??LXz??{Gz? n™=+?LXz??Q?<+?LXz??Q?;v+?LXz??Q?vnus:N+?LXz??Q?NnMVzQ7N}MEDN+P7(#QvNQ7VQ}7zyR Qwz}|R PAQ|xoyS???Qysw|S???Qw7syQzvS???Q7vwQ{S??? nv<Q78Q|<8S???Q87<3S???R R 5t+tJh;=u-;Jt054<-u=hv+0J;+0-R R OSDL/TYSA_COLOURQuVR Qt+S???QsS???QrS???Q7QqS???Q7QpS???Q7QoS???Qn1S???Q71/Qm/S???Q/7Ql*S???*nJ ++ Q7*/S???Q7R: QQ'R9 P(#Q'RTStator_Yoke_Section1OAEDT_BODYFlagGroupColor_V1PQQ~TStator_Yoke_Section1P(#QkRPhS???OSDL/TYSA_COLOUR_2OAttGS_PS_LayerO SDL/TYSA_NAMERk"R"R R R S???OAEDT_EntityID_V1a`+`Je]-]e+RC Qd7b_R"Q_7]dR"Q7a_R !R !Rl"Q7=9gQ9753Qg7fkR!R!R QS7-HR!R!R R OBKV+pPLz+LJDjEpzM-R~ Rq!QG7EiCRl!R!RT!RI!R:m"J)'P&7(#T(M19_26GOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0008815.x_b +Design_89.setup/NativeGeometryFiles/0008815.x_b BIN000000079899 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120217,72 +98494,76 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0008815.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0008815.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0008815.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0008815.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 -*+hףpUü?? q+,+u}? йvc?wX¦ÿF`? -.s6?,\z?  V/n012 3456nQ3789:4;10-5 9;<=n6N>?A>M@A6'vBt?Yku??OB6C. :Y?9ު?BqDEFG?nCPH?I}c=84?f|?HJKLMCnIQNCO/G?@}Q?N PQRSInORTIUtPv?_ag?TsVWXYOnUSZO[TA?wO?Z\]^-Un[T_U`W/9?]"?_!abcd[n`Ue[fihYT? ?eghij`nfVk`==ф?uX?kKlmnofn=W5fpn?pXq=r9+?6Ϋ?q stuRpnrYvpw8g#?:# ſ?vxyz{rnwZ|r}xL?i,?|3~wn}[w[?`*q?O}n\}FA!?Of<3?n]#d?ιp5?n^aQ?!cָ?n_ENo?*a - ?n` v -U?vsM?na BC?,@8n=A8Ba_?@ە>j?~?@i1nU?y1^?^nĥ&V?n?+n߅P?pO?uGJnTr=?̡>:?}KnYUZg?KS -?YuTnWd3?!?n?Ď?AnޓM?Ǹ?nnUDg?Rwz?  - n  Q?O=m~? n L%_h,?؇?-u n 8Fz?Dd?n`,??}nd &I١?J߬?>?dm!"#n d$珠?#?d#%&_ n$* 'Ag? ?*()\&$n'*$+ܲ٠?F@y=t5?*I,-'n+;'.Ύ1?ޫ`~G?;1/017+n.%+2$)?a/?%34 .n2.568 jv8?`꯹?672n528}?n ?9: $5n8E5;\M?q+?E<=A8n;8>x;Bh遣?,[v?GCD*>nBA>oR? ay?AEFGBnMBHW?jy?HIJI^qI?0D?IUKLMNHnJOHPڳ`?Y*?OQRJnPJSa'ž\?X?TUVPnSWPXy{?:3R׸9?WYZG[SnX[S\gvJt?Fg?[]^WXn\`X_nK?!*!?``ab\\n_N\c5C#?^Z{n~{*PsVM;?㲅?{~n~\b5?q*-l? n:uj?eǸ?Uen;GZ?600?QenyiR?MZ7?yunGm?nA?n 氋?i,?sn+$U8?OB?+&Ln$:?'?$ nK9Y+WB?=>?K{Fn ]?wԑO?Cn -j7kD??s{%?jen : b?}JV{?n D}N4?x?n ^N?է?_n}vw?# ?#2n1"?q/?{nT¦?4?Gnnzߠ?{Խ\?zunoSgG? Lk?o9n$k?4[ ?ant;?.6?i #nG?!_0C?K*nw30?;Wz?5| -nen?7iw?'nFd?u?QwMn*zKX?vB?wYn -&?X,X?nYE$ `?7?{nGZ+U?u"d?GsBn1_=?_Fj?1/;nM%.*W?Gl&=?MSIni&86d?:4?ien L Z?nn?L+Hn!GQ ?  ?GAWn"1?(J??yn#*V^?uS?En$b+ij? ?En%<OF0?a4?<57n&:[?e!f??n'JK?4 ?JwFn( za?GH? n) _%#?+Ұ+? - n *  ėX?k%8? b n +s +i?PZ?s n, j1?4eY?e n-Wv`y?")?Yin.3=m4?ΣQc7?jn//;? 4v9?A n0!]1?r3(?"#n!1$%=L?q@??$&'!n%2!(xB?9D*c?)*%n(3b%+q\?_d?b,- `(n+4.(/h??.01+n/5+2S ?ui?34/n26/5 =.?9lcT?67z2n5728T:t?dj?9: i5n885;,t/?4i?<=$8n;9 -8>2?͚|? -7?@;n>:w;AWq?!C?wOBCo>nA;>Did.?]܂n?YEFNAnD<AGKP?7|?1HIJ|DnG=cDK@0Ϝ?ܰ?cLM_GnK>JGNҶp?W_Es?J/OPQKnN?KRz?tXg?ST%NnR@NUS?~\?VW$RnUARX+?g}hv?YZUnXB0U[mv?fxto?0c\],Xn[CQX^qC$?iti~?Q-_`aJ[n^D[b?q8??Ν=[?cd^nbE^eJ?3J?-fg1bneFbhu}? йvc?_ijmenhGuek -!?'*#?ulmqhnkHahnaȔ?+mw?a+opQknnIkq7W^$?D\?Ť!?)z{6aAnQz7o|{p}~+0*p`{a+{56}+}6{~-~(n{p-*np~Q7,n`+\?Ť!? A׬_.?+}vw?# ? VCa^4?+nG?f=?a~-.$?>n+$Ns8?*O?TC'?ln"+^N?է?⿂ ?`n+}?n ?1忬7e?n+7b=?ޭ%?R#ܒѿ[3D??n+W?jy?]xٿw-8D?n§+ڳ`?Y*?T14y?n±+t? -ّ?„F{lv ?Dn+YǓ6?/￶:?gVp>ҿ?nX+8g#?:# ſ?̿xu^-?n+*V^?uS?$\0BS ?n=+W/9?]"?fX߿4*N?"n&1+X?1 -n;+g?h?I!?tAsW,D@~?pn+&I١?J߬?>?C!?W6?nnc+w30?;Wz?|p#:Y?6n@+ BCn¿+!lV?kh?iuWv*?n›+~̐?n+z?tXg?ğ+;K?n‹+Z+U?u"d?Z{VIȿ#0k?tn !"#+y{?:3R׸9?hf=Կu[?"$n^%&#'+t;?.6?Un㿪G?j(nz)#'#*+$)?a/?`jBA'?+nT,'* -'.+K?4 ?Icf#3ɿ>8_?-x/nI!0*. -1*2+$=c?x@? ˾?1 3n45.2 6.7+`+,?m?i, ѿi/C?68nž927 2:+/;? 4v9?n6baz?B;n7: <7=+Ύ1?ޫ`~G?jY ٣ǁ?<2>n:?@:=A:B+nK?!*!?0$Zbؿ3Ҭ?ACn_D=BE=F+o[??LN߸,V?EGn4HBFBI+,t/?4i?]!{Ͽ0~ -?Jn'KFILFM+ v -U?vsM?LX"ӿVP?LNnOPIMIQ+g-?I=·?cݳ俖bsf?Rn—MQSMT+?Ď?gv$]! ?xBzn£{uy|u}+T:t?dj?a'?|~ny}y+C?S?+9#Mz?Tn‹} }+a'ž\?X?Fտ2c4?nˆ!+ۏmL?'0J?!uտ!!?nx"+w]???d5_ǿxGv?pnE #+KP?7|?7&@"A_j?2n$+q71`)?m?Sb̿sf4?ny%+?j`:? 2ʿM?~n7>+Ag? ?Yؿ5?n)D?+*zKX?vB?݀صd5?xn@+T¦?4?byJ.pvt:?HnA+Wv`y?")?P,R¿a?ZnlYB++i?PZ?Goݿ^_[?n—C&+gvJt?Fg?BN?vԿrR?&nh"DY+ ?ZFΗ?_n¿ U?Y\nVE_+L%_h,?؇?ڃ3ܿm}?_nm\F+vn#,9=\9?++?g}hv?W`oֿK,?@n =?]D=A+j -%?K?š7eؿ`?DBn)A?A^?C+Gm?nA?[¤9q?Dn4AC_)AE+ۗ ?]? -r4?)hFnqCE`GCH+x??ʿvmS?|Sn0PRePT+za?GH?(+/MӖp,?Un: |RTf<RV+ҴHo ?Y&?,qܿꊊ;?< WnQ`XTVgTY+UZg?KS -?X㿜jG?vZnVYh{V[+]?wԑO? D>4 ?{D\nxY[iY]+8Fz?Dd?i׿ud?^n_[]jt[`++]?2?⿯#?Qޒۿ? -mn]nj,plj +\b5?q*-l?5*( hc#>?lon3,Qo7lpkqr: slt+qn:luQq7vow:tx+uyz+Q?O=m~?[KȻ-'y?y@{u+[%?Ϊap?i"s࿎nEr?zu|+¦ٍy?O3fM? N~߿c:k?&}n~z|z+ne ? ;]?τ/f9-?\n–|%|+Q ?  ?57Կd?%nZJ",+-8?'L9V?i82Qj?pn~k -+lҋ?[2Qk?շ9Jeܯ?XnX+/G?@}Q?8_ -ݿl-z?XnŒ<i+OF0?a4? 'c?i6n—@f+#d?ιp5?EQԿ5>?nU+=Г?#2Rx?L3؝NӖZ?nE+ t?dh?}8ٿ0s?nš+FOD?Iz?_mxE?@n +h遣?,[v?G# U;y?Hn-+ĥ&V?n?K/ ;ʊ?,ng+5Cj?~?lſx5?ejn±a+s6?,\z?ژՇ4ۿ;q?nn_+Ȩ.b?>?S!0߿E?*n~ +Fd?u? -[PUΉy? Rn+&86d?:4?@ߐ$必=?nh|+D}N4?x?74Ƌ7ֿ$?nZ+SgG? Lk?x(?'D?:nnf+[64p??ܱFҿ@>?nO+tPv?_ag?5=dž㿦Z?tnO+qZm?'ێN?MKwҿP,+?On¢L+ -&?X,X?6ֿO?n0+'G?P0~?G;MɿY?0zn -+iR?MZ7?LU*|୔?nx+mv?fxto?*^ĿL!?dn/dP+0(?r"z?;)[ӿҊ[?Pn@LG+7kD??s{%?RQ;ط?n2+Ҷp?W_Es?w %5 -y?0nIJ+oR? ay?ӿvM"n?JnG%+$U8?OB?hb>ٿFg?n8+: b?}JV{?Hz޿#?8nw+ihYT? ?=Tx:忓8?n§+:uj?eǸ?.5f` ?Vnd+ r?H;?v9ſI$?dfn?a+Wd3?!?s-z˿!>.A?n7+}c=84?f|?R SٿX7P?n­+3ݑ?A`Lc?Kڿ4 8?n¬o+#J?V،?s!׺ῖF?NnC+\P:b?^H?NFƿ>9x{?nnN+:[?e!f?c] ´?t?@nx+[B?t?.]nV濊nM?n+5z?*oC?X)Ŀl,{?bn]+22+3=m4?ΣQc7?gMgN ?2ns/2+nʹ?nʹ?;f;f2+%.*W?Gl&=?pq?TnL +C.?5'9?lU36.K?nS+FA!?Of<3?A{?n+n?Vt]ټ? nk1+DD?,$%ew?Eտ, ?n¨+ 氋?i,?{apݿ<UM?nn+TA?wO?|ۿ +*+h +ףpUü?? q+,+u}?йvc?wX¦ÿF`? -.s6?,\z?  V/n012 3456nQ3789:4;10-5 9;<=n6N>?A>M@A6*vBt?Yku??OB6C. :Y?9ު?BqDEFG?nCPH?I~c=84?f|?HJKLMCnIQNCO/G?@}Q?N PQRSInORTIUtPv?_ag?TsVWXYOnUSZO[TA?wO?Z\]^-Un[T_U`W/9?_"?_!abcd[n`Ue[fihYT? ?eghij`nfVk`==ф?wX?kKlmnofn=W5fpn?pXq=r9+?6Ϋ?q stuRpnrYvpw8g#?<# ſ?vxyz{rnwZ|r}xL?n,?|3~wn}[w[?`*q?O}n\}HA!?Rf<3?n]'d?ҹp5?n^dQ?!cָ?n_HNo?(a + ?n` +v +U?~sM?na BC?,@8n=A8Ba_?@ە>j?~?@i1nåU?v1^?^nĥ&V?n?+n߅P?pO?uGJnTr=?ġ>:?}KnYUZg?MS +?YuTnWd3?!?n8s?`F?n5z?,oC?a0nm׃?-w?m]inaBb?@D$?ynҫu7?(&?n1?:?En0(?v"z?n6Ab2? ?6'2n`+,?m?qnne ? ;]?[n\@>?Ď?AnޓM?ȸ?nrUDg?Qwz?  + n  M?M=m~? n M%_h,?؇?-u n 7Fz?Dd?n`,??}nd &I١?D߬?>?dm!"#n d$珠?#?d#%&_ n$* 'Cg? ?*()\&$n'*$+ܲ٠?D@y=t5?*I,-'n+;'.Ύ1?۫`~G?;1/017+n.%+2$)?a/?%34 .n2.568 jv8?`꯹?672n528}?n ?9: $5n8E5;_M?q+?E<=A8n;8>z;Bd遣?,[v?GCD*>nBA>pR?ay?AEFGBnMBHZ?jy?HIJJ^qI?0D?IUKLMNHnJOHP۳`?Y*?OQRJnPJSa'ž\?X?TUVPnSWPX|{?<3R׸9?WYZG[SnX[S\dvJt?Fg?[]^WXn\`X_nK?%*!?``ab\\n_N\c8C#?^Z{n~{*PsVM;?㲅?{~n~[b5?q*-l? n:uj?hǸ?Uen;GZ?600?QenylR?MZ7?yunDm?nA?n 氋?i,?sn+(U8?OB?+&Ln$5?'?$ nK>?K{Fn ]?vԑO?Cn +j7kD??s{%?jen 5 b?}JV{?n @}N4?x?n ^N?է?_nvw?$ ?#2n1"?h/?{nR¦?0?Gnnzߠ?{Խ\?zunoSgG? Lk?o9n$k?4[ ?ans;?.6?i #nG?_0C?K*nx30?;Wz?5| +nhn?7iw?'nCd?u?QwMn'zKX?uB?wYn +&?V,X?nVE$ `?7?{nG\+U?z"d?GsBn1_=?_Fj?1/;nM).*W?Gl&=?MSIni$86d?54?ien L Z?nn?L+Hn!GS ?  ?GAWn"1?(J??yn#*V^?qS?En$b+ij? ?En%<OF0?a4?<57n&:[?d!f??n'JK?4 ?JwFn( {a?GH? n) [%#?+Ұ+? + n *  ėX?k%8? b n +s (i?PZ?s n, e1?4eY?e n-Wv`y?")?Yin.3=m4?ΣQc7?jn//;? 4v9?A n0!]1?n3(?"#n!1$%=L?p@??$&'!n%2!(xB?;D*c?)*%n(3b%+q\?^d?b,- `(n+4.(/h??.01+n/5+2S ?ui?34/n26/5=.?9lcT?67z2n5728T:t?dj?9: i5n885;-t/?4i?<=$8n;9 +8>2?̚|? +7?@;n>:w;AWq?!C?wOBCo>nA;>Did.?c܂n?YEFNAnD<AGJP?7|?1HIJ|DnG=cDK@0Ϝ?ڰ?cLM_GnK>JGNҶp?W_Es?J/OPQKnN?KRz?tXg?ST%NnR@NUS?v\?VW$RnUARX+?c}hv?YZUnXB0U[mv?fxto?0c\],Xn[CQX^sC$?dti~?Q-_`aJ[n^D[b?q8??ѝ=[?cd^nbE^eJ?3J?-fg1bneFbhu}?йvc?_ijmenhGuek +!?(*#?ulmqhnkHahnaȔ?+mw?a+opQknnIkq6W^$?D\?Ĥ!?)z{6aAnQz7o|{p}~+0*p`{a+{56}+}6{~-~(n{p-*np~Q7,n`+\?Ĥ!? A׬ _.?+vw?$ ?VCa^4?+nG?f=?a~..$?>n+'Ns8?#O?VC'?ln"+^N?է?⿅ ?`n+}?n ?1快7e?n+8b=?ޭ%?R#ܒѿ_3D??n+Z?jy?_xٿ{-8D?n§+۳`?Y*?V14y?n±+t? +ّ?ƄF{lv ?Dn+XǓ6?,￶:?dVp>ҿ?nX+8g#?<# ſ?̿wu^-?n+*V^?qS?&\2BS ?n=+W/9?_"?fX߿5*N?"n&1+X?1 +n;+g?h?H!?oAsW,D@~?pn+&I١?D߬?>?A!?W6?nnc+x30?;Wz?|p#6Y?6n@+ BCn¿+lV?kh?kuWv+?n›+8s?`F?hb뛿L:?n”+ėX?k%8?g׿XM?n-+åU?v1^?_ ]ۿ8_?-x/nI!0*. +1*2+$=c?x@? ˾?1 3n45.2 6.7+`+,?m?i, ѿj/C?68nž927 2:+/;? 4v9?n6gaz?B;n7: <7=+Ύ1?۫`~G?kY٣ǁ?<2>n:?@:=A:B+nK?%*!?/$Zbؿ/Ҭ?ACn_D=BE=F+o[??LO߸,V?EGn4HBFBI+-t/?4i?]!{Ͽ0~ +?Jn'KFILFM+ +v +U?~sM?LX"ӿVP?LNnOPIMIQ+g-?F=·?cݳ俔bsf?Rn—MQSMT+;G+?*C:? 9z'zqϤ\?SUnHQTVQW+׃?-w?=ÿ:?V^XnjY+TWTZ+q\?^d?.;+ؿ#,h?[naAWZ\W]+ +!?(*#?S8)iܿ$!`?\^nt_`Z]aZb++mzn?',?Ǫ`ſd{ +/?ahcn¼de]bH]f+S ?ui?@8!naVE?HgntESbfhbi+ޓM?ȸ?b .Aпhm?hjn*9fikfl+g@;5~?*J? ڿ2?kmnnopilqir+e1?4eY?Aeh⿼X0?qfsnt)lrlu+@0Ϝ?ڰ?yn9޿Y? vnbwruxry+\@>?Ď?ev$^! ?xBzn£{uy|u}+T:t?dj?a'?|~ny}y+C?Q?+9#Mz?Tn‹} }+a'ž\?X?Fտ2c4?nˆ!+؏mL?'0J?!uտ!!?nx"+w]???d5_ǿxGv?pnE #+JP?7|?7&@"B_j?2n$+m71`)?m?Sb̿tf4?ny%+?j`:? 2ʿM?~n7>+Cg? ?Yؿ5?n)D?+'zKX?uB?݀صd5?xn@+R¦?0?byJ.pxt:?HnA+Wv`y?")?S,R¿^?ZnlYB+(i?PZ?Foݿ^_[?n—C&+dvJt?Fg?EN?vԿrR?&nh"DY+ ?PFΗ?_n¿$U?Y\nVE_+M%_h,?؇?փ3ܿm}?_nm\F+sn#,9=\9?++?c}hv?W`oֿK,?@n =?]D=A+j +%?H?ȡ7eؿ^?DBn)A?A^?C+Dm?nA?[¤9q?Dn4AC_)AE+ؗ ?]? r4?)hFnqCE`GCH+z>??ʿxmS?|Sn0PRePT+{a?GH?(+/MӖp,?Un: |RTf<RV+ҴHo ?X&?.qܿ슊;?< WnQ`XTVgTY+UZg?MS +?X㿙jG?vZnVYh{V[+]?vԑO? D>4 ?{D\nxY[iY]+7Fz?Dd?i׿ud?^n_[]jt[`++]?|2?⿯#?Qޒۿ? +mn]nj,plj +[b5?q*-l?4*( hd#>?lon3,Qo7lpkqr: slt+qn:luQq7vow:tx+uyz+M?M=m~?[KĻ-'y?y@{u+[%?{Ϊap?l"s࿋nEr?zu|+ٍy?R3fM? N~߿c:k?&}n~z|z+ne ? ;]?̈́/f9-?\n–|%|+S ?  ?57Կd?%nZJ",+/8?(L9V?g82Lj?pn~k ++lҋ?[2Qk?շ9Jeܯ?XnX+/G?@}Q?:_ -ݿl-z?XnŒ<i+OF0?a4? 'c?i6n—@f+'d?ҹp5?GQԿ5>?nU+<Г?#2Rx?L3؝RӖZ?nE+ t?gh?}8ٿ0s?nš+JOD?Iz?_mvE?@n +d遣?,[v?Q# U8y?Hn-+ĥ&V?n?K/ >ʊ?,ng+8Cj?~?lſx5?ejn±a+s6?,\z?ݘՇ4ۿ?K!0߿E?*n~ +Cd?u? +[PQΉy? Rn+$86d?54??ߐ$忄=?nh|+@}N4?x?74Ƌ7ֿ$?nZ+SgG? Lk?x(?'D?:nnf+\64p??۱FҿB>?nO+tPv?_ag?2=dž㿥Z?tnO+rZm?'ێN?LKwҿP,+?On¢L+ +&?V,X?6ֿO?n0+'G?J0~?O;MɿY?0zn -+lR?MZ7?LU*z୔?nx+mv?fxto?'^ĿH!?dn/dP+0(?v"z?;)[ӿҊ[?Pn@LG+7kD??s{%?RQ;ط?n2+Ҷp?W_Es?w %5 y?0nIJ+pR?ay?ӿvM"n?JnG%+(U8?OB?hb>ٿDg?n8+5 b?}JV{?Hz޿#?8nw+ihYT? ?>Tx:忖8?n§+:uj?hǸ?}.5f_ ?Vnd+đ r?L;?o9ſI$?dfn?a+Wd3?!?v-z˿!>.A?n7+~c=84?f|?M SٿX7P?n­+3ݑ?A`Lc?Kڿ4 8?n¬o+#J?Z،?o!׺ῗF?NnC+_P:b?^H? NFƿA9x{?nnN+:[?d!f?c] Ό?t?@nx+\B?t?.]nV濇nM?n+5z?,oC?X)Ŀi,{?bn]+22+3=m4?ΣQc7?fMgP ?2ns/2+nʹ?nʹ?;f;f2+).*W?Gl&=?qq?TnL +C.?5'9?hU33.K?nS+HA!?Rf<3?A{?n+n?Vt]ټ? nk1+DD?.$%ew?Hտ, ?n¨+ 氋?i,?}apݿ<UM?nn+TA?wO?|ۿ F?nn -+??Nҿ;?n[+/?U{G|?=ݿjv?nrX+ =.?9lcT?'?zq˿΃:? n~ -+Eb2? ?/_ ? - +ܲ٠?F@y=t5?6A%R?J n ++??Nҿ;?n[+1?Q{G|?=ݿjv?nrX+=.?9lcT?!?zq˿΃:? n~ ++Ab2? ?/_ ? + +ܲ٠?D@y=t5?6A%R?J n  4 -+ԫu7?&&?+͋h?4 n1  +1?(J??B0G㿁q(#?znƒQ7+++--+-WY+Y-WT+T-WcX+XW-c"+-"czd+dc-z"#+#"-z)+z- q+ )-t+q- +t-! + -"!+!-#"+"-F$#+#-Fe%$+$-eFLN&%+%NF-LeI'&+&Ie-LM( '+'ML-C)(+( -Cvw*)+)w-vCmo+*+*oC-mvk,+++kv-mn-,+,nm-.-+--/{.+.-0x/+/{-10+0x-21+1-n32+2-n43+3-no5f4+4on-6i5+5f-77<o8nQ7z798:;qd ?Վ?:<8g-?I=·?;8=N ?iM-?>_.;n=;?,pf?8^19?k@@=n?R=AҴHo ?Y&?R B;qN?nA?Cvfv|}Sz???Q7y(~Q|?f(yS}???Q(7|Q@f|S???Q 7(QAfS???8n Q!7QBfS???Q"7&QCf&S???Q&#7QDfS???Q$7&QEfS???Q%7;QFf;S???Q;&7QGfS???Q'7;QHfS???Q(7QIfS???Q)7 QJf S???Q *7QKfS???Q+7 eQLfeS???Qe,7QMfS???Q-7eQNfS???Q.7QOfS???Q/7QPfS???Q07QQfS???Q17QRfS???Q27QSfYS???Q37YXQTfVXS???QX47VQUf+S???+`nV Q57+XQVfS???Q67QWfS???Q77QXfdS???Q87dcQYfacS???Qc97aQZfeS???Q:7ecQ[fS???Q;7Q\fS???Q<7Q]fS???Q=7cQ^f cS???Qc>7 Q_fS???Q?7cQ`f!S???Q@7!/Qaf-/S???Q/A7-Qbf0S???QB70/SQcfSS???QSC7QdfS???QD7SQefS???nQE7QffS???QF7 Qgf S???Q G7QhfS???QH7 QifS???QI75Qjf5S???Q5J7Qkf S???QK75 -Qlf  S ???QL7 Q mfS ???QM7 JQnfJ S???QJN7QofKS???QO7KJQpfS???QP7QqfS???QQ7QrfS???nh{QR7j Qsfhj!"S???QjS7h#Q!tf9$%S"???QT79!j8&Q$uf68!'(S%???Q8U76$)Q'vf$*+S(???QV7'8,Q*wf'-.S+???QW7*/Q-xf*01S.???QX7-2Q0yf-34S1???QY705Q3zf067S4???QZ738Q6{f39:S7???Q[76;Q9|f6<=S:???Q\79>Q<}fO9?@S=???Q]7O<NAQ?~fLN<BCS@???QN^7L?DQBfP?EFSC???Q_7PBNIGQEfGIBHISF???QI`7GEJQHfJEKLSI???Qa7JHIMQKf%HNOSL???Qb7%K$PQNf"$KQRSO???Q$c7"NSQQf&NTUSR???Qd7&Q$VQTfQWXSU???Qe7TYQWfTZ[SX???Qf7W\QZfW]^S[???Qg7ZN_Q]fNZ`aS^???QNh7]bQ`f]cdSa???Qi7`NeQcf`fgSd???Qj7chQffcijSg???Qk7fkQifflmSj???Ql7i@nQlf@iopSm???Q@m7lqQoflrsSp???Qn7o@tQrfouvSs???Qo7r^wQuf^rxySv???Q^p7uzQxfu{|Sy???Qq7x^ }Q{f x~S|???Q r7{Q~f{S???Qs7~ Qf~S???Qt7[Qf[S???Q[u7CQfACS???QCv7A[BQfDBS???QBw7DCQfS???Qx7BQfS???Qy7QfS???Qz7QfS???Q{7QfS???Q|7QfS???Q}7QfS???Q~7,Qfo,S???Q,7omQfkmS???Qm7k,QfpS???Q7pmQf -S???Q7 - Qf  S???Q 7 QfS???Q7 mQf -mS???Qm7 -QfnS???Q7nmQfS???Q7Qf_S???Q7_^Qf\^S???Q^7\:Qf`:S???Q:7`^WQf<WS???QW7<:QfXS???Q7XWQfS???Q7QfS???Q7QfS???Q7QfS???Q7QfS???Q7QfS???n«8Q7Qf8S???Q787Qfw7S???Q77wvQfvS???Qv77QfS???Q7vQfS???Q7}Qf}S???Q}7Qf~S???Q7~}QfS???Q7QfS???Q7QfS???.n?Q7Qf?S???Q7?>Qf<>S???Q>7< Qf@ - S???@4n<iyQ7@> Q -fi S ???Q7i ++ҫu7?(&?*͋h?4 n1  +1?(J??E0Gq(#?znƒQ7+++--+-WY+Y-WT+T-WcX+XW-c"+-"czd+dc-z"#+#"-z)+z- q+ )-t+q- +t-! + -"!+!-#"+"-F$#+#-Fe%$+$-eFLN&%+%NF-LeI'&+&Ie-LM( '+'ML-C)(+( -Cvw*)+)w-vCmo+*+*oC-mvk,+++kv-mn-,+,nm-.-+--/{.+.-0x/+/{-10+0x-21+1-n32+2-n43+3-no5f4+4on-6i5+5f-77<o8nQ7z798:;qd ? +Վ?:<8g-?F=·?;8=śN ?iM-?>_.;n=;?(pf?8^19?k@@=n?R=AҴHo ?X&?R B;qN?nA?Csfv|}Sz???Q7y(~Q|?f(yS}???Q(7|Q@f|S???Q 7(QAfS???8n Q!7QBfS???Q"7&QCf&S???Q&#7QDfS???Q$7&QEfS???Q%7;QFf;S???Q;&7QGfS???Q'7;QHfS???Q(7QIfS???Q)7 QJf S???Q *7QKfS???Q+7 eQLfeS???Qe,7QMfS???Q-7eQNfS???Q.7QOfS???Q/7QPfS???Q07QQfS???Q17QRfS???Q27QSfYS???Q37YXQTfVXS???QX47VQUf+S???+`nV Q57+XQVfS???Q67QWfS???Q77QXfdS???Q87dcQYfacS???Qc97aQZfeS???Q:7ecQ[fS???Q;7Q\fS???Q<7Q]fS???Q=7cQ^f cS???Qc>7 Q_fS???Q?7cQ`f!S???Q@7!/Qaf-/S???Q/A7-Qbf0S???QB70/SQcfSS???QSC7QdfS???QD7SQefS???nQE7QffS???QF7 Qgf S???Q G7QhfS???QH7 QifS???QI75Qjf5S???Q5J7Qkf S???QK75 +Qlf  S ???QL7 Q mfS ???QM7 JQnfJ S???QJN7QofKS???QO7KJQpfS???QP7QqfS???QQ7QrfS???nh{QR7j Qsfhj!"S???QjS7h#Q!tf9$%S"???QT79!j8&Q$uf68!'(S%???Q8U76$)Q'vf$*+S(???QV7'8,Q*wf'-.S+???QW7*/Q-xf*01S.???QX7-2Q0yf-34S1???QY705Q3zf067S4???QZ738Q6{f39:S7???Q[76;Q9|f6<=S:???Q\79>Q<}fO9?@S=???Q]7O<NAQ?~fLN<BCS@???QN^7L?DQBfP?EFSC???Q_7PBNIGQEfGIBHISF???QI`7GEJQHfJEKLSI???Qa7JHIMQKf%HNOSL???Qb7%K$PQNf"$KQRSO???Q$c7"NSQQf&NTUSR???Qd7&Q$VQTfQWXSU???Qe7TYQWfTZ[SX???Qf7W\QZfW]^S[???Qg7ZN_Q]fNZ`aS^???QNh7]bQ`f]cdSa???Qi7`NeQcf`fgSd???Qj7chQffcijSg???Qk7fkQifflmSj???Ql7i@nQlf@iopSm???Q@m7lqQoflrsSp???Qn7o@tQrfouvSs???Qo7r^wQuf^rxySv???Q^p7uzQxfu{|Sy???Qq7x^ }Q{f x~S|???Q r7{Q~f{S???Qs7~ Qf~S???Qt7[Qf[S???Q[u7CQfACS???QCv7A[BQfDBS???QBw7DCQfS???Qx7BQfS???Qy7QfS???Qz7QfS???Q{7QfS???Q|7QfS???Q}7QfS???Q~7,Qfo,S???Q,7omQfkmS???Qm7k,QfpS???Q7pmQf +S???Q7 + Qf  S???Q 7 QfS???Q7 mQf +mS???Qm7 +QfnS???Q7nmQfS???Q7Qf_S???Q7_^Qf\^S???Q^7\:Qf`:S???Q:7`^WQf<WS???QW7<:QfXS???Q7XWQfS???Q7QfS???Q7QfS???Q7QfS???Q7QfS???Q7QfS???n«8Q7Qf8S???Q787Qfw7S???Q77wvQfvS???Qv77QfS???Q7vQfS???Q7}Qf}S???Q}7Qf~S???Q7~}QfS???Q7QfS???Q7QfS???.n?Q7Qf?S???Q7?>Qf<>S???Q>7< Qf@ + S???@4n<iyQ7@> Q +fi S ???Q7i hQ ffh -S???Qh7f Qf S???Q7hQfS???Q7QfS???Q7QfS???Q7zQfxz S???Qz7x\!Qf{\"#S ???Q\7{z$Q"f%&S#???Q7"\'Q%f"()S&???Q7%*Q(f%+,S)???Q7(L-Q+fL(./S,???QL7+0Q.f+12S/???Q7.L3Q1f.45S2???Q716Q4f 178S5???Q7 49Q7f4:;S8???Q77<Q:f7=>S;???Q7:?Q=f:@AS>???Q7=BQ@f=CDSA???Q7@EQCf@FGSD???Q7CHQFfCIJSG???Q7FKQIfFLMSJ???Q7INQLfIOPSM???Q7LaQQOftaLRSSP???Qa7tOsTQRfqsOUVSS???Qs7qRaFWQUf)FRXYSV???QF7)Us(ZQXf(U[\SY???Q(7XF]Q[fX^_S\???Q7[(`Q^f[abS_???Q7^cQaf^deSb???Q7afQdfaghSe???Q7diQgfdjkSh???Q7gZlQjfZgmnSk???QZ7joQmfjpSn???Q7mZqQfmrsSp???QrftuSs???Q7rQvQtfQrwxSu???QQ7tyQwftz{Sx???Q7wQ|Qzfw}~S{???Q7z*Q}f*zS~???Q*7}Qf}S???Q7*.Qf.S???Q.7QfS???Q7.QfS???Q7RQfRS???QR7QfS???Q7R Qf  S???Q 7 UQfUS???QU7 ~Qf|~S???Q~7|UQfS???Q7~QfS???Q7QfS???Q7Qf2S???Q721Qf/1S???Q17/kQf3kpS???Qk731oQpflovS???QvfqpS???QfvS???Q7q>Qf>S???Q>7Qf,S???Q7,>+Qf+S???Q+7QfS???Q7+QfS???Q7QfS???Q7QfS???Q7QfS???Q78Qf8S???Q873S???RMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMR|MRyMRvMRqMRoMRlMRiMRfMRcMR`~MR]}MRZ|MRW{MRTzMRQyMRNxMRKwMRHvMREuMRBtMR?sMR<rMR9qMR6pMR3oMR0nMR-mMR*lMR'kMR$jMR!iMRhMRgMRfMReMRdMRcMR bM:<@6+:07<+7@-6<i-0:;?+;:<-0g1+10?-g+-g+g-~+-)nQs7Qr7Qt7fRTQfu7RTQv71f/RTQ/w7;9R TQ9x77/R!TQy7<97R"TR#TQq7%RTQ%p7daRTQao7_L%RTQLn7caRTQm7LRTQl7RTQk7RTQj7RTQi7RTQh7sqRTQqg7RTQf7SPqRTQPe7NBRTQBd7RsPRTQsc7qlBRTQlb7usR TQa7lR TQ`7-\R T-Z nQ\_7ZR +S???Qh7f Qf S???Q7hQfS???Q7QfS???Q7QfS???Q7zQfxz S???Qz7x\!Qf{\"#S ???Q\7{z$Q"f%&S#???Q7"\'Q%f"()S&???Q7%*Q(f%+,S)???Q7(L-Q+fL(./S,???QL7+0Q.f+12S/???Q7.L3Q1f.45S2???Q716Q4f 178S5???Q7 49Q7f4:;S8???Q77<Q:f7=>S;???Q7:?Q=f:@AS>???Q7=BQ@f=CDSA???Q7@EQCf@FGSD???Q7CHQFfCIJSG???Q7FKQIfFLMSJ???Q7INQLfIOPSM???Q7LaQQOftaLRSSP???Qa7tOsTQRfqsOUVSS???Qs7qRaFWQUf)FRXYSV???QF7)Us(ZQXf(U[\SY???Q(7XF]Q[fX^_S\???Q7[(`Q^f[abS_???Q7^cQaf^deSb???Q7afQdfaghSe???Q7diQgfdjkSh???Q7gZlQjfZgmnSk???QZ7joQmfjpSn???Q7mZqQfmrsSp???QrftuSs???Q7rQvQtfQrwxSu???QQ7tyQwftz{Sx???Q7wQ|Qzfw}~S{???Q7z*Q}f*zS~???Q*7}Qf}S???Q7*.Qf.S???Q.7QfS???Q7.QfS???Q7RQfRS???QR7QfS???Q7R Qf  S???Q 7 UQfUS???QU7 ~Qf|~S???Q~7|UQfS???Q7~QfS???Q7QfS???Q7Qf2S???Q721Qf/1S???Q17/kQf3kpS???Qk731oQpflovS???QvfqpS???QfvS???Q7q>Qf>S???Q>7Qf,S???Q7,>+Qf+S???Q+7QfS???Q7+QfS???Q7QfS???Q7QfS???Q7QfS???Q78Qf8S???Q873S???RMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMRMR|MRyMRvMRqMRoMRlMRiMRfMRcMR`~MR]}MRZ|MRW{MRTzMRQyMRNxMRKwMRHvMREuMRBtMR?sMR<rMR9qMR6pMR3oMR0nMR-mMR*lMR'kMR$jMR!iMRhMRgMRfMReMRdMRcMR bM:<@6+:07<+7@-6<i-0:;?+;:<-0g1+10?-g+-g+g-~+-)nQs7Qr7Qt7fRTQfu7RTQv71f/RTQ/w7;9R TQ9x77/R!TQy7<97R"TR#TQq7%RTQ%p7daRTQao7_L%RTQLn7caRTQm7LRTQl7RTQk7RTQj7RTQi7RTQh7sqRTQqg7RTQf7SPqRTQPe7NBRTQBd7RsPRTQsc7qlBRTQlb7usR TQa7lR TQ`7-\R T-Z nQ\_7ZR TQ^7^\R TQ]7RTQ\7}RTQ}[7{RTQZ7@}RT@n{>nQY7RTRTn~@k+~n{p+no+nk-@~p-o-~ +{ - + -]^+-]Z @@ -120290,17 +98571,17 @@ TQ^7^ -]- n + Zn-m  + --mtu _ + m_-t;mq \ + ut\-;QtR ` + q;`-Q;N < + RQ<-rQS X + NX-r  + Sr-rs  + -  + s-  + - -  + -  + -M 8 + 8-Mbc w + Mw-b&M_  + cb-&bd  + _&-&  + d- + -~-R aMR`MR_M+J?3J?&?+2?͚|?{D봿; -G?{+68 jv8?`꯹?VC˿/U^G?{y+ ?KV?BhVsп켼?+ ~?RQ?FYE޿1kL1?R^MR]MR\MR[MRZMRYMRXMRWMRVMRUMRTMRSMRRMRQMRPMROMRNMRMMRLMRKMRJMRIMRHMRGMRFMREMRDMRCMRBMRAMR@MR?MR>MR=MRMR;MR8MR5MR2MR/MR,MR)MR&MR#MR M*  +* h +  + - *h-W  + -W' K + -'W=$  + $WK-='  + '-=#  + =-#  + -#  + #-y{  + {-yv  + v-y7z  + zy-7!  + -77" ! +! 7-7# " +" -7$ # +# 7-IK% 0$ +$ K-IF& -% +% F0-IJ' !& +& JI--( ' +' !-EG) ( +( G-ENB* ) +) B -NEF+ * +* FE-N, + ++ N-- e, +, -?@. a- +- @e-?/1/ d. +. 1a-/?],0 / +/ ,?d-]/01 0 +0 0/-]j2 +1 +1 ]-j3 V2 +2 +-jlm4 Y3 +3 mjV-li5 4 +4 iY-l6 5 +5 l-7 6 +6 -h8 7 +7 -he9 8 +8 e-h: 9 +9 h-; : +: -< ; +; --= < +< --D*> = += *-D-? > +> --D@ ? +? D- A @ +@ - B A +A - UC B +B  -U}D C +C -}U  E D +D  U- }@F E +E }-@  + -  + -  + -M 8 + 8-Mbc w + Mw-b&M_  + cb-&bd  + _&-&  + d- + -~-R aMR`MR_M+J?3J?|&?+2?̚|?}D봿8 +G?{+68 jv8?`꯹?XC˿3U^G?{y+ ?KV?BhVsп켼?+ ~?RQ?IYE޿/kL1?R^MR]MR\MR[MRZMRYMRXMRWMRVMRUMRTMRSMRRMRQMRPMROMRNMRMMRLMRKMRJMRIMRHMRGMRFMREMRDMRCMRBMRAMR@MR?MR>MR=MRMR;MR8MR5MR2MR/MR,MR)MR&MR#MR M*  +* h +  + - *h-W  + -W' K + -'W=$  + $WK-='  + '-=#  + =-#  + -#  + #-y{  + {-yv  + v-y7z  + zy-7!  + -77" ! +! 7-7# " +" -7$ # +# 7-IK% 0$ +$ K-IF& -% +% F0-IJ' !& +& JI--( ' +' !-EG) ( +( G-ENB* ) +) B -NEF+ * +* FE-N, + ++ N-- e, +, -?@. a- +- @e-?/1/ d. +. 1a-/?],0 / +/ ,?d-]/01 0 +0 0/-]j2 +1 +1 ]-j3 V2 +2 +-jlm4 Y3 +3 mjV-li5 4 +4 iY-l6 5 +5 l-7 6 +6 -h8 7 +7 -he9 8 +8 e-h: 9 +9 h-; : +: -< ; +; --= < +< --D*> = += *-D-? > +> --D@ ? +? D- A @ +@ - B A +A - UC B +B  -U}D C +C -}U  E D +D  U- }@F E +E }-@  G F +F  - -@H G +G @-I|I H +H |-IPJ I +I -PI`JK J +J JI-`PpQK +K QP-a`-* 9L + 9-pqL 6M +L 6-pM N +M qp-QpN O +N -Q[O P +O Q-[XQRP Q +P [-X[Q R +Q RX-XR S +R -S T +S -T OU +T O-@U LV +U L-@FV PW +V @P-F@AW GX +W FG-ZFGX JY +X AJ-Z^WY %Z +Y GZ%-^hZ[Z "[ +Z W^"-h^[ &\ +[ [h&-Uh\ ] +\ -U] ^ +] U-OUV^ _ +^ -Oxy_ ` +Va yb n_ VO-Qa A7VTc d yc OV<nb V<aWT?Jo~?<yb :ۏmL?'0J?Qc B7ya we QwC7c f Re SQD7wg Rf SQE7Yh Rg SQYF7 + -@H G +G @-I|I H +H |-IPJ I +I -PI`JK J +J JI-`PpQK +K QP-a`-* 9L + 9-pqL 6M +L 6-pM N +M qp-QpN O +N -Q[O P +O Q-[XQRP Q +P [-X[Q R +Q RX-XR S +R -S T +S -T OU +T O-@U LV +U L-@FV PW +V @P-F@AW GX +W FG-ZFGX JY +X AJ-Z^WY %Z +Y GZ%-^hZ[Z "[ +Z W^"-h^[ &\ +[ [h&-Uh\ ] +\ -U] ^ +] U-OUV^ _ +^ -Oxy_ ` +Va yb n_ VO-Qa A7VTc d yc OV<nb V<cWT?No~?<yb :؏mL?'0J?Qc B7ya we QwC7c f Re SQD7wg Rf SQE7Yh Rg SQYF7 i Rh SQ G7Yj Ri SQH7 k Rj SQI7>l Rk SQ>J70m Rl SQ0K7.>Dn Rm SQDL70o Rn SQM7 D,p Ro SQ,N7b`q Rp SQ`O7`,^r Rq SQ^P7\`(s Rr SQ(Q7*^(t Rs SQ(R7&(u Rt SQS7+(v Ru SQT7LJw Rv SQJU7Hx Rw SQV7MJy Rx SRy TQT@7a z Rd SQ?7gT{ Rz SQg>7]| R{ SQ]=7[Yg} R| SQY<7W]~ R} SQ;7GEY R~ SQE:7A? R SQ?97E R SQ87? R SQ77 R SQ67 R SQ57W R SQW47Z R SQZ37RPW R SQP27Z R SQ17oP R SQo07 R SQ/7qo R SQ.7) R SQ)-7 R SQ,7) R SQ+7 R SQ*7V R SQV)7& R SQ&(7$<V R SQ<'7& R SQ&7"< R SQ"%7 R SQ$7F" R SQF#7{x R SQx"7vF R SQ!7z6x R SQ6 7 R SQ766 R SQ67 R SQ76 R SQ7KH R SQH7F R SQ7JH R SQ7 R SQ7GD R SQD7BM R SQM7FD R SQ7@M R SQ@7 R SQ7@>@ R SQ>71. R SQ.7,\> R SQ\70. R SQ7i\ R SQi7 R SQ 7mki R SQk 7i R SQ 7k R SQ 7 R SQ 7g R SQg7e R SQ7g R SQ7 R SQ7 R SQ7, R SQ,7*C R SQC7, R SQ7C R SQ7 R SQ7 R SQ7T R SQT7| R SQ|7 T R SQ7?| R SQ?7  R SQ7~? R SQ~7|H R SQH7O~ R SQO7J_H R SQ_7QoO R SQo7az_ R SR SxO`  +` yx-x  + -Z  + -Z   + Z- Z  +  -   + -_  + -_1  + _-1 _.  + 1- 1  + . --    + --ab  +  --a_-`  + ba-_)a\ A + `_A-))_* D + \)D-))&  + *)-)+  + &-KL  + +-KH  + LK-KM + H-M-RMRMRMRMRMR MR MR MR MR MR -MR MRMRMRMRMRMRMRMRMRMRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLR~LR{LRxLRuLOpSDL/TYSA_COLOURSm???Qg6f5$ b Q371  $ RjLQ 5f13 g Q 74 D3 R LQ 4f4  QD7   R LQ 3fD Q7 D R LQ 2f Q7 U R LQ 1f QU7S g R LQ 0fSU Qg7H GU R LQ /fHg QG7E g R LQ .fEG Q 7 G R LQ -f Q 7  R LQ ,f Q 7  R LQ +f Q +MR MRMRMRMRMRMRMRMRMRMRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLRLR~LR{LRxLRuLOpSDL/TYSA_COLOURSm???Qg6f5$ b Q371  $ RjLQ 5f13 g Q 74 D3 R LQ 4f4  QD7   R LQ 3fD Q7 D R LQ 2f Q7 U R LQ 1f QU7S g R LQ 0fSU Qg7H GU R LQ /fHg QG7E g R LQ .fEG Q 7 G R LQ -f Q 7  R LQ ,f Q 7  R LQ +f Q 71 / R LQ *f1 Q/ 7   R OZQ )f/ @@ -120361,8 +98642,8 @@ hS SDL/TYSA_COLOUR_2O AttGS_PS_LayerO  SDL/TYSA_NAMES -???S -???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???Si???OeAEDT_EntityID_V12-Q7H +???S +???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???S ???Si???OeAEDT_EntityID_V12-Q7H Q7H RISQ74 R @@ -120592,7 +98873,7 @@ C (#T(vacuumO| AEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0008821.x_b +Design_89.setup/NativeGeometryFiles/0008821.x_b BIN000000004471 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120608,22 +98889,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0008821.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0008821.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0008821.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0008821.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ0@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ0@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q0&'(F)) * *2 -*+?? +,+? -.M~?V~?  V/n0+1 234.nQ2+567839+0-4 79-:n.: O:4.ffffff?Q7,542;<9=>043+?+-;>4 nQ;-5-7@>=09-?AB+=0*0=9>B+?4>A-A 6n>+,B-0-Q6*5ACD2E+ -Dn9A ,A1 +??ffffff?1,+ffffff?ffffff?;f;fQD)5+F/6GP5HI(#QF J+DKCLQ/(5KMDNRGP%QKJ/OFPQM'5*OQ/RRNT%*Mn= -+ QOJ*MKSQQ&5TUMVRRy"QT$WXQYQU.HQ'ZRVu"PH[(#Q'/U\RZT\RegionO[AEDT_BODYFlagGroupColor_V1PW]^QQX#_`TaTYRegionP_b(#Q`cXdRaPcJehSd???OeSDL/TYSA_COLOUR_2ObAttGS_PS_LayerO ^SDL/TYSA_NAMEPJfASS???OfSDL/TYSA_COLOURSP???QC!JA6FgSL???Sg???OIAEDT_EntityID_V1REv"R@U%R<w"R8V%J)`CXT;U'P&5h(#T(vacuumOhAEDT_MaterialName_V1$end 'x_b' +*+?? +,+? -.Q~?S~?  V/n0+1 234.nQ2+567839+0-4 79-:n.: O:4.gfffff?Q7,542;<9=>043+?+-;>4 nQ;-5-7@>=09-?AB+=0*0=9>B+?4>A-A 6n>+,B-0-Q6*5ACD2E+ +Dn9A ,A1 +??gfffff?1,+gfffff?ifffff?;f;fQD)5+F/6GP5HI(#QF J+DKCLQ/(5KMDNRGP%QKJ/OFPQM'5*OQ/RRNT%*Mn= ++ QOJ*MKSQQ&5TUMVRRy"QT$WXQYQU.HQ'ZRVu"PH[(#Q'/U\RZT\RegionO[AEDT_BODYFlagGroupColor_V1PW]^QQX#_`TaTYRegionP_b(#Q`cXdRaPcJehSd???OeSDL/TYSA_COLOUR_2ObAttGS_PS_LayerO ^SDL/TYSA_NAMEPJfASS???OfSDL/TYSA_COLOURSP???QC!JA6FgSL???Sg???OIAEDT_EntityID_V1REv"R@U%R<w"R8V%J)`CXT;U'P&5h(#T(vacuumOhAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0009574.x_b +Design_89.setup/NativeGeometryFiles/0009574.x_b BIN000000004785 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120639,22 +98920,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009574.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009574.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009574.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009574.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+(J?_Ljh??K*u?zmB? +,+9y:B?K"3s?zmBB*u? -9y:B?K"3s?  V.n/+0 123 nQ13456728+/-3 689:nQ64431;<8=>/32+?+9 ;>3@-n:3A-0:?յp?A@:lҏ!?:ͥ?-9: ^}?jא?@BC9AnQB64@;DC=/>@EFG+=/*/=8CG+>=C89?HE+E9CF-F5nCH,G@/-Q524FIJ1KH Jn>+FL,F0 +^}?jא?zmB?B*u0L,+lҏ!?:ͥ?B*u?zmB?LH0+0:?յp?B*uᅪzmBQJ14HMN5O+ +*+(J?_Ljh??G*u?zmB? +,+9y:B?E"3s?zmBF*u? -9y:B?E"3s?  V.n/+0 123 nQ13456728+/-3 689:nQ64431;<8=>/32+?+9 ;>3@-n:3A-0:?ҵp?A@:lҏ!?:ͥ?-9: ^}?jא?@BC9AnQB64@;DC=/>@EFG+=/*/=8CG+>=C89?HE+E9CF-F5nCH,G@/-Q524FIJ1KH Jn>+FL,F0 +^}?jא?zmB?F*u0L,+lҏ!?:ͥ?F*u?zmB?LH0+0:?ҵp?F*uᅨzmBQJ14HMN5O+ Nn8H QN04+P.JQP4RS(#QP&T+NUMVQ./4UWNXRQh%QU%T.YPZQW.4*Y[.\RXg%*Wn= -+ QY$T*WU]Q[-4^_W`R\p%Q^+ab[cQ_7R['dR`f%PRe(#Q'8_fRdTfCoilOeAEDT_BODYFlagGroupColor_V1PaghQQb*ij^kTcCoilPil(#Qj#mbnRkPmTohSn???OoSDL/TYSA_COLOUR_2OlAttGS_PS_LayerO hSDL/TYSA_NAMEPTpAS]???OpSDL/TYSA_COLOURSZ???QM'THJPIqSV???QI(TF5MrSq???Sr???OSAEDT_EntityID_V1ROi%RKj%?3>H-Q;5496BsRDk%Rsn%R<m%R7l%J)jIb^B_'P&4t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' ++ QY$T*WU]Q[-4^_W`R\p%Q^+ab[cQ_7R['dR`f%PRe(#Q'8_fRdTfCoilOeAEDT_BODYFlagGroupColor_V1PaghQQb*ij^kTcCoilPil(#Qj#mbnRkPmTohSn???OoSDL/TYSA_COLOUR_2OlAttGS_PS_LayerO hSDL/TYSA_NAMEPTpAS]???OpSDL/TYSA_COLOURSZ???QM'THJPIqSV???QI(TF5MrSq???Sr???OSAEDT_EntityID_V1ROi%RKj%?3>H-Q;5496BsRDk%Rsn%R<m%R7l%J)jIb^B_'P&4t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0009588.x_b +Design_89.setup/NativeGeometryFiles/0009588.x_b BIN000000004789 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120670,22 +98951,27 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009588.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009588.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009588.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009588.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+4?_jx??\ϗb?i?=@0A;BCD+- >A3; nQ>54-6<EA@=8-FGB+@0*8@A032+F+F3AG-G HnA+CIB-=C-C5n=GJQ524CKH1LJCI+x?i?=@0A;BCD+- >A3; nQ>54-6<EA@=8-FGB+@0*8@A032+F+F3AG-G HnA+CIB-=C-C5n=GJQ524CKH1LJCI+x?isRE}%Rs|%R?z%R7{%J)lKd`<a'P&4t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' ++ Q[$O*YW_Q]-4`aYbR^u%Q`+cd]eQa7M]'fRbt%PMg(#Q'8ahRfThCoil_1OgAEDT_BODYFlagGroupColor_V1PcijQQd*kl`mTeCoil_1Pkn(#Ql#odpRmPoOqhSp???OqSDL/TYSA_COLOUR_2OnAttGS_PS_LayerO jSDL/TYSA_NAMEPOrAS_???OrSDL/TYSA_COLOURS\???SX???SU???SQ???ONAEDT_EntityID_V10@8=D+D;0-Q64431>sRE}%Rs|%R?z%R7{%J)lKd`<a'P&4t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0009599.x_b +Design_89.setup/NativeGeometryFiles/0009599.x_b BIN000000004789 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120701,24 +98987,24 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009599.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009599.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009599.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009599.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+ `I?Ӊ")??8j@M?Fv? +,+*I?޶ ?8j@MFvԿ - -Ep?VTO?  V.n/01 234 nQ235678390/-4 79:;nQ74542<=9>?/430@+: <?4A-n;4B*I?޶ ?BA;-ǔA?\1?ACD:Bn-:B ?0P4?QC65A<ED>/?AFGH+>/*/>9DH+?>D9:@+F+F:DG-G6nD+,HA/-Q625GIJ2K+ Jn?0G ,G1 +?0P4?Fv?8j@M1L,+ǔA?\1?8j@M?Fv?L01+ -Ep?VTO?FvԿ8j@M?0 -Mn9+LQM050N.JOP5PQ(#QN&R0MSTUQ./5SVMWQJ15+TM6XRO%QT'R+JNIYRX%PRZAQI(RG6T[SY???S[???OZSDL/TYSA_COLOURQS%R.\N]QV.5*\^._RW%*Vn> -+ Q\$R*VS`Q^-5abVcR_%Qa+de^fQb7P^'gRc%PPh(#Q'8biRgTiCoil_2OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfCoil_2Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMES`???S]???SU???OQAEDT_EntityID_V1RK%@4?+-Q<55:7CsRE%Rs%R=%R8%J)mIeaCb'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' +*+ `I?Ӊ")??8j@M?Hv? +,+*I?޶ ?8j@MIvԿ - +Ep?VTO?  V.n/01 234 nQ235678390/-4 79:;nQ74542<=9>?/430@+: <?4A-n;4B*I?޶ ?BA;-ʔA? \1?ACD:Bn-:B ?0P4?QC65A<ED>/?AFGH+>/*/>9DH+?>D9:@+F+F:DG-G6nD+,HA/-Q625GIJ2K+ Jn?0G ,G1 +?0P4?Iv?8j@M1L,+ʔA? \1?8j@M?Iv?L01+ +Ep?VTO?IvԿ8j@M?0 +Mn9+LQM050N.JOP5PQ(#QN&R0MSTUQ./5SVMWQJ15+TM6XRO%QT'R+JNIYRX%PRZAQI(RG6T[SY???S[???OZSDL/TYSA_COLOURQS%R.\N]QV.5*\^._RW%*Vn> ++ Q\$R*VS`Q^-5abVcR_%Qa+de^fQb7P^'gRc%PPh(#Q'8biRgTiCoil_2OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfCoil_2Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMES`???S]???SU???OQAEDT_EntityID_V1RK%@4?+-Q<55:7CsRE%Rs%R=%R8%J)mIeaCb'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0009610.x_b +Design_89.setup/NativeGeometryFiles/0009610.x_b BIN000000004789 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120734,22 +99020,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009610.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009610.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009610.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009610.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+< ?[??бv.?f8uN? +,+M+ ?TcL?f8uN?бv. -M5?.Sµ?  V.n/01 234 nQ235678390/-4 79:;nQ74542<=9>?/430@+: <?4ABn;4B?n?B:;-M+ ?TcL?-AB $MG?w?w ?ACD:-nQC65A<ED>/?AF+G+>/*/>9DG+?>D9:@HF+F:D+-+6nDH GA/-Q625+IJ2KH Jn?0+LQJ15HMN6O0 -Nn9H,LH1+?n?бv.f8uNܿ1L,+$MG?w?w ?бv.?f8uN?,01 +M5?.Sµ?f8uNܿбv.?QN050P.JQP5RS(#QP&T0NUMVQ./5UWNXRQ%QU%T.YPZQW.5*Y[.\RX%*Wn> -+ QY$T*WU]Q[-5^_W`R\%Q^+ab[cQ_7R['dR`%PRe(#Q'8_fRdTfCoil_3OeAEDT_BODYFlagGroupColor_V1PaghQQb*ij^kTcCoil_3Pil(#Qj#mbnRkPmTohSn???OoSDL/TYSA_COLOUR_2OlAttGS_PS_LayerO hSDL/TYSA_NAMEPTpAS]???OpSDL/TYSA_COLOURSZ???QM'THJPIqSV???QI(T+6MrSq???Sr???OSAEDT_EntityID_V1RO%RK%@4?H-Q<55:7CsRE%Rs%R=%R8%J)jIb^C_'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' +*+< ?[??бv.?f8uN? +,+M+ ?TcL?f8uN?бv. -M5?.Sµ?  V.n/01 234 nQ235678390/-4 79:;nQ74542<=9>?/430@+: <?4ABn;4B?n?B:;-M+ ?TcL?-AB !MG?w?w ?ACD:-nQC65A<ED>/?AF+G+>/*/>9DG+?>D9:@HF+F:D+-+6nDH GA/-Q625+IJ2KH Jn?0+LQJ15HMN6O0 +Nn9H,LH1+?n?бv.f8uNܿ1L,+!MG?w?w ?бv.?f8uN?,01 +M5?.Sµ?f8uNܿбv.?QN050P.JQP5RS(#QP&T0NUMVQ./5UWNXRQ%QU%T.YPZQW.5*Y[.\RX%*Wn> ++ QY$T*WU]Q[-5^_W`R\%Q^+ab[cQ_7R['dR`%PRe(#Q'8_fRdTfCoil_3OeAEDT_BODYFlagGroupColor_V1PaghQQb*ij^kTcCoil_3Pil(#Qj#mbnRkPmTohSn???OoSDL/TYSA_COLOUR_2OlAttGS_PS_LayerO hSDL/TYSA_NAMEPTpAS]???OpSDL/TYSA_COLOURSZ???QM'THJPIqSV???QI(T+6MrSq???Sr???OSAEDT_EntityID_V1RO%RK%@4?H-Q<55:7CsRE%Rs%R=%R8%J)jIb^C_'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0009621.x_b +Design_89.setup/NativeGeometryFiles/0009621.x_b BIN000000004789 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120765,24 +99051,24 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009621.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009621.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009621.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009621.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+xu+?G4l??)f?h9;? ++L?r@}?)f?h9;? ,krW?«(?  V-n./  012 nQ03345617/.-2 5789nQ54320:;7<=.21/>+8 :=2?,n92@9 -x?4M;7?@?9,L?r@}??AB8@n,8@ @%?+A ?QA63?:CB<.=?DEF+<.*.<7BF+=<B78>GD+D8BE-E4nBGHF?.-Q423EIJ0KG Jn=/ELHEL++@%?+A ?h9;?)fLGH+9 -x?4M;7?)fh9;+/H +krW?«(?h9;ῡ)f?/ -Mn7G+QM03/N-JOP3PQ(#QN&R/MSTUQ-/3SVMWQJ13GTM4XRO%QT'RGJNIYRX%PRZAQI(RE4T[SY???S[???OZSDL/TYSA_COLOURQS%R-\N]QV.3*\^-_RW%*Vn< -+ Q\$R*VS`Q^-3abVcR_%Qa+de^fQb7P^'gRc%PPh(#Q'8biRgTiCoil_4OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfCoil_4Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMES`???S]???SU???OQAEDT_EntityID_V1RK%>2=G-Q:5385AsRC%Rs%R;%R6%J)mIeaAb'P&3t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' +*+su+?G4l??)f?h9;? ++L?{r@}?)f?h9;? ,krW?«(?  V-n./  012 nQ03345617/.-2 5789nQ54320:;7<=.21/>+8 :=2?,n92@9 +x?0M;7?@?9,L?{r@}??AB8@n,8@ @%?+A ?QA63?:CB<.=?DEF+<.*.<7BF+=<B78>GD+D8BE-E4nBGHF?.-Q423EIJ0KG Jn=/ELHEL++@%?+A ?h9;?)fLGH+9 +x?0M;7?)fh9;+/H +krW?«(?h9;ΰ)f?/ +Mn7G+QM03/N-JOP3PQ(#QN&R/MSTUQ-/3SVMWQJ13GTM4XRO%QT'RGJNIYRX%PRZAQI(RE4T[SY???S[???OZSDL/TYSA_COLOURQS%R-\N]QV.3*\^-_RW%*Vn< ++ Q\$R*VS`Q^-3abVcR_%Qa+de^fQb7P^'gRc%PPh(#Q'8biRgTiCoil_4OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfCoil_4Plo(#Qm#peqRnPpRrhSq???OrSDL/TYSA_COLOUR_2OoAttGS_PS_LayerO kSDL/TYSA_NAMES`???S]???SU???OQAEDT_EntityID_V1RK%>2=G-Q:5385AsRC%Rs%R;%R6%J)mIeaAb'P&3t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0009632.x_b +Design_89.setup/NativeGeometryFiles/0009632.x_b BIN000000004789 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120798,22 +99084,22 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009632.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0009632.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009632.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0009632.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>  +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ9@@:0yE>    @@:0yE>QF CI list_typeuI notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q9&'(F)) * *2 -*+p!?!mKmU??-[? e\? +,+d:r?;l? e\?-[ -.!ƪ? %?  V/n01, 23-4nQ2356783910-- 79: n4;.}^L?Znm?;:4d:r?;l?.<4 =U.}?L4?<=>:.nQ=65<?@>A0B<C+D+: ?B-<;nQ?55:7=EBA>9:FGC+A0*9AB0-31F+F-BG-G HnB1+IC:>+-+6n>G Q625+JH2KP5LM(#QJ(N+6OPQH15GOQ6RRK%QO'NGHSJTQQ051S/HURR%1 +*+q!?%mKmU??)[? e\? +,+e:r?;l? e\?)[ -.!ƪ? %?  V/n01, 23-4nQ2356783910-- 79: n4;.{^L?Znm?;:4e:r?;l?.<4 @U.}?L4?<=>:.nQ=65<?@>A0B<C+D+: ?B-<;nQ?55:7=EBA>9:FGC+A0*9AB0-31F+F-BG-G HnB1+IC:>+-+6n>G Q625+JH2KP5LM(#QJ(N+6OPQH15GOQ6RRK%QO'NGHSJTQQ051S/HURR%1 Qn9GVQS&N1QWOXQ//5WYQZRU%QW%N/[S\QY.5*[]/^RZ%*YnA -+ Q[$N*YW_Q]-5`aYbR^%Q`+cd]eQa7L]'fRb%PLg(#Q'8ahRfThCoil_5OgAEDT_BODYFlagGroupColor_V1PcijQQd*kl`mTeCoil_5Pkn(#Ql#odpRmPoNqhSp???OqSDL/TYSA_COLOUR_2OnAttGS_PS_LayerO jSDL/TYSA_NAMEPNrAS_???OrSDL/TYSA_COLOURS\???SX???V1I+}^L?Znm? e\-[?IGV,+!ƪ? %?-[ e\,I +=U.}?L4?-[? e\?ST???SP???OMAEDT_EntityID_V10A9>D+D<0-Q745-2?sRE%Rs%R@%R8%J)lJd`=a'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' ++ Q[$N*YW_Q]-5`aYbR^%Q`+cd]eQa7L]'fRb%PLg(#Q'8ahRfThCoil_5OgAEDT_BODYFlagGroupColor_V1PcijQQd*kl`mTeCoil_5Pkn(#Ql#odpRmPoNqhSp???OqSDL/TYSA_COLOUR_2OnAttGS_PS_LayerO jSDL/TYSA_NAMEPNrAS_???OrSDL/TYSA_COLOURS\???SX???V1I+{^L?Znm? e\)[?IGV,+!ƪ? %?)[ e\,I +@U.}?L4?)[? e\?ST???SP???OMAEDT_EntityID_V10A9>D+D<0-Q745-2?sRE%Rs%R@%R8%J)lJd`=a'P&5t(#T(copperOtAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0011298.x_b +Design_89.setup/NativeGeometryFiles/0011298.x_b BIN000000154880 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -120829,1513 +99115,1547 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0011298.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0011298.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0011298.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0011298.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  -    @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZDS@@OSDL/TYSA_DENSITYP (#TUNIT=mmO AEDT_EntityName_V1P!"(#S{Gz?O"AEDT_ExtentScale_V1Q#$%F&& '  -t'(+X,M|O?.2y>?YY? r )a;F?a;F?  V p*+, nQ*- ./0+ 1'+,k/1 2)nQ/-,*341,+'5-2f36,78n)m,8 X,M|O?.2y>?8h29)XW?K5?9c7:8'p p`?e-?7a;<2=9n:^=>9Sh?z$?=\?@7A:n>YAB:`VSq? C?AWCD=E>nBTEF>vuy?p ?ERGHAIBnFOIJB]]'?c ?IMKLEMFnJJMNF`>+?{iR3q?MHOPIQJnNEQRJ[??QCSTMUNnR@UVN}`F?'?U>WXQYRnV;YZR.t?E/@|?Y9[\U]VnZ6]^V!&??]4_`YaZn^1abZyA?5?a/cd]e^nb,ef^PYg?dd?e*ghaibnf'ijb?Aak ?i%klemfnj"mnfn\k?C/?nUW?K&?n?_??n%? g?pc?nD{n?' -?nbv?]?nE~?%?n=U?s -?np+?wO?naq? r?n1I?+ l?nJ9?oH?nb!?!?n~ ? =>?n 4{? ɯ?nT:>???n5"?ua?n}‹>?eX(?{nxt1jj?ҁ9?vnsI?o -?qnns?MGhx?lnip? o?gndvg? -Yie?b n_  -EH?Y\? ]   n -Z HTN -?q5S? X  -nU -I?EXpI?S nP^x?z@?NnK!?*7?InFr(?sk-?D !nA!"Hs0?f$?!?#$%n"<%&x7?#0?%:'(!)"n&7)*""??6Ad?c-?=?@9A:n>AB:bk?6ۙ?ACD=E>nBEF>:uVs?4UQ?EGHAIBnFIJBrN[z?c?I KLEMFnJ -MNFY?kotx?MOPIQJnNQRJ`T?裭Ze?QSTMUNnRUVN̉CM?9R?UWXQYRnVYZR9̔? :5??Y[\U]VnZ]^V' ؞?u+?]_`YaZn^abZ)?rR٫?acd]e^nbef^Q?'tr?eghaibnfijbi솴?00?iklemfnjmnf_A?*?mopiqjnnqrjY?Kt?qstmunnruvnPq ?<@?uwxqyrnvyzrTI1?g=?y{|u}vnz}~v,P?~?}yzn~zMok?Cc~?}~n~? m5j?n?]2qp+W?n ?vC?nYm?23(0?n-0?cÜ?n- ?x - ?n:8?Vr?nRʲ?S -b?n$?m-?ntx}%?Ѫ?n蔲f,?Ϧ?n֊J3?d?n Ep*:?QaW?n kA?$OMk?n~G?qbW?|ny)N?C?wntzU?Ez0?rno{w:C\?;M<?mnj+!c?bSW?hneei?kk?cn`lp?eWy?^n[m7w?Z?YnV=oX}? ?TnQ?6g!?OnL< -=?ht?JnGhd?sxc|?EnBD,?klLh?@n=>_?1/T?;n8Bc?ɭ @?6n3Y]??U+?1n.1Nʲ?K?,n)H.R?U}?'n$vԿ?G.SA?" n  -"3R?]?    n - zW?am?   -n -@?H&i? n?zy?n @?Ќ.? n'?}c\u? !n!" $,.?&֥`?!#$%n"%&CX>?L?%'(!)"n&)*"|WK˖?ǭd8?)+,%-&n*-.&H?rv#?-/0)1*n.12*N^8?$?134-5.n256.) ?rT?578192n69:2Aq?b:C?9;<5=6n:=>6.0?^?=?@9A:n>AB:8B?'?ACD=E>nBEF>'ȷx%?,Z?EGHAIBnFIJBj+? )蹓?IKLEMFnJMNFϨjP1??MOPIQJnNQRJ4l:g7?2hj?QSTMUNnRUVNe">?o ZU?UWXQYRnVYZR,#AD?^p@?Y[\U]VnZ]^VЖZJ?CHB,?]_`YaZn^abZ -oP?w$B?acd]e^nbef^UV?з?eghaibnfijbqF\?Ss?iklemfnjmnf'b? +?mopiqjnnqrjkIcjh?^Eaz=?qstmunnruvn*n?U^?uwxqyrnvyzr`t? ?D4?<n9G&>?db;?7n4δG?I#o ?2n/w6? ɳ1?-n*(m???(n%U??#n iY? Xo#?ne? ?n* 9~?@G:U?nkx?0is?n xh?5Y Hs^? -n=c??WɊH?nd>?F|3?n?B離?6,?nILG$?Q#"r?n1"Z)?S?nLA:.?S?n23?Ҽ?nϋI9?-(!? n  -ԘZ>?)Z?    n - eC?Xۆ?   -n -v^ I?0q? n~xAN?qф[?nI5sS?tE?nX?0? !n!" ]?y V?!#$%n"%&K\b?d?%'(!)"n&)*"7h?9$?)+,%-&n*-.&FNm?$?-/0)1*n.12*Q1r? h0?134-5.n256./@?w??4Z?578192n69:2&H|?GЀ?9;<5=6n:=>6cmK?8?=?@9A:n>AB:J?%k?ACD=E>nBEF>h>.D?\dU?EGHAIBnFIJBf/8?y??IKLEMFnJMNFi'?]7N)?MOPIQJnNQRJ3;?LU`?QSTMUNnRUVNna? ?U~WXQYRnV{YZRmjף?Ⱥ?Yy[\U]VnZv]^V?T?+D?]t_`YaZn^qabZ#?/?aocd]e^nblef^nX?3?ejghaibnfgijbzN$?{Ӝߏ?ieklemfnjbmnfJ=?y?m`opiqjnn]qrjx]?|"c?q[stmunnrXuvn0L h?ȑM?uVwxqyrnvSyzrM?_ӭo7?yQ{|u}vnzN}~v?"G!?}Lyzn~Iz;Tr}?rj ?G}~nD~C7$?Pԕ?Bn?P8??grn?=n:hed?>2?8n5H^?\:C?3n0W+?T Y8?.n+ؒ?b?)n&Ǒ8?+Pyso?$n!~Yw(?ʁ%Y?n??B?nJY`?},?nޑ?F#?n =| -?Fw6?nsg9?^?nV=?7?n1/A?{K$?nF-gE?R?n -o]J?[Z?nC#"N?缗?nnV7R?#-?nN6թGV?/(uj?nRZ?*^S?n2-X^? kMS=?nORXb?n&? n  -}?Sf?龟 ?    n - YIj?/$?   -n -9n? uE? n.?%r?ry?n -v?/Pô?ny?)t? !n!" }?D>'2?!#$%n"|%&ZΜ?D{1dp?%z'(!)"n&w)*"w -}m?Y?)u+,%-&n*r-.&?8?ؑB?-p/0)1*n.m12*\3?bR+?1k34-5.n2h56. ?}?5f78192n6c9:2zW{?sR?9a;<5=6n:^=>6A()1?"}?=\?@9A:n>YAB:?B?AWCD=E>nBTEF>2V[?١#r?ERGHAIBnFOIJB[du3? BE?IMKLEMFnJJMNFE8Ԧ?/?MHOPIQJnNEQRJ¦o??G?QCSTMUNnR@UVNq?D]X?U>WXQYRnV;YZRQu?hc?Y9[\U]VnZ6]^VJ!?87Ng_?]4_`YaZn^1abZ#7৸?4Cd1?a/cd]e^nb,ef^3(?y^e[?e*ghaibnf'ijbߣ?iūK?i%klemfnj"mnf?{5?m opiqjnnqrjAm?)y?qstmunnruvnx?tFJ?uwxqyrnvyzro^[??y{|u}vnz}~v?1~J?} yzn~ zTe?B3f?}~n~gPdl??*?n}X?1?c?n'(?5?njM?pl)mQ?nGO?fX?n̺?xEE?n/0"?a`A|?n#.?DM?noSX?-n?nm}?I?nL依?z?n]o"??j?nk?ee?n??{] 6?n/?qkh?nI?,?n& ?I9?n!; ?c 5|?n>1~4?[TM?nEz;?7H?nL -ձ?z?n%?ܼ?n gt?lc'?ntN?Ifd?n#m!!?N$5?n5D#?=M?nhh9&?1?n}p|)?L10?{nx]h:,?9Uz?vnsVg.?uK?qnnN1?h B?lniUj+@T4??gnd{Y|6?]޸?b n_  -EkFB9?e ~Cŏ? ]   n -Z ^<?n1?S nP@fA?x-H?NnK^ C?z^?InF^2{F?"?D !nA!"H?(du?!?#$%n"<%&:!yK?iF?%:'(!)"n&7)*"(ҌM?K {?)5+,%-&n*2-.&HbP? ٤]?-0/0)1*n.-12*R?u:?1+34-5.n2(56.Gf4U?L?5&78192n6#9:2W?I-Z?9!;<5=6n:=>6NHY?%+?=?@9A:n>AB:a\G\?o?ACD=E>nBEF>^?k~ K?EGHAIBnFIJBSX. -`?N ?I KLEMFnJ -MNFf"(c? -n?MOPIQJnNQRJBhe?y;??QSTMUNnRUVN.Rg?;{ܔ=?UWXQYRnVYZRhii?> -?Y[\U]VnZ]^Vl?pt?]_`YaZn^abZ%2n??(H?acd]e^nbef^Vp?DxR?eghaibnfijb ur?/#?iklemfnjmnf?t?[.?mopiqjnnqrj+Gv?즤?qstmunnruvnḺx?5._?uwxqyrnvyzr^̺z?He?y{|u}vnz}~vF|?$ď6?}yzn~zlۃ<~?p ?}~n~:?p!?n(?͗2?nE?Gx?nS|?JI?n{(_?ό?n:;?4 Կ?n)"9?k!t?n!?&?ny&?b?nvw?[}mW?nW8?7?n7???n ?#S9?n [?$lڼ?n~>?X {?|nybh?rY?wntDK?5 j?rnoP`v?.]?mnjUCQWz?M[?hne1 ?XV^2?cn`n\5?k>?^n[BO?׏+E߹?YnVǡIܕ? ?TnQC?QA ?OnL}I?A?JnG\ӥ)?mG+(a?EnBlnzX?郓?@n=܈;?!?;n8Ml?šZB?6n3 p?Фj?1n.±?.  ?,n)<6?k_#?'n$\QU?+S7õ?" n  -?c薵?c?    n - ]jҶ?e9?   -n -i?Sy? n| -9?OD?n Nqd?_? nlI*?1? !n!"(?d@K%?!#$%n"%&,tĽ?Vx)uŲ?%'(!)"n&)*"}$=پ?U˚e?)+,%-&n*-.&Lq?\Iݼ?-/0)1*n.12*A!?Gڥ?134-5.n256.?(?/E?578192n69:2?X ?9;<5=6n:=>691z??=?@9A:n>AB:o?C9-&?ACD=E>nBEF>?JYq?EGHAIBnFIJB1/?u:̮?IKLEMFnJMNFbS6? ?MOPIQJnNQRJ/v?>;QL?QSTMUNnRUVNM?2;B?UWXQYRnVYZR`a?Ss̫?Y[\U]VnZ]^V7? ms ?]_`YaZn^abZ\}:?s^L?acd]e^nbef^ŌEs?U C?eghaibnfijbՒع.?x#̨?iklemfnjmnfHY?[ ?mopiqjnnqrjݔ?_AK?qstmunnruvn}]??)բ?uwxqyrnvyzr?@m˥?y{|u}vnz}~v~k&?@c4 ?}yzn~z ?HQ?J?}~n~Oka?n?nA&SA?elʢ?}nztV=?P" -?xnuXM?z`gYI?snpa;? -ۀ?nnkD?v)U?infL9Զ?ܫ?dnaM!#?~ r鐜?_n\΅?E_)?ZnW O?׊Vc?UnR6hI??PnM0U?qlȍ?KnH;?< ?FnC/kl=?n}?An>mnh?s|; ?<n9w?Y?7n4V?H?2n/ 3?|?-n*X \c?$??(n%'Z?F4b ?#n .b?o݁ ?n<&"?09~?n?78 <h?8@+M!#?~ r鐜?Y[%=??eAnBC;< @mC<D+L9Զ?ܫ?nO?CjEnFG?@ DrG@H+D?v)U?K! VS?GoInJKCD HwKDL+a;? -ۀ?GF(&%?KtMnNOGH L|OHP+XM?z`gYI?[>ޥ;QL?K;l[K^s?n’ +bS6? ? Β ղ\?n– +1/?u:̮?ٵK׼?nš +?JYq?#Ҫ³;4?nž +o?C9-&?qW92U e?n¢ +91z??mK|t4?n¦ +?X ?s '?nª +?(?/E?rSƝLb?n® +A!?Gڥ?';}(x?n² +Uq?\Iݼ?l7/,?n¶ +}$=پ?U˚e?P>{?nº +,tĽ?Vx)uŲ?ȃx`_?n¾ +(?d@K%?H&﷿\?n  +lI*?1?;:er? -n +Nqd?_?G\ܸOG?n +| -9?OD?.RK?n +i?Sy?}ɹtIOU?n !+]jҶ?e9?]@0?n &+?c薵?c?KRfG?#n ++\QU?+S7õ?y-?(n 0+<6?k_#?5`v z?-n 5+±?.  ?`&~?2n :+ p?Фj? U4?7n ?+Ml?šZB?mP-,?<n D+܈;?!?ەK}AcCx?An I+lnzX?郓?ESn󽿗3㡽?Fn N+\ӥ)?tG+(a?B+i/ ?Kn S+}I?A?d^} -྿ @3?Pn X+C?QA ?]VNV-pd?Un ]+ǡIܕ? ?ua̿?LUH?Zn b+BO?׏+E߹?[ `!??_ n -  g  +n\5?k>?gYx\PKUͼ? d n  l+1 ?XV^2?Pb%?in   q +UCQWz?M[?RoԜd?nn v+Y`v?.]?ϩ0 Z?sn {+DK?5 j?!DHX?xn  +bh?rY? ?}!n"#  #$+>?X {??s?#%n&'  $' (+ [?$lڼ?DCcѮ?')n*+#$ (+$,+ ?#S9?84¿[c?+-n./'( ,/(0+7??? - o¿Fg?/1n23+, 03,4+W8?7?¿S'f\l?35n67/0 4708+vw?[}mW?6ن¿?78 <?8@+!?&?}{7V[ÿvɡ??AnBC;< @C<D+)"9?k!t?7ÿݘu?CEnFG?@ DG@H+:;?4 Կ?!sÿۜ:?GInJKCD HKDL+{(_?ό? Ŀ?KMnNOGH LOHP+S|?JI?ߕ=FĿFY?OQnRSKL PSLT+E?Gx?dĿe0?SUnVWOP TWPX+(?͗2?>G?^Ŀoʓ?WYnZ[ST X[T\+:?p!?MHP%ĿFT]?[]n^_WX \_X`+lۃ<~?p ?!9P1ſǺ?_anbc[\ `c\d+F|?$ď6?lſ!n?cenfg_` dg`h+^̺z?He?_ſxe?ginjkcd hkdl+Ḻx?5._?s@DſKqd?kmnnogh lohp++Gv?즤?nGƿwՄ?oqnrskl pslt+?t?[.?`oWƿ!??sunvwop twpx+ ur?/#?nBƿ~¢?wynz{st x{t|+Vp?DxR?>$`ƿx۸ |?{}n~wx |x+%2n??(H?nSǿ~Tz?n‚{| |+l?pt?%TAǿ6"w?n† +hii?> -?~|ǿt?nŠ +.Rg?4{ܔ=?NEw ǿ4+r?nŽ  +Bhe?y;??ēǿsh -)fo? n’ +f"(c? -n?,ȿIl?n– +SX. -`?N ? TĔfȿHȗ i?nš +^?k~ K?:\ ȿf?nž  +a\G\?o?Y@ȿb7 -d?n¢ %+NHY?%+?֦aɿg #a?"n¦ *+W?I-Z?iVPɿ)l4^?'nª /+Gf4U?L?h幊ɿ̮?[?,n® 4+R?u:?jlRɿF`BX?1n² 9+HbP? ٤]?=@l*oɿsk?U?6n¶ >+(ҌM?K {?Gt`9ʿ~6R?;nº C+:!yK?iF?p tʿo%O?@n¾ H+H?(du?YZTʿZ(L?En M+^2{F?"?kʿH?Jn R+^ C?z^?K"˿BzE?On W+@fA?x-H?|;<]˿YB?Tn \+ri>?n1?B25˿ l??Yn a+^<1~4?[TM?hpϿiG ?  n         +!; ?c 5|?\ϿkP]?  n         +& ?I9?TZhϿww[?  n        +I?,?fwп+? ! n" #     #  $ +/?qkh?w@+пi2?# % n& '   $ ' ( +??{] 6?Hп0=]k?' ) n* + # $  ( + $ , +k?ee?OJQeпܴn?+ - n. / ' (  , / ( 0 +]o"??j?Ak~п^R?/ 1 n2 3 + ,  0 3 , 4 +L依?z? 5п& ?3 5 n6 7 / 0  4 7 0 8 +m}?I?&п ?7 9 n: ; 3 4  8 ; 4 < +oSX?-n?'`пyX%?; = n> ? 7 8  < ? 8 @ +#.?DM?˔NпG~w6?? A nB C ; <  @ C < D +/0"?a`A|?bѿHh@?C E nF G ? @  D G @ H +̺?xEE?ą.ѿD?G I nJ K C D  H K D L +GO?fX?Em5Kѿ3-^A?K M nN O G H  L O H P +jM?pl)mQ?$Xgѿ >%%8?O Q nR S K L  P S L T +'(?5?#}ѿI'?S U nV W O P  T W P X +}X?1?c?O;-ѿ?W Y nZ [ S T  X [ T \ +gPdl??*? ^νѿc.Z?[ ] n^ _ W X  \ _ X ` +Te?B3f?kѿ:Ϻ?_ a nb c [ \  ` c \ d +?1~J?ѿ0(/?c e nf g _ `  d g ` h +o^[??gΘҿqmr?g i nj k c d  h k d l +x?tFJ?~ )0ҿlg:?k m nn o g h  l $o h p +Am?)y?Lҿs?o !q nr s k l  p )s l t +?{5??{@iҿ ]D -?s &u nv w o p  t .w p x +ߣ?iūK?[ Ņҿi?w +y nz { s t  x 3{ t | +3(?y^e[?mmE? I n’   Q +E8Ԧ?/?hGLӿ*TT? N n–   V +[du3? BE?*>5[iӿ~5~? S nš   [ +2V[?١#r?Żӿ|y? X nž   ` +?B?C$ӿ:)u? ] n¢   e +A()1?"}?Yoӿd*'2?&=[Կ|`O?  n    +y?)t?鹘ԿGJ?  n    + -v?/Pô?t_Կ/Y -F?  n    +.?%r?ry?Կ<4A?  n    +9n? uE?7ԿԩV  +    @@:0yE>QF CI list_typeuI +notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZDS@@OSDL/TYSA_DENSITYP !(#TUNIT=mmO!AEDT_EntityName_V1P"#(#S{Gz?O#AEDT_ExtentScale_V1Q$%&F'' (  +t()+Z,M|O?.2y>?YY? r *a;F?a;F?  V p+,- nQ+. /01, 2(+-k02 3*nQ0.-+452-,(6-3f47-89n*m-9 Z,M|O?.2y>?9h3:*XW?K5?:c8;9'p p`?e-?8a<=3>:n;^>?:Sh?z$?>\@A8B;n?YBC;`VSq? C?BWDE>F?nCTFG?tuy?m ?FRHIBJCnGOJKC]]'?c ?JMLMFNGnKJNOG_>+?~iR3q?NHPQJRKnOERSK[??RCTUNVOnS@VWOx`F?'?V>XYRZSnW;Z[S.t?F/@|?Z9\]V^Wn[6^_W!&??^4`aZb[n_1bc[ yA?5?b/de^f_nc,fg_PYg?dd?f*hibjcng'jkc?Dak ?j%lmfngnk"nogn\k?C/?nUW?K&?n?_??n%? g?oc?nD{n?* +?nbv?]?nE~?%?n=U?s +?n +p+?tO?naq? +r?n1I?) l?nF9?oH?n`!?!?n| ?=>?n 4{? ɯ?nO:>???n5"?ua?n}>?eX(?{nxq1jj?Ձ9?vnsI?q +?qnns?NGhx?lnip? o?gndrg? Yie?b  +n_ + BH?Y\? +]  n ZHTN +?t5S?X + nU I?GXpI?SnP^x?u@?NnK!?*7?InFr(?sk-?D !"nA"#Ls0?f$?"?$%&n#<&'x7?0?&:()"*#n'7*+#"??:S%-?*5,-&.'n+2./'!q'F?H'?.001*2+n/-23+-=N?z/2k?2+45.6/n3(67/oU?9$7?6&892:3n7#:;3t\?@-:R?:!<=6>7n;>?7Ad?a-?>@A:B;n?BC;dk?6ۙ?BDE>F?nCFG?7uVs?4UQ?FHIBJCnGJKCqN[z?c?J LMFNGnK +NOGY?iotx?NPQJRKnORSK`T?Ze?RTUNVOnSVWOΉCM?9R?VXYRZSnWZ[S=̔?:5??Z\]V^Wn[^_W' ؞?k+?^`aZb[n_bc[)?jR٫?bde^f_ncfg_Q?'tr?fhibjcngjkci솴?00?jlmfngnknogZA?*?npqjrknorskY?It?rtunvonsvwoPq ?<@?vxyrzsnwz{sTI1?f=?z|}v~wn{~w,P?~?~z{n{Mok?=c~?~n? m5j?n?[2qp+W?n?vC?nYm?23(0?n-0?cÜ?n- ?x + ?n:8?Vr?nTʲ?S +b?n$?{m-?nsx}%?Ѫ?n蔲f,?Ϧ?n֊J3?d?n Ep*:?QaW?n kA?"OMk?n~G?qbW?|ny'N?C?wntzU? Ez0?rno{w:C\?;M<?mnj+!c?gSW?hneei?kk?cn`lp?eWy?^n[m7w?Z?YnV:oX}? ?TnQ?6g!?OnL= +=?ht?JnGhd?vxc|?EnBD,?klLh?@n=;_?1/T?;n8@c?ɭ @?6n3[]??U+?1n.,Nʲ?K?,n)H.R?U}?'n$wԿ?G.SA?"  +n +  3R?a? +  n |W?am? + n @?J&i?n?xy?n D?Ќ.? n{'?}c\u? !"n"# $,.?!֥`?"$%&n#&'CX>?L?&()"*#n'*+#~WK˖?ĭd8?*,-&.'n+./'L?pv#?.01*2+n/23+N^8?$?245.6/n367/$ ?rT?6892:3n7:;3Aq?b:C?:<=6>7n;>?710?^?>@A:B;n?BC;8B?'?BDE>F?nCFG?)ȷx%?,Z?FHIBJCnGJKCj+? )蹓?JLMFNGnKNOGѨjP1??NPQJRKnORSK2l:g7?6hj?RTUNVOnSVWOa">?l ZU?VXYRZSnWZ[S,#AD?^p@?Z\]V^Wn[^_W͖ZJ?AHB,?^`aZb[n_bc[ +oP?t$B?bde^f_ncfg_UV?з?fhibjcngjkcmF\?Ts?jlmfngnknog'b? +?npqjrknorskkIcjh?^Eaz=?rtunvonsvwo*n?U^?vxyrzsnwz{s[t?=z?z|}v~wn{~wnK +yz?G萅?~z{n{\g?a壡p?~nsMbP?ܬ[?nM=4?`F?}nzhN?`ֲ1?xnum? ?snpoXĝ?3:?nnkQ?|?inf`?Mr}?dna ?D4?<n9G&>?ab;?7n4δG?G#o ?2n/w6? ɳ1?-n*(m???(n%U??#n fY? Xo#?ne? ?n- 9~?AG:U?nfx?0is?n xh?0Y Hs^? +n?F|3?nAB離?4,?nELG$?T#"r?n1"Z)?S?nIA:.?S?n23?Ҽ?n΋I9?1(!?  +n + ԘZ>?)Z? +  n eC?\ۆ? + n v^ I?0q?n|xAN?rф[?nI5sS?tE?nX?0? !"n"# ]?y V?"$%&n#&' +K\b?d?&()"*#n'*+#~7h?9$?*,-&.'n+./'FNm?$?.01*2+n/23+Q1r?$ h0?245.6/n367//@?w??4Z?6892:3n7:;3&H|?GЀ?:<=6>7n;>?7dmK?8?>@A:B;n?BC;J?%k?BDE>F?nCFG?d>.D?\dU?FHIBJCnGJKCf/8?y??JLMFNGnKNOGi'?]7N)?NPQJRKnORSK3;?LU`?RTUNVOnSVWOna? +?V~XYRZSnW{Z[Smjף?Ⱥ?Zy\]V^Wn[v^_W?T?'D?^t`aZb[n_qbc[?/?bode^f_nclfg_kX?3?fjhibjcnggjkczN$?|Ӝߏ?jelmfngnkbnogL=?y?n`pqjrkno]rsky]?|"c?r[tunvonsXvwo1L h?ȑM?vVxyrzsnwSz{sM?\ӭo7?zQ|}v~wn{N~w|? G!?~Lz{nI{7Tr}?rj ?G~nDE7$?Mԕ?Bn?P8??jrn?=n:fed?A2?8n5E^?\:C?3n0W+?W Y8?.n+ؒ?²b?)n&Ǒ8?'Pyso?$n!zYw(?ʁ%Y?n??B?nMY`?},?nܑ? +F#?n =| +?F'2?"$%&n#|&'ZΜ?D{1dp?&z()"*#n'w*+#w +}m?Y?*u,-&.'n+r./'?8?֑B?.p01*2+n/m23+[3?bR+?2k45.6/n3h67/ ?}?6f892:3n7c:;3vW{?jR?:a<=6>7n;^>?7A()1?"}?>\@A:B;n?YBC;?B?BWDE>F?nCTFG?6V[?ܡ#r?FRHIBJCnGOJKC[du3? BE?JMLMFNGnKJNOGF8Ԧ?/?NHPQJRKnOERSKŦo?@G?RCTUNVOnS@VWOq?A]X?V>XYRZSnW;Z[SQu?hc?Z9\]V^Wn[6^_WJ!?07Ng_?^4`aZb[n_1bc[$7৸?1Cd1?b/de^f_nc,fg_2(?u^e[?f*hibjcng'jkcߣ?iūK?j%lmfngnk"nog?{5?n pqjrknorskAm?)y?rtunvonsvwox?qFJ?vxyrzsnwz{ss^[??z|}v~wn{~w?)~J?~ z{n {Ue?B3f?~ngPdl??*?nyX?1?c?n'(?5?njM?xl)mQ?nGO?fX?n̺?sEE?n/0"?d`A|?n#.?EM?nsSX? -n?nj}?I?nL依?z?n[o"??j?nk?de?n??}] 6?n/?qkh?nI?*?n& ?I9?n!; ?_ 5|?n?1~4?[TM?nCz;?7H?nL +ձ?z?n%?ܼ?ngt?dc'?ntN?Ifd?n'm!!?T$5?n5D#?CM?ndh9&?1?n}p|)?L10?{nx_h:,?9Uz?vnsVg.?uK?qnnN1?e B?lniWj+@T4??gnd}Y|6?]޸?b  +n_ + GkFB9?n ~Cŏ? +]  n Z^<?n1?SnP@fA?}-H?NnK^ C?z^?InF_2{F?"?D !"nA"#H?(du?"?$%&n#<&':!yK?iF?&:()"*#n'7*+#(ҌM?I {?*5,-&.'n+2./'HbP?٤]?.001*2+n/-23+R?y:?2+45.6/n3(67/Gf4U?M?6&892:3n7#:;3W?@-Z?:!<=6>7n;>?7NHY?%+?>@A:B;n?BC;a\G\?o?BDE>F?nCFG?^?c~ K?FHIBJCnGJKCPX. +`?N ?J LMFNGnK +NOGf"(c?n?NPQJRKnORSKBhe?y;??RTUNVOnSVWO+Rg?9{ܔ=?VXYRZSnWZ[Skii?= +?Z\]V^Wn[^_Wl?pt?^`aZb[n_bc["2n?A(H?bde^f_ncfg_Vp?GxR?fhibjcngjkc ur?/#?jlmfngnknog?t?[.?npqjrknorsk+Gv?즤?rtunvonsvwoḺx?8._?vxyrzsnwz{s[̺z?He?z|}v~wn{~wF|?'ď6?~z{n{iۃ<~?p ?~n:?p!?n+?З2?nE?Gx?n}S|?NI?n{(_?ό?n;;?: Կ?n&"9?k!t?n!?&?nu&?b?nvw?[}mW?nW8?7?n3???n +?&S9?n [?$lڼ?n~>?X {?|nybh?rY?wntDK?= j?rnoT`v?.]?mnjWCQWz? M[?hne- ?_V^2?cn`n\5?k>?^n[?O?ݏ+E߹?YnVȡIܕ? ?TnQC?QA ?OnL}I?A?JnG[ӥ)?pG+(a?EnBknzX?郓?@n=܈;??;n8Ml?šZB?6n3 p?ͤj?1n.±?*  ?,n)<6?k_#?'n$[QU?)S7õ?"  +n + ?c薵?c? +  n [jҶ?e9? + n i?Sy?n~ +9?OD?n Nqd?_? nlI*?1? !"n"#(?d@K%?"$%&n#&'*tĽ?Vx)uŲ?&()"*#n'*+#~$=پ?U˚e?*,-&.'n+./'Pq?[Iݼ?.01*2+n/23+B!?Kڥ?245.6/n367/=(?/E?6892:3n7:;3?X ?:<=6>7n;>?791z??>@A:B;n?BC;o??9-&?BDE>F?nCFG??JYq?FHIBJCnGJKC1/?u:̮?JLMFNGnKNOGdS6? ?NPQJRKnORSK/v?>;QL?RTUNVOnSVWOM?6;B?VXYRZSnWZ[Sba?Ss̫?Z\]V^Wn[^_W7? ms ?^`aZb[n_bc[]}:? s^L?bde^f_ncfg_ƌEs?S C?fhibjcngjkc֒ع.?x#̨?jlmfngnknogHY? +[ ?npqjrknorskݔ?_AK?rtunvonsvwo{]??)բ?vxyrzsnwz{s?@m˥?z|}v~wn{~w~k&?!@c4 ?~z{n{ ?HQ?J?~nOka?n?n>&SA?elʢ?}nzqV=?P" +?xnuXM?y`gYI?snpc;?"-ۀ?nnkD?v)U?infL9Զ?ޫ?dnaK!#? r鐜?_n\΅?E_)?ZnW O?ԊVc?UnR6hI??PnM3U?qlȍ?KnH;?< ?FnC-kl=?n}?An>mnh?r|; ?<n9w?Y?7n4R?H?2n/ 3?w?-n*X \c???(n%'Z?F4b ?#n .b?o݁ ?n7&"?09~?n/{;z ?n +n?@89 =h@9A+L!#? r鐜?\[%=?@eBnCD<= AmD=E+L9Զ?ޫ?nO?DjFnGH@A ErHAI+D?v)U?N! TS?HoJnKLDE IwLEM+c;?"-ۀ?GF(&%?LtNnOPHI M|PIQ+XM?y`gYI?[>ޥ&SA?elʢ?U\۸2?XZn[\TU Y\U]+Oka?n?hR*d(Kd~?\^n_`XY ]`Ya+ ?GQ?J?r[fu{?`bncd\] ad]e+~k&?!@c4 ?Łc 8z?dfngh`a ehai+?@m˥?sYrP֌8?hjnklde ilem+{]??)բ?3_J`6{h?lnnophi mpiq+ݔ?_AK?5NT?prnstlm qtmu+HY? +[ ?w !;QL?K;l[K^s?n“ +dS6? ?~ Β ղZ?n— +1/?u:̮?ٵK׼?n› +?JYq?#Ҫ³;4?nŸ +n??9-&?qW9/U e?n£ +91z??oK|t4?n§ +?X ?s '?n« +>(?/E?rSƝLb?n¯ +A!?Kڥ?);}(x?n³ +Qq?[Iݼ?l7/,?n· +~$=پ?U˚e?P@{?n» +)tĽ?Vx)uŲ?ȃx__?n¿ +(?d@K%?H&﷿}\?n  +lI*?1?9:er? +n +Nqd?_?G\ܸOG?n +~ +9?OD?.RN?n +i?Sy?}ɹwIOU?n !+[jҶ?e9?]@0?n &+?c薵?c?KRfG?#n ++[QU?)S7õ?y-?(n 0+<6?k_#?4`v z?-n 5+±?*  ?`&~?2n :+ p?ͤj? U4?7n ?+Ml?šZB?mP-,?<n D+܈;?? ەK}>cCx?An I+knzX?郓?ESn󽿔3㡽?Fn N+[ӥ)?qG+(a?B+i/ ?Kn S+}I?A?j^} +྿ @3?Pn X+C?QA ?]VNV)pd?Un ]+ȡIܕ? ?ua̿@LUH?Zn b +?O?܏+E߹?[ `!??_ +n    g  +n\5?k>?kYx\LKUͼ? dn   l +- ?_V^2?Pb%?in   q +WCQWz? +M[?RoԜd?nn v+U`v?.]?ҩ0 Z?sn {+DK?> j?&DHZ?xn   !+bh?rY?  ? }"n#$ !$%+>?X {??s?$&n'( ! %(!)+ [?$lڼ?ECcѮ?(*n+,$% ),%-+ +?%S9?84¿Xc?,.n/0() -0)1+3??? + o¿Ig?02n34,- 14-5+W8?7?¿W'f\l?46n7801 5819+vw?[}mW?6ن¿n?@89 =@9A+!?&?{7V[ÿvɡ?@BnCD<= AD=E+'"9?k!t?7ÿݘu?DFnGH@A EHAI+;;?: Կ?#sÿۜ:?HJnKLDE ILEM+{(_?ό? Ŀ?LNnOPHI MPIQ+|S|?NI?ݕ=FĿFY?PRnSTLM QTMU+E?Gx?dĿe0?TVnWXPQ UXQY+*?ї2?:G?^Ŀoʓ?XZn[\TU Y\U]+:?p!?RHP%ĿCT]?\^n_`XY ]`Ya+iۃ<~?p ?#9P1ſǺ?`bncd\] ad]e+F|?'ď6?lſn?dfngh`a ehai+[̺z?He?_ſxe?hjnklde ilem+Ḻx?8._?y@DſKqd?lnnophi mpiq+*Gv?즤?vGƿwՄ?prnstlm qtmu+?t?[.?`oWƿ!??tvnwxpq uxqy+ ur?/#?rBƿ~¢?xzn{|tu y|u}+Vp?GxR??$`ƿx۸ |?|~nxy }y+!2n?A(H?nSǿ~Tz?nƒ|} }+l?pt?%TAǿ6"w?n‡ +jii?> +?~|ǿt?n‹ +,Rg?8{ܔ=?EEw ǿ2+r?n  +Bhe?y;??ēǿvh +)fo? n“ +f"(c?n?,ȿIl?n— +QX. +`?N ? TĔfȿLȗ i?n› +^?c~ K?=\ ȿf?nŸ  +a\G\?o?Y@ȿ^7 +d?n£ %+NHY?%+?٦aɿg #a?"n§ *+W?@-Z?iVPɿ)l4^?'n« /+Gf4U?M?p幊ɿ̮?[?,n¯ 4+R?x:?nlRɿI`BX?1n³ 9+HbP?٤]?@@l*oɿsk?U?6n· >+(ҌM?I {?@t`9ʿy6R?;n» C+:!yK?iF?p tʿo%O?@n¿ H+H?(du?YZTʿV(L?En M+_2{F?"?jʿH?Jn R+^ C?z^?E"˿?zE?On W+@fA?~-H?;<]˿YB?Tn \+ri>?n1?B25˿ l??Yn a+^<k~пbR?0 2 n3 4 , -  1 4 - 5 +L依?z? 5п( ?4 6 n7 8 0 1  5 8 1 9 +j}?I?&п ?8 : n; < 4 5  9 < 5 = +sSX? -n?'`п yX%?< > n? @ 8 9  = @ 9 A +#.?EM?ǔNпH~w6?@ B nC D < =  A D = E +/0"?d`A|?bѿHh@?D F nG H @ A  E H A I +̺?sEE?ą.ѿD?H J nK L D E  I L E M +GO?fX?Em5Kѿ5-^A?L N nO P H I  M P I Q +jM?xl)mQ?$Xgѿ>%%8?P R nS T L M  Q T M U +'(?5?#}ѿI'?T V nW X P Q  U X Q Y +xX?1?c?Q;-ѿ?X Z n[ \ T U  Y \ U ] +hPdl??*? ^νѿf.Z?\ ^ n_ ` X Y  ] ` Y a +Ue?A3f?kѿ:Ϻ?` b nc d \ ]  a d ] e +?)~J?ѿ/(/?d f ng h ` a  e h a i +s^[??iΘҿpmr?h j nk l d e  i l e m +x?qFJ? )0ҿlg:?l n no p h i  m $p i q +Am?)y?Lҿq?p !r ns t l m  q )t m u +?{5?={@iҿ ]D +?t &v nw x p q  u .x q y +ߣ?iūK?Y Ņҿi?x +z n{ | t u  y 3| u } +2(?u^e[?nm5[iӿ5~? S n›   [ +6V[?ܡ#r?Żӿ|y? X nŸ   ` +?B?>$ӿ:)u? ] n£   e +A()1?"}?Yoӿe*'2?#=[Կ|`O?  n    +y?,t?치ԿGJ?  n    + +v?/Pô?s_Կ/Y +F?  n    +,?%r?ry?Կ<4A?  n    +9n? uE?7ԿҩVw6?ĊR}ֿtm6? - -n + + +  + + + ++(r 35?Aw6?ĊR}ֿxm6? + - - - -  - - +n -+0?75?rtև3ֿzP? - -n - - - -  - - + + +  + + + ++0?75?ttև3ֿzP? + +n  -+9^UX,?Ԣ?L?eXֿdž# ? - -n - - - -  - - + + +  + + + ++7^UX,?Ѣ?L?aXֿdž# ? + +n  -+H&t(?$gb? >ֿ#? - -n - - - -  - - + + +  + + + ++H&t(?!gb? >ֿ #? + +n  -+ O*$?jk9y?S3ֿdl? - -n - - - -  - - + + +  + + + ++ O*$?gk9y?S3ֿdl? + +n  -+?bu-?N0׿̶? - -n - - - -  - - + + +  + + + ++?bu-?N0׿̶? + +n -+`1?P"?11M$׿qL? -! -n" -# - - -  -# - + + +  + + +! ++`1?P"?11M$׿qL? +" +n# $ -+@m(-??--@׿#JkN?# -% -n& -' - + + + ! +$ + +% ++Cm(-??.-@׿!JkN?$ +& +n' +( - $ +! + % -' - -( -+(8?H??s![׿b?' -) -n* -+ -# -$ - ( -+ -$ -, -+ITj?jb?w׿TKo?+ - - -n. -/ -' -( - , -/ -( -0 -+=| -?F -? -7 -8 - < -(? +, +- + 1 +4 +- +5 ++ܑ? +F#?׿fO_v?4 +6 +n7 8 -@ -+~Yw(?ʁ%Y?.ؿD"Щ?? -%A -nB -C -; -< - @ --C +0 +1 + 5 +8 +1 +9 ++MY`?},?z6׿x(??8 +: +n; < -D -+Ǒ8?+Pyso?9epؿo +n? @ -H -+ؒ?b?B9ؿDt?G -/I -nJ -K -C -D - H -7K +8 +9 + = +(@ +9 +A ++zYw(?ʁ%Y?.ؿD"Щ?@ +%B +nC D -L -+W+?T Y8?6Q/Tؿzu4?K -4M -nN -O -G -H - L -<O +< += + A +-D += +E ++Ǒ8?'Pyso?9epؿp2?}ؿjy?S ->U -nV -W -O -P - T -FW +D +E + I +7L +E +M ++W+?W Y8?8Q/Tؿzu4?L +4N +nO P -X -+P8??grn?J-$ؿB.؇?W -CY -nZ -[ -S -T - X -K[ +H +I + M +<P +I +Q ++E^?\:C?2;|pؿؾD?P +9R +nS T -\ -+C7$?Pԕ?"|ؿB#?[ -H] -n^ -_ -W -X - \ -P_ +L +M + Q +AT +M +U ++ged?A2?}ؿny?T +>V +nW X -` -+;Tr}?rj ?ؿQ|?_ -Ma -nb -c -[ -\ - ` -Uc +P +Q + U +FX +Q +Y ++O8??jrn?J-$ؿE.؇?X +CZ +n[ \ -d -+?"G!?ؿ];v?c -Re -nf -g -_ -` - d -Zg +T +U + Y +K\ +U +] ++E7$?Lԕ?|ؿB#?\ +H^ +n_ ` -h -+M?_ӭo7?2Lٿq4p?g -Wi -nj -k -c -d - h -_k +X +Y + ] +P` +Y +a ++7Tr}?sj ?ؿQ|?` +Mb +nc d -l -+0L h?ȑM?Fq R0ٿ'j?k -\m -nn -o -g -h - l -do +\ +] + a +Ud +] +e ++|? G!?ؿ[;v?d +Rf +ng h -p -+x]?|"c?YKٿkd?o -aq -nr -s -k -l - p -is +` +a + e +Zh +a +i ++M?\ӭo7?2Lٿq4p?h +Wj +nk l -t -+J=?y?X+ gٿ8{_?s -fu -nv -w -o -p - t -nw +d +e + i +_l +e +m ++1L h?ȑM?Eq R0ٿ'j?l +\n +no p -x -+zN$?{Ӝߏ?|_ٿl^&Y?w -ky -nz -{ -s -t - x -s{ +h +i + m +dp +i +q ++x]?|"c?YKٿkd?p +ar +ns t -| -+nX?3?{GٿD3S?{ -p} -n~ - -w -x - | -x +l +m + q +it +m +u ++M=?y?X+ gٿ:{_?t +fv +nw x - -+#?/?MٿEDI:M? -u -n‚ - -{ -| -  -} +p +q + u +nx +q +y ++zN$?|Ӝߏ?|_ٿj^&Y?x +kz +n{ | - -+?T?+D?w0;ٿ3[Q:G? -z -n† - - - -  - +t +u + y +s| +u +} ++lX?3?{GٿD3S?| +p~ +n - -+mjף?Ⱥ?$CyٿM4A? - -nŠ - - - -  - +x +y + } +x +y + ++?/?MٿADI:M? +u +nƒ - -+na? ? -ڿđ(;? - -nŽ - - - -  - +| +} +  +} +} + ++?T?(D?w0;ٿ3[Q:G? +z +n‡ - -+3;?LU`? }%ڿ5? - -n’ - - - -  - + + +  + + + ++mjף?Ⱥ?CyٿM4A? + +n‹ - -+i'?]7N)?'UAڿr.? - -n– - - - -  - + + +  + + + ++na? +?  +ڿǑ(;? + +n + + +  + + + ++3;?LU`? }%ڿ5? + +n“ + + + +  + + + ++i'?]7N)?$UAڿq.? + +n— -+f/8?y??H'9\ڿI(? - -nš - - - -  - - - -+h>.D?\dU?İtZwڿE3U"? - -nž - - - -  - - - -+J?%k?ѹvڿ7{? - -n¢ - - - -  - + + +  + + + ++f/8?y??H'9\ڿI(? + +n› - -+cmK?8?1ڿRZ? - -n¦ - - - -  - + + +  + + + ++d>.D?\dU?ȰtZwڿD3U"? + +nŸ - -+&H|?GЀ?Uڿ !? - -nª - - - -  - + + +  + + + ++J?%k?Ϲvڿ7{? + +n£ - -+/@?w??4Z?!]ڿ8 ? - -n® - - - -  - + + +  + + + ++dmK?8?1ڿRZ? + +n§ - -+Q1r? h0?:ڿeD? - -n² - - - -  - + + +  + + + ++&H|?GЀ?Uڿ !? + +n« - -+FNm?$?8 [=ۿER? - -n¶ - - - -  - + + +  + + + ++/@?w??4Z?]ڿ8 ? + +n¯ - -+7h?9$?*a4ۿ2!? - -nº - - - -  - + + +  + + + ++Q1r?$ h0?:ڿeD? + +n³ - -+K\b?d?Oۿ(?? - -n¾ - - - -  - + + +  + + + ++FNm?$?5 [=ۿER? + +n· - -+ ]?y V?#jۿ>GK? - -n - - - -  - + + +  + + + ++~7h?9$?*a4ۿ2!? + +n» - -+X?0?g[[mۿ? - -n - - - -  - + + +  + + + ++ K\b?d?Oۿ(?? + +n¿ - -+I5sS?tE?Nۿ|? - -n - - - -  - + + +  + + + ++ ]?y V?%jۿ>GK? + +n - -+~xAN?qф[?c=*ۿyj ? - -n - - - -  - + + +  + + + ++X?0?i[[mۿ? + +n - -+v^ I?0q??fۿj? - -n - - - -  - + + +  + + + ++I5sS?tE?Nۿ|? + +n - -+eC?Xۆ?ǘۿ)i}? - -n - - - -  - + + +  + + + ++|xAN?rф[?c=*ۿyj ? + +n - -+ԘZ>?)Z?ns ܿV֒? - -n - - - -  - + + +  + + + ++v^ I?0q??)Z?ls ܿV֒? + +n - -+LA:.?S?9O9[ܿ? - -n - - - -  - + + +  + + + ++΋I9?1(!? [&ܿo? + +n - -+1"Z)?S?]vܿjWE? - -n - - - -  - + + +  + + + ++23?Ҽ?fJAܿKx? + +n - -+ILG$?Z#"r?u+ܿok;? - -n - - - -  - + + +  + + + ++IA:.?S?;O9[ܿ? + +n - -+?B離?6,?ѴQ=Ыܿ_G? - -n - - - -  -  + + +  + + + ++1"Z)?S?]vܿjWE? + +n - -+d>?F|3?Q1nܿ4!K? - -n - - - -  - + + +  + + + ++ELG$?U#"r?u+ܿnk;? + +n - -+=c??WɊH?~|`ܿLZɕ? -  -n - - - -  - + + +  + + + ++AB離?3,?ӴQ=Ыܿ_G? + +n - -+xh?,Y Hs^?ܿh;Bڇ? - -n - - - -  - + + +  +  + + ++d>?F|3?P1nܿ4!K? + +n - +kx?0is?u:/$ݿ% -? - n  + + +  + + + ++?db;?h^7ݿu[-J? =! n" #     E#  $ + ?D4?_K޿{ z4C?# B% n& '   $ J' ( +hvi?klTQI?:9޿T4 ? 7 8  < h? 8 @ +9Y'?shb?\Ju޿%s?? eA nB C ; <  @ mC < D +`?Mr}?f{޿̑ -?C jE nF G ? @  D rG @ H +Q?|?r4ũ޿_?G oI nJ K C D  H wK D L +oXĝ?3:?.eչ ߿ʗ)?K tM nN O G H  L |O H P +m? ?uph,#߿W1?O yQ nR S K L  P S L T +hN?`ֲ1?zv=߿DH^?S ~U nV W O P  T W P X +K=4?`F?KXW߿s0-c?W Y nZ [ S T  X [ T \ +pMbP?ܬ[?q߿y?[ ] n^ _ W X  \ _ X ` +^g?a壡p?Әۤ߿o?_ a nb c [ \  ` c \ d +qK -yz?G萅?o@߿_f?c e nf g _ `  d g ` h +`t??o ZU?kŌS࿨5?  nŽ    +4l:g7?2hj?)Z`࿎i}?  n’    +ϨjP1??_Z$m࿊Vv?  n–    +j+? )蹓?-KyOun?  nš    +'ȷx%?,Z?B54ag?  nž    +8B?'?r'lqU^L_?  n¢    +.0?^?A'JxmW?  n¦    +Aq?b:C?}߬!O?  nª    +) ?rT?9,$ H?  n®    +N^8?$?6D[XA@?  n²    +H?rv#?`LL_o8?  n¶    +|WK˖?ǭd8?Ʋ3\0?  nº    +CX>?L? - @d(?  n¾    + $,.?&֥`?_] ?  n    +'?}c\u?d5/9? - n    +@?Ќ.?UG[7?  n    +?zy?]GTcX - ?  n    +@?H&i?6DǫF+X?  n   ! +zW?am? \K7늟 ?  n   & +"3R?]?6!0bDzX? # n   + +vԿ?G.SA?^WP+)\? ( n   0 +H.R?U}?#]n]ῦ(F? - n   5 +1Nʲ?K?^{hbi]? 2 n   : +Y]??U+?>@lvT? 7 n   ? +Bc?ɭ @?vVl? < n   D +>_?1/T?Zgxg? A n   I +D,?klLh?j~̛po8? F n   N +hd?sxc|?m9Q? K n   S +< -=?ht?(ῇɧ? P n   X +?6g!?ܨ z#6? U n    ]  +=oX}? ?lmkΊs RB? Z n    b  +m7w?Z?ܘ#PKR? _ n -     g  +lp?eWy?O$$wɑ? d n      l   +ei?kk?'{NM~? i n    q  ++!c?bSW? - -u? n n      v   +{w:C\?;M<?u% &B݌m? s n      {   +zU?Ez0?(}g⿾*,$e? x n        +)N?C?pr#rµ\? }! n" #     #  $ +G?qbW?y/ӣAT?# % n& '   $ ' ( + kA?$OMk?p@#0 ? 7 8  < ? 8 @ +Rʲ?S -b?鸔W⿉u?? A nB C ; <  @ C < D +:8?Vr?बz⿧?C E nF G ? @  D G @ H +- ?x - ?x.n`,?G I nJ K C D  H K D L +-0?cÜ?E/X⿤Y?K M nN O G H  L O H P +Ym?23(0?sZw̵⿢pox?O Q nR S K L  P S L T + ?vC?_b?S U nV W O P  T W P X +?]2qp+W?4Gl⿛1W?W Y nZ [ S T  X [ T \ +? m5j?ĥy`?[ ] n^ _ W X  \ _ X ` +Mok?Cc~?DaR⿚w?_ a nb c [ \  ` c \ d +,P?~?7P2?c e nf g _ `  d g ` h +TI1?g=?x`(?g i nj k c d  h k d l +Pq ?<@?}C 04O?k m nn o g h  l o h p +Y?Kt?[o?o q nr s k l  p s l t +_A?*?!㿜.)?s u nv w o p  t w p x +i솴?00?/S-̠?w y nz { s t  x { t | +Q?'tr?&9%l!䰔?{ } n~  w x  |  x +)?rR٫?;E㿚p?  n‚ { |    | +' ؞?u+?AՆQ`t?  n†     +9̔? :5??Qa]uj?y?  nŠ    +̉CM?9R?c>;i p?  nŽ    +`T?裭Ze?=Lu㿊`g?  n’    +Y?kotx?~F$?U^?  n–    +rN[z?c?T/­vN)̆U?  nš    +:uVs?4UQ?9#v㿠jL?  nž    +bk?6ۙ?])G:UDIC?  n¢   % +Ad?c-?pL )QgI":? " n¦   * +t\?H-:R?XǵX/0? ' nª   / +oU?9$7?Hm(+'? , n®   4 +3=N?|/2k?doe. 㿘? 1 n²   9 + q'F?H'?[&㿊HO? 6 n¶   > +"???eX(?xg俉\8?  n    +5"?ua?#kv<~?  n    +T:>???TRbϢҧ u?  n    + 4{? ɯ?vv,/Tpk?  n    +~ ? =>?{+ita?  n      +b!?!?Q -MA@^%X?  n      +J9?oH?Rv23MHxN?  n -       +1I?+ l?b[p&D?  n         +aq? r?俁 ;?  n      +p+?wO?,Z俈z] Q1?  n         +=U?s -?RMO'ю'?  n         +E~?%?tiMjh{Y?  n        +bv?]?aw? ! n" #     #  $ +D{n?' -?ʹ;( -?# % n& '   $ ' ( +%? g?pc?Y1K#*IGQ?' ) n* + # $  ( + $ , +?_??Y3~L5Ru?+ - n. / ' (  , / ( 0 +UW?K&?HMq@F|ѓ?/ 1 n2 3 + ,  0 3 , 4 +Eq!O?R>C/?_K έ!?3 5 n6 7 / 0  4 7 0 8 +pG? 7?,VTE?7 9 n: ; 3 4  8 ; 4 < +\L??kD;@?a:>?; = n> ? 7 8  < ? 8 @ +Q mx7?4dI?^gl’?? A nB C ; <  @ C < D +ixz/?CR?w忒4޺?C E nF G ? @  D G @ H +G5U&?]x[? ~%忥Aް?G I nJ K C D  H K D L + - ?HXFЫd?S j/צئ?K M nN O G H  L O H P +7™?cm?@志͜?O Q nR S K L  P S L T +*T?bpv?BJ?S U nV W O P  T W P X +#T~?SM?p!?W Y nZ [ S T  X [ T \ +HځW?C&?%KԹe+~?[ ] n^ _ W X  \ _ X ` +U,?0e?0<>A ot?_ a nb c [ \  ` c \ d +&R?ͺ̙?ZFyF܈Kj?c e nf g _ `  d g ` h +b???q"`?g i nj k c d  h k d l +X%?Pyc?9kzUU?k m nn o g h  l $o h p +/ W?CT)?qtEn - K?o !q nr s k l  p )s l t +n\k?+?iR3q?Q ? N n–   V +]]'?c ?a-8[D&? S nš   [ +vuy?p ?Cyhfe@? X nž   ` +`VSq? C?Lq? ] n¢   e +Sh?z$?bj{I$W\? b n¦   j (+'p p`?e-?<;+? g n©  (o -+XW?K5?"e̐@-   Q  S ???Q ?-   Q  S ???Q @-   Q  S ???Q A-   Q  S ???Q B-   Q  S ???Q C-   Q  S ???Q D-   Q  S ???Q E-   Q  S ???Q F-   Q   S ???Q G-  }  Q { } S ???Q} H-{  y  Q w y S ???Qy I-w } u  Q s u S ???Qu J-s y q  Q o q S ???Qq K-o u m  Q k m S ???Qm L-k q i  Q g i S ???Qi M-g m e  Q c e S ???Qe N-c i a Q _ a S ???Qa O-_ e ] Q [ ] S???Q] P-[ a Y Q W Y S???QY Q-W ] U  Q S U  - S???QU R-S Y Q  Q - O Q  S ???QQ S-O -U M Q  K M -S???QM T-K Q I Q G I S???QI U-G M E Q C E S???QE V-C I A Q ? A S???QA W-? E = Q ; = S???Q= X-; A 9 Q 7 9  S???Q9 Y-7 = 5 !Q 3 5 "#S ???Q5 Z-3 9 1 $Q" / 1 %&S#???Q1 [-/ "5 - 'Q% + - "()S&???Q- \-+ %1 ) *Q( ' ) %+,S)???Q) ]-' (- % -Q+ # % (./S,???Q% ^-# +) ! 0Q.  ! +12S/???Q! _- .%  3Q1   .45S2???Q `- 1!  6Q4   178S5???Q a- 4  9Q7   4:;S8???Q b- 7  <Q:   7=>S;???Q c- : ?Q=  :@AS>???Q d- = BQ@   =CDSA???Q e- @  EQC   @FGSD???Q f- C  HQF  CIJSG???Q g- F KQI  FLMSJ???Q h- I NQL  IOPSM???Q i- L QQO  LRSSP???Q j- O TQR  OUVSS???Q k- R WQU  RXYSV???Q l- U ZQX  U[\SY???Q m- X ]Q[  X^_S\???Q n- [ `Q^  [abS_???Q o- ^ cQa  ^deSb???Q p- a fQd  aghSe???Q q- d iQg  djkSh???Q r- g lQj  gmnSk???Q s- j oQm  jpqSn???Q t- m rQp  mstSq???Q u- p uQs  pvwSt???Q v- s xQv  syzSw???Q w- v {Qy  v|}Sz???Q x- y ~Q|  yS}???Q y- | Q  |S???Q z-  Q  S???Q {-  Q  S???Q |-  Q  S???Q }-  Q  S???Q ~-  Q  S???Q -  Q  S???Q -  Q  S???Q -  Q  S???Q -  Q  S???Q -  Q  S???Q -  Q  S???Q -  Q  S???Q -  Q   S???Q -  } Q { } S???Q} -{  y Q w y S???Qy -w } u Q s u S???Qu -s y q Q o q S???Qq -o u m Q k m S???Qm -k q i Q g i S???Qi -g m e Q c e S???Qe -c i a Q _ a S???Qa -_ e ] Q [ ] S???Q] -[ a Y Q W Y S???QY -W ] U Q S U S???QU -S Y Q Q O Q S???QQ -O U M Q K M S???QM -K Q I Q G I S???QI -G M E Q C E S???QE -C I A Q ? A S???QA -? E = Q ; = S???Q= -; A 9 Q 7 9 S???Q9 -7 = 5 Q 3 5 S???Q5 -3 9 1 Q / 1 S???Q1 -/ 5 - Q + - S???Q- -+ 1 ) Q ' ) S???Q) -' - % Q # % S???Q% -# ) ! Q  ! S???Q! - %  Q   S???Q - !  Q   S???Q -   Q   S???Q -   Q   S???Q -  Q  S???Q -  Q   S???Q -   Q   S???Q -   Q    -S???Q -   Q     S -???Q -  Q   S ???Q -  Q  S???Q -  Q  S???Q -  Q  S???Q -  Q  S???Q -  Q  S???Q -   Q  !"S???Q -  #Q!  $%S"???Q - ! &Q$  !'(S%???Q - $ )Q'  $*+S(???Q - ' ,Q*  '-.S+???Q - * /Q-  *01S.???Q - - 2Q0  -34S1???Q - 0 5Q3  067S4???Q - 3 8Q6  39:S7???Q - 6 ;Q9  6<=S:???Q - 9 >Q<  9?@S=???Q - < AQ?  <BCS@???Q - ? DQB  ?EFSC???Q - B GQE  BHISF???Q - E JQH  EKLSI???Q - H MQK   HNOSL???Q - K PQN -  KQRSO???Q - N SQQ   NTUSR???Q - Q VQT   QWXSU???Q - T YQW   TZ[SX???Q - W \QZ  W]^S[???Q - Z _Q]  Z`aS^???Q - ] bQ`  ]cdSa???Q - ` eQc  `fgSd???Q - c hQf   cijSg???Q - f } kQi { } flmSj???Q} -{ i y nQl w y iopSm???Qy -w l} u qQo s u lrsSp???Qu -s oy q tQr o q ouvSs???Qq -o ru m wQu k m rxySv???Qm -k uq i zQx g i u{|Sy???Qi -g xm e }Q{ c e x~S|???Qe -c {i a Q~ _ a {S???Qa -_ ~e ] Q [ ] ~S???Q] -[ a Y Q W Y QY -W ] U Q S U S???QU -S Y Q Q O Q S???QQ -O U M Q K M S???QM -K Q I Q  G I S???QI -G M E Q! C E S???QE -C I A Q" ? A S???QA -? E = Q# ; = S???Q= -; A 9 Q$ 7 9 S???Q9 -7 = 5 Q% 3 5 S???Q5 -3 9 1 Q& / 1 S???Q1 -/ 5 - Q' + - S???Q- -+ 1 ) Q( ' ) S???Q) -' - % Q) # % S???Q% -# ) ! Q*  ! S???Q! - %  Q+   S???Q - !  Q,   S???Q -   Q-   S???Q -   Q.   S???Q -  Q/  S???Q -  Q0   S???Q -   Q1   S???Q -   Q2 - S???Q - - -Q3 - -S???Q -- - -Q4 - -S???Q -- - + -Q5 - -S???Q -- - - -Q6 - -S???Q -- - - -Q7 - -S???Q -- - - -Q8 - -S???Q -- - - -Q9 - -S???Q -- - - -Q: - -S???Q -- - - -Q; - -S???Q -- - - -Q< - -S???Q -- - - -Q= - -S???Q -- - - -Q> - -S???Q -- - - -Q? - -S???Q -- - - -Q@ - -S???Q -- - - -QA - -S???Q -- - - -QB - -S???Q -- - - -QC - -S???Q -- - - -QD - -S???Q -- - - -QE - -S???Q -- - - -QF - -S???Q -- - - -QG - - S???Q -- - - - -QH - -  S ???Q -- - - - Q I - -S ???Q -- -  - -QJ - - S???Q -- - - -QK - -S???Q -- - - -QL - -S???Q -- - - -QM - -S???Q -- - - -QN - -S???Q -- - - -QO - - !S???Q -- - - -"Q P - -#$S!???Q -- -  - -%Q#Q - - &'S$???Q -- -# - -(Q&R  - -#)*S'???Q -- -& -} -+Q)S { -} -&,-S*???Q} --{ -) -y -.Q,T w -y -)/0S-???Qy - -w -,} -u -1Q/U s -u -,23S0???Qu - --s -/y -q -4Q2V o -q -/56S3???Qq - -o -2u -m -7Q5W k -m -289S6???Qm - -k -5q -i -:Q8X g -i -5;<S9???Qi - -g -8m -e -=Q;Y c -e -8>?S<???Qe --c -;i -a -@Q>Z _ -a -;ABS????Qa --_ ->e -] -CQA[ [ -] ->DESB???Q] --[ -Aa -Y -FQD\ W -Y -AGHSE???QY --W -D] -U -IQG] S -U -DJKSH???QU --S -GY -Q -LQJ^ O -Q -GMNSK???QQ --O -JU -M -OQM_ K -M -JPQSN???QM --K -MQ -I -RQP` G -I -MSTSQ???QI --G -PM -E -UQSa C -E -PVWST???QE --C -SI -A -XQVb ? -A -SYZSW???QA --? -VE -= -[QYc ; -= -V\]SZ???Q= --; -YA -9 -^Q\d 7 -9 -Y_`S]???Q9 --7 -\= -5 -aQ_e 3 -5 -\bcS`???Q5 --3 -_9 -1 -dQbf / -1 -_efSc???Q1 --/ -b5 -- -gQeg + -- -bhiSf???Q- --+ -e1 -) -jQhh ' -) -eklSi???Q) --' -h- -% -mQki # -% -hnoSl???Q% --# -k) -! -pQnj  -! -kqrSo???Q! -- -n% - -sQqk  - -ntuSr???Q - - -q! - -vQtl  - -qwxSu???Q -!- -t - -yQwm  - -tz{Sx???Q -"- -w - -|Qzn  - -w}~S{???Q -#- -z - -Q}o - -zS~???Q -$- -} - -Qp  - -}S???Q -%- - - -Qq  - -S???Q -&- - - -Qr  -S???Q -'-  - Qs  S???Q (-  - Qt  S???Q )-  Qu  S???Q *-  Qv  S???Q +-  Qw  S???Q ,-  Qx  S???Q --  Qy  S???Q .-  Qz  S???Q /-  Q{  S???Q 0-  Q|  S???Q 1-  Q}  S???Q 2-  Q~  S???Q 3-  Q  S???Q 4-  Q  S???Q 5-  Q  S???Q 6-  Q  S???Q 7-  Q  S???Q 8-  Q  S???Q 9-  Q  S???Q :-  Q  S???Q ;-  Q  S???Q <-  Q  S???Q =-  Q  S???Q >-  Q  S???Q ?-  Q  S???Q @-  Q  S???Q A-  Q  S???Q B-  Q  S???Q C-  Q  S???Q D-  Q  S???Q E-  Q  S???Q F-  Q   S???Q G-  } Q { } S???Q} H-{  y Q w y S???Qy I-w } u Q s u S???Qu J-s y q Q o q S???Qq K-o u m Q k m S???Qm L-k q i Q g i S???Qi M-g m e Q c e S???Qe N-c i a Q _ a S???Qa O-_ e ] Q [ ] S???Q] P-[ a Y Q W Y S???QY Q-W ] U  Q S U  - S???QU R-S Y Q  Q - O Q  S ???QQ S-O -U M Q  K M -S???QM T-K Q I Q G I S???QI U-G M E Q C E S???QE V-C I A Q ? A S???QA W-? E = Q ; = S???Q= X-; A 9 Q 7 9  S???Q9 Y-7 = 5 !Q 3 5 "#S ???Q5 Z-3 9 1 $Q" / 1 %&S#???Q1 [-/ "5 - 'Q% + - "()S&???Q- \-+ %1 ) *Q( ' ) %+,S)???Q) ]-' (- % -Q+ # % (./S,???Q% ^-# +) ! 0Q.  ! +12S/???Q! _- .%  3Q1   .45S2???Q `- 1!  6Q4   178S5???Q a- 4  9Q7   4:;S8???Q b- 7  <Q:   7=>S;???Q c- : ?Q=  :@AS>???Q d- = BQ@   =CDSA???Q e- @  EQC   @FGSD???Q f- C  HQF  CIJSG???Q g-F KQI FLMSJ???Qh-I NQL IOPSM???Qi-LQQO LRSSP???Qj-OTQR OUVSS???Qk-RWQU RXYSV???Ql-UZQX U[\SY???Qm-X]Q[ X^_S\???Qn-[`Q^ [abS_???Qo-^cQa ^deSb???Qp-afQd aghSe???Qq-diQg djkSh???Qr-glQj gmnSk???Qs-joQm jpqSn???Qt-mrQp mstSq???Qu-puQs pvwSt???Qv-sxQv syzSw???Qw-v{Qy v|}Sz???Qx-y~Q| yS}???Qy-|Q |S???Qz-Q S???Q{-Q S???Q|-Q S???Q}-Q S???Q~-Q S???Q-Q S???Q-Q S???Q-Q S???Q-Q S???Q-Q S???Q-Q S???Q-Q S???Q-Q S???Q-}Q {}S???Q}-{yQ wyS???Qy-w}uQ suS???Qu-syqQ oqS???Qq-oumQ kmS???Qm-kqiQ giS???Qi-gmeQ ceS???Qe-ciaQ _aS???Qa-_e]Q []S???Q]-[aYQ WYS???QY-W]UQ SUS???QU-SYQQ OQS???QQ-OUMQ KMS???QM-KQIQ GIS???QI-GMEQ CES???QE-CIAQ ?AS???QA-?E=Q ;=S???Q=-;A9Q 79S???Q9-7=5Q 35S???Q5-391Q /1S???Q1-/5-Q +-S???Q--+1)Q ')S???Q)-'-%Q #%S???Q%-#)!Q !S???Q!-%Q S???Q-!Q S???Q-Q S???Q-Q S???Q- Q  S???Q -  Q  S???Q - Q S???Q- Q   -S???Q- Q    S -???Q- Q   S ???Q- Q  S???Q-Q S???Q-Q S???Q-Q S???Q-Q S???Q- Q !"S???Q-#Q! $%S"???Q-!&Q$ !'(S%???Q-$)Q' $*+S(???Q-',Q* '-.S+???Q-*/Q- *01S.???Q--2Q0 -34S1???Q-05Q3 067S4???Q-38Q6 39:S7???Q-6;Q9 6<=S:???Q-9>Q< 9?@S=???Q-<AQ? <BCS@???Q-?DQB ?EFSC???Q-BGQE BHISF???Q-EJQH EKLSI???Q-HMQK  HNOSL???Q-KPQN - KQRSO???Q-NSQQ  NTUSR???Q-QVQT  QWXSU???Q-TYQW  TZ[SX???Q-W\QZ W]^S[???Q-Z_Q] Z`aS^???Q-]bQ` ]cdSa???Q-`eQc `fgSd???Q-chQf cijSg???Q-f}kQi {}flmSj???Q}-{iynQl wyiopSm???Qy-wl}uqQo sulrsSp???Qu-soyqtQr oqouvSs???Qq-orumwQu kmrxySv???Qm-kuqizQx giu{|Sy???Qi-gxme}Q{ cex~S|???Qe-c{iaQ~ _a{S???Qa-_~e]Q []~S???Q]-[aYQ WYS???QY-W]UQ SUS???QU-SYQQ OQS???QQ-OUMQ KMS???QM-KQIQ  GIS???QI-GMEQ! CES???QE-CIAQ" ?AS???QA-?E=Q# ;=S???Q=-;A9Q$ 79S???Q9-7=5Q% 35S???Q5-391Q& /1S???Q1-/5-Q' +-S???Q--+1)Q( ')S???Q)-'-%Q) #%S???Q%-#)!Q* !S???Q!-%Q+ S???Q-!Q, S???Q-Q- S???Q-Q. S???Q- Q/  S???Q -  Q0  S???Q - Q1 S???Q- Q2 S???Q-Q3 S???Q-Q4 S???Q-.Q5 .S???S???RjRjRjRjRjRjRjR jR -jR jR jR jRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjR}jRzjRw jRt!jRq"jRn#jRk$jRh%jRe&jRb'jR_(jR\)jRY*jRV+jRS,jRP-jRM.jRJ/jRG0jRD1jRA2jR>3jR;4jR85jR56jR27jR/8jR,9jR):jR&;jR#jR?jR@jRAjRBjRCjR DjREjRFjRGjRHjRIjRJjRKjRLjRMjRNjROjRPjRQjRRjRSjRTjRUjRVjRWjRXjRYjRZjR[jR\jR]jR^jR_jR`jRajRbjRcjRdjRejRfjRgjRhjRijRjjRkjRljRmjRnjRojRpjRqjRrjR~sjR{tjRxujRuvjRrwjRoxjRlyjRizjRf{jRc|jR`}jR]~jRZjRWjRTjRQjRNjRKjRHjREjRBjR?jR<jR9jR6jR3jR0jR-jR*jR'jR$jR!jRjRjRjRjRjRjR jR jRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjR|jRyjRvjRsjRpjRmjRjjRgjRdjRajR^jR[jRXjRUjRRjROjRLjRIjRFjRCjR@jR=jR:jR7jR4jR1jR.jR+jR(jR%jR"jRjRjRjRjRjRjR jR -jRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRkRkRkRkRkRkRkRkRkR kR -kR kR kR kRkRkRkRkRkRkRkRkRkRkRkRkRkS???RkRkRkR}kRzkRw kRt!kRq"kRn#kRk$kRh%kRe&kRb'kR_(kR\)kRY*kRV+kRS,kRP-kRM.kRJ/kRG0kRD1kRA2kR>3kR;4kR85kR56kR27kR/8kR,9kR):kR&;kR#kR?kR@kRAkRBkRCkR DkREkRFkRGkRHkRIkRJkRKkRLkRMkRNkROkRPkRQkRRkRSkRTkRUkRVkRWkRXkRYkRZkR[kR\kR]kR^kR_kR`kRakRbkRckRdkRekRfkRgkRhkRikRjkRkkRlkRmkRnkRokRpkRqkRrkR~skR{tkRxukRuvkRrwkRoxkRlykRizkRf{kRc|kR`}kR]~kRZkRWkRTkRQkRNkRKkRHkREkRBkR?kR<kR9kR6kR3kR0kR-kR*kR'kR$kR!kRkRkRkRkRkRkR kR kRkRkRkR kR kR kR kR kR kR kR kR kR kR kR kR kR kR kR kR kO SDL/TYSA_COLOURO AEDT_EntityID_V1625  - 2< +<7  - 7@ +@=  - =D +DA  - AH +HE  - EL +LI  - IP +PM  - MT +TQ  - QX +XU  - U\ +\Y  - Y` +`]  - ]d +da  ~ -~ ah{ +he~ { z -z elw +liz w v -v ips +pmv s r -r mto +tqr o n -n qxk +xun k j -j u|g +|yj g f -f yc +}f c b -b }_ +b _ ^ -^ [ +^ [ Z -Z W +Z W V -V S +V S R -R O +R O N -N K +N K J -J G +J G F -F C +F C B -B ? +B ? > -> ; +> ; : -: 7 +: 7 6 -6 3 +6 3 2 -2 / +2 / . -. + +. + * -* ' +* ' & -& # +& # " -"  +"   -  +   -  +   -  +   -  +   -  +  - - -  + -   -  +   -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -   +    -   +   -   +  -  +  -  +  -   +   - $ +$!  - !( +(%  - %, +,)  - )0 +0-  - -4 +41  - 18 +85  - 5< +<9  - 9@ +@=  - =D +DA  - AH +HE  - EL +LI  - IP +PM  - MT +TQ  - QX +XU  - U\ +\Y  - Y` +`]  - ]d +da  ~ -~ ah{ +he~ { z -z elw +liz w v -v ips +pmv s r -r mto +tqr o n -n qxk +xun k j -j u|g +|yj g f -f yc +}f c b -b }_ +b _ ^ -^ [ +^ [ Z -Z W +Z W V -V S +V S R -R O +R O N -N K +N K J -J G +J G F -F C +F C B -B ? +B ? > -> ; +> ; : -: 7 +: 7 6 -6 3 +6 3 2 -2 / +2 / . -. + +. + * -* ' +* ' & -& # +& # " -"  +"   -  +   -  +   -  +   -  +   -  +  - - -  + -   -  +   -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -   +    -   +   -   +  -  +  -  +  -   +   - $ +$!  - !( +(%  - %, +,)  - )0 +0-  - -4 +41  - 18 +85  - 5< +<9  - 9@ +@=  - =D +DA  - AH +HE  - EL +LI  - IP +PM  - MT +TQ  - QX +XU  - U\ +\Y  - Y` +`]  - ]d +da  ~ -~ ah{ +he~ { z -z elw +liz w v -v ips +pmv s r -r mto +tqr o n -n qxk +xun k j -j u|g +|yj g f -f yc +}f c b -b }_ +b _ ^ -^ [ +^ [ Z -Z W +Z W V -V S +V S R -R O +R O N -N K +N K J -J G +J G F -F C +F C B -B ? +B ? > -> ; +> ; : -: 7 +: 7 6 -6 3 +6 3 2 -2 / +2 / . -. + +. + * -* ' +* ' & -& # +& # " -"  +"   -  +   -  +   -  +   -  +   -  +  - - -  + -   -  +   -  -+ +  + + + ++xh?/Y Hs^?ܿi;Bڇ? + +n + + +  + + +gx?0is?r:/$ݿ& +?  n  + +   + +- 9~?AG:U?Z/z0ݿ*z٫Pz?  n     "  +e? ?R3 r(Kݿ%՞s?  + n     '  +gY? Xo#?ueݿhl? $ n     ,  +U??Rݿ1_ e? ) n    1  +(m???0ݿQS^? . n      6   +w6? ɳ1?8;ݿ!gI X? 3 n      ;   +δG?G#o ?+Cݿv Q? 8 n     @  ! +G&>?`b;?c^7ݿq[-J? =" n# $    ! E$  % + ?D4?_K޿x z4C?$ B& n' ( !  % J( ! ) +dvi?nlTQI?99޿T4 n? @ 8 9  = h@ 9 A +?l ZU?kŌS࿣5?  n    +2l:g7?6hj?)Z`࿐i}?  n“    +ѨjP1??_Z$m࿉Vv?  n—    +j+? )蹓?-KyOun?  n›    +)ȷx%?,Z?D54ag?  nŸ    +8B?'?q'ltU^L_?  n£    +10?^?A'IxmW?  n§    +Aq?b:C?}߬ O?  n«    +$ ?rT?8,$ H?  n¯    +N^8?$?6D[XA@?  n³    +L?pv#?`OL_o8?  n·    +~WK˖?ĭd8?ò3}\0?  n»    +CX>?L? + @d(?  n¿    + $,.?!֥`?_] ?  n    +{'?}c\u? d7/9? + n    +D?Ќ.?RG[7?  n    +?xy?ZGTeX + ?  n    +@?J&i?5DǫF+ +X?  n   ! +|W?am? \K7늟 ?  n   & + 3R?a?1!0bDxX? # n   + +wԿ?G.SA?^WP-)\? ( n   0 +H.R?U}?"]n]ῧ(F? - n   5 +,Nʲ?J?Z{hbi]? 2 n   : +[]??U+?>@lvT? 7 n   ? +@c?ɭ @?uVl? < n   D +;_?1/T?Zgxg? A n   I +D,?klLh?e~̛ko8? F n   N +hd?vxc|?i9Q? K n   S += +=?ht?(ῆɧ? P n   X  +?6g!?ܨ |#6? U n    ]  +:oX}? ?mmk῝s RB? Z n     b  +m7w?Z?ߘ#RKR? _ + n     g  +lp?eWy?M$$sɑ? d n     l  +ei?kk?'{῀NM~? i n    q  ++!c?hSW? u? n n      v   +{w:C\?;M<?v% #B݌m? s n      {   +zU? Ez0?%}g*,$e? x n       ! +(N?C?pr#rµ\? }" n# $    ! $  % +G?qbW?y/ӣAT?$ & n' ( !  % ( ! ) + kA?!OMk?m@#0 n? @ 8 9  = @ 9 A +Uʲ?S +b?帔W⿆u?@ B nC D < =  A D = E +:8?Vr?᤬z⿥?D F nG H @ A  E H A I +- ?x + ?x.n`,?H J nK L D E  I L E M +-0?cÜ?E/X⿡Y?L N nO P H I  M P I Q +Xm?23(0?sZw̵⿣pox?P R nS T L M  Q T M U +?vC?_b?T V nW X P Q  U X Q Y +?[2qp+W?/Gl⿙1W?X Z n[ \ T U  Y \ U ] +? m5j?ȥy`?\ ^ n_ ` X Y  ] ` Y a +Mok?E㿘p?  nƒ | }    } +' ؞?l+? AՆQ`t?  n‡    +<̔?:5??Oa]sj?y?  n‹    +ΉCM?9R?c>;i p?  n    +`T?Ze?:Lu㿋`g?  n“    +Y?iotx?~F$ +"??:S%-?hy~ ? ; n»   C +x7?0?kx8? @ n¿   H +Ls0?f$?l_jx? E n   M +r(?sk-? +^ @c&? J n   R +!?*7?Ϲ̯? O n   W +^x?v@?5̌$I?eX(?xg俇\8?  n    +5"?ua?#kz<~?  n    +O:>???RRbϢԧ u?  n    + 4{? ɯ?sv,/Tpk?  n     +| ?=>?{)ita?  n      +`!?!?R +MA@^%X?  n       +F9?oH?Sv23MHxN?  + n       +1I?( l?b[p&D?  n       +aq? +r?俁 ;?  n      + +p+?uO?,Z俋z] Q1?  n         +=U?s +?RMO'ю'?  n         +E~?%?viMjd{Y?  n       ! +bv?\?`w? " n# $    ! $  % +D{n?* +?ʹ;( +?$ & n' ( !  % ( ! ) +%? g?oc?W1K#*HGQ?( * n+ , $ %  ) , % - +?_??U3~L5Ru?, . n/ 0 ( )  - 0 ) 1 +UW?K&?KMq@F|ѓ?0 2 n3 4 , -  1 4 - 5 +Eq!O?R>C/?_K +έ!?4 6 n7 8 0 1  5 8 1 9 +pG? 7?,VTE?8 : n; < 4 5  9 < 5 = +\L??lD;@?a:>?< > n? @ 8 9  = @ 9 A +O mx7?7dI?^gl’?@ B nC D < =  A D = E +jxz/?GR?w忐4޺?D F nG H @ A  E H A I +G5U&?\x[? +~%忨Aް?H J nK L D E  I L E M + + ?HXFЫd?N j1צئ?L N nO P H I  M P I Q +7™?gm?@忔͜?P R nS T L M  Q T M U +*T?bpv?BJ?T V nW X P Q  U X Q Y +#T~?SM?o!?X Z n[ \ T U  Y \ U ] +HځW?C&?%KԹb+~?\ ^ n_ ` X Y  ] ` Y a +U,?3e?0<>? ot?` b nc d \ ]  a d ] e +&R?ͺ̙?ZFyC܈Kj?d f ng h ` a  e h a i +b???q"`?h j nk l d e  i l e m +S%?Pyc?9k忁zUU?l n no p h i  m $p i q +/ W?ET)?mtEn + K?p !r ns t l m  q )t m u +n\k?+?iR3q?Q? N n—   V +]]'?c ?_-8[A&? S n›   [ +uuy?l ?Cyhfe@? X nŸ   ` +`VSq? C?Lq? ] n£   e +Sh?z$?bj{I$W\? b n§   j )+'p p`?e-?<;.? g nª  )o ++XW?K5?"e̐?.   Q  S ???Q ?.   Q  S ???Q @.   Q  S ???Q A.   Q  S ???Q B.   Q  S ???Q C.   Q  S ???Q D.   Q  S ???Q E.   Q  S ???Q F.   Q  S ???Q G.  ~  Q | ~ S ???Q~ H.|  z  Q x z S ???Qz I.x ~ v  Q t v S ???Qv J.t z r  Q p r S ???Qr K.p v n  Q l n S ???Qn L.l r j  Q h j S ???Qj M.h n f  Q d f S ???Qf N.d j b Q ` b S???Qb O.` f ^ Q \ ^ S???Q^ P.\ b Z Q X Z  S???QZ Q.X ^ V  +Q T V   S ???QV R.T Z R  Q  P R S ???QR S.P V N Q L N S???QN T.L R J Q H J S???QJ U.H N F Q D F S???QF V.D J B Q @ B S???QB W.@ F > Q < > S???Q> X.< B : Q 8 :  !S???Q: Y.8 > 6 "Q  4 6 #$S!???Q6 Z.4 : 2 %Q# 0 2 &'S$???Q2 [.0 #6 . (Q& , . #)*S'???Q. \., &2 * +Q) ( * &,-S*???Q* ].( ). & .Q, $ & )/0S-???Q& ^.$ ,* " 1Q/ " ,23S0???Q" _. /&  4Q2   /56S3???Q `. 2"  7Q5   289S6???Q a. 5  :Q8   5;<S9???Q b. 8  =Q;   8>?S<???Q c. ;  @Q>  ;ABS????Q d. > + CQA   + >DESB???Q + e. A  FQD   AGHSE???Q f. D +  IQG  DJKSH???Q g. G LQJ  GMNSK???Q h. J OQM  JPQSN???Q i. M RQP  MSTSQ???Q j. P UQS  PVWST???Q k. S XQV  SYZSW???Q l. V [QY  V\]SZ???Q m. Y ^Q\  Y_`S]???Q n. \ aQ_  \bcS`???Q o. _ dQb  _efSc???Q p. b gQe  bhiSf???Q q. e jQh  eklSi???Q r. h mQk  hnoSl???Q s. k pQn  kqrSo???Q t. n sQq  ntuSr???Q u. q vQt  qwxSu???Q v. t yQw  tz{Sx???Q w. w |Qz  w}~S{???Q x. z Q}  zS~???Q y. } Q  }S???Q z.  Q  S???Q {.  Q  S???Q |.  Q  S???Q }.  Q  S???Q ~.  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  ~ Q | ~ S???Q~ .|  z Q x z S???Qz .x ~ v Q t v S???Qv .t z r Q p r S???Qr .p v n Q l n S???Qn .l r j Q h j S???Qj .h n f Q d f S???Qf .d j b Q ` b S???Qb .` f ^ Q \ ^ S???Q^ .\ b Z Q X Z S???QZ .X ^ V Q T V S???QV .T Z R Q P R S???QR .P V N Q L N S???QN .L R J Q H J S???QJ .H N F Q D F S???QF .D J B Q @ B S???QB .@ F > Q < > S???Q> .< B : Q 8 : S???Q: .8 > 6 Q 4 6 S???Q6 .4 : 2 Q 0 2 S???Q2 .0 6 . Q , . S???Q. ., 2 * Q ( * S???Q* .( . & Q $ & S???Q& .$ * " Q " S???Q" . &  Q   S???Q . "  Q   S???Q .   Q   S???Q .   Q   S???Q .   Q  S???Q .  + Q   + S???Q + .   Q   S???Q .  +   Q   + S???Q .   Q +   S ???Q . + Q   +S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q  S???Q .  Q   S???Q .  !Q  "#S ???Q .  $Q"  %&S#???Q . " 'Q%  "()S&???Q . % *Q(  %+,S)???Q . ( -Q+  (./S,???Q . + 0Q.  +12S/???Q . . 3Q1  .45S2???Q . 1 6Q4  178S5???Q . 4 9Q7  4:;S8???Q . 7 <Q:  7=>S;???Q . : ?Q=  :@AS>???Q . = BQ@  =CDSA???Q . @ EQC  @FGSD???Q . C HQF  CIJSG???Q . F KQI  FLMSJ???Q . I NQL   IOPSM???Q . L QQO +  LRSSP???Q . O TQR   OUVSS???Q . R WQU   RXYSV???Q . U ZQX   U[\SY???Q . X ]Q[  X^_S\???Q . [ `Q^  [abS_???Q . ^ cQa  ^deSb???Q . a fQd  aghSe???Q . d iQg  djkSh???Q . g ~ lQj | ~ gmnSk???Q~ .| j z oQm x z jpqSn???Qz .x m~ v rQp t v mstSq???Qv .t pz r uQs p r pvwSt???Qr .p sv n xQv l n syzSw???Qn .l vr j {Qy h j v|}Sz???Qj .h yn f ~Q| d f yS}???Qf .d |j b Q ` b |S???Qb .` f ^ Q \ ^ S???Q^ .\ b Z Q X Z QZ .X ^ V Q T V S???QV .T Z R Q P R S???QR .P V N Q L N S???QN .L R J Q  H J S???QJ .H N F Q! D F S???QF .D J B Q" @ B S???QB .@ F > Q# < > S???Q> .< B : Q$ 8 : S???Q: .8 > 6 Q% 4 6 S???Q6 .4 : 2 Q& 0 2 S???Q2 .0 6 . Q' , . S???Q. ., 2 * Q( ( * S???Q* .( . & Q) $ & S???Q& .$ * " Q* " S???Q" . &  Q+   S???Q . "  Q,   S???Q .   Q-   S???Q .   Q.   S???Q .   Q/  S???Q .  + Q0   + S???Q + .   Q1   S???Q .  +  Q2  S???Q .  +Q3  -- - -+ - +S???Q +. + +Q4  -- - -+ - +S???Q +. + + +Q5  -- - -+ - +S???Q +. + + +Q6  -- - -+ - +S???Q +. + + +Q7  -- - -+ - +S???Q +. + + +Q8  -- - -+ - +S???Q +. + + +Q9  -- - -+ - +S???Q +. + + +Q:  -- - -+ - +S???Q +. + + +Q;  -- - -+ - +S???Q +. + + +Q<  -- -  -+   - +S???Q +. + + +Q=  -- -  -+  - +S???Q +. + + +Q>  -- -  -+ - +S???Q +. + + +Q?  -- - -+ - +S???Q +. + + +Q@  -- - -+ - +S???Q +. + + +QA  -- -  -+  - +S???Q +. + + +QB  -- -$ -+$! - +S???Q +. + + +QC  -- -!( -+(% - +S???Q +. + + +QD  -- -%, -+,) - +S???Q +. + + +QE  -- -)0 -+0- - +S???Q +. + + +QF  -- --4 -+41 - +S???Q +. + + +QG  -- -18 -+85 - +  +S???Q +. + + + Q H  -- -5< -+<9 - +  S +???Q +. +  + +Q I  -- -9@ -+@= - + S ???Q +. +  + +QJ  -- -=D -+DA - + S???Q +. + + +QK  -- -AH -+HE - +S???Q +. + + +QL  -- -EL -+LI - +S???Q +. + + +QM  -- -IP -+PM - +S???Q +. + + +QN  -- -MT -+TQ - +S???Q +. + + + QO  -- -QX -+XU - +!"S???Q +. + + +#Q!P  -- -U\ -+\Y - +$%S"???Q +. +! + +&Q$Q  -- -Y` -+`] - +!'(S%???Q +. +$ + +)Q'R  -- -]d -+da - +$*+S(???Q +. +' +~ +,Q*S | ~ --~ -ah{ -+he~ -{ +'-.S+???Q~ +.| +* +z +/Q-T x z --z -elw -+liz -w +*01S.???Qz + .x +-~ +v +2Q0U t v --v -ips -+pmv -s +-34S1???Qv + +.t +0z +r +5Q3V p r --r -mto -+tqr -o +067S4???Qr + .p +3v +n +8Q6W l n --n -qxk -+xun -k +39:S7???Qn + .l +6r +j +;Q9X h j --j -u|g -+|yj -g +6<=S:???Qj + .h +9n +f +>Q<Y d f --f -yc -+}f -c +9?@S=???Qf +.d +<j +b +AQ?Z ` b --b -}_ -+b -_ +<BCS@???Qb +.` +?f +^ +DQB[ \ ^ --^ -[ -+^ -[ +?EFSC???Q^ +.\ +Bb +Z +GQE\ X Z --Z -W -+Z -W +BHISF???QZ +.X +E^ +V +JQH] T V --V -S -+V -S +EKLSI???QV +.T +HZ +R +MQK^ P R --R -O -+R -O +HNOSL???QR +.P +KV +N +PQN_ L N --N -K -+N -K +KQRSO???QN +.L +NR +J +SQQ` H J --J -G -+J -G +NTUSR???QJ +.H +QN +F +VQTa D F --F -C -+F -C +QWXSU???QF +.D +TJ +B +YQWb @ B --B -? -+B -? +TZ[SX???QB +.@ +WF +> +\QZc < > --> -; -+> -; +W]^S[???Q> +.< +ZB +: +_Q]d 8 : --: -7 -+: -7 +Z`aS^???Q: +.8 +]> +6 +bQ`e 4 6 --6 -3 -+6 -3 +]cdSa???Q6 +.4 +`: +2 +eQcf 0 2 --2 -/ -+2 -/ +`fgSd???Q2 +.0 +c6 +. +hQfg , . --. -+ -+. -+ +cijSg???Q. +., +f2 +* +kQih ( * --* -' -+* -' +flmSj???Q* +.( +i. +& +nQli $ & --& -# -+& -# +iopSm???Q& +.$ +l* +" +qQoj " --" - -+" - +lrsSp???Q" +. +o& + +tQrk   -- - -+ - +ouvSs???Q + . +r" + +wQul   -- - -+ - +rxySv???Q +!. +u + +zQxm   -- - -+ - +u{|Sy???Q +". +x + +}Q{n   -- - -+ - +x~S|???Q +#. +{ + +Q~o  -- - -+ - - +{S???Q +$. +~ -- - -+ +Qp  + + +~S???Q - +%. + + +Qq   -- - -+ - +S???Q +&. + + + +Qr  -- - + -  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -   +    -   +   -   +  -  +  -  +  -   +   - $ +$!  - !( +(%  - %, +,)  - )0 +0-  - -4 +41  - 18 +85  - 5< +<9  - 9@ +@=  - =D +DA  - AH +HE  - EL +LI  - IP +PM  - MT +TQ  - QX +XU  - U\ +\Y  - Y` +`]  - ]d +da  ~ -~ ah{ +he~ { z -z elw +liz w v -v ips +pmv s r -r mto +tqr o n -n qxk +xun k j -j u|g +|yj g f -f yc +}f c b -b }_ +b _ ^ -^ [ +^ [ Z -Z W +Z W V -V S +V S R -R O +R O N -N K +N K J -J G +J G F -F C +F C B -B ? +B ? > -> ; +> ; : -: 7 +: 7 6 -6 3 +6 3 2 -2 / +2 / . -. + +. + * -* ' +* ' & -& # +& # " -"  +"   -  +   -  +   -  +   -  +   -  +  - - -  + -   -  +   - + -+-+-+-+-+-+-+-+-+- +  - + - +-+-+- + -$+$!-!(+(%-%,+,)-)0+0---4+41-18+85-5<+<9-9@+@=-=D+DA-AH+HE-EL+LI-IP+PM-MT+TQ-QX+XU-U\+\Y-Y`+`]-]d+da~-~ah{+he~{z-zelw+lizwv-vips+pmvsr-rmto+tqron-nqxk+xunkj-ju|g+|yjgf-fyc+}fcb-b}_+b_^-^[+^[Z-ZW+ZWV-VS+VSR-RO+RON-NK+NKJ-JG+JGF-FC+FCB-B?+B?>->;+>;:-:7+:76-63+632-2/+2/.-.++.+*-*'+*'&-&#+&#"-"+"-+-+-+-+- +  -- -+ --+-+-+-+-+-+-+-+-+-+-+- +  - + - +-+-+- + -$+$!-!(+(%-%,+,)-)0+0---4+41-18+85-5<+<9-9@+@=-=D+DA-AH+HE-EL+LI-IP+PM-MT+TQ-QX+XU-U\+\Y-Y`+`]-]d+da~-~ah{+he~{z-zelw+lizwv-vips+pmvsr-rmto+tqron-nqxk+xunkj-ju|g+|yjgf-fyc+}fcb-b}_+b_^-^[+^[Z-ZW+ZWV-VS+VSR-RO+RON-NK+NKJ-JG+JGF-FC+FCB-B?+B?>->;+>;:-:7+:76-63+632-2/+2/.-.++.+*-*'+*'&-&#+&#"-"+"-+-+-+-+- +  -- -+ --+-+-+-+-R kRjQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-RkQ-}{RkQ{~-ywRkQw}-us{RkQs|-qowRkQo{-mksRkQkz-igoRkQgy-eckRkQcx-a_gRkQ_w-][cRkQ[v-YW_RkQWu-US[RkQSt-QOWRkQOs-MKSRkQKr-IGORkQGq-ECKRkQCp-A?GRkQ?o-=;CRkQ;n-97?RkQ7m-53;RkQ3l-1/7RkQ/k--+3RkQ+j-)'/RkQ'i-%#+RkQ#h-!'RkQg-#RkQf-RkQe-RkQd-RkQc-   RkQ b-  -R kQa-  R -kQ`- R kQ_- R kQ^-R kQ]-RkQ\-RkQ[-RkQZ-RkQY-RkQX-RkQW-RkQV-RkQU-RkQT-RkQS-RkQR-RkQQ-RkQP-RkQO-RkQN-RkQM-RkQL- RkQK-!R lQJ-"R!lQI-#R"lQH-$R#lQG-%R$lQF-&R%lQE-'R&lQD-(R'lQC-)R(lQB-*R) lQA-+R* -lQ@-,R+ lQ?-}{-R, lQ{>-yw.R- lQw=-us{/R.lQs<-qow0R/lQo;-mks1R0lQk:-igo2R1lQg9-eck3R2lQc8-a_g4R3lQ_7-][c5R4lQ[6-YW_6R5lQW5-US[7R6lQS4-QOW8R7lQO3-MKS9R8lQK2-IGO:R9lQG1-ECK;R:lQC0-A?G<R;lQ?/-=;C=R<lQ;.-97?>R=lQ7--53;?R>lQ3,-1/7@R?lQ/+--+3AR@ lQ+*-)'/BRA!lQ')-%#+CRB"lQ#(-!'DRC#lQ'-#ERD$lQ&-FRE%lQ%-GRF&lQ$-HRG'lQ#-  IRH(lQ "- JRI)lQ!- KRJ*lQ -LRK+lQ-MRL,lQ-NRM-lQ-ORN.lQ-PRO/lQ-QRP0lQ-RRQ1lQ-SRR2lQ-TRS3lQ-URT4lQ-VRU5lQ-WRV6lQ-XRW7lQ-YRX8lQ-ZRY9lQ-[RZ:lQ-\R[;lQ-]R\lQ -`R_?lQ -aR`@lQ --bRaAlQ -cRbBlQ-dRcClQ-eRdDlQ-fReElQ-gRfFlQ-hRgGlQ-iRhHlQ-jRiIlQ-kRjJlQ-lRkKlQ-}{mRlLlQ{-ywnRmMlQw-us{oRnNlQs-qowpRoOlQo-mksqRpPlQk-igorRqQlQg-ecksRrRlQc-a_gtRsSlQ_-][cuRtTlQ[-YW_vRuUlQW-US[wRvVlQS-QOWxRwWlQO-MKSyRxXlQK-IGOzRyYlQG-ECK{RzZlQC-A?G|R{[lQ?-=;C}R|\lQ;-97?~R}]lQ7-53;R~^lQ3-1/7R_lQ/--+3R`lQ+-)'/RalQ'-%#+RblQ#-!'RclQ-#RdlQ-RelQ-RflQ-RglQ-  RhlQ - RilQ- RjlQ-RklQ-RllQ-RmlQ-RnlQ-RolQ-RplQ-RqlQ-RrlQ-RslQ-RtlQ-RulQ-RvlQ-RwlQ-RxlQ-RylQ-RzlQ-R{lQ-R|lQ-R}lQ-R~lQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-}{RlQ{-ywRlQw-us{RlQs-qowRlQo-mksRlQk-igoRlQg-eckRlQc-a_gRlQ_-][cRlQ[-YW_RlQW-US[RlQS-QOWRlQO-MKSRlQK-IGORlQG-ECKRlQC-A?GRlQ?-=;CRlQ;-97?RlQ7-53;RlQ3-1/7RlQ/--+3RlQ+-)'/RlQ'-%#+RlQ#-!'RlQ-#RlQ-RlQ-RlQ-RlQ-  RlQ - RlQ- RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-RlQ-}{RlQ{~-ywRlQw}-us{RlQs|-qowRlQo{-mksRlQkz-igoRlQgy-eckRlQcx-a_gRlQ_w-][cRlQ[v-YW_RlQWu-US[RlQSt-QOWRlQOs-MKSRlQKr-IGORlQGq-ECKRlQCp-A?GRlQ?o-=;CRlQ;n-97?RlQ7m-53;RlQ3l-1/7RlQ/k--+3RlQ+j-)'/RlQ'i-%#+RlQ#h-!'RlQg-#RlQf-RlQe-RlQd-RlQc-   RlQ b-  -R lQa-  R -lQ`- R lQ_- R lQ^-R lQ]-RlQ\-RlQ[-RlQZ-RlQY-RlQX-RlQW-RlQV-RlQU-RlQT-RlQS-RlQR-RlQQ-RlQP-RlQO-RlQN-RlQM-RlQL- RlQK-!R mQJ-"R!mQI-#R"mQH-$R#mQG-%R$mQF-&R%mQE-'R&mQD-(R'mQC-)R(mQB-*R) mQA-+R* -mQ@-,R+ mQ?-}{-R, mQ{>-yw.R- mQw=-us{/R.mQs<-qow0R/mQo;-mks1R0mQk:-igo2R1mQg9-eck3R2mQc8-a_g4R3mQ_7-][c5R4mQ[6-YW_6R5mQW5-US[7R6mQS4-QOW8R7mQO3-MKS9R8mQK2-IGO:R9mQG1-ECK;R:mQC0-A?G<R;mQ?/-=;C=R<mQ;.-97?>R=mQ7--53;?R>mQ3,-1/7@R?mQ/+--+3AR@ mQ+*-)'/BRA!mQ')-%#+CRB"mQ#(-!'DRC#mQ'-#ERD$mQ&-FRE%mQ%-GRF&mQ$-HRG'mQ#-  IRH(mQ "- JRI)mQ!- KRJ*mQ -LRK+mQ-MRL,mQ-NRM-mQ-ORN.mQ-PRO/mQ-QRP0mQ-RRQ1mQ-SRR2mQ-TRS3mQ-URT4mQ-VRU5mQ-WRV6mQ-XRW7mQ-YRX8mQ-ZRY9mQ-[RZ:mQ-\R[;mQ-]R\mQ -`R_?mQ -aR`@mQ --bRaAmQ -cRbBmQ-dRcCmQ-eRdDmQ-fReEmQ-gRfFmQ-hRgGmQ-iRhHmQ-jRiImQ-kRjJmQ-lRkKmQ-}{mRlLmQ{-ywnRmMmQw-us{oRnNmQs-qowpRoOmQo-mksqRpPmQk-igorRqQmQg-ecksRrRmQc-a_gtRsSmQ_-][cuRtTmQ[-YW_vRuUmQW-US[wRvVmQS-QOWxRwWmQO-MKSyRxXmQK-IGOzRyYmQG-ECK{RzZmQC-A?G|R{[mQ?-=;C}R|\mQ;-73?~R}]mQ3-2/;R~^mR_mR4`mR0amJ&   $P#-(#T%vacuumOAEDT_MaterialName_V1$end 'x_b' +S???Q +'. + + Qs  S???Q (.  + Qt  S???Q ).  Qu  S???Q *.  Qv  S???Q +.  Qw  S???Q ,.  Qx  S???Q -.  Qy  S???Q ..  Qz  S???Q /.  Q{  S???Q 0.  Q|  S???Q 1.  Q}  S???Q 2.  Q~  S???Q 3.  Q  S???Q 4.  Q  S???Q 5.  Q  S???Q 6.  Q  S???Q 7.  Q  S???Q 8.  Q  S???Q 9.  Q  S???Q :.  Q  S???Q ;.  Q  S???Q <.  Q  S???Q =.  Q  S???Q >.  Q  S???Q ?.  Q  S???Q @.  Q  S???Q A.  Q  S???Q B.  Q  S???Q C.  Q  S???Q D.  Q  S???Q E.  Q  S???Q F.  Q  S???Q G.  ~ Q | ~ S???Q~ H.|  z Q x z S???Qz I.x ~ v Q t v S???Qv J.t z r Q p r S???Qr K.p v n Q l n S???Qn L.l r j Q h j S???Qj M.h n f Q d f S???Qf N.d j b Q ` b S???Qb O.` f ^ Q \ ^ S???Q^ P.\ b Z Q X Z  S???QZ Q.X ^ V  +Q T V   S ???QV R.T Z R  Q  P R S ???QR S.P V N Q L N S???QN T.L R J Q H J S???QJ U.H N F Q D F S???QF V.D J B Q @ B S???QB W.@ F > Q < > S???Q> X.< B : Q 8 :  !S???Q: Y.8 > 6 "Q  4 6 #$S!???Q6 Z.4 : 2 %Q# 0 2 &'S$???Q2 [.0 #6 . (Q& , . #)*S'???Q. \., &2 * +Q) ( * &,-S*???Q* ].( ). & .Q, $ & )/0S-???Q& ^.$ ,* " 1Q/ " ,23S0???Q" _. /&  4Q2   /56S3???Q `. 2"  7Q5   289S6???Q a. 5  :Q8   5;<S9???Q b. 8  =Q;   8>?S<???Q c. ;  @Q>  ;ABS????Q d. > + CQA   + >DESB???Q + e. A  FQD   AGHSE???Q f. D +  IQG  DJKSH???Q g. G LQJ GMNSK???Qh.J OQM JPQSN???Qi.MRQP MSTSQ???Qj.PUQS PVWST???Qk.SXQV SYZSW???Ql.V[QY V\]SZ???Qm.Y^Q\ Y_`S]???Qn.\aQ_ \bcS`???Qo._dQb _efSc???Qp.bgQe bhiSf???Qq.ejQh eklSi???Qr.hmQk hnoSl???Qs.kpQn kqrSo???Qt.nsQq ntuSr???Qu.qvQt qwxSu???Qv.tyQw tz{Sx???Qw.w|Qz w}~S{???Qx.zQ} zS~???Qy.}Q }S???Qz.Q S???Q{.Q S???Q|.Q S???Q}.Q S???Q~.Q S???Q.Q S???Q.Q S???Q.Q S???Q.Q S???Q.Q S???Q.Q S???Q.Q S???Q.Q S???Q.~Q |~S???Q~.|zQ xzS???Qz.x~vQ tvS???Qv.tzrQ prS???Qr.pvnQ lnS???Qn.lrjQ hjS???Qj.hnfQ dfS???Qf.djbQ `bS???Qb.`f^Q \^S???Q^.\bZQ XZS???QZ.X^VQ TVS???QV.TZRQ PRS???QR.PVNQ LNS???QN.LRJQ HJS???QJ.HNFQ DFS???QF.DJBQ @BS???QB.@F>Q <>S???Q>.<B:Q 8:S???Q:.8>6Q 46S???Q6.4:2Q 02S???Q2.06.Q ,.S???Q..,2*Q (*S???Q*.(.&Q $&S???Q&.$*"Q "S???Q". &Q S???Q."Q S???Q.Q S???Q.Q S???Q.Q S???Q.  +Q  +S???Q +.Q S???Q. + Q  + S???Q. Q +  S ???Q. +Q   +S???Q. Q  S???Q.Q S???Q.Q S???Q.Q S???Q.Q  S???Q.!Q "#S ???Q.$Q" %&S#???Q."'Q% "()S&???Q.%*Q( %+,S)???Q.(-Q+ (./S,???Q.+0Q. +12S/???Q..3Q1 .45S2???Q.16Q4 178S5???Q.49Q7 4:;S8???Q.7<Q: 7=>S;???Q.:?Q= :@AS>???Q.=BQ@ =CDSA???Q.@EQC @FGSD???Q.CHQF CIJSG???Q.FKQI FLMSJ???Q.INQL  IOPSM???Q.LQQO + LRSSP???Q.OTQR  OUVSS???Q.RWQU  RXYSV???Q.UZQX  U[\SY???Q.X]Q[ X^_S\???Q.[`Q^ [abS_???Q.^cQa ^deSb???Q.afQd aghSe???Q.diQg djkSh???Q.g~lQj |~gmnSk???Q~.|jzoQm xzjpqSn???Qz.xm~vrQp tvmstSq???Qv.tpzruQs prpvwSt???Qr.psvnxQv lnsyzSw???Qn.lvrj{Qy hjv|}Sz???Qj.hynf~Q| dfyS}???Qf.d|jbQ `b|S???Qb.`f^Q \^S???Q^.\bZQ XZS???QZ.X^VQ TVS???QV.TZRQ PRS???QR.PVNQ LNS???QN.LRJQ  HJS???QJ.HNFQ! DFS???QF.DJBQ" @BS???QB.@F>Q# <>S???Q>.<B:Q$ 8:S???Q:.8>6Q% 46S???Q6.4:2Q& 02S???Q2.06.Q' ,.S???Q..,2*Q( (*S???Q*.(.&Q) $&S???Q&.$*"Q* "S???Q". &Q+ S???Q."Q, S???Q.Q- S???Q.Q. S???Q.Q/ S???Q.  +Q0  +S???Q +.Q1 S???Q. +Q2 S???Q.Q3 S???Q.Q4 S???Q./Q5 /S???S???RjRjRjRjRjRjRjR jR +jR jR jR jRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjR~jR{jRx jRu!jRr"jRo#jRl$jRi%jRf&jRc'jR`(jR])jRZ*jRW+jRT,jRQ-jRN.jRK/jRH0jRE1jRB2jR?3jR<4jR95jR66jR37jR08jR-9jR*:jR';jR$jR?jR@jRAjRBjRCjR DjR EjRFjRGjRHjRIjRJjRKjRLjRMjRNjROjRPjRQjRRjRSjRTjRUjRVjRWjRXjRYjRZjR[jR\jR]jR^jR_jR`jRajRbjRcjRdjRejRfjRgjRhjRijRjjRkjRljRmjRnjRojRpjRqjRrjRsjR|tjRyujRvvjRswjRpxjRmyjRjzjRg{jRd|jRa}jR^~jR[jRXjRUjRRjROjRLjRIjRFjRCjR@jR=jR:jR7jR4jR1jR.jR+jR(jR%jR"jRjRjRjRjRjRjR jR +jRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjR}jRzjRwjRtjRqjRnjRkjRhjRejRbjR_jR\jRYjRVjRSjRPjRMjRJjRGjRDjRAjR>jR;jR8jR5jR2jR/jR,jR)jR&jR#jR jRjRjRjRjRjRjR jRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRjRkRkRkRkRkRkRkRkRkR kR +kR kR kR kRkRkRkRkRkRkRkRkRkRkRkRkRkS???RkRkRkR~kR{kRx kRu!kRr"kRo#kRl$kRi%kRf&kRc'kR`(kR])kRZ*kRW+kRT,kRQ-kRN.kRK/kRH0kRE1kRB2kR?3kR<4kR95kR66kR37kR08kR-9kR*:kR';kR$kR?kR@kRAkRBkRCkR DkR EkRFkRGkRHkRIkRJkRKkRLkRMkRNkROkRPkRQkRRkRSkRTkRUkRVkRWkRXkRYkRZkR[kR\kR]kR^kR_kR`kRakRbkRckRdkRekRfkRgkRhkRikRjkRkkRlkRmkRnkRokRpkRqkRrkRskR|tkRyukRvvkRswkRpxkRmykRjzkRg{kRd|kRa}kR^~kR[kRXkRUkRRkROkRLkRIkRFkRCkR@kR=kR:kR7kR4kR1kR.kR+kR(kR%kR"kRkRkRkRkRkRkR kR +kRkRkRkR kR kR kR kR kR kR kR kR kR kR kR kR kR kR kR kR kO SDL/TYSA_COLOURO AEDT_EntityID_V1736  - 3= +=8  - 8A +A>  - >E +EB  - BI +IF  - FM +MJ  - JQ +QN  - NU +UR  - RY +YV  - V] +]Z  - Za +a^  - ^e +eb  - bi| +if | { -{ fmx +mj{ x w -w jqt +qnw t s -s nup +urs p o -o ryl +yvo l k -k v}h +}zk h g -g zd +~g d c -c ~` +c ` _ -_ \ +_ \ [ -[ X +[ X W -W T +W T S -S P +S P O -O L +O L K -K H +K H G -G D +G D C -C @ +C @ ? -? < +? < ; -; 8 +; 8 7 -7 4 +7 4 3 -3 0 +3 0 / -/ , +/ , + -+ ( ++ ( ' -' $ +' $ # -#  +#  -  +   -  +   -  +   -  +   -  +  -  +   -  +   -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -   +   -   +  +  -  + +  -  +  -  +  -  +  - ! +!  - % +%"  - ") +)&  - &- +-*  - *1 +1.  - .5 +52  - 29 +96  - 6= +=:  - :A +A>  - >E +EB  - BI +IF  - FM +MJ  - JQ +QN  - NU +UR  - RY +YV  - V] +]Z  - Za +a^  - ^e +eb  - bi| +if | { -{ fmx +mj{ x w -w jqt +qnw t s -s nup +urs p o -o ryl +yvo l k -k v}h +}zk h g -g zd +~g d c -c ~` +c ` _ -_ \ +_ \ [ -[ X +[ X W -W T +W T S -S P +S P O -O L +O L K -K H +K H G -G D +G D C -C @ +C @ ? -? < +? < ; -; 8 +; 8 7 -7 4 +7 4 3 -3 0 +3 0 / -/ , +/ , + -+ ( ++ ( ' -' $ +' $ # -#  +#  -  +   -  +   -  +   -  +   -  +  -  +   -  +   -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -   +   -   +  +  -  + +  -  +  -  +  -  +  - ! +!  - % +%"  - ") +)&  - &- +-*  - *1 +1.  - .5 +52  - 29 +96  - 6= +=:  - :A +A>  - >E +EB  - BI +IF  - FM +MJ  - JQ +QN  - NU +UR  - RY +YV  - V] +]Z  - Za +a^  - ^e +eb  - bi| +if | { -{ fmx +mj{ x w -w jqt +qnw t s -s nup +urs p o -o ryl +yvo l k -k v}h +}zk h g -g zd +~g d c -c ~` +c ` _ -_ \ +_ \ [ -[ X +[ X W -W T +W T S -S P +S P O -O L +O L K -K H +K H G -G D +G D C -C @ +C @ ? -? < +? < ; -; 8 +; 8 7 -7 4 +7 4 3 -3 0 +3 0 / -/ , +/ , + -+ ( ++ ( ' -' $ +' $ # -#  +#  -  +   -  +   -  +   -  +   -  +  -  +   -  +   -  +  +- + ++ + + +- + ++ + + +- + ++ + + +- + ++ + + +- + ++ + + +- + ++ + + +- + ++ + + +- + ++ + + +- +  ++  + + +- +  ++  + + + +- + + ++ + + +- + ++ + + +- + ++ + + +- + ++ + + +- +! ++! + + +- +% ++%" + + +- +") ++)& + + +- +&- ++-* + + +- +*1 ++1. + + +- +.5 ++52 + + +- +29 ++96 + + +- +6= ++=: + + +- +:A ++A> + + +- +>E ++EB + + +- +BI ++IF + + +- +FM ++MJ + + +- +JQ ++QN + + +- +NU ++UR + + +- +RY ++YV + + +- +V] ++]Z + + +- +Za ++a^ + + +- +^e ++eb + + +- +bi| ++if +| +{ +-{ +fmx ++mj{ +x +w +-w +jqt ++qnw +t +s +-s +nup ++urs +p +o +-o +ryl ++yvo +l +k +-k +v}h ++}zk +h +g +-g +zd ++~g +d +c +-c +~` ++c +` +_ +-_ +\ ++_ +\ +[ +-[ +X ++[ +X +W +-W +T ++W +T +S +-S +P ++S +P +O +-O +L ++O +L +K +-K +H ++K +H +G +-G +D ++G +D +C +-C +@ ++C +@ +? +-? +< ++? +< +; +-; +8 ++; +8 +7 +-7 +4 ++7 +4 +3 +-3 +0 ++3 +0 +/ +-/ +, ++/ +, ++ +-+ +( +++ +( +' +-' +$ ++' +$ +# +-# + ++# + + +- + ++ + + +- + ++ + + +- + ++ + + +- + ++ + + +- + ++ + + +- + ++ + + +- + ++ + + +- + ++ + + -  +  -  +  -  +  -  +  -  +  -  +  -  +  -  +  -   +   -   +  +  -  + +  -  +  -  +  -  +  - ! +!  - % +%"  - ") +)&  - &- +-*  - *1 +1.  - .5 +52  - 29 +96  - 6= +=:  - :A +A>  - >E +EB  - BI +IF  - FM +MJ  - JQ +QN  - NU +UR  - RY +YV  - V] +]Z  - Za +a^  - ^e +eb  - bi| +if | { -{ fmx +mj{ x w -w jqt +qnw t s -s nup +urs p o -o ryl +yvo l k -k v}h +}zk h g -g zd +~g d c -c ~` +c ` _ -_ \ +_ \ [ -[ X +[ X W -W T +W T S -S P +S P O -O L +O L K -K H +K H G -G D +G D C -C @ +C @ ? -? < +? < ; -; 8 +; 8 7 -7 4 +7 4 3 -3 0 +3 0 / -/ , +/ , + -+ ( ++ ( ' -' $ +' $ # -#  +#  -  +   -  +   -  +   -  +   -  +  -  +   -  +   -  + -+-+-+-+-+-+-+-+- + - +  +- ++-+-+-+-!+!-%+%"-")+)&-&-+-*-*1+1.-.5+52-29+96-6=+=:-:A+A>->E+EB-BI+IF-FM+MJ-JQ+QN-NU+UR-RY+YV-V]+]Z-Za+a^-^e+eb-bi|+if|{-{fmx+mj{xw-wjqt+qnwts-snup+urspo-oryl+yvolk-kv}h+}zkhg-gzd+~gdc-c~`+c`_-_\+_\[-[X+[XW-WT+WTS-SP+SPO-OL+OLK-KH+KHG-GD+GDC-C@+C@?-?<+?<;-;8+;87-74+743-30+30/-/,+/,+-+(++('-'$+'$#-# +# -+-+-+-+- +  - + -+-+-+-+-+-+-+-+-+-+- + - +  +- ++-+-+-+-!+!-%+%"-")+)&-&-+-*-*1+1.-.5+52-29+96-6=+=:-:A+A>->E+EB-BI+IF-FM+MJ-JQ+QN-NU+UR-RY+YV-V]+]Z-Za+a^-^e+eb-bi|+if|{-{fmx+mj{xw-wjqt+qnwts-snup+urspo-oryl+yvolk-kv}h+}zkhg-gzd+~gdc-c~`+c`_-_\+_\[-[X+[XW-WT+WTS-SP+SPO-OL+OLK-KH+KHG-GD+GDC-C@+C@?-?<+?<;-;8+;87-74+743-30+30/-/,+/,+-+(++('-'$+'$#-# +# -+-+-+-+- +  - + -+-+-+-+-R kRjQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.RkQ.~|RkQ|~.zxRkQx}.vt|RkQt|.rpxRkQp{.nltRkQlz.jhpRkQhy.fdlRkQdx.b`hRkQ`w.^\dRkQ\v.ZX`RkQXu.VT\RkQTt.RPXRkQPs.NLTRkQLr.JHPRkQHq.FDLRkQDp.B@HRkQ@o.><DRkQ<n.:8@RkQ8m.64<RkQ4l.208RkQ0k..,4RkQ,j.*(0RkQ(i.&$,RkQ$h." (RkQ g.$RkQf. RkQe.RkQd. RkQc.  +R kQ b. + R +kQa.  R kQ`. R kQ_.R kQ^.RkQ].RkQ\.RkQ[.RkQZ.RkQY.RkQX.RkQW.RkQV.RkQU.RkQT.RkQS.RkQR.RkQQ.RkQP.RkQO.RkQN.RkQM. RkQL.!R kQK."R!lQJ.#R"lQI.$R#lQH.%R$lQG.&R%lQF.'R&lQE.(R'lQD.)R(lQC.*R)lQB.+R* lQA.,R+ +lQ@.-R, lQ?.~|.R- lQ|>.zx/R. lQx=.vt|0R/lQt<.rpx1R0lQp;.nlt2R1lQl:.jhp3R2lQh9.fdl4R3lQd8.b`h5R4lQ`7.^\d6R5lQ\6.ZX`7R6lQX5.VT\8R7lQT4.RPX9R8lQP3.NLT:R9lQL2.JHP;R:lQH1.FDL<R;lQD0.B@H=R<lQ@/.><D>R=lQ<..:8@?R>lQ8-.64<@R?lQ4,.208AR@lQ0+..,4BRA lQ,*.*(0CRB!lQ().&$,DRC"lQ$(." (ERD#lQ '.$FRE$lQ&. GRF%lQ%.HRG&lQ$.IRH'lQ#. JRI(lQ ". +KRJ)lQ!. LRK*lQ .MRL+lQ.NRM,lQ.ORN-lQ.PRO.lQ.QRP/lQ.RRQ0lQ.SRR1lQ.TRS2lQ.URT3lQ.VRU4lQ.WRV5lQ.XRW6lQ.YRX7lQ.ZRY8lQ.[RZ9lQ.\R[:lQ.]R\;lQ.^R]lQ .aR`?lQ .bRa@lQ +.cRbAlQ .dRcBlQ.eRdClQ.fReDlQ.gRfElQ.hRgFlQ.iRhGlQ.jRiHlQ.kRjIlQ.lRkJlQ.mRlKlQ.~|nRmLlQ|.zxoRnMlQx.vt|pRoNlQt.rpxqRpOlQp.nltrRqPlQl.jhpsRrQlQh.fdltRsRlQd.b`huRtSlQ`.^\dvRuTlQ\.ZX`wRvUlQX.VT\xRwVlQT.RPXyRxWlQP.NLTzRyXlQL.JHP{RzYlQH.FDL|R{ZlQD.B@H}R|[lQ@.><D~R}\lQ<.:8@R~]lQ8.64<R^lQ4.208R_lQ0..,4R`lQ,.*(0RalQ(.&$,RblQ$." (RclQ .$RdlQ. RelQ.RflQ.RglQ. RhlQ . +RilQ. RjlQ.RklQ.RllQ.RmlQ.RnlQ.RolQ.RplQ.RqlQ.RrlQ.RslQ.RtlQ.RulQ.RvlQ.RwlQ.RxlQ.RylQ.RzlQ.R{lQ.R|lQ.R}lQ.R~lQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.~|RlQ|.zxRlQx.vt|RlQt.rpxRlQp.nltRlQl.jhpRlQh.fdlRlQd.b`hRlQ`.^\dRlQ\.ZX`RlQX.VT\RlQT.RPXRlQP.NLTRlQL.JHPRlQH.FDLRlQD.B@HRlQ@.><DRlQ<.:8@RlQ8.64<RlQ4.208RlQ0..,4RlQ,.*(0RlQ(.&$,RlQ$." (RlQ .$RlQ. RlQ.RlQ.RlQ. RlQ . +RlQ. RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.RlQ.~|RlQ|~.zxRlQx}.vt|RlQt|.rpxRlQp{.nltRlQlz.jhpRlQhy.fdlRlQdx.b`hRlQ`w.^\dRlQ\v.ZX`RlQXu.VT\RlQTt.RPXRlQPs.NLTRlQLr.JHPRlQHq.FDLRlQDp.B@HRlQ@o.><DRlQ<n.:8@RlQ8m.64<RlQ4l.208RlQ0k..,4RlQ,j.*(0RlQ(i.&$,RlQ$h." (RlQ g.$RlQf. RlQe.RlQd. RlQc.  +R lQ b. + R +lQa.  R lQ`. R lQ_.R lQ^.RlQ].RlQ\.RlQ[.RlQZ.RlQY.RlQX.RlQW.RlQV.RlQU.RlQT.RlQS.RlQR.RlQQ.RlQP.RlQO.RlQN.RlQM. RlQL.!R lQK."R!mQJ.#R"mQI.$R#mQH.%R$mQG.&R%mQF.'R&mQE.(R'mQD.)R(mQC.*R)mQB.+R* mQA.,R+ +mQ@.-R, mQ?.~|.R- mQ|>.zx/R. mQx=.vt|0R/mQt<.rpx1R0mQp;.nlt2R1mQl:.jhp3R2mQh9.fdl4R3mQd8.b`h5R4mQ`7.^\d6R5mQ\6.ZX`7R6mQX5.VT\8R7mQT4.RPX9R8mQP3.NLT:R9mQL2.JHP;R:mQH1.FDL<R;mQD0.B@H=R<mQ@/.><D>R=mQ<..:8@?R>mQ8-.64<@R?mQ4,.208AR@mQ0+..,4BRA mQ,*.*(0CRB!mQ().&$,DRC"mQ$(." (ERD#mQ '.$FRE$mQ&. GRF%mQ%.HRG&mQ$.IRH'mQ#. JRI(mQ ". +KRJ)mQ!. LRK*mQ .MRL+mQ.NRM,mQ.ORN-mQ.PRO.mQ.QRP/mQ.RRQ0mQ.SRR1mQ.TRS2mQ.URT3mQ.VRU4mQ.WRV5mQ.XRW6mQ.YRX7mQ.ZRY8mQ.[RZ9mQ.\R[:mQ.]R\;mQ.^R]mQ .aR`?mQ .bRa@mQ +.cRbAmQ .dRcBmQ.eRdCmQ.fReDmQ.gRfEmQ.hRgFmQ.iRhGmQ.jRiHmQ.kRjImQ.lRkJmQ.mRlKmQ.~|nRmLmQ|.zxoRnMmQx.vt|pRoNmQt.rpxqRpOmQp.nltrRqPmQl.jhpsRrQmQh.fdltRsRmQd.b`huRtSmQ`.^\dvRuTmQ\.ZX`wRvUmQX.VT\xRwVmQT.RPXyRxWmQP.NLTzRyXmQL.JHP{RzYmQH.FDL|R{ZmQD.B@H}R|[mQ@.><D~R}\mQ<.84@R~]mQ4.30<R^mR_mR5`mR1amJ'   %P$.(#T&vacuumOAEDT_MaterialName_V1$end 'x_b' $begin 'x_b' -Design_95.setup/NativeGeometryFiles/0022273.x_b +Design_89.setup/NativeGeometryFiles/0022273.x_b BIN000000080287 **ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** **PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** @@ -122351,411 +100671,418 @@ SITE=unknown; USER=unknown; FORMAT=binary; GUISE=transmit; -KEY=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0022273.x_b; -FILE=C:/Users/gmalinve/AppData/Local/Temp/Mot2E0A3084017059352357.setup/Design_95.setup/NativeGeometryFiles/0022273.x_b; +KEY=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0022273.x_b; +FILE=C:/Users/gmalinve/AppData/Local/Temp/Max55935276017343355752.setup/Design_89.setup/NativeGeometryFiles/0022273.x_b; DATE=unknown; **PART2; -SCH=SCH_3401241_34101; +SCH=SCH_3501210_35102; USFLD_SIZE=0; **PART3; **END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE> -   @@:0yE>QF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZDS@@OSDL/TYSA_DENSITYP !(#TUNIT=mmO!AEDT_EntityName_V1P"#(#S{Gz?O#AEDT_ExtentScale_V1Q$%&F'' ( (2 (+?? -u)*+7W^$?D?4 =.?9lcT?=@4A,t/?4i?@9BCDE=nAF=Gj1?4eY?FeHIJKAnGLAM+i?PZ?LNOPQGnMRGS;GZ?600?RyTUVWMnSXMY$k?4[ ?XiZ[K\SnY]S^v?OnQ ?  ?naȔ?+mw?n͠d?1F2?naėX?k%8?a]nڳ`?Y*??nOF0?a4?nqt@ ?f?3na_nmv?fxto?gn\?Ť!?nnG?f=?nQ?O=m~?%nzYE$ `?7?zunhԫu7?&&?hc n - D}N4?x? -  n sҴHo ?Y&?so n }vw?# ?gnI^qI?0D?un7W^$?D?@7n< 7AEb2? ?BC<nA D<ExB?9D*c?D-FGHIAnE AJ68 jv8?`꯹?KKLEnJMEN^?8Eo?MCOPQJnNJRS?~\?5STDNnRNUx:?Mxytnwtz5z?*oC?i{|}wnz~w!lV?kh?~znz*zKX?vB?Snj -%?K?n:Wv`y?")?:q6n/;? 4v9?n[64p??nK+]?2?KgFXn 3ݑ?A`Lc?n!??#n"5xL?i,?50n#Qߠ?{Խ\?QEMn$/Ύ1?ޫ`~G?/n%D? Pm?An&=Г?#2Rx?~n'Wq?!C?{bn(D=L?q@??D7@n). :Y?9ު?Yn*5C#?ynun4q\?_d?an5IޓM?Ǹ?I/Dn6&I١?J߬?>?]n7KP?7|?5n8=ф?uX?n9  -DD?,$%ew?    n -:aQ?!cָ?;n -n;P - 氋?i,?PLn<*V^?uS?n=/;EXl?5(Ŕ? n>Ҷp?W_Es? !n?"t? -ّ?#$^n"@%&?)?$F ?%m'(\)"n&A:"*+aQ?+aQ?: +,3&n*B-&.#`?@?-Y/01*n.Cm*2&86d?:4?m334hm.n2DJ.5ۗ ?]?Jc678F2n5E29+?g}hv?:;< -5n9F=5>z?tXg?=?@'9n>G9A_=?_Fj?BC/?>nAHD>E t?dh?DFGHAnEIAI1"?q/??JKEnIJELo[??MNOInLKPIQ -&?X,X?PRST<LnQL}LUu}? йvc?}kVWXQnUMQYqZm?'ێN?Z[\UnYNU]FA!?Of<3?^_=Yn]OY`Ag? ?abD]n`P]cYǓ6?/￶:?!de`ncQ`f'G?P0~?QghicnfRcj BCj?~?ang#d?ιp5? nhx;j?E"U?zcniH$U8?OB?HDnj+*PsVM;?㲅?+OnkJҬ? `0?|nlgϲx?:T?gcnmQ9bu? ?QLnn\ v -U?vsM?\XnoOS ?ui?OnpqC$?iti~?nq1?(J??Q+nrUZg?KS -?U1nsZQ?l{O?r{ntb+ij? ?|nur@0Ϝ?ܰ?rmnv]1?r3(?=Enwq71`)?m?E>nxVC?S?Vw+Rny"3=m4?ΣQc7?"-lnz<_%#?+Ұ+?<Pn{C.?5'9?n|X׃?-w?Xm}n}Z+U?u"d?Wn~yn?o7(2R?%nSgG? Lk?n+mzn?',?cn?j`?Ď?n$Ns8?*O?_8n ~?RQ?{n) ne ? ;]?)o!"%n  #ۏmL?'0J? $%  n#  &Gm?nA? '(h#n&r#)s6?,\z?r*+sn&n)&,]?w1Ö?-.)n,)/Iuf?HYl?A01M,n/,2 Ę?SZ;?34g/n2/5#J?V،?}672n528iR?MZ7?I9:5n85;7b=?ޭ%?'<=>8n;8? ?ZFΗ?o@AX:;n?;B8g#?:# ſ?CCD?nB?EMZ?*?FGBnEtBH -!?'*#?tIJosEnHKE,en?7iw?KLM@NHn,H aWT?Jo~?OP ,nQOi5$QPR%STU+R.(RPUVW+%RP  XYS+S PT-TZnPYV[UV-V\n–T]^Q\5V_Z`a]`n´Vbc^Vde+a'ž\?X?F?2c4df^+?j`:? 2?MvLxnyyzrw{r|+*zKX?vB?݀ص?d5{R}n†~w|w+]?wԑO? D>?4 nƒ||+dv`?vm?t e?my!n‰+81w1?_'J?ߪmA?{Fn+͠d?1F2?#ƶ?Ȱn¿f+ԫu7?&&?+͋h?ny+68 jv8?`꯹?VC?/U^GyJnLv+^?8Eo?''io?%kBnP+ ?ZFΗ?_n? UnnA+ -!?'*#?S8)i?"!`nJ+id.?]܂n?fLJN?='Vf?pnš+ZQ?l{O?%Wd?Ln~+1?(J??B0G?q(#~Pn{+: b?}JV{?Hz?#n~+ v -U?vsM?LX"?VPn+$k?4[ ?Li?ug'hn[+U?y1^?_ ]?nK+$U8?OB?hb>?Fgnº !+$=c?x@? ?˾"nf#!$%+K?4 ?Icf#3?>8_$R&n '(!%)!*+S?~\?V\Du?iWg)4+nT,%*-%.+_=?_Fj? R@?!--/nC01*.2*3+u}? йvc?wX¦?F`2j4nW5.36.7+G?!_0C?F A.?t<6~8n9373:+\P:b?^H?NF?>9x{\;n£<7:=7>+ -&?X,X?6?O=?nS@A:>:B+Gm?nA?[¤?9qCn(D>BE>F+Cl?Cl?;f;fEGnHIBFJBK+&86d?:4?@ߐ$?=J2Ln4MNFKOFP+DD?,$%ew?E?, OQn RYKPSKT+yn?o7(2R?V 2?S$UnVWPTXPY+/G?@}Q?8_ -?l-zXZn[\]TY^T_+珠?#??0bJ?ns^`nabcY_Yd+L%_h,?؇?ڃ3?m}envf_dg_h+t;?.6?Un?Gg`in{jdhdk+}vw?# ? VC?a^4ln#hkhm+}?n ?1?7e"nn¢ -okmkp+ ~?RQ?FYE?1kL1qnrmpms+\@>?Ď?gv$?]! tnpsupv+[?`*q?mrM?cuzwn”x9svsy+9+?6Ϋ?h̺~?{Oznr]vy{v|+x;j?E"U?X+?\`{}n·~y|y+0(?r"z?;)[?Ҋ[n­||+tPv?_ag?5=dž?ZVnw<+w]???d5_?xGv<Zn(+߅P?pO?&zG?I=|e(TnŠ$+Wv`y?")?P,R?apn‘+2?͚|?{D?; -Gn’f++i?PZ?Go?^_[nON+T:t?dj?a'?N4nJ+YE$ `?7?_9ʋ)'?I^*n{+:[?e!f?c] ??tn¨+8g#?:# ſ??xu^-BnDr+Vb?[8ä&?V?_1?rn¥+I^qI?0D?*vu?h#g`tnt+S ?ui?F8!?qaVEtnqz+9Y+WB?=>???vmSzNn®v'+g?h?I!?tAsW?,D@~Zn±+?)?$F ?q9D?<'ln(+z?tXg?ğ+?;Kn@k+*PsVM;?㲅??xj_Nn¾~0+@0Ϝ?ܰ?sn9?Ync0 +n?Vt]?ټ0+K?>#?Qޒ?n+nK?!*!?0$Zb?3Ҭnu+5Cc+C.?5'9?lU3?6.KnD+v?S!0?En -V+??N?;V"nªS   + t?dh?}8?0s  -nG  k +FA!?Of<3?A?{k n_g     +YǓ6?/￶:?gVp>? neV  ~ +'vBt?Yku?)?q>~nf{ R + BCn›+KP?7|?7&@"?A_jn+ۗ ?]? -r?4b n7g!+#`?@?QL&o?E4lX"n0!#$+qd ?Վ? ?~(3?9< M9@+ihYT? ?=Tx:?8M0AnkBJ<@!5<C+5z?*oC?X)?l,{5hDn|02@C"p@E+ r?H;?v9?I$pdFnGl0CE#WCH+7b=?ޭ%?R#ܒ?[3D?W&In=SJEH$jEK+$Ns8?*O?TC'?j^LngHK%HM+q71`)?m?Sb?sf4DNnKM&KO+x1cf/ch+ 氋?i,?{ap?<UMinrfh0fj+i@;5~?*J? ?2kn~hj1hl+ Ę?SZ;? *"N?ЕYF+mn4jl2jn+qt@ ?f?S:?-%O2on)ln3?lp+\?Ť!? A׬?_.?qn;np4rns+ڳ`?Y*??T14yr>tnps5fpu+s6?,\z?ژՇ4?;qfvn+su6Isw+\M?q+?? M#IxnE)uw7uy+]1?r3(?`2?W<znwy8w{+Q ?  ?57?d|n´Qy{9 y}+N ?iM-?Vz};}+nUDg?Rwz?ڦ&?e?8nƒ<+lҋ?[2Qk?շ9?Jeܯrn9U=+-8?'L9V?i82?Qj<n& ->+g-?I=·?cݳ?bsf<nr?#+ϲx?:T?Zq3g?Y=#n@H+??Cl?H n,/EA+`+,?m?i, ?i/C*n‘JB+Eb2? ?/_? nC?CU+:uj?eǸ?.5f?` Utn–RD+iR?MZ7?LU*?|୔Hn:Ex+;GZ?600?-8%z?UmػxxnURuF9+dEF?r?@2D-?L9|nŠu6G+Wq?!C?ow?!` -znH+ ?N}%?eUX?7v]:nIB+7kD??s{%?RQ?;طB.nMJ+׃?-w?=?:ln2K+qZm?'ێN?MKw?P,+n[L+&I١?J߬?>?C!??W6\njM+\b5?q*-l?5*( h?c#>&n¬oN1+J?3J?&?1n¯-OY+ۏmL?'0J?!u?!!Yn%OTP+w30?;Wz?|p#?:Yn3Q+ėX?k%8?g?XMnR'+'G?P0~?G;M?Y'Pnhz$Sb+¦ٍy?O3fM? N~?c:kbnº^TJ+h2?evՊ?s8MۋY?N#=J(n½WU++]?2??<fn V+`,??@? Ln*Wo+ە>j?~?l?x5o`n°lX+en?7iw?g.a}?k_nMbY+$)?a/?`j?BA'n‹Z\[+/?U{G|?=?jv\n„X[[T+aWT?Jo~??{ǼyW?+\Q[+oR? ay??vM"nQn]+]?w1Ö?w?>~̐n.^+D? Pm?P@J?G&@n¼_+Iuf?HYl?_L?S@n1r`++qC$?iti~?\G?k>n;f+. :Y?9ު? JCP?BpXn<g+3=m4?ΣQc7?gMg?N ,n)Bh+xB?9D*c?xb?S.,nGi,+=L?q@??ڭ?4,6n)j0+Ύ1?ޫ`~G?jY? ٣ǁ0n·b-k/+?/ -n9 Hl++?g}hv?W`o?K,n;Am+.?:?Ʀ?h? On¦n+#J?V،?s!׺?F|n7o+SgG? Lk?x(??'Dn#p+xL?i,?Bsz?.@n¯qu+=Г?#2Rx?L3؝?NӖZunq*rb+[%?Ϊap?i"s?nErbn.&0s)*+*V^?uS?$\?0BS )nIj*t -+Wd3?!?s-z?!>.AHny*Q5RL+LRyy+R>+>-Ly->G<nQ5>P5(#Q5CQ5KRLiQK5xRMiQx5KRNiQ5xgROiQg5  RPiQ 5ig - R QiQ -5  R RiU -i nQ5 -R SiQ5RTiQ5RUiQ5RViQ5RWiQ5RXiQ5RYiQ5RZieGnQ5{R[iQ{5VR\iQV5}{R]iQ5XV@R^iQ@5R_iQ5:@8R`iQ856RaiQ5+8 Rbi+u6V nQ5VT!R ciQT5R"R!diQ5WT#R"eiQ5$R#fiQ5%&R$giQ%5]['R&hi]%Y(nQ[5Y%)R'iiQ5^[#*R)jiQ#5+R*kiQ5# ,R+liQ 5-R,miQ5 .R-niQ5/R.oiQ501R/piQ05422R1qi4003nQ25004R2riQ5525R4siQ5 6R5tiQ 57R6uiQ5 8R7viQ59R8wiQ5B:R9xiQB5;<R:yiQ;5B=R<zi;>nQ5;?R={iQ5ge@R?|iQe5cAR@}iQ5he'BRA~iQ'5 CRBiQ5'DRCiQ5ERDiQ5FREiQ5OMGRFiQM5HRGiQ5MIRHiQ5~JRIiRJhRCKL+>M3dv`?vm?M>}c=84?f|?34>N2?͚|?N3O Z?nn?PXHNnOHNQ`+,?m?H+R>DOnQNOS¦ٍy?O3fM?NTKqQnSqQU珠?#?qVaNmSnU@SWȨ.b?>?@X;KUnW\UY^N?է?\kZeX%WnYW[:?'?!\ #Yn[TY(8Fz?Dd?T]P[n(][^ܲ٠?F@y=t5?^(_g?h?I!?[`-^n_^/G?@}Q?a[s_n_b r?H;?bncnUDg?Rwz?n9dibncbegvJt?Fg? f[cnecg]?wԑO?hengeiVb?[8ä&?jPgni>gkh2?evՊ?>)lHink?i J?3J??m;kn kn߅P?pO?n ?\b5?q*-l?'onn?bn<Fd?u?byp?nQp#5b`qRabrs+R7st+aRur+r-sb-Ravu+ua-Rwv+v-R"xw+w-"R()yx+x)-(R"e%zy+y%"-eR([\{z+z\(-[ReX|{+{Xe-R[IK}|+|K[-IR7F~}+}F-7RI{J~+~JI-{R78g+87-R{j+{g-R+j-R0+-0Rw-+--wR01+10-Rw+w-R{+-R~+{-R*+++~-*R+-R*:+*-:R+-R:+:-RPQ+Q-PR1M+M-1RP+P-R1r+1-R+r-R+-Rln+n-lRi+i-Rl4mN+ml-4RkmJ+mN-kR4hM+h4J-RklB+lkM-R!"+"B-!R)+-R!+!)-)*n! -Q!5)Q@)Q 5Q"5RgQAQ#5BARgQBBQA$5MLRgQCMAQL%5JARgQDJLQ&5NL4RgQENQ4'5RgQF4Q(54RgQGQ)5RgQHQ*5tRgQIQt+5rRgQJrtQ,5tRgQKQ-5RgQLQ.5RgQMQ/5RgQNQ05RgQOQ15RgQPQ25RgQQQ35RgQRQ45~}RgQS~Q}55{RgQT{}Q65}RgQUQ75"RgQVQ"85RgQW"Q95"RgQXQ:5LRgQYQL;5jiRgQZjLQi<5gL RgQ[giQ =5iRgQ\ Q>5 RhQ]Q?5RhQ^Q@5dRhQ_QdA5RhQ`dQB5dRhQaQC5RhQb  -QD5  RhQ c  QE5 R hQ d QF5RhQe QG5R hQfQH5R -hQgQI5R hQhQJ5R hQiQK5 R hQj!"QL5!#R hQ!k$%QM5$&R#hQ$l!'(QN5')R&hQ'm$*+QO5*t,R)hQ*n'-.QtP5-/R,hQ-ot*01QQ50t2R/hQ0p-34QR535R2hQ3q067QS568R5hQ6r39:QT59%;R8hQ9s6<=Q%U5#<a>R;hQ<t#%9?@QaV5&?%AR>hQ?u&a<BCQW5bBaDRAhQBvb?EFQX50E/GRDhQEw0BHIQ/Y5-HJRGhQHx-/EKLQZ51K/gMRJhQKy1HNOQg[5NPRMhQNzgKQRQ\5QgSRPhQQ{NTUQ]5TVRShQT|QWXQ^5bW`YRV hQW}bTZ[Q`_5^Z\RY!hQZ~^`W]^Q`5c]`_R\"hQ]cZ`aQa5`bR_#hQ`]cdQb5ceRb$hQc`fgQc5fqhRe%hQfcijQqd5ikRh&hQiqflmQe5rlqinRk'hQlriopQif5oqRn(hQoilrsQg5ri-tRq)hQrouvQ-h5uwRt*hQu-rxyQi5\x-ZzRw+hQx\u{|QZj5X{:}Rz,hQ{XZx~Q:k5]~ZzR}-hQ~]:{Qzl5:R.hQz~Qm5zeR/hQQen5vR0hQeQvo5feR1hQfvQp5vR2hQQq5R3hQQr5R4hQQs5}R5hQQ}t5{R6hQ{}Qu5~}kR7hQ~Qkv5mR8hQkQmw5kR9hQmQx5mR:hQQy5R;hQQz5WRhQQ -}5 R?hQ  -Q~5 -R@hQQ5RAhQQ5RBhQQ5RChQQ5RDhQQ5REhQQ5~RFhQQ~5 RGhQ ~Q5@~?RHhQ@Q?5=/RIhQ=?Q/5A?RJhQA/Q5/RKhQQ5RLhQQ5RQRMhQRQQ5ORNhQOQQ5YQZROhQYQZ5T\RPhQTZ_RQhPAQ_V\S???Q]`_S???Q`5]\QbS???Q5b`ZQZS???QZ5QS???Q5Z|Q|S???Q|5QQS???Q5Q|PQPS???QP5QS???Q5PQS???Q5Q  -S???Q5 Q   S -???Q5 Q  S ???Q5 Q S???Q5QVS???Q5VUQSUS???QU5SIQWIS???QI5WUQJS???Q5JI Q!"S???Q5#Q!$%S"???Q5!&Q$!'(S%???Q5$)Q'$*+S(???Q5'o,Q*o'-.S+???Qo5*+/Q-)+*01S.???Q+5)-o2Q0,-34S1???Q5,0+5Q3067S4???Q538Q639:S7???Q56z;Q9z6<=S:???Qz59>Q<9?@S=???Q5<zAQ?<BCS@???Q5?DQB?EFSC???Q5BNGQENBHISF???QN5EJQHEKSI???Q5HNLQHMNSK???QMyOPSN???Q5yMxQQOvxMRSSP???Qx5vOTQRzOUVSS???Q5zRxWQU'RXYSV???Q5'U&ZQX$&U[\SY???Q&5$X]Q[(X^_S\???Q5([&8`Q^8[abS_???Q85^cQa^deSb???Q5a8fQd<aghSe???Q5<d;iQg;djkSh???Q;5glQjgmnSk???Q5j;oQmojpqSn???Q5omnrQplnmstSq???Qn5lpFuQspFpvwSt???QF5psn2xQv02syzSw???Q250vFD{Qy5Dv|}Sz???QD55y24~Q|24yS}???Q452|DQ|S???Q54QS???Q5QS???Q5QS???Q5QUS???Q5UTQRTS???QT5RQxS???Q5xTwQuwS???Qw5uQ9S???Q59w8Q68S???Q856QS???Q58QS???Q5QS???Q5QS???Q5QS???Q5QS???Q5_Q_S???Q_5QS???Q5_QfS???fndQ5fQS???Q5QS???Q5QS???Q5QS???Q5QS???Q5Q>S???Q5>=Q;=S???Q=5;qQ?qS???Qq5?=QS???Q5qQS???Q5lQlS???Ql5Q#S???Q5#l"Q"S???Q"5QS???Q5"CQCS???QC5]QD]S???Q]5DCQS???Q5]QS???Q5QtS???Q5tsQqsS???Qs5qQuS???Q5us6Q *6S???Q65*1S???RhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRf+R34+R +f--R -  + - -R  + -R -$  +  --$R  + -R$\^  + ^$-\RY  + Y-R\]  + ]\-R 6 + -R 9 + 6-RUW - u + W9-URR x +B3: TRANSMIT FILE created by modeller version 3501210SCH_3501210_35102_13006PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataentries $CCCIlatticeCCCImeshIpolylineCCCCCCCDIownerCCCIboundary_latticeCCCI boundary_meshIboundary_polylineCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataZ@@:0yE>  +   @@:0yE>QF CI list_typeuI +notransmitlCCCDCCDI finger_indexdI finger_blockCZ  CCCCCCIframeCAowner ZVnJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DS@@O!SDL/TYSA_DENSITYP"#(#TUNIT=mmO#AEDT_EntityName_V1P$%(#S{Gz?O%AEDT_ExtentScale_V1Q&'(F)) * *2 +*+?? u+,+6W^$?D?n?>@A6=.?9lcT??B6C-t/?4i?B9DEFG?nCH?Ie1?4eY?HeJKLMCnINCO(i?PZ?NPQRSInOTIU;GZ?600?TyVWXYOnUZO[$k?4[ ?Zi\]M^Un[_U`s>?OnS ?  ?naȔ?+mw?n̠d?0F2?ncėX?k%8?c_n۳`?Y*??nOF0?a4?nqt@ ?f?3na_ĥ&V?n?=?@AB9n> 9CAb2? ?DE>nC F>GxB?;D*c?F-HIJKCnG CL68 jv8?`꯹?KMNGnLOGP^?8Eo?OCQRSLnPLTS?v\?5UVFPnTPWz:?Mz{vnyv|5z?,oC?i}~yn|ylV?kh?|n|'zKX?uB?Snj +%?H?n<Wv`y?")?<q8n/;? 4v9?n\64p??nM+]?|2?MgHZn 3ݑ?A`Lc?n!??#n"7xL?n,?72n#Sߠ?{Խ\?SEOn$1Ύ1?۫`~G?1n%D? Pm?An&<Г?#2Rx?n'Wq?!C?{dn(F=L?p@??F7Bn). :Y?9ު?Yn*8C#?{pwn4q\?^d?cn5KޓM?ȸ?K/Fn6&I١?D߬?>?]n7JP?7|?7n8=ф?wX?  +n9  DD?.$%ew?  n :dQ?!cָ?;p n;R  氋?i,?RNn<*V^?qS?n=/;EXl?5(Ŕ?  n>!Ҷp?W_Es?"#n!?$t? +ّ?%&`!n$@'!(C)?%F ?'m)*^+$n(A<$,-aQ?.aQ?< -.5(n,B/(0#`?@?/Y123,n0Co,4$86d?54?o356jo0n4DL07ؗ ?]?Lc89:H4n7E4;+?c}hv?<=> 7n;F?7@z?tXg??AB);n@G;C_=?_Fj?DE1A@nCHF@G t?gh?FHIJCnGICK1"?h/??LMGnKJGNo[??OPQKnNKRKS +&?V,X?RTUV>NnSLNWu}?йvc?kXYZSnWMS[rZm?'ێN?\]^Wn[NW_HA!?Rf<3?`a?[n_O[bCg? ?cdF_nbP_eXǓ6?,￶:?!fgbneQbh'G?J0~?QijkenhRel BCj?~?ang 'd?ҹp5?  nhx;j?@"U?|eniJ(U8?OB?JFnj-*PsVM;?㲅?-Onk +LҬ? `0? +~nliӲx?:T?ienmS9bu? ?SNnn^ +v +U?~sM?^ZnoQS ?ui?QnpsC$?dti~?nq1?(J??Q-nrUZg?MS +?U3nsZQ?h{O?t}ntb+ij? ?~nut@0Ϝ?ڰ?tonv]1?n3(?=Gnwm71`)?m?E@nxXC?Q?Xw-Tny$3=m4?ΣQc7?$-nnz>[%#?+Ұ+?>Rn{C.?5'9?n|Z׃?-w?Zmn}\+U?z"d?Wn~yn?g7(2R?%nSgG? Lk?n+mzn?',?cn?j`?Ď?n'Ns8?#O?_:n ~?RQ? !}n+"ne ? ;]?+o#$'n"%؏mL?'0J?&' "n% "(Dm?nA? )*j%n(t%+s6?,\z?t,-up(n+(.]?w1Ö?/0+n.+1Iuf?HYl?A23O.n1.4 Ę?SZ;?56i1n417#J?Z،?}894n74:lR?MZ7?I;<7n:7=8b=?ޭ%?'>?@:n=:A ?PFΗ?oBCZ<=nA=D8g#?<# ſ?CEFAnDAGMZ?*?HIDnGvDJ +!?(*#?vKLquGnJMG.hn?7iw?MNOBPJn.J cWT?No~?QR.nQQi7&SRT'UVW+T0*TRWXY+'TRZ[U+URV-V\nR[X]WX-X^n˜V_`Q^7Xa\bc_bn¶Xde`Xfg+a'ž\?X?F?2c4fh`+?j`:? 2?MxLzn{{|ty}t~+'zKX?uB?݀ص?d5}Rnˆy~y+]?vԑO? D>?4 n…~~+dv`?vm?s e?my!n‹+;1w1?^'J?ߪmA?wFn+̠d?0F2?#ƶ?Űnh+ҫu7?(&?*͋h?n +{+68 jv8?`꯹?XC?3U^G{JnNx+^?8Eo?''io?"kBnR+ ?PFΗ?_n?$UnnC+ +!?(*#?S8)i?$!`nL+id.?c܂n?fLJN?9'Vf?pnœ+ZQ?h{O?$Wd?Ln+1?(J??E0G?q(#Pn}+5 b?}JV{?Hz?#n€+ +v +U?~sM?LX"?VPn+$k?4[ ?Li?ug'hn]+åU?v1^?_ ]?nM+(U8?OB?hb>?Dg n¼!"#+$=c?x@? ?˾$nh%#&'+K?4 ?Dcf#3?>8_&R(n)*#'+#,+S?v\?U\Du?iWg+4-nV.',/'0+_=?_Fj? R@?!-/1nE23,04,5+u}?йvc?wX¦?F`4j6nY705809+G?_0C?F A.?t<8~:n;595<+_P:b?^H? NF?A9x{\=n¥>9<?9@+ +&?V,X?6?O?AnUBC<@<D+Dm?nA?[¤?9qEn*F@DG@H+Cl?Cl?;f;fGInJKDHLDM+$86d?54??ߐ$?=L2Nn6OPHMQHR+DD?.$%ew?H?, QSnT[MRUMV+yn?g7(2R?S 2?U$WnXYRVZR[+/G?@}Q?:_ -?l-zZ\n]^_V[`Va+珠?#?60bJ?ls`bncde[a[f+M%_h,?؇?փ3?m}gnxhafiaj+s;?.6?Pn?Gi`kn}lfjfm+vw?$ ?VC?a^4nn%jmjo+}?n ?1?7e"pn¤ qmomr+ ~?RQ?IYE?/kL1sn!torou+\@>?Ď?ev$?^! vnruwrx+[?`*q?hrM?`wzyn–z;uxu{+9+?6Ϋ?h̺~?{O|nt_x{}x~+x;j?@"U?X+?\`}n¹{~{+0(?v"z?;)[?Ҋ[n¯~~+tPv?_ag?2=dž?ZVny>+w]???d5_?xGv>Zn*+߅P?pO?zG?I=|e*TnŒ&+Wv`y?")?S,R?^pn“+2?̚|?}D?8 +Gn”h+(i?PZ?Fo?^_[nQP+T:t?dj?a'?P4nL+VE$ `?7?`9ʋ)'?E^*n}+:[?d!f?c] ??tnª+8g#?<# ſ??wu^-BnFt+Vb?[8ä&?V?_1?tn§+J^qI?0D?%vu?k#g`tnv+S ?ui?@8!?naVEvns|+>???xmS|Nn°x)+g?h?H!?oAsW?,D@~Zn³+C)?%F ?q9D?<'ln*+z?tXg?ğ+?;KnBm+*PsVM;?㲅? ?xj_Nn2+@0Ϝ?ڰ?yn9?Yne2+n?Vt]?ټ2+K?>#?Qޒ?n+nK?%*!?/$Zb?/Ҭnw+8Ce+C.?5'9?hU3?3.KnF ++s?K!0?En +X+??N?;X" n¬ +U " + t?gh?}8?0s" nI  m +HA!?Rf<3?A?{mnai    + +XǓ6?,￶:?dVp>? + ngX  +*vBt?Yku?)?q>nh}T+ BCn+JP?7|?7&@"?B_jn !+ؗ ?]? r?4b"n9i!#+#`?@?QL&o?D4lX$n2!#%!&+qd ? +Վ? ?y(3+aȔ?+mw?D ?B=?n¼@A;> O;B+ihYT? ?>Tx:?8O0CnmDL>B!7>E+5z?,oC?X)?i,{7hFn~24BE"rBG+đ r?L;?o9?I$rdHnIn2EG#YEJ+8b=?ޭ%?R#ܒ?_3D?Y&Kn?ULGJ$lGM+'Ns8?#O?VC'?l^NniJM%JO+m71`)?m?Sb?tf4DPnMO&MQ+zʊin@3eh/ej+ 氋?i,?}ap?<UMknthj0hl+g@;5~?*J? ?2mnjl1jn+ Ę?SZ;? *"N?ѕYF+on6ln2lp+qt@ ?f?S:?-%O2qn+np3Anr+\?Ĥ!? A׬? _.Asn=pr4tpu+۳`?Y*??V14yt>vnru5hrw+s6?,\z?ݘՇ4?+g-?F=·?cݳ?bsf<nŸt?%+Ӳx?:T?Zq3g?V=%n@J+??Cl?J n.1GA+`+,?m?i, ?j/C*n“LB+Ab2? ?/_? nEACW+:uj?hǸ?}.5f?_ Wtn˜TD+lR?MZ7?LU*?z୔Hn<Ez+;GZ?600?*8%z?XmػzxnWTwF;+gEF?r?C2D-?L;|nŒw8G+Wq?!C?rw?` +znH+ ?N}%?eUX?4v]:nID+7kD??s{%?RQ?;طD.nOJ+׃?-w?=?:ln4K+rZm?'ێN?LKw?P,+n]L+&I١?D߬?>?A!??W6\nlM+[b5?q*-l?4*( h?d#>&n®qN3+J?3J?|&?3n±/O[+؏mL?'0J?!u?!![n'QVP+x30?;Wz?|p#?6Yn5Q+ėX?k%8?g?XMn +R)+'G?J0~?O;M?Y)Pnj|&Sd+ٍy?R3fM? N~?c:kdn¼`TL+e2?evՊ?u8MۋY?Q#=L(n¿YU++]?|2??<fn¢V+`,??@?  Ln,Wq+ە>j?~?l?x5q`n²nX+hn?7iw?f.a}?l_nOdY+$)?a/?cj?BA'nZ^]+1?Q{G|?=?jv^n†Z][V+cWT?No~?={ǼyW?+\S]+pR?ay??vM"nSn]+]?w1Ö?w?A~̐n0 +^+D? Pm?J@J?G&@n¾_+Iuf?HYl?_L?S@n3t`+;G+?*C:? 9z'z?qϤ\n¬va+q\?^d?.;+?#,hnb+b+ij? ?{-W?v nc+t? +ّ?ƄF{?lv n&d+TA?wO?|? +Fnshe@+sC$?dti~?\G?k@n =f+. :Y?9ު? JCP?BpXn>g+3=m4?ΣQc7?fMg?P ,n+Dh+xB?;D*c?sb?R.,nIi.+=L?p@??ڭ?4.6n+j2+Ύ1?۫`~G?kY?٣ǁ2n¹d/k1+?1 +n;Jl++?c}hv?W`o?K,n=Cm+1?:?Ʀ?h? +On¨n+#J?Z،?o!׺?F|n9o+SgG? Lk?x(??'Dn%p+xL?n,?Esz?,@n±qw+<Г?#2Rx?L3؝?RӖZwns,rd+[%?{Ϊap?l"s?nErdn0(2s+,+*V^?qS?&\?2BS +nKl,t +Wd3?!?v-z?!>.AHn{,Q7TN+NT{{+T@+@-N{-@G>nQ7@P7(#Q7EQ7MRLiQM7zRMiQz7M RNiQ7zi +R OiQi7 R +PiQ7ki  R QiQ 7R RiU knQ7 RSiQ7RTiQ7RUiQ7RViQ7RWiQ7RXiQ7RYiQ7RZieInQ7}R[iQ}7XR\iQX7}R]iQ7ZXBR^iQB7R_iQ7<B:R`iQ:78 !RaiQ 7-:"R!bi-u 8X nQ7X V#R"ciQV7T$R#diQ7YV%R$eiQ7&R%fiQ7'(R&giQ'7_])R(hi_'[*nQ]7['+R)iiQ7`]%,R+jiQ%7-R,kiQ7% .R-liQ 7/R.miQ7 0R/niQ71R0oiQ723R1piQ27644R3qi6225nQ47226R4riQ7747R6siQ7"8R7tiQ"79R8uiQ7":R9viQ7;R:wiQ7D<R;xiQD7=>R<yiQ=7D?R>zi=@nQ7=AR?{iQ7igBRA|iQg7e CRB}iQ 7jg)DRC~iQ)7  ERDiQ7)FREiQ7GRFiQ7HRGiQ7QOIRHiQO7JRIiQ7OKRJiQ7LRKiRLhTEMN+@O5dv`?vm?O@~c=84?f|?56@P2?̚|?P5Q Z?nn?RZJPnQJPS`+,?m?J+T@FQnSPQUٍy?R3fM?PVMsSnUsSW珠?#?sXcPoUnWBUYè.b?>?BZ=MWnY^W[^N?է?^k\gZ'Yn[Y]5?'?!^%[n]V[*7Fz?Dd?V_R]n*_]`ܲ٠?D@y=t5?`*ag?h?H!?[b/`na`/G?@}Q?c]uanadđ r?L;?dperUDg?Qwz?p9fkdnedgdvJt?Fg? h]engei]?vԑO?jgnigkVb?[8ä&?lRink@ime2?evՊ?@)nJknmAkJ?3J?Ao=mnmp߅P?pO?pA[b5?q*-l?'qpnAdp>Cd?u?dyr AnQr#7dbsTcdtu+T9uv+cT wt+t -ud-Tcxw+wc-Tyx+x-T$zy+y-$T*+{z+z+-*T$g'|{+{'$-gT*]^}|+|^*-]TgZ~}+}Zg-T]KM~+~M]-KT9H+H-9TK}L+LK-}T9:i+:9-T}l+}i-T+l-T2+-2Ty/+/-yT23+32-Ty+y-T}+-T+}-T,-+--,T+-T,<+,-<T+-T<+<-TRS+S-RT3O+O-3TR+R-T3t+3-T+t-T+-Tnp+p-nTk+k-Tn6oP+on-6TmoL+oP-mT6jO+j6L-TmnD+nmO-T#$+$D-#T++-T#+#+-+*n# Q!7+Q@+Q 7Q"7RgQAQ#7DCRgQBDQC$7ONRgQCOCQN%7LCRgQDLNQ&7PN6RgQEPQ6'7RgQF6Q(76RgQGQ)7RgQHQ*7vRgQIQv+7tRgQJtvQ,7vRgQKQ-7RgQLQ.7RgQMQ/7RgQNQ07RgQOQ17RgQPQ27RgQQQ37RgQRQ47RgQSQ57}RgQT}Q67RgQUQ77$RgQVQ$87RgQW$Q97$RgQXQ:7NRgQYQN;7lkRgQZlNQk<7iN"RgQ[ikQ"=7kRgQ\"Q>7"RhQ]Q?7RhQ^Q@7fRhQ_QfA7RhQ`fQB7fRhQa QC7 +RhQb  QD7  R +hQ cQE7R hQd QF7RhQeQG7R hQfQH7R +hQgQI7R hQhQJ7R hQi !QK7 "R hQ j#$QL7#%R"hQ#k &'QM7&(R%hQ&l#)*QN7)+R(hQ)m&,-QO7,v.R+hQ,n)/0QvP7/1R.hQ/ov,23QQ72v4R1hQ2p/56QR757R4hQ5q289QS78:R7hQ8r5;<QT7;'=R:hQ;s8>?Q'U7%>c@R=hQ>t%';ABQcV7(A'CR@hQAu(c>DEQW7dDcFRChQDvdAGHQX72G1IRFhQGw2DJKQ1Y7/JLRIhQJx/1GMNQZ73M1iORLhQMy3JPQQi[7PRROhQPziMSTQ\7SiURRhQS{PVWQ]7VXRUhQV|SYZQ^7dYb[RX hQY}dV\]Qb_7`\^R[!hQ\~`bY_`Q`7e_baR^"hQ_e\bcQa7bdRa#hQb_efQb7egRd$hQebhiQc7hsjRg%hQheklQsd7kmRj&hQkshnoQe7tnskpRm'hQntkqrQkf7qsRp(hQqkntuQg7tk/vRs)hQtqwxQ/h7wyRv*hQw/tz{Qi7^z/\|Ry+hQz^w}~Q\j7Z}<R|,hQ}Z\zQ<k7_\|R-hQ_<}Q|l7<R.hQ|Qm7|gR/hQQgn7xR0hQgQxo7hgR1hQhxQp7xR2hQQq7R3hQQr7R4hQQs7R5hQQt7}R6hQ}Qu7mR7hQQmv7oR8hQmQow7mR9hQoQx7oR:hQQy7R;hQQz7YRhQ Q }7" R?hQ" Q~7 R@hQQ7RAhQQ7RBhQQ7RChQQ7RDhQQ7 + REhQ +Q 7RFhQ Q7  RGhQ Q7BARHhQBQA7?1RIhQ?AQ17CARJhQC1Q71RKhQQ7RLhQQ7TSRMhQTQS7QRNhQQSQ7[S\ROhQ[Q\7V^RPhQV\aRQhPAQaX^S???Q_baS???Qb7_^QdS???Q7db\Q\S???Q\7QS???Q7\~Q~S???Q~7QSS???Q7S~RQRS???QR7QS???Q7RQ S???Q7 +Q  S ???Q7 Q S ???Q7 Q S???Q7Q +S???Q7 + QX S???Q 7XWQUWS???QW7U KQYKS???QK7YWQL !S???Q7LK"Q #$S!???Q7 %Q# &'S$???Q7#(Q&#)*S'???Q7&+Q)&,-S*???Q7)q.Q,q)/0S-???Qq7,-1Q/+-,23S0???Q-7+/q4Q2./56S3???Q7.2-7Q5289S6???Q75:Q85;<S9???Q78|=Q;|8>?S<???Q|7;@Q>;ABS????Q7>|CQA>DESB???Q7AFQDAGHSE???Q7DPIQGPDJKSH???QP7GLQJGMSK???Q7JPNQJOPSM???QO{QRSP???Q7{OzSQQxzOTUSR???Qz7xQVQT|QWXSU???Q7|TzYQW)TZ[SX???Q7)W(\QZ&(W]^S[???Q(7&Z_Q]*Z`aS^???Q7*](:bQ`:]cdSa???Q:7`eQc`fgSd???Q7c:hQf>cijSg???Q7>f=kQi=flmSj???Q=7inQliopSm???Q7l=qQoqlrsSp???Q7qoptQrnpouvSs???Qp7nrHwQurHrxySv???QH7rup4zQx24u{|Sy???Q472xHF}Q{7Fx~S|???QF77{46Q~46{S???Q674~FQ~S???Q76QS???Q7QS???Q7QS???Q7QWS???Q7WVQTVS???QV7TQzS???Q7zVyQwyS???Qy7wQ;S???Q7;y:Q8:S???Q:78QS???Q7:QS???Q7QS???Q7QS???Q7QS???Q7QS???Q7aQaS???Qa7QS???Q7aQhS???hn fQ7hQS???Q7QS???Q7QS???Q7QS???Q7Q S???Q7 Q@S???Q7@?Q=?S???Q?7=sQAsS???Qs7A?QS???Q7sQS???Q7nQnS???Qn7Q%S???Q7%n$Q$S???Q$7QS???Q7$EQES???QE7_QF_S???Q_7FEQS???Q7_QS???Q7QvS???Q7vuQsuS???Qu7sQwS???Q7wu8Q ,8S???Q87,3S???RhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRh Th +T5 6  +T  + h- -T   + - T  + -T &  +  -&T  + -T&^`  + `&-^T[  + [-T^_  + _^-T + 8 + -T ; + - Ru-RUV R + VUx-R9+ U + +R-9R6  + 6U-R9A:  + :9-AR  + -RAWX  + XA-WR|} 2 + }-|RW 5 + W2-R|G 0 + |5-GR p + 0-RG l + Gp-R o + l-R  + o-R  + -R < + -R  + <-R  + -R  ( + - Rhi $ + i(-hR  ' +  $-Rhy z + h'-yRLv + z-yv-3R0! +43-R35! " +! 0-R!" # +" 5-!R# $ +# !-R!$ >% +$ >-R% ;& +% ;-RC& ?' +& ?-CR' K+' C-K-RhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhR~hR{hRxhRuhRrhRo~hRl}hRi|hRf{hRczhR`yhR]xhRZwhRWvhRTuhRQthRLrhRJqhRGphRDohRAnhR>mhR;lhR8khR5jhR2ihR/hhR,ghR)fhR&ehR#dhR chRbhRahR`hR_hR^hR]hR \hR[hRZhRYhRXhRWhRVhRUhRThRShOSDL/TYSA_COLOURS???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S|???Sy???Sv???Ss???Sp???Sm???Sj???Sg???Sd???Sa???S^???S[???SX???SU???SR???SO???SL???SI???SF???SC???S@???S=???S:???S7???S4???S1???S.???S+???S(???S%???S"???S???S???S???S???S???S???S ???S -???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???Q?( ) Q5( 6* RgQ( >+ , Q65o+ n- R* gQ+ =o6. ( / Qn5.  60 R- gQ. <n1 + 2 Q 5 -1 n3 R0 gQ1 ; - 4 . 5 Q54  6 R3 gQ4 :7 1 8 Q57 9 R6 gQ7 9: 4 ; Q5:  < R9 gQ: 8= 7 > Q 5k= i? R< gQ= 7k @ : A Qi5g@ ( B R? gQ@ 6giC = D Q(5jC iE RB gQC 5j(F @ G Q5)F x(H RE gQF 4)I C J Qx5II GK RH gQI 3IxL F M QG5EL xN RK gQL 2EGO I P Q5HO GQ RN \QO 1HR L S Q5/R -T RQ WQR 0/U O V Q-5 U W X RT \QU / -Y R Z QW 5(Y [ -\ RX g(W nR +QY .(W U ] Q[ 5^ _ W ` R\ WQ^ a b [ c Q_ [ %d R` WPe (#Q%_ f Rd Tf AirgapOe AEDT_BODYFlagGroupColor_V1Pa g h QQb i j ^ k Tc AirgapPi l (#Qj -m b n Rk Pm o hSn ???Oo SDL/TYSA_COLOUR_2Ol AttGS_PS_LayerO h SDL/TYSA_NAMES] ???SZ ???SV ???SS ???SP ???SM ???SJ ???SG ???SD ???SA ???S> ???S; ???S8 ???S5 ???S2 ???S/ ???S, ???S) ???S???Rp +-Rq op +p -R r q +q o- R&s -r +r -&R #t s +s #  --R&@'u t +t '&-@R_=v u +u =-_R@w kv +v @-R_x gw +w _k-Ry jx +x g-Rz )y +y j-R{ Iz +z )-R,| E{ +{ I-,R9:} H| +| :E-9R,.32/} +} 3,H-.R9~ +R.~ *~ +~ ~. -RN u + *-NR q + u-RNO t + ONq-R  + t-R  + -R( D + -(R   +  D-R(fh  + h(-fRc  + c-Rfg # + gf-RL + #-L-7Rt +t7-R7  + -R  + -R|  + -R  + |-R  + -R  + -R  + -RG  + -GR  + G-RG  + -R # + #-R. & + &-.R b + .b-RC./ 0 + 0-CR - + /C--R>C? 1 + 1->R;  + ?>-RM>@  + ;-MRK  + @M-RaMN b + Kb-aRpq ^ + Na^-pRam c + qpc-Rpr  + m-R~  + r-~R{  + ~-R~  + {-R r + r-ROP  + -ORL  + PO-ROQ  + L-R[ \ + Q\-[R X + [X-Rr[s ] + ]-rRJo  + sr-JRvrt  + oJ-vR+Js  + tv-+Rqvr f + s+f-qR+n  + rq-Rxqy  + n-xRu  + yx-Rxz  + u-Rf { + z{-fRc ~ + f~-R4fg  + c-4R  + g4-R4  + -R  + -RX  + -XR  + Mn X-Q U5P QT5  QPV5  R iQW5HPF R iQFX5Da R iQaY5F R iQZ5at R iQt[5 R iQ\5t R iQ]5a_ R iQ_^5] R iQ_5b_ R iQ`5] R !iQ]a5TR R "iQRb5P] R #iQc5<R: R $iQ:d5  R %iQ e5 -:k R &iQkf5   R 'iQ g5 k$ R (iQ$h5  O R )iR *iQS53 R iQ3R5 R iQQ5ge3 R iQeP5c R iQO5e R iQN5zw R iQwM5u R iQL5ypw R iQpK5n* R iQ*J5rup R iQuI5sI* R iQIH5tqu R iQqG5oI R -iQF5saq R iQaE5 R iQD5a R iQC5QN R iQNB5L R iQA5PjN R iQj@5 R iQ?5}j R iQ}>5{ R iQ=5} R iQ<5ro R hQo;5mV R hQV:5qTo R hQT95NLV R hQL85KXT R hQX75@=L R hQ=65;mX R hQm55?B= R hQB45m R hQ35/-B R hQ-25 R hQ15- R hQ05 R hQ/5F R hQF.5 R hQ-5F R hQ,5 R hQ+5h R hQh*5 R hQ)5~h R hQ~(5| R hQ'5~ R hQ&56 R hQ6%5 -R hQ$5p6 + 8-TWY w + Y;-WTT z + Tw-TWX T + XWz-T;- W + -T-;T8  + 8W-T;C<  + <;-CT  + -TCYZ  + ZC-YT~ 4 + -~TY 7 + Y4-T~I 2 + ~7-IT r + 2-TI n + Ir-T q + n-T  + q-T  + -T > + -T  + >-T  + -T * + -Tjk & + k*-jT! ) + &-Tj{" |! +! j)-{TNx" +" |-{x-5T2 # + 65-T57# $ +# 2-T#$ % +$ 7-#T% & +% # -T#& @' +& @-T' =( +' =-TE( A) +( A-ET) M+) E-M-RhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhR}hRzhRwhRthRq~hRn}hRk|hRh{hRezhRbyhR_xhR\whRYvhRVuhRSthRNrhRLqhRIphRFohRCnhR@mhR=lhR:khR7jhR4ihR1hhR.ghR+fhR(ehR%dhR"chRbhRahR`hR_hR^hR]hR \hR +[hRZhRYhRXhRWhRVhRUhRThRShOSDL/TYSA_COLOURS???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S~???S{???Sx???Su???Sr???So???Sl???Si???Sf???Sc???S`???S]???SZ???SW???ST???SQ???SN???SK???SH???SE???SB???S????S<???S9???S6???S3???S0???S-???S*???S'???S$???S!???S???S???S???S???S???S???S ???S ???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???S???Q?* + Q7* 8, RgQ* >- . Q87q- p/ R, gQ- =q80 * 1 Qp70 82 R/ gQ0 <p3 - 4 Q7 3 p5 R2 gQ3 ; 6 0 7 Q76 8 R5 gQ6 :9 3 : Q79 ; R8 gQ9 9< 6 = Q7< > R; gQ< 8? 9 @ Q7m? kA R> gQ? 7mB < C Qk7iB *D RA gQB 6ikE ? F Q*7lE kG RD gQE 5l*H B I Q7+H z*J RG gQH 4+K E L Qz7KK IM RJ gQK 3KzN H O QI7GN zP RM gQN 2GIQ K R Q7JQ IS RP \QQ 1JT N U Q71T /V RS WQT 01W Q X Q/7W Y Z RV \QW //[ T \ QY 7*[ ] /^ RZ g*Y nT ++ Q[ .*Y W _ Q] 7` a Y b R^ WQ` c d ] e Qa ] 'f Rb WPg (#Q'a h Rf Th AirgapOg AEDT_BODYFlagGroupColor_V1Pc i j QQd k l ` m Te AirgapPk n (#Ql -o d p Rm Po q hSp ???Oq SDL/TYSA_COLOUR_2On AttGS_PS_LayerO j SDL/TYSA_NAMES_ ???S\ ???SX ???SU ???SR ???SO ???SL ???SI ???SF ???SC ???S@ ???S= ???S: ???S7 ???S4 ???S1 ???S. ???S+ ???S???Tr +-Ts qr +r -Tt s +s q-T(u t +t -(T%v u +u % -T(B)w v +v )(-BTa?x w +w ?-aTBy mx +x B-Taz iy +y am-T{ lz +z i-T| +{ +{ l-T} K| +| +-T.~ G} +} K-.T;< J~ +~ <G-;T.0541 + 5.J-0T; +T0 , + 0-TP w + ,-PT s + w-TPQ v + QPs-T  + v-T  + -T* F + -*T +   +  F- +T*hj  + j*-hT +e  + e +-Thi % + ih-TN + %-N-9T v +v9- T9  +  -T  +  + -T~  +  +-T  + ~-T  + -T  + -T  + -TI  + -IT  + I-TI  + -T % + %-T0 ( + (-0T d + 0d-TE01 2 + 2-ET / + 1E/-T@EA 3 + 3-@T=  + A@-TO@B  + =-OTM  + BO-TcOP d + Md-cTrs ` + Pc`-rTco e + sre-Trt  + o-T  + t-T!}  + -!T  + }!-T! t + t-TQR  + -QTN  + RQ-TQS  + N-T] ^ + S^-]T Z + ]Z-Tt]u _ + _-tTLq  + ut-LTxtv  + qL-xT-Lu  + vx--Tsxt h + u-h-sT-p  + ts-Tzs{  + p-zTw  + {z-Tz|  + w-Th } + |}-hTe  + h-T6hi  + e-6T  + i6-T6  + -T  + -TZ  + -ZT ! + On Z!-Q U7R QT7  QRV7  R iQW7JRH R iQHX7Fc R iQcY7H R iQZ7cv R iQv[7 R iQ\7v R iQ]7ca R iQa^7_ R iQ_7da R iQ`7_ R !iQ_a7VT R "iQTb7R_ R #iQc7>T< R $iQ<d7 R %iQe7 <m R &iQmf7  R 'iQ g7 m& R (iQ&h7 Q R )iR *iQS75 R iQ5R7 R iQQ7ig5 R iQgP7e R iQO7g R iQN7|y R iQyM7w R iQL7{ry R iQrK7p, R iQ,J7twr R iQwI7uK, R iQKH7vsw R iQsG7qK R +iQF7ucs R iQcE7 R iQD7c R iQC7SP R iQPB7N R iQA7RlP R iQl@7  R iQ ?7l R iQ>7}  R iQ=7 R iQ<7tq R hQq;7oX R hQX:7sVq R hQV97PNX R hQN87MZV R hQZ77B?N R hQ?67=oZ R hQo57AD? R hQD47o R hQ371/D R hQ/27 R hQ17/ R hQ07 R hQ/7H R hQH.7 R hQ-7H R hQ,7 R hQ+7j R hQj*7 R hQ)7j R hQ(7~ R hQ'7 + +R hQ&78 R -hR -hRGXH  -+ -GRbD -  -+ -HG -bRG - -+ -Db-Rub - +hQ8%7 +R +hQ$7r8 +R +hR +hTIZJ  ++ -ITdF +" + --uR - +JI"-dTI + + -u-Ru - +Fd-Twd + + --R`a - +-wT + + --`R] - +w-Tw + + -a`-R`b - +-Tbc + + -]-R +-bT_ + -  + + -b -RST -@ +cb +-Tbd + + -@-SRP -= +_-T +  + -TS=-R;S< -A +d -TUV +B + -PA-;R  - +B-UTR +? + -<;- Rl; - - +VU?-T=U> +C + - -lR   -R +RC-=T + + - -lR- R%l  -OX+ - O-X %Y-Q`"5p -RqhQ!5` -R -hQ 5 -R -hQ5! +>=-Tn=  + ++ +-nT +T ++ + nT-T'n  +QZ+ +Q-Z '[-Qb"7 r +RshQ!7b R -hQ!5)' +hQ 7 R -hQ'5%Z! +hQ7# R -hQZ5\Z' +hQ#7+) R -hQZ5XZ +hQ)7'\# R -hQ5KHZ +hQ\7^\) R -hQH5F6 +hQ\7Z\ R -hQ65JzH +hQ7MJ\ R -hQz586 +hQJ7H8 R -hQ5z +hQ87L|J R -hQ5` +hQ|7:8 R -hQ`5/ +hQ7| R -hQ/5-v`! +hQ7b! R -hQv51/" +hQb71" R! -hQ5v# +hQ17/xb# R" -hQ5$ +hQx731$ R# -hQ5% +hQ7x% R$ -hQ5+)& +hQ7& R% -hQ) 5' +hQ7' R& -hQ 59)( +hQ7-+( R' -hQ9 5) +hQ+ 7) R( -hQ -59* +hQ 7;+* R) -hQ 5QO+ +hQ; 7+ R* -hQO5M0, +hQ +7;, R+ -hQ05O- +hQ 7SQ- R, -hQ50. +hQQ7O2. R- -hQ5/ +hQ27Q/ R. -hQ5d0 +hQ720 R/ -hQd5nk1 +hQ71 R0 -hQk5id2 +hQ7f2 R1 -hQ5m3k3 +hQf7pm3 R2 -hQ35mj4 +hQm7kf4 R3 -hQj5h35 +hQ7o5m5 R4 -hQ5lj6 +hQ57ol6 R5 -hQ5" 7 +hQl7j57 R6 -hQ 58 +hQ7nl8 R7 -hQ5o 9 +hQ7$"9 R8 -hQo5: +hQ"7: R9 -hQ5o; +hQ7q"; R: -hQ5\< +hQq7< R; -hQ\5%= +hQ7q= R< -hQ%5#\> +hQ7^> R= -hQ5'?%? +hQ^7'? R> -hQ?5=^@ +hQ'7%^@ R? -hQ^5?A +hQ7)A'A R@ -hQ5^B +hQA7?`B RA -hQ5C +hQ`7AC RB -hQ5D +hQ7`D RC -hQ5E +hQ7E RD -hQ5+F +hQ7F RE -hQ+5:7G +hQ7G RF -hQ7531+H +hQ7-H RG -\RH -WQl{5><RI -R=>J -JK -+RGHK -L -+=RM -WJ -+J -J-K ->-R=N -SM -+M -=W-ReO -VN -+N -S-eR.P -O +hQ-7<9I +RH +hQ9753-J +RI +\RJ +WQn{7@>TK +T?@L +LM ++TIJM +N ++?TO +YL ++L +L-M +@-T?P +UO +O -V-.ReQ -P +?Y-TgQ +XP +P -e-R.[R -Q +U-gT0R + +Q +Q -.-[RS -R +X-0TgS +R +R --R[\T -S +g +-T0]T +S +S -\[-RWXU -T +0-]TU +T +T -X-WRV -U +-T]^V +U +U --RWW -QV +^]-TYZW +V +V -W-RX -W +Z-YTX +W +W -Q-R[Y -X +-TYY +SX +X --[RZ -Y +Y-TZ +Y +Y --R[[ -bZ +S-T][ +Z +Z -[-RW][ +-]T\ +[ +[ -b-W]-GRDL -\ -+L -HG-RGI\ -] +-T]] +d\ +\ -D-R] -^ +]-T Y_] +] -I-RT^ -_ + d-Y_-ITFN +^ ++N +JI-TIK^ +_ +^ --TR_ -)` +F-T_ +` +_ -T)-RCTD` -,a +K-TV` +a +` -,-CR@a -b +-VTa ++b +a -DC-RCEb -c +V+-TEVFb +.c +b -@-RKc -d +.-ETBc +d +c -E-KRd -e +FE-TEGd +e +d -K-RDKe -f +B-TMe +f +e --DRf -g +G-MTf +g +f -D-RDg -+g ---Q<z5lh -QR|5HlFi -RI -=iQF}5DRj -Ri ->iQ~5IFk -Rj -?iQ5l +M-TFMg +h ++g +-FTh +i ++h +F-TFi ++i +--Q>z7nj +QT|7JnHk +RK +=iQH}7FTl Rk -@iQ5Sm +>iQ~7KHm Rl -AiQS5n +?iQ7n Rm -BiQ5DSBo +@iQ7Uo Rn -CiQB5@p +AiQU7p Ro -DiQ5EBq +BiQ7FUDq Rp -EiQ5Jr +CiQD7Br Rq -FiQJ5s +DiQ7GDs Rr -GiQ5JCt +EiQ7Lt Rs -HiQC5u +FiQL7u Rt -IiRu -JiQy5<v -Rh -x +Rj +|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -p= -`p= -`GzDb@p= -`@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6 Stator_Yoke lump%   -p= -`p= -`GzDb@p= -`@GzD@ transform% ???? rgb_color% st% - %    ???properties%  ansoft% %    Stator_Yoke -shell%   -p= -`p= -`GzDb@p= -`@GzD@% % %  -   Stator_Yoke%%% %   ATTRIB_XACIS_ID%141135 face%     -p= -`p= -`GzD@b@p= -`@GzD@ -Ch:;S?M{rпo7?%%% %    %141135%%% %    ATTRIB_XSTEP_PRODUCT_ID%16 Stator_Yokeid%% %    %      -p= -`p= -`GzDb@p= -`@GzD -SÿAh:;?M{rпo7? loop%    -\q\\q\GzD@\q\@\q\@GzD@   -plane% surface%  %= ףp=Z@GzD@ar^?@@ %%% %  - %16 Stator_Yoke%%% %  %6 Stator_Yoke%%% %  %141536%% %    %      -?ZHج &T3@GzD-2`@p= -`@GzD@  %  ! -p= -`p= -`GzDb@p= -`@GzD  % %  :ș< ףp=Z@GzDar^<@ %%% %  %14-1 %  " # -`@GzD@a@@GzD@   coedge%  $ % & '  %%% %   %141538%% %  (   % ) * +   -?ZHp= -`GzD-2`@ڬ &T3GzD@  % , -  -?ZHج &T3@GzD-2`@p= -`@GzD@   cone% %  =24W@24W@? ?p= -`@ - %%% %  %14-1 % . / 0 -\q\\q\GzD\q\@\q\@GzD   %  1 2 3 4 -   %  5 6 -_R2\@GzD@P2_@GzD@   %  # # 7 8   %  9  : ;   %   < = >   %  ? @  ' - A  edge% B C D iU?  E unknown -zNA>Y@cAC@GzD@ -w`-Z@{]F@GzD@%%% %   %141584%% %  F  - % G H I   -p= -`j|mZGzD` -Tj|mZ@GzD@  % J K  -?ZHp= -`GzD-2`@ڬ &T3GzD@  %%% %  %14-1 %  L M N O -  %%% %  %14-1 %  P Q -`@GzDa@@GzD   %  R S T U  %  V ! W X -   %  ! Y Z [ -   %  \ ] ! 4 +  % ^ _;Iؿ `iq? ! a unknown -?ZHp= -`GzD-2`@ڬ &T3GzD %  b c -`R2_GzD@ P2\GzD@   %  6 6 d e "  %  7 7 # 8 - f  % g h9 h-DT!@ # i unknown -`@GzD@a@@GzD@ %  j $ k l   %  m n $ ; - o  % p D qf@T@ $ r unknown -v`-Z@~@@GzD@Ed[@C@GzD@ %  % s t u   %  v w % > - x  % y z C@T@ % { unknown -_39X@{]F@GzD@EmAY@n@6J@GzD@ %  T & w | - A  %  & T m } - A  % ~ @  -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@ -%% %  'x vertex%  '  %  '  ellipse% -curve%  GzD@J6sY@s]F@=? - - iU?%%% %  ) %141584%% %  *  %   - -`R2_GzD P2\GzD@  %  * -p= -`j|mZGzD` -Tj|mZ@GzD@  %%% %  +%14-1 %  ] \ - +  %  - -   %  - -   %  - O b  %  60p? +q5+ @ N unknown -?ZHج &T3@GzD@-2`@p= -`@GzD@ %  -_R2\@GzDP2_@GzD   %  Q Q /  %  0  %  0  %  @ ? 0 U - A  %   ViU? 0 unknown -{NA>Y@kAC@GzD -w`-Z@{]F@GzD %  1   %  1 X  %   -9 -p _,9 -p? W unknown -%^вN=%`GzD?ZH8q_GzD %  2   %  2 [  %  `,9 -p 8 -p? Z unknown --2`@۬ &T3GzD'XQa@q%GzD %  K 3 - +  %  3 K - + %% %  4 %  4  %  4 % %  GzD?NM=p= -`?  %  -p= -`p= -`GzD@b@p= -`@GzD@   %  c c 5  %  d d 6 e -  %  H -DT!@ 6 unknown -_R2\@GzD@P2_@GzD@ %  7 -`@GzD@a@@GzD@ -%% %  8 %  8 % %  @a@GzD@ar^<@?  %  9   %  9 l -  %  q iU? 9 unknown ->veHZ@2Zx9@GzD@66@[@~@@GzD@ %  : @ } o  %  : o  %  m -v`-Z@~@@GzDEd[@C@GzD@ -%% %  ;y %  ; % %  EdZ@A@GzD@Rď %  % %  EmAX@n@6H@GzD@hElR<`~ ?삁<yoxG@_9? - -@T@ %   C0/>:u? ? unknown -NA>Y@{]F@GzDNA>Y@{]F@GzD@ %  D 0/>:u? @ unknown - -w`-Z@kAC@GzD -w`-Z@kAC@GzD@%%% %  A%14-1 %  A  - -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  B '%1414299%% %  C -point%  NA>Y@{]F@GzD@%% %  D %   -w`-Z@kAC@GzD@%%% %  G *%141584%% %  H  %   - -_R2\@GzDP2_@GzD@  %  H -`R2_GzD P2\GzD -% %  @Q2]?=VcEJ-? ?@ %%% %  I%14-1 %  - I  %  K b  %  ;Iؿ iq? unknown -?ZHp= -`GzD@-2`@ڬ &T3GzD@ %  M L     %    L   %  GzD GzD@ L  tangent --2`@ڬ &T3@GzD-2`@ܬ &T3@GzD@ %  -  M   %  GzD GzD@ M  tangent -?ZHa4B_@GzD?ZHa4B_@GzD@ %   N   - b  %  N    - b %% %   O %  O  %   % %  GzD@? 1xK=p= -`?  %   -`R2_GzD P2\GzD   %    P  %  Q -   %  9 -DT!@ Q  unknown -`@GzDa@@GzD %   R ! "  %  w v R - x  % #  $f@T@ R % unknown -_39X@{]F@GzDEmAY@n@6J@GzD %  S & ' (  %  n m S - o  % ) * /@T@ S + unknown - w`-Z@~@@GzDEd[@C@GzD%% %  , U % - } . % / | 0% %  GzDQbr< -BL?v`-Z@wAC@=? - -ViU? %  1 V 2 3 -   %  4 5 V - 6  % 7 Q 8Q? V 9 unknown -@TI7ˇ`GzD%^вN֕EN]GzD %  : W ]  %  W : 4 ;  %  : < -%^вN=%`GzD?ZH8q_GzD@ = %% %  X % > ?% %  \0 -J8T`GzDar^<͐BhZ`sT#@?  %  Y   @ -   %  A B Y - C  % D EQ Q? Y F unknown -'XQa@q%GzDb@q%@GzD %  G Z B H  %  Z G \  %  Z I --2`@ܬ &T3GzD'XQa@q%GzD@ J %% %  [ % K L% %  ia@I4GzDar^<,[S6@?  % M GzD `GzD@ \ N tangent --2`@ܬ &T3GzD-2`@ڬ &T3GzD@ % O _GzD GzD@ ] P tangent -?ZHa4B_GzD?ZHa4B_GzD@%%% %  ^ 4%1414394%% %  _2 %  ?ZHa4B_GzD%% %  `1 %  -2`@ڬ &T3GzD%%% %  b%14-1 %  c -  % Q Rh/¼ R-DT!@ c S unknown -`R2_GzD@ P2\GzD@ %  d -_R2\@GzD@P2_@GzD@ -%% %  e % T e U% %  ?Q2]@GzD@ar^<@VcEJ-@?  % V <   - -`@GzDa@@GzD@ % %  @a@?@? ?@ %% %  h" %  a@GzD@ %  W j X Y   %  Z [ j - \  % ]  ^@T@ j _ unknown -66@[@kl$1@GzD@۠U\@2,Ǩ9@GzD@ %  ' k n -  %  k ' Z ` -  % a b -=veHZ@2Zx9@GzD66@[@~@@GzD@ c -%% %  d lz % e ` f% %  GzD@eF|olDUfв<>veHZ@~@@=? - -iU? % g * q0/>:u? h unknown -CveHZ@~@@GzDCveHZ@~@@GzD@%%% %  o%14-1 % i j o  - -v`-Z@~@@GzDEd[@C@GzD@ % %  EdZ@A@o_E;f@;f@? ?@ - %%% %  p ;%1414300%% %  k q %  CveHZ@~@@GzD@ %  s l m n   %  o p s - q  % r s f@T@ s t unknown -; -V@&pM@GzD@r M,X@{P@GzD@ %  ! t p u -  %  t ! v -  % v w -W@JdJ@GzD_39X@&pM@GzD@ x -%% %  y u % z {% %  GzD@?(h`윲<W@&pM@=? - -iU? % | z $0/>:u? } unknown -_39X@LdJ@GzD_39X@LdJ@GzD@%%% %  x%14-1 % ~  x  - -_39X@{]F@GzDEmAY@n@6J@GzD@ % %  EmAX@n@6H@o_E;f@;f@? ?@ - %%% %  y >%1414391%% %   z! %  _39X@LdJ@GzD@%% %   | straight% %  NA>Y@{]F@GzD@@ - -0/>:u?%% %   }% %   -w`-Z@kAC@GzD@@ - -0/>:u?%% %   D %      - -ѹɒ&y[@GzDn X -\q\@GzD@ %%% %  C%1416808%%% %  D%1416809%% %    %   -_R2\@GzDP2_@GzD -% %  ?Q2]@?@VcEJ-@? ?@  %  H -`R2_GzD@ P2\GzD@ - %    -  %     - I  %     - I  %    b  %  DU p] unknown -p= -`j|mZGzD@` -Tj|mZ@GzD@ %   G  - b  %   :  - b %% %    %   %    %    -   %  60p? +q5+ @  a unknown -?ZHڬ &T3@GzD-2`@p= -`@GzD %      %   @   %    --2`@q%@GzD'XQa@ܬ &T3@GzD@  %% %  V %   % %  -2`@ܬ &T3@=? -t=:R -t=:R@ %       %      %  -  -%^вN:q_@GzD?ZH=%`@GzD@  %% %  W %   % %  ?ZHa4B_@= -t=:R -t=:R@ %     b  %  9 -p 49 -p?   unknown -%^вN:q_@GzD@?ZH=%`@GzD@ %    b  %  ,9 -p 8 -p?   unknown --2`@q%@GzD@'XQa@۬ &T3@GzD@%%% %  O%1414298%% %  ) %  -2`@ڬ &T3@GzD@%% %  * %  ?ZHa4B_@GzD@ %      %     -  %  H< -DT!@  unknown -_R2\@GzDP2_@GzD %  f -`@GzDa@@GzD -%% %  S %  % %  @a@GzDar^?@?  %      %  " -  %  $ iU?  unknown -W@LdJ@GzD_39X@&pM@GzD%% %    %  % %  EmAX@n@6H@GzD!;&Yr;zF?^&aI@! -9? - -f@T@ %      %  ( -  %   *iU?  unknown -=veHZ@2Zx9@GzD66@[@~@@GzD%% %   R %  % %  EdZ@A@GzDVFg.?A]@?O? ? - -/@T@%%% %  U%1414395%% %   = %   -w`-Z@kAC@GzD%% %   > %  NA>Y@{]F@GzD %     -   %    3   %  89 -p 88 -p? 2  unknown -g -T֕EN]GzD6Sj|mZGzD %   ; - 6  %     - 6  %  4  -@TI7ˇ`GzD%^вN֕EN]GzD@  %% %   %  % %  Qؓ nO^GzDt #?  %    %  GzD GzD@ 4  tangent -%^вN=%`GzD%^вN=%`GzD@ %    = -%^вN=%`GzD?ZH8q_GzD@ % %  \0 -J8T`=͐BhZ`sT#@? #@ %% %  3 %  %^вN=%`GzD %  E8 -p ,9 -p?   unknown --2`@q%@GzD'XQa@۬ &T3@GzD %     - C  %   H - C  %  B  -'XQa@q%GzDb@q%@GzD@  %% %   %  % %  a@GzD&@?  %    %  GzD GzD@ B  tangent -'XQa@q%GzD'XQa@q%GzD@ %    J --2`@ܬ &T3GzD'XQa@q%GzD@ % %  ia@I4=?,[S6@? $@ %% %  < %  'XQa@q%GzD%% %  Y% %  -2`@ܬ &T3= -t=:R -t=:R@%% %  X% %  ?ZHa4B_=? -t=:R -t=:R@%% %   %  % %  @Q2]GzD@ar^<=VcEJ-? %% %  # %  QZM&^@GzD@%% %   %       %    Y -   %  ^ iU?  unknown -.w[@ѹɒ&@GzD@y[@kl$1@GzD@ %   ` \  %     \  %  Z  -66@[@kl$1@GzD۠U\@2,Ǩ9@GzD@  -%% %   { %   % %  ۠U[@2,Ǩ5@GzD@Yiry:u?  unknown -66@[@2Zx9@GzD66@[@2Zx9@GzD@%%% %  %14-1 %    c - -=veHZ@2Zx9@GzD66@[@~@@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  l%1414301%% %    %  66@[@2Zx9@GzD@%% %   p% %  CveHZ@~@@GzD@@ - -0/>:u?%% %   ` %      - -kl$1@۠U\GzD,Ǩ9@66@[GzD@ %%% %  q%1416811 %       %    n -   % -  sҨiU?  unknown -EU@Fq.S_P@GzD@@ -V@ |.Q@GzD@ %     q  %   u q  %  o  -; -V@&pM@GzDr M,X@{P@GzD@  -%% %    %  % %  r M,W@ -FN@GzD@,v<8!v < ZLm1o @? - -f@T@ %   0/>:u?  unknown -W@&pM@GzDW@&pM@GzD@%%% %  %14-1 %   x - -W@JdJ@GzD_39X@&pM@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  u%1414390%% %     %  W@&pM@GzD@%% %   % %  _39X@LdJ@GzD@@ - -0/>:u?%% %   I %   q   - -; -V@&pM@GzDr M,X@{P@GzD@ %%% %  z%1416988%%% %  |%1414547%%% %  }%1414546%%% %  %141579%% %   E %      - -kl$1@66@[@GzD2,Ǩ9@۠U\@GzD@  %  ! -ѹɒ&y[@GzDn X -\q\@GzD@  -% %  Lz *\q[@o_E;f@;f@? ?@ -  % " #h/< #-DT!@  $ unknown -`R2_GzD P2\GzD %  1  I  %  % &  '  % ( )GzD GzD@ * tangent -b -Tj|mZ@GzD` -Tj|mZ@GzD@ %  2 +    % , GzD GzD@ - tangent -g -Tj|mZGzDf -Tj|mZGzD@ %   + . - b  %   % / - b %% %  0  % 1 2 % 3 . 4 % 5 8 -p ,9 -p? G 6 unknown --2`@۬ &T3GzD@'XQa@q%GzD@ %    7 b  % 8 ,9 -p  -9 -p? : 9 unknown -%^вN=%`GzD@?ZH8q_GzD@%%% %  %1414298%% %  % %  ?ZHa4B_GzD@%% %  & %  -2`@ڬ &T3GzD@ %   : -  -  %% %  ;  %    A    % <     --2`@q%@GzD'XQa@ܬ &T3@GzD@ % %  ia@I4@=,[S6? $@ %% %  : %  -2`@ڬ &T3@GzD %   - = >   % ? 49 -p @9 -p? - A unknown -%^вN:q_@GzD?ZH=%`@GzD % B     -%^вN:q_@GzD?ZH=%`@GzD@ % %  N0 -J8T`@=?BgZ`sT#? $@ %% %  9 %  ?ZHa4B_@GzD %  = C   - D  % E Q FQ?  G unknown -?TڕEN]@GzD@%^вNI7ˇ`@GzD@%% %   % H  I% %  N0 -J8T`@GzD@ar^?BgZ`sT#?  %  B A   - C  % J Q Q?  K unknown -'XQa@q%GzD@b@q%@GzD@%% %   % L  M% %  ia@I4@GzD@ar^?,[S6? %% %  T % N  O% %  ?Q2]@GzDar^?@VcEJ-@? %% %   %  a@GzD %  P  Q R  %  p o   - q  % S  TK@T@  U unknown -? -V@&pM@GzDr M,X@{P@GzD%% %  V " % W  X% %  GzD/d' 7 ?_39X@RdJ@=? - -iU?%%% %  # %1414396%% %  Y $? %  _39X@LdJ@GzD %  & Z [ \  %  [ Z &  - \  % ] ^ @T@ & _ unknown -66@[@kl$1@GzD۠U\@2,Ǩ9@GzD%% %  ` (Q % a  b% %  GzDK[YGjؽd?66@[@=Zx9@=? - -iU?%%% %  ) %1414486%% %  c * %  CveHZ@~@@GzD%%% %  - %1416996%%% %  / %1416997 %  : 1 & d -   % e )DU r] 1 a unknown -p= -`j|mZGzD` -Tj|mZ@GzD %  + 2 5    %  2  -g -T֕EN]GzD6Sj|mZGzD@ f %% %  3 % g  h% %  6bV:8 d\GzDar^<q&N#@P@?  %  5 4  7 - 6  % i 8GzD jGzD@ 5 k tangent -5=AS:T֕EN]GzD5=AS:T֕EN]GzD@ % l m 6   -@TI7ˇ`GzD%^вN֕EN]GzD@ % %  Qؓ nO^?t #? ?&@ %% %  84 %  5=AS:T֕EN]GzD%% %  ;\ % n 7 o% %  %^вN=%`= -t=:R -t=:R@%% %  < % p q   f -g -T֕EN]GzD6Sj|mZGzD@ %% %  @% %  ia@I4@GzDar^<,[S6?  % r GzD EGzD@ A s tangent -'XQa@q%@GzD'XQa@q%@GzD@ % t u C   -'XQa@q%GzDb@q%@GzD@ % %  a@?&@? ?&@ %% %  E; %  'XQa@q%@GzD%% %  H` % v  w% %  'XQa@q%=? -t=:R -t=:R@%% %  I%% %  R$ %  QWM&^GzD@ %  x W y z   %  { | W  - }  % ~  9@T@ W  unknown -y[@ X -@GzD@\q\@ѹɒ&@GzD@ %  [ X [  -   %  X [ {  -   %    -.w[@ѹɒ&@GzDy[@kl$1@GzD@  -%% %   Y| %   % %  GzD@P0w:u? [  unknown -.w[@kl$1@GzD.w[@kl$1@GzD@%%% %  \%14-1 %   \   - -66@[@kl$1@GzD۠U\@2,Ǩ9@GzD@ % %  ۠U[@2,Ǩ5@o_E;f@;f@? ?@ - %%% %  ] %1414302%% %   ^ %  .w[@kl$1@GzD@%% %   `q% %  66@[@2Zx9@GzD@@ - -0/>:u?%% %   b"%%% %  e %1416813%%% %  g %1414494%%% %  i %141608%% %   ja %      - -r M,X&pM@GzD; -V{P@GzD@  %   j -kl$1@۠U\GzD,Ǩ9@66@[GzD@  -% %  ,Ǩ5@۠U[o_E;f@;f@? ?@ -  %  l      %    l  -   %   g@T@ l  unknown -_bT@ |.Q@GzD@z*U@kn?`S@GzD@ %  Q m   -   %  m Q o  -   %    -EU@Fq.S_P@GzD@ -V@ |.Q@GzD@  -%% %   n %   % %  GzD@7#G$xt:u?   unknown -@ -V@Gq.S_P@GzD@ -V@Gq.S_P@GzD@%%% %  q%14-1% %  r M,W@ -FN@o_E;f@;f@? ?@ - %%% %  r %1414389%% %   s %  @ -V@Gq.S_P@GzD@%% %   u% %  W@&pM@GzD@@ - -0/>:u?%% %   wH%%% %  z %1416986%%% %  | %1414551%%% %  ~ %141585%% %   J %      - -EmAYa@6JGzD_39Xm]FGzD@ %%% %   %141580%% %   F %  w    - -Cv`-Z@GzD~@Ed[@GzD@  %    -kl$1@66@[@GzD2,Ǩ9@۠U\@GzD@  -% %  2,Ǩ5@۠U[@o_E;f@;f@? ?@ - %%% %  %14-1 %       %% %  U %   % %  @Q2]GzDar^?=VcEJ-?  %     / '  %     d '  %  % q -b -Tj|mZ@GzD6SڕEN]@GzD@  %% %  Z %   % %  b -Tj|mZ@=? -t=:R -t=:R@ %     .  %% %  [% %  g -Tj|mZ= -t=:R -t=:R@ %  j8 -p 89 -p? +  unknown -g -T֕EN]GzD@6Sj|mZGzD@ %  N9 -p F8 -p? %  unknown -a -Tj|mZ@GzD@6SڕEN]@GzD@%%% %   %1414298%% %  - %  ` -Tj|mZ@GzD@%% %  . %  f -Tj|mZGzD@%% %  % %  ia@I4GzD@ar^?,[S6@?  %  jQ Q?   unknown -@TI7ˇ`GzD@%^вN֕EN]GzD@%% %  % %  \0 -J8T`GzD@ar^?͐BhZ`sT#@?  %       %%% %   %1414394%% %   %     > - D  %  @GzD GzD@ =  tangent -%^вN=%`@GzD%^вN=%`@GzD@%% %   %   % %  N0 -J8T`@GzDar^<BgZ`sT#? %% %   %      - D  %  C m -?TڕEN]@GzD%^вNI7ˇ`@GzD@  %% %   %  / % %  Qۓ nO^@GzD@?t #@? %% %  + %  %^вN=%`@GzD@%% %  % %  a@GzD@?&@? %% %  ( %  'XQa@q%@GzD@%% %   %  QZM&^@GzD %       %     R -   %  T iU?   unknown -EU@Gq.S_P@GzD@ -V@ |.Q@GzD%% %    %   % %  r M,W@ -FN@GzDEТ޳!̟?f@}5p? - -K@T@%%% %   "%1414397%% %   @ %  W@&pM@GzD%%% %   $%1416999 %       %     \ -   %   ^&iU?   unknown -.w[@ѹɒ&@GzDy[@kl$1@GzD%% %   P %  \ % %  ۠U[@2,Ǩ5@GzDhE|9|?.5u? -"|g? - -@T@%%% %   (%1414485%% %    %  66@[@2Zx9@GzD%%% %   *%1417174 %  8 -p )N9 -p? &  unknown -a -Tj|mZ@GzD6SڕEN]@GzD%% %   % %  6bV:8 d\=?q&N#@P@? $@ %% %  5 %  f -Tj|mZGzD%% %  ] %  7 % %  5=AS:T֕EN]=? -t=:R -t=:R@%% %   %  I D   -?TڕEN]@GzD%^вNI7ˇ`@GzD@ %% %  0 %  %^вN=%`GzD@%% %   %   '   -b -Tj|mZ@GzD6SڕEN]@GzD@ %% %  a% %  'XQa@q%@= -t=:R -t=:R@%% %   %      - -整[@X -GzD\@X -@GzD@ %% %  ' %  'XQa@q%GzD@ %        %     z -   %   eiU? y  unknown -整[@X -GzD@\@X -@GzD@ %      }  %      }  %  {  -y[@ X -@GzD\q\@ѹɒ&@GzD@  -%% %   } %   % %  \q[@Lz *@GzD@mcܚl;G%<!?*?@? - -9@T@ %   0/>:u?   unknown -y[@ѹɒ&@GzDy[@ѹɒ&@GzD@%%% %  %14-1 %      - -.w[@ѹɒ&@GzDy[@kl$1@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   Y%1414303%% %    %  y[@ѹɒ&@GzD@%% %   r% %  .w[@kl$1@GzD@@ - -0/>:u?%% %   # %      - -ҹɒ&\q\GzDfX -y[GzD@ %%% %   ^%1416815%%% %   `%1414495%%% %   b%141545%%% %   j%141609%% %  - b %      - -V X -@\q\GzDѹɒ&@y[GzD@  %    -r M,X&pM@GzD; -V{P@GzD@  -% %  r M,W -FN@o_E;f@;f@? ?@ - %%% %  %14-1 %        %        %      -   %   ިiU?   unknown -t,uDw2S@u,uDw2S@GzD@_bT@_bT@GzD@ %        %        %    -_bT@ |.Q@GzDz*U@kn?`S@GzD@ ! -%% %  "  % #  $% %  z*T@kn?`R@GzD@T^*6<"ۘ<hCF -@o? - -g@T@ % %  0/>:u?  & unknown -EU@ |.Q@GzDEU@ |.Q@GzD@%%% %  %14-1 % ' (    - -EU@Fq.S_P@GzD@ -V@ |.Q@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  - n%1414388%% %  )  %  EU@ |.Q@GzD@%% %  * ~% %  @ -V@Gq.S_P@GzD@@ - -0/>:u?%%% %   s%1416984%%% %   u%1414550%%% %   w%141583%%% %   %141586%% %  + K % , - .  / - -۠U\2,Ǩ9GzD66@[kl$1GzD@  % 0 1  -EmAYa@6JGzD_39Xm]FGzD@  -% %  EmAXa@6Ho_E;f@;f@? ?@ - %%% %   %141581%% %  2 G % 3 4  -Cv`-Z@GzD~@Ed[@GzD@  -% %  AEdZ@o_E;f@;f@? ?@ - %%% %  %14-1 %  5 6 7 8   %  9 ! : ; -   %  ! 9 < = -   %  > ? !  - @  % A B C0/>:u?  D unknown -ѹɒ&y[@GzDѹɒ&y[@GzD@%% %  # %  QWM&^GzD %  & % C  ' % %  6bV:8 d\@=q&N#@dP? $@ %% %  )6 %  ` -Tj|mZ@GzD%% %  .% %  6bV:8 d\GzD@ar^?q&N#@P@? %% %  /% %  6bV:8 d\@GzD@ar^?q&N#@dP? %% %  7% %  Qؓ nO^GzD@?t #?  %  C = :  - D  % E Q @Q? : F unknown -?TڕEN]@GzD%^вNI7ˇ`@GzD%% %  >_% %  %^вN=%`@=? -t=:R -t=:R@%% %  @8 %  %^вN=%`@GzD % G FGzD GzD@ C H tangent -/=AS:TڕEN]@GzD/=AS:TڕEN]@GzD@% %  Qۓ nO^@?t #@? ?&@ %% %  F, %  /=AS:TڕEN]@GzD@ %  I P J K  %    P  -   % L  My@T@ P N unknown -_bT@ |.Q@GzDz*U@kn?`S@GzD%% %  O R % P  Q% %  GzD_5i"zY@]FGzD -w`-Z@pACGzD@  % d  u -整[@X -GzD\@X -@GzD@  -% %  ITTS@TTS@? ?\@ -  %  e x f g   %  h i x  - j  % k  l@T@ x m unknown -y[@ҹɒ&GzD@\q\@X -GzD@ %  T y |  -   %  y T h n -  %% %  o z~ % p n q% %  GzD@m Gbw_w<[@X -@ ? - -eiU? % r W 0/>:u?  s unknown -整[@X -@GzD整[@X -@GzD@%%% %  }%14-1 % t u }   - -y[@ X -@GzD\q\@ѹɒ&@GzD@ % %  \q[@Lz *@o_E;f@;f@? ?@ - %%% %  ~ %1414304%% %  v  %  整[@X -@GzD@%% %  w % %  y[@ѹɒ&@GzD@@ - -0/>:u?%% %  x O % y z {  | - -۠U\kl$1@GzD66@[2,Ǩ9@GzD@ %%% %   %1416817%%% %   %1414496%%% %   %141546%% %  } $ % ~     - -X -\GzDX -@整[GzD@  %    -ҹɒ&\q\GzDfX -y[GzD@  -% %  lMz *\q[o_E;f@;f@? ?@ - %%% %   %141610%% %   c %      - -N,Ǩ9۠U\GzDǟkl$166@[GzD@  %    -V X -@\q\GzDѹɒ&@y[GzD@  -% %  Lz *@\q[o_E;f@;f@? ?@ - %%% %  %14-1 %        %      -   %      -   %      -   %   0/>:u?   unknown -kl$1@.w[GzDkl$1@.w[GzD@ %        %      -   %   r@T@   unknown - |.Q@_bT@GzD@kn?`S@z*U@GzD@ %  J    -   %   J   -   %    -t,uDw2S@t,uDw2S@GzD_bT@_bT@GzD@  -%% %    %   % %  GzD@e<><t,uDw2S@_bT@=? - -ިiU? %   M0/>:u?   unknown -_bT@u,uDw2S@GzD_bT@u,uDw2S@GzD@%%% %  %14-1 %     ! - -_bT@ |.Q@GzDz*U@kn?`S@GzD@ % %  z*T@kn?`R@o_E;f@;f@? ?@ - %%% %   %1414387%% %    %  _bT@u,uDw2S@GzD@%% %   }% %  EU@ |.Q@GzD@@ - -0/>:u?%% %   - %   @   - -kl$1.w[@GzDѹɒ&y[@GzD@ %%% %   %1416982%%% %   %1414508%%% %   %141587%% %   L %      - -z*Ukn?`SGzD_bT |.QGzD@  %    -۠U\2,Ǩ9GzD66@[kl$1GzD@ / -% %  ۠U[2,Ǩ5o_E;f@;f@? ?@ - %%% %  %14-1 %       %%% %   %141582%%% %  %14-1 %        %      -   %      -   %     8 -   %   0/>:u? 7  unknown -kl$1@.w[@GzDkl$1@.w[@GzD@ %        %     ;  %   C@T@ :  unknown -ѹɒ&y[@GzDX -\q\@GzD %     =   %  B 9@T@ <  unknown -ѹɒ&y[@GzD@n X -\q\@GzD@ %      - @  %      - @  %   ( -kl$1.w[@GzDѹɒ&y[@GzD@  -%% %    %    %  ; % %  ѹɒ&y[@GzD@@ - -0/>:u?%% %  % %  Qۓ nO^@GzDt #@? %% %  ^% %  /=AS:TڕEN]@= -t=:R -t=:R@ %       %     K -   %  M ިiU?   unknown -u,uDw2S@t,uDw2S@GzD_bT@_bT@GzD%% %    %   % %  z*T@kn?`R@GzD6p8I़?qE=4@ '? - -y@T@%%% %   R%1414399%% %   B %  EU@ |.Q@GzD%%% %   T%1417003 %       %     U -   %   WhiU? T  unknown -整[@X -GzD\@X -@GzD%% %   N %   % %  \q[@Lz *@GzD2AA&c?cVϓ?%}~P? - -@T@%%% %   \%1414483%% %    %  y[@ѹɒ&@GzD%%% %   ^%1417170%% %  7 %  /=AS:TڕEN]@GzD%%% %   u%141533%% %    %      - -Ed[~@@GzDv`-ZC@GzD@  %    -wNA>Y@]FGzD -w`-Z@pACGzD@ c -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %        %     g -   %  l iU?   unknown -.w[@ڟkl$1GzD@y[@ѹɒ&GzD@ %     n j  %      j  %  i - -y[@ҹɒ&GzD\q\@|X -GzD@  -%% %    %   % %  \q[@wMz *GzD@ 2DCA&c<cVϓ?}~@P? - -@T@ %   0/>:u?   unknown -整[@X -GzD整[@X -GzD@%%% %   z%1414289%% %    %  整[@X -GzD@%% %   b% %  整[@X -@GzD@@ - -0/>:u?%% %   \ %      - -66@[@N,Ǩ9GzD۠U\@ǟkl$1GzD@ %%% %   %1416783%%% %   %1414556%%% %   %141591%% %   P %      - -\q\ѹɒ&GzDy[V X -GzD@  %    -۠U\kl$1@GzD66@[2,Ǩ9@GzD@ | -% %  ۠U[2,Ǩ5@o_E;f@;f@? ?@ - %%% %   %141547%% %   % %  ! "  # - -JdJ@W@GzD&pM@_39X@GzD@  % $ %  -X -\GzDX -@整[GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %  & ' ( )  %%% %   %141611%% %  * d % + , -  . - -~@@Ed[GzDC@v`-ZGzD@  % / 0  -N,Ǩ9۠U\GzDǟkl$166@[GzD@  -% %  N,Ǩ5۠U[o_E;f@;f@? ?@ - %%% %  %14-1 %  1 2 3 4   %  5  6 7 -   %   5 8 9 -   %  : ;   - <  % = > ?0/>:u?  @ unknown -@ -VGq.S_P@GzD@ -VGq.S_P@GzD@ %    A B   %  C D     % E F @T@  G unknown -kl$1@۠U\GzD@,Ǩ9@66@[GzD@ %  H I    % J  Kq@T@  L unknown -kl$1@۠U\GzD,Ǩ9@66@[GzD %  3  I M -   %   3 C N -   % O 3 P -ѹɒ&@y[GzDkl$1@.w[GzD@ Q -%% %  R  % S  T % U  V% %  kl$1@.w[GzD@@ - -0/>:u? %   W X Y   %  Z [   - \  % ] ^ iU?  _ unknown -Gq.S_P@EU@GzD@ |.Q@@ -V@GzD@ %    [ `   %        % a  b - |.Q@_bT@GzDkn?`S@z*U@GzD@ c -%% %  d  % e ` f% %  kn?`R@z*T@GzD@6p<@vrH< 'E=4@¹? - -r@T@ % g  0/>:u?  h unknown -u,uDw2S@_bT@GzDu,uDw2S@_bT@GzD@%%% %  %14-1 % i     - -t,uDw2S@t,uDw2S@GzD_bT@_bT@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414386%% %  j  %  u,uDw2S@_bT@GzD@%% %  k |% %  _bT@u,uDw2S@GzD@@ - -0/>:u?%% %  l ,%%% %  # %1416980%%% %  % %1414507%%% %  ' %141556%% %  m (. % n o p  q - -2Zx9@=veHZ@GzD~@@66@[@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  , %141588%% %  r -M % s  t  u - -=veHZ@~@GzD66@[@NZx9GzD@  % v w - -z*Ukn?`SGzD_bT |.QGzD@  -% %  z*Tkn?`Ro_E;f@;f@? ?@ - %%% %  .%14-1 %  x y z { .  %  | 1 } ~ -   %  1 |   -   %    1  -   %   0/>:u?   unknown -NA>Ym]FGzDNA>Ym]FGzD@ %   4   -   %  4    -   %    4  -   %   0/>:u? 4  unknown -kAC -w`-Z@GzDkAC -w`-Z@GzD@ %  6 5     %    5   %   ɦ@T@   unknown -kl$1@66@[@GzD2,Ǩ9@۠U\@GzD %    6    %   o@T@   unknown -kl$1@66@[@GzD@2,Ǩ9@۠U\@GzD@ %   7   -   %  7    -   %  7  -ѹɒ&@.w[@GzDkl$1@y[@GzD@  -%% %   8o %    %   % %  kl$1@.w[@GzD@@ - -0/>:u? %    9  -   %   0/>:u?   unknown -X -整[@GzDX -整[@GzD@ %   : ?   %  :    %% %   ; %   % %  Lz *\q[@GzD2   %% %   = %  = % %  Lz *\q[@GzD@ucܚl   - @  %   BiU?   unknown -kl$1.w[@GzD@ѹɒ&y[@GzD@ %  C &iU?   unknown -kl$1.w[@GzDѹɒ&y[@GzD%%% %  @%14-1%%% %  A %1414509%% %   B %  ѹɒ&y[@GzD@%% %   CQ %  ѹɒ&y[@GzD %   I    %    I  -   %   \@T@ I  unknown - |.Q@_bT@GzDkn?`S@z*U@GzD%% %   K %   % %  GzD2%]?}?_bT@t,uDw2S@=? - -ިiU?%%% %  L %1414400%% %   MC %  _bT@u,uDw2S@GzD%%% %  P %1417005 %  S     %  i h S  - j  %   A@T@ S  unknown -y[@ҹɒ&GzD\q\@|X -GzD%% %   UM %  n % %  GzD~n Gbv_w?[@X - 9? - -hiU?%%% %  V %1414482%% %   W %  整[@X -@GzD%%% %  Z %1417168%%% %  ` %141534%% %   a %      - -66@[2Zx9@GzD=veHZ~@@GzD@  %   a -Ed[~@@GzDv`-ZC@GzD@  -% %  EdZA@o_E;f@;f@? ?@ - %%% %  b%14-1 %      - b  %   e     %    e  -   %   o@T@ e  unknown -66@[@N,Ǩ9GzD@۠U\@͟kl$1GzD@ %   f i  -   %  f    -   %    -.w[@۟kl$1GzDy[@ѹɒ&GzD@  -%% %   g %   % %  GzD@?:u?   unknown -y[@ҹɒ&GzDy[@ҹɒ&GzD@%%% %  j%14-1 %   j   - -y[@ҹɒ&GzD\q\@|X -GzD@ % %  \q[@wMz *o_E;f@;f@? ?@ - %%% %  k %1414305%% %   l %  y[@ҹɒ&GzD@%% %   nc% %  整[@X -GzD@@ - -0/>:u?%%% %  p %1416787%%% %  r %1414286%%% %  t %141604%% %   u] %      - -^39X@n@6JGzDEmAY@{]FGzD@  %   u -66@[@N,Ǩ9GzD۠U\@ǟkl$1GzD@  -% %  ۠U[@N,Ǩ5o_E;f@;f@? ?@ - %%% %  y %141592%% %   zQ %      - -Ed[CGzDv`-Z~@GzD@  %   z -\q\ѹɒ&GzDy[V X -GzD@  -% %  \q[Lz *o_E;f@;f@? ?@ - %%% %  {%14-1 %     - { %%% %  ~ %141548%% %   & %      - -{]F@^39X@GzDn@6J@EmAY@GzD@  %    -JdJ@W@GzD&pM@_39X@GzD@ # -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %      -   %      -   %      -   %     ) -   %   0/>:u?  ! unknown -ҹɒ&y[GzDҹɒ&y[GzD@%%% %   %141612%% %  " e % # $ %  & - -2,Ǩ966@[@GzDkl$1۠U\@GzD@  % ' (  -~@@Ed[GzDC@v`-ZGzD@ . -% %  A@EdZo_E;f@;f@? ?@ - %%% %  %14-1 %  ) * + ,   %    - . -   %    / 0 -   %     4 -   % 1 2 30/>:u? 3 4 unknown -ѹɒ&@y[GzDѹɒ&@y[GzD@ %    5 6   %  7 8  7   % 9 : ?A@T@ 6 ; unknown -r M,X&pM@GzD@> -V{P@GzD@ %  < =  9  % > > ?f@T@ 8 @ unknown -r M,X&pM@GzD; -V{P@GzD %  A  = B - <  %   A 7 C - <  % D A E -@ -VFq.S_P@GzDEU |.Q@GzD@ F -%% %  G  % H 9 I % J  K% %  @ -VGq.S_P@GzD@@ - -0/>:u? %  L M  B - N  % O F K0/>:u? A P unknown -2Zx9@66@[GzD2Zx9@66@[GzD@ %  /   N   %   Q L R  %% %  S  % T  U% %  ,Ǩ5@۠U[GzD@ZiryHc0<&[I@* )j?P9? - -@T@ %  V  M W  %   -  M %% %  X 8 % Y  Z% %  ,Ǩ5@۠U[GzDhE<,P? -"| -.5u? - -q@T@ % [ 3 &iU? I \ unknown -ѹɒ&@y[GzDkl$1@.w[GzD % ]  2+iU? C ^ unknown -ѹɒ&@y[GzD@kl$1@.w[GzD@%%% %  %14-1 % _ `   Q - -ѹɒ&@y[GzDkl$1@.w[GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414564%% %  a  %  kl$1@.w[GzD%% %  b  %  kl$1@.w[GzD@ %   c d e   %  f g  Y - h  % i j ^E@T@  k unknown -&pM@> -V@GzD@{P@r M,X@GzD@ %    g l - \  %     ` - \  % m [ n -Fq.S_P@EU@GzD |.Q@@ -V@GzD@ o -%% %  p  % q Y r% %  GzD@QgpI<Kq.S_P@> -V@=? - -iU? % s  0/>:u? [ t unknown - |.Q@EU@GzD |.Q@EU@GzD@%%% %  %14-1 % u    c - - |.Q@_bT@GzDkn?`S@z*U@GzD@ % %  kn?`R@z*T@o_E;f@;f@? ?@ - %%% %   %1414385%% %  v  %   |.Q@EU@GzD@%% %  w {% %  u,uDw2S@_bT@GzD@@ - -0/>:u?%% %  x +%%% %   %1416978%%% %   %1414506%%% %   %141555%%% %   (%141557%% %  y / % z { |  } - -W@&pMGzD_39X@RdJGzD@  % ~   -2Zx9@=veHZ@GzD~@@66@[@GzD@ q -% %  ITTS@TTS@? ?\@ - %%% %   -%141589%% %   N %    -=veHZ@~@GzD66@[@NZx9GzD@ u -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %        %      - .  %      - .  %     { -   %   0/>:u? z  unknown -.w[kl$1GzD.w[kl$1GzD@ %        %     ~   %   @T@ }  unknown -EmAYa@6JGzD@_39Xm]FGzD@ %       %   \@T@   unknown -EmAYa@6JGzD_39Xm]FGzD %      -   %      -   %    - -w`-Zs]FGzDzNA>YcACGzD@  -%% %    %    %  ~ % %  NA>Ym]FGzD@@ - -0/>:u? %        %       %   /@T@   unknown -C w`-Z@GzD~@Ed[@GzD %        %   @T@   unknown -Cv`-Z@GzD@~@Ed[@GzD@ %      -   %      -   %    -{]FyNA>Y@GzDcAC -w`-Z@GzD@  -%% %    %    %   % %  kAC -w`-Z@GzD@@ - -0/>:u? %      - p  %   0/>:u?   unknown -2Zx9@66@[@GzD2Zx9@66@[@GzD@ %       %      %% %    %   % %  2,Ǩ5@۠U[@GzD \iryHc0?$[I@+ )jտ? - -ɦ@T@ %        %       %% %    %   % %  2,Ǩ5@۠U[@GzD@hE<,P< -"|@.5u?? - -o@T@ %      -   %   iU?   unknown -ѹɒ&@.w[@GzD@kl$1@y[@GzD@ %   iU?   unknown -ѹɒ&@.w[@GzDkl$1@y[@GzD%%% %  %14-1 %  b    - -ѹɒ&@.w[@GzDkl$1@y[@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   8%1414493%% %    %  kl$1@.w[@GzD@%% %   M %  kl$1@.w[@GzD %      -   %      -   %    -X -整[@GzD#X -@\@GzD@  -%% %   l% %  X -整[@GzD@@ - -0/>:u? %       %       %   iU?   unknown -X -整[@GzD#X -@[@GzD%%% %   ;%1414414%% %   P %  X -整[@GzD %        %   iU?   unknown -X -整[@GzD@ X -@\@GzD@ %       %%% %   =%1414373%% %    %  X -整[@GzD@ %      %  %   0/>:u?   unknown -kl$1.w[@GzDkl$1.w[@GzD@%% %    %   % %  GzD@qp7s6Y]F@GzD@  %    -66@[2Zx9@GzD=veHZ~@@GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %        %      - b  %      - b  %        %   0/>:u?   unknown -NA>Y@{]FGzDNA>Y@{]FGzD@ %     !   %   "   - t  % #  $"iU?  % unknown ->veHZ@~@GzD@66@[@NZx9GzD@ %        %     &  %% %  '  % ( & )% %  ۠U[@N,Ǩ5GzD@hE|9|<@.5u? -"|@P9? - -o@T@ % *  0/>:u?  + unknown -.w[@͟kl$1GzD.w[@͟kl$1GzD@%%% %  %14-1 % , E    - -.w[@۟kl$1GzDy[@ѹɒ&GzD@ % %  ITTS@TTS@? ?\@ - %%% %   g%1414306%% %  -  %  .w[@͟kl$1GzD@%% %  . % %  y[@ҹɒ&GzD@@ - -0/>:u?%% %  / -: % 0 1 2  3 - -[#X -GzD整[NX -@GzD@ %%% %   l%1416820%%% %   n%1414288%%% %   u%141605%% %  4 ^ % 5 6  7 - -{P> -V@GzD&pMr M,X@GzD@  % 8   -^39X@n@6JGzDEmAY@{]FGzD@  -% %  EmAX@n@6Ho_E;f@;f@? ?@ - %%% %  %14-1%%% %   z%141593%% %  9 R % : ; <  = - -y M,X{PGzD@ -V&pMGzD@  % > ?  -Ed[CGzDv`-Z~@GzD@  -% %  EdZAo_E;f@;f@? ?@ - %%% %  %14-1 %  @ A B C   %  D  E F - {  %   D G H - {  %  I J  - - K  % L M N0/>:u?  O unknown -.w[kl$1@GzD.w[kl$1@GzD@%%% %   %141549%% %  P !' % Q n h  R - -&pM@; -V@GzD{P@r M,X@GzD@  % S T ! -{]F@^39X@GzDn@6J@EmAY@GzD@  -% %  n@6H@EmAX@o_E;f@;f@? ?@ - %%% %  "%14-1 %  U d V W - "  %  X % Y Z -   %  % X [ \ -   %  2 1 %    % ] ^ _0/>:u? % ` unknown -X -@整[GzDX -@整[GzD@ %  ' & X a   %  b [ &    % c d @T@  e unknown -ҹɒ&\q\GzD@X -y[GzD@ %  Y f '   % g  hA@T@  i unknown -ҹɒ&\q\GzDfX -y[GzD %  + ( f j -   %  ( + b k -   % l + m -ڟkl$1y[GzDѹɒ&.w[GzD@ n -%% %  o )s % p j q % r  s% %  ҹɒ&y[GzD@@ - -0/>:u?%%% %  + %141613%% %  t ,f % u v w  x - -a@6J_39X@GzDp]FEmAY@GzD@  % y  , -2,Ǩ966@[@GzDkl$1۠U\@GzD@ & -% %  2,Ǩ5۠U[@o_E;f@;f@? ?@ - %%% %  -%14-1 %  z { | } -  %  ~ 0   -   %  0 ~   -   %    0 , -   %   0/>:u? +  unknown -͟kl$1.w[GzD͟kl$1.w[GzD@ %  I Y 1 .  %  ^ 3@T@ -  unknown -X -@\q\GzDѹɒ&@y[GzD %  [ C 2 0   %  2 _9@T@ /  unknown -V X -@\q\GzD@ѹɒ&@y[GzD@%% %   4 %  4  %  4 % %  ѹɒ&@y[GzD@@ - -0/>:u? %    5 6 -   %  : ?0/>:u? 5  unknown -W&pM@GzDW&pM@GzD@ %   6 ; C   %  6     %% %   7 %   % %  r M,W -FN@GzD@EТ޳!̟<c5p9? - -A@T@ %   8    %  8  : B %% %   9 %  9 % %  r M,W -FN@GzD,v<8!v ? Z?Lm1o @? - -f@T@ %  ; :   - <  %   >ҨiU? =  unknown -@ -VFq.S_P@GzDEU |.Q@GzD %  ? 2iU? 7  unknown -@ -VGq.S_P@GzD@EU |.Q@GzD@%%% %  <%14-1 %   <  F - -@ -VFq.S_P@GzDEU |.Q@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  = %1414523%% %   >^ %  @ -VGq.S_P@GzD%% %   ? %  @ -VGq.S_P@GzD@ %   A D R - N  %  A  H W - N  %    -Zx9@66@[GzD~@@@veHZGzD@  -%% %   B% %  2Zx9@66@[GzD@@ - -0/>:u? %  D  {    %   FiU? D  unknown -2Zx9@66@[GzD@~@@AveHZGzD@%%% %  E %1414324%% %   F %  2Zx9@66@[GzD@ %   H z   %  K ݨiU? H  unknown -Zx9@66@[GzD~@@@veHZGzD%%% %  J %1414462%% %   K %  2Zx9@66@[GzD%% %   M7% %  GzDB[1m^b?ѹɒ&@y[? - -&iU?%% %   N% %  GzD@qp7s6:u? g  unknown -Gq.S_P@@ -V@GzDGq.S_P@@ -V@GzD@%%% %  \%14-1 %  b \  o - -Fq.S_P@EU@GzD |.Q@@ -V@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  ] %1414384%% %   ^ %  Gq.S_P@@ -V@GzD@%% %   `z% %   |.Q@EU@GzD@@ - -0/>:u?%% %   b*%%% %  e %1416976%%% %  g %1414505%%% %  i %141554%%% %  n %141558%% %   o0 %      - - |.Q@z*UGzDkn?`S@_bTGzD@  %   o -W@&pMGzD_39X@RdJGzD@ } -% %  ITTS@TTS@? ?\@ - %%% %  p%14-1%%% %  s %141590%%% %  t%14-1 %     & - t  %   w   -   %  w    -   %    w  -   %   0/>:u? w  unknown -EU |.QGzDEU |.QGzD@ %  y x   .  %    x    %   @T@   unknown -۠U\2,Ǩ9GzD@66@[kl$1GzD@ %    y   %   v@T@   unknown -۠U\2,Ǩ9GzD66@[kl$1GzD %  B z   -   %  z B   -   %  B  -y[kl$1GzD.w[ѹɒ&GzD@  -%% %   { %    %  { % %  .w[kl$1GzD@@ - -0/>:u? %    |  -   %   0/>:u? |  unknown -_39XLdJGzD_39XLdJGzD@ %   }     %  }     %% %   ~ % - ~ % %  EmAXa@6HGzD@hElR<`~ ?삁<yox?G_? - -@T@ %       %      %% %   $ %   % %  EmAXa@6HGzD ;&YY;zF?C&aI3 -@9? - -\@T@ %    ?  -   %   fiU?   unknown - -w`-Zm]FGzD}NA>YiACGzD %    iU?   unknown - -w`-Zs]FGzD@zNA>YcACGzD@%%% %  %14-1 %      - - -w`-Zs]FGzDzNA>YcACGzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414543%% %   n %  NA>Ym]FGzD%% %    %  NA>Ym]FGzD@ %      -   %   0/>:u?  ! unknown -~@CveHZ@GzD~@CveHZ@GzD@ %  "     %     # %% %  $  - % % # &% %  AEdZ@GzDVFg<&6=?O? @A]@?9? - -/@T@ %     '   %   (    %% %  )  % *  +% %  AEdZ@GzD@Rď6<D6C? - -@T@ %    , - -   % . /  iU?  0 unknown -{]FzNA>Y@GzD@cAC -w`-Z@GzD@ % 1  2٨iU?  3 unknown -{]FyNA>Y@GzDiAC -w`-Z@GzD%%% %  %14-1 % 4 5    - -{]FyNA>Y@GzDcAC -w`-Z@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414548%% %  6   %  kAC -w`-Z@GzD@%% %  7 U %  kAC -w`-Z@GzD %  8    - p  %   8   - p %% %  9 % %  2Zx9@66@[@GzD@@ - -0/>:u? %   : ; <  % = > iU?  ? unknown -2Zx9@>veHZ@GzD~@@66@[@GzD%%% %   %1414410%% %  @ L %  2Zx9@66@[@GzD %    A B   % C  DiU?  E unknown -2Zx9@=veHZ@GzD@~@@66@[@GzD@%%% %   %1414377%% %  F  %  2Zx9@66@[@GzD@ %      G  % H  0/>:u?  I unknown -ѹɒ&@y[@GzDѹɒ&@y[@GzD@%% %  J  % K  L% %  GzD@B[1n^b<ѹɒ&@y[@=? - -iU?%% %  M  % N  O% %  GzDqp7s6:u?%%% %   %1414372%% %  g  %  kl$1.w[@GzD@%%% %   %1414415%% %  h R %  kl$1.w[@GzD %  i  U j  %  g f   - h  % k  lf@T@  m unknown -&pM@; -V@GzD{P@r M,X@GzD%% %  n  % o  p% %  GzD=eY]F@GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %    D  -   %      -   %      -   %      -   %   0/>:u?   unknown - -w`-ZzAC@GzD -w`-ZzAC@GzD@ %      - b  %        %   ViU?   unknown -{NA>Y@{]FGzD@ -w`-Z@wACGzD@ %  r     %   iU?   unknown -wNA>Y@]FGzD -w`-Z@pACGzD %      -   %      -  %% %   d %    %   % %  NA>Y@{]FGzD@@ - -0/>:u? %     ! -   %  $ /@T@   unknown - w`-Z@CGzD@Ed[@~@GzD@ %      - t %% %    %   % %  GzD@XYGlؽd<66@[@ZZx9? - -"iU? %  u 0/>:u?   unknown -66@[@NZx9GzD66@[@NZx9GzD@%%% %   %1414307%% %    %  66@[@NZx9GzD@%% %   % %  .w[@͟kl$1GzD@@ - -0/>:u?%% %   4%%% %   %1416822%%% %   %1414521%%% %   -%141569%% %   ; %      - -Aq.S_P@D -VGzD |.Q@EUGzD@  %    -[#X -GzD整[NX -@GzD@ 3 -% %  ITTS@TTS@? ?\@ - %%% %   %141606%% %   _ %    -{P> -V@GzD&pMr M,X@GzD@ 7 -% %   -FNr M,W@o_E;f@;f@? ?@ - %%% %  %14-1%%% %   %141594%% %   S %      - -kn?`Sz*UGzD |.Q_bTGzD@  %    -y M,X{PGzD@ -V&pMGzD@ = -% %  y M,W -FNo_E;f@;f@? ?@ - %%% %  %14-1 %        %      -   %      -   %     C -   %   0/>:u? B  unknown -y[ѹɒ&GzDy[ѹɒ&GzD@ %      {  %     F  %   Nɦ@T@ E  unknown -۠U\kl$1@GzD66@[2,Ǩ9@GzD %     H   %  M o@T@ G  unknown -۠U\kl$1@GzD@66@[2,Ǩ9@GzD@ %      - K  %      - K  %   5 -y[ѹɒ&@GzD.w[kl$1@GzD@  -%% %   - %  H  %  - % %  .w[kl$1@GzD@@ - -0/>:u?%%% %   !%141550%% %   (% %   -FN@r M,W@o_E;f@;f@? ?@ - %%% %  %14-1 %        %     j - "  %     W   %   0/>:u?   unknown -LdJ@_39X@GzDLdJ@_39X@GzD@ %     a -   %  -   Z  %  h ^iU? Y  unknown -X -\GzDX -@整[GzD %   /  \   %  _ d:u? %  d h0/>:u?   unknown -X -整[GzDX -整[GzD@ %     k  %% %    %   % %  lMz *\q[GzD@$ 2Y@GzD]F@ -w`-Z@GzD@  %  , $ -a@6J_39X@GzDp]FEmAY@GzD@ x -% %  a@6HEmAX@o_E;f@;f@? ?@ - %%% %  %%14-1 %   ( V  - -  %  (  Q  - -  %    ( } -   %  - 0/>:u? (  unknown -kAC@ -w`-ZGzDkAC@ -w`-ZGzD@ %  * )     %  f  )   %   ɦ@T@   unknown -N,Ǩ9۠U\GzDǟkl$166@[GzD %   b *    %   o@T@   unknown -N,Ǩ9۠U\GzD@͟kl$166@[GzD@%% %   , %    %  j % %  ͟kl$1.w[GzD@@ - -0/>:u?%% %   .6% %  Lz *@\q[GzD2:u? %  $ 7 % &   %  8 ' ( )   % * + :yiU? 8 , unknown -_39XLdJ@GzD@W&pM@GzD@%%% %  9 7%1414359%% %  - : %  W&pM@GzD@ %  . < / 0  % 1 ? 2RiU? < 3 unknown -_39XJdJ@GzDW&pM@GzD %  = 4 5 6 %%% %  > 9%1414428%% %  7 ?_ %  W&pM@GzD %  5 % A  8  % 9  0/>:u? A : unknown -EU |.Q@GzDEU |.Q@GzD@%% %  ; B % < B =% %  GzD7#G$xt C % ?  @% %  GzD@5i"z%1417061%%% %  J ?%1416926 %  M L  F - N %%% %  N%14-1 % G m N   - -Zx9@66@[GzD~@@@veHZGzD@ % %  ITTS@TTS@? ?\@ - %%% %  O B%1414536 %  Q H  I   % J - x@T@ Q K unknown -~@@Ed[GzD@C@v`-ZGzD@%% %  L R % M R N% %  GzD@Nj<~@@AveHZ? - -iU?%%% %  T F%1416855 %  O V  P  % Q  8@T@ V R unknown -~@@Ed[GzDC@ w`-ZGzD%% %  S W9 % T  U% %  GzDX0?Ͳ?Zx9@66@[? - -ݨiU?%%% %  Y K%1417130%%% %  [ M%1414461%%% %  ] N%1414325%%% %  _ P%141598%% %  V `W % W X Y  Z - -{Pr M,XGzD&pM; -VGzD@  % [ \ ` -\q\ X -@GzDy[ѹɒ&@GzD@  -% %  \q[3Mz *@o_E;f@;f@? ?@ -  %  c  ] ^   %  T V c  -   % _ ` f@T@ c a unknown -{]F@_39X@GzD@n@6J@EmAY@GzD@ %  d U f  - " %% %  b e % c e d% %  GzD@pf:u?  f unknown -&pM@W@GzD&pM@W@GzD@%%% %  h%14-1%%% %  i Y%1414383%% %  g j %  &pM@W@GzD@%% %  h ly% %  Gq.S_P@@ -V@GzD@@ - -0/>:u?%% %  i n)%%% %  q ^%1416974%%% %  s `%1414504%%% %  u b%141553%%% %  z o%141559%% %  j {1 % k l m  n - -m]F@EmAYGzDa@6J@^39XGzD@  % o p { - |.Q@z*UGzDkn?`S@_bTGzD@  -% %  kn?`R@z*To_E;f@;f@? ?@ - %%% %  |%14-1 %  q r  s - |  %  "   s - t  %    t u   %  v w     % x y e@T@  z unknown -z*Ukn?`SGzD@_bT |.QGzD@ %  { |    % }  ~L@T@   unknown -z*Ukn?`SGzD_bT |.QGzD %    |  -   %    v  -   %    -@ -V |.QGzDEUFq.S_PGzD@  -%% %    %    %   % %  EU |.QGzD@@ - -0/>:u? %      -   %   0/>:u?   unknown -66@[2Zx9GzD66@[2Zx9GzD@ %        %       %% %    %   % %  ۠U[2,Ǩ5GzD@Yiry<_&RA<) )j?*[I/? - -@T@ %       %      %% %     %   % %  ۠U[2,Ǩ5GzDhEO|9|? -.5u -"|@? - -v@T@ %   &iU?   unknown -y[kl$1GzD.w[ѹɒ&GzD %   +iU?   unknown -y[kl$1GzD@.w[ѹɒ&GzD@%%% %  %14-1 %      - -y[kl$1GzD.w[ѹɒ&GzD@ % %  ITTS@TTS@? ?\@ - %%% %   {%1414529%% %   j %  .w[kl$1GzD%% %    %  .w[kl$1GzD@ %      -   %      -   %    -c39X&pMGzDW>dJGzD@  -%% %   % %  _39XLdJGzD@@ - -0/>:u? %        %   v     %   iU?   unknown -_39X&pMGzD@WJdJGzD@%%% %   ~%1414344%% %    %  _39XLdJGzD@ %  |     %   DiU?   unknown -c39X&pMGzDW>dJGzD %      %%% %   %1414442%% %   o %  _39XLdJGzD %   0/>:u?   unknown - -w`-ZkACGzD -w`-ZkACGzD@%% %   # %   % %  GzDQbr< -BL?w`-ZiAC? - -fiU?%% %    %   % %  GzD@J6sYs]F? - - iU?%% %   B %      - -66@[~@GzD>veHZZx9GzD@ %%% %   %1417088%%% %   %1416897 %     # -   %     ' -   %    -~@>veHZ@GzD2Zx966@[@GzD@  -%% %   % %  ~@CveHZ@GzD@@ - -0/>:u? %       %  W -iU?   unknown -~@@veHZ@GzD2Zx966@[@GzD%%% %   %1414418%% %   T %  ~@CveHZ@GzD %   diU?   unknown -~@>veHZ@GzD@2Zx966@[@GzD@ %       %%% %   %1414369%% %     %  ~@CveHZ@GzD@ %     - w  %  2 /0/>:u?   unknown -{]FNA>Y@GzD{]FNA>Y@GzD@%% %    %   % %  GzD@F` Y@=? - - iU?%% %     %   % %  GzDEdFUD<?iACw`-Z@=? - -٨iU?%% %   Z %   K   - -y[ѹɒ&@GzD.w[kl$1@GzD@ %%% %   %1416944%%% %   %1417043 %      - p %%% %   %1414511 %   i    %     < -   %   >@T@   unknown -~@@v`-Z@GzDC@Ed[@GzD%% %    %  < % %  GzDsNj?~@@>veHZ@=? - -iU?%%% %   %1417025 %     B -   %  D ;@T@   unknown -~@@w`-Z@GzD@C@Ed[@GzD@%% %    %   % %  GzD@AX0CͲ<=Zx9@66@[@=? - -iU?%%% %   %1416962 %   T - X -@y[@GzDѹɒ&@\q\@GzD@  -%% %   n% %  ѹɒ&@y[@GzD@@ - -0/>:u?%%% %   %1414376%% %    %  ѹɒ&@y[@GzD@%%% %   %1414411%% %   N %  ѹɒ&@y[@GzD%%% %   %141544 %     R G  %   0/>:u?   unknown -X -@整[@GzDX -@整[@GzD@%% %    %   G   - - X -@y[@GzDѹɒ&@\q\@GzD@  %      % %% %    %  # % %  2,Ǩ5۠U[@GzDhE<,P? -"|@ -.5u?? - -v@T@%% %   % %  Mz *@\q[@GzDucܚl:u?   unknown -66@[2Zx9@GzD66@[2Zx9@GzD@ %        %  '      %     /@T@   unknown -Ed[~@@GzD@ w`-ZC@GzD@ %   .    %     @T@   unknown -Ed[~@@GzDv`-ZC@GzD %    . -   %    ' ! -  %% %  " f % #   $  % %   & % %   -w`-ZzAC@GzD@@ - -0/>:u? %        % '   0/>:u?  ( unknown - -w`-Z@zACGzD -w`-Z@zACGzD@ %  )     %% %  *  % +   , % %  GzD@Qbr< -BL<v`-Z@wAC? - -ViU? %   -   %% %  . G % /   0 % %  GzDߣ6sY@]F? - -iU? %     s   % 1  2   @T@  3 unknown -^39X@n@6JGzDEmAY@{]FGzD % 4   5 R@T@  6 unknown -_39X@n@6JGzD@EmAY@{]FGzD@%%% %   %1414290%% %  7  %  NA>Y@{]FGzD@%% %  8  %  NA>Y@{]FGzD %    "    % 9    -v`-Z@CGzDEd[@~@GzD@ : -%% %  ; !% %  EdZ@AGzD@VFgѺ.<A]@?O? @9? - -/@T@ % <  $ 0/>:u?  = unknown -CveHZ@~@GzDCveHZ@~@GzD@%%% %  # %1414308%% %  > $ %  CveHZ@~@GzD@%% %  ? &% %  66@[@NZx9GzD@@ - -0/>:u?%%% %  ( %1416824%%% %  * %1414520%%% %  , %141563%%% %  0 %141570%% %  @ 1< % A   B  C - ->dJ@c39XGzD&pM@WGzD@  % D  E 1 -Aq.S_P@D -VGzD |.Q@EUGzD@  -% %  ITTS@TTS@? ?\@ - %%% %  2%14-1 %  F G  H - 2 %%% %  5 %141607%%% %  6%14-1 %  I J K L 6 %%% %  : %141595%% %  M ;T % N  P O  P - -n@6JEmAYGzD{]F^39XGzD@  % Q  R ; -kn?`Sz*UGzD |.Q_bTGzD@  -% %  kn?`Rz*To_E;f@;f@? ?@ - %%% %  <%14-1 %     S <  %  T ?   -   %  ? T   -   %  A @  H   %   U @   % V  W  @T@  X unknown -\q\ѹɒ&GzDy[X -GzD %  Y  A    % Z   [ 9@T@  \ unknown -\q\ѹɒ&GzD@y[V X -GzD@%% %  ] C % ^  C _  % `   a % %  y[ѹɒ&GzD@@ - -0/>:u? %  b E J   %  E    %% %  c F % d   e % %  ۠U[2,Ǩ5@GzD \iry<)RA?+ )j?$[I@? - -ɦ@T@ %   G     %  G f I   %% %  g H % h  H i % %  ۠U[2,Ǩ5@GzD@hE|9|<@.5u -"|P? - -o@T@ %  J I \ j - K  % k  l  MiU?  m unknown -y[ѹɒ&@GzD@.w[kl$1@GzD@ % n  N o iU?  p unknown -y[ѹɒ&@GzD.w[kl$1@GzD%%% %  K%14-1% %  ITTS@TTS@? ?\@ - %%% %  L -%1414557%% %  q M %  .w[kl$1@GzD@%% %  r Ne %  .w[kl$1@GzD%%% %  Q %141551 %  V T i  -   %  ]  T  -   % s  ` t 0/>:u? T u unknown -{]F@NA>Y@GzD{]F@NA>Y@GzD@%% %  v Wv % w  j x % %  LdJ@_39X@GzD@@ - -0/>:u?%% %  y Z5% %  GzD4+i:u?%%% %  c %1414328%% %  ~ d %  X -整[GzD@%%% %  g %1414458%% %   h %  X -整[GzD%% %  j3% %  GzDqp7s6Y@GzD]F@ -w`-Z@GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  w%14-1 %  { z  F -  %  |  I -   %  |  P -   %  | -cAC@ -w`-ZGzDs]F@zNA>YGzD@ -%% %  } %  I  %   % %  kAC@ -w`-ZGzD@@ - -0/>:u? %  ~  -  %   0/>:u?  unknown -NZx966@[GzDNZx966@[GzD@ %   %% %  2 %   % %  N,Ǩ5۠U[GzD \iryHc0?$[I+ )j?? - -ɦ@T@ %    %% %   %   % %  N,Ǩ5۠U[GzD@hE<,P< -"|@@.5u9? - -o@T@%%% %   ,%1414537%% %   %  ͟kl$1.w[GzD@%% %  } %  ͟kl$1.w[GzD%%% %   .%1414460%%% %   0%1414326%%% %   2%1416859%%% %   3%1417126 %    -  %%% %  %14-1% %  ITTS@TTS@? ?\@ - %%% %   6%1414489 %     %    & - 8  %   r@T@  unknown -z*U |.Q@GzD@_bTkn?`S@GzD@ %     !   %    ) - ~  %   +f@T@  unknown -EmAY{]F@GzD@_39Xn@6J@GzD@%% %   %   % %  GzD@_' 7 <\39X]dJ@=? - -yiU?%%% %   :%1416924 %      %    0 - ~  %  2  @T@  unknown -EmAY{]F@GzD^39Xn@6J@GzD%% %   %  0 % %  GzD?(h`윲?W&pM@=? - -RiU? %    %    6 - 8  %   \@T@  unknown -z*U |.Q@GzD_bTkn?`S@GzD%%% %   ?%1417063 %   -z*U |.Q@GzD_bTkn?`S@GzD@ -%% %  % %  EU |.Q@GzD@@ - -0/>:u?%%% %   B%1414427%% %  ] %  EU |.Q@GzD%%% %   C%1414360%% %   %  EU |.Q@GzD@%%% %   E%141564%% %  6 %    - -&pMW@GzD>dJc39X@GzD@  %   -_bTt,uDw2S@GzDs,uDw2S_bT@GzD@ E -% %  ITTS@TTS@? ?\@ -  %   0/>:u?  unknown -~@@CveHZGzD~@@CveHZGzD@%% %  > %     %   - iU?  unknown -cAC@ -w`-ZGzD@s]F@zNA>YGzD@%% %  % %  A@EdZGzD@eRď6<D@6C?9? - -x@T@%%% %   R%1414323%% %   %  ~@@CveHZGzD@ %    %   fiU?  unknown -iAC@ -w`-ZGzDm]F@}NA>YGzD%% %  :% %  A@EdZGzDQVFg<&6=?O? ]@o? - -8@T@%%% %   W%1414463%% %   %  ~@@CveHZGzD%%% %   `%141599%% %  X %    - -CEd[GzD~@v`-ZGzD@  %   -{Pr M,XGzD&pM; -VGzD@ Z -% %   -FNr M,Wo_E;f@;f@? ?@ - %%% %  %14-1 %   j   %    ^ -   %   `ViU?  unknown -kAC@{NA>Y@GzD@{]F@ -w`-Z@GzD@%% %   %  ^ % %  n@6H@EmAX@GzD@(;&Y<e<! -^&aI@? - -f@T@%%% %   e%1414382%% %   %  LdJ@_39X@GzD@%% %  w% %  &pM@W@GzD@@ - -0/>:u?%%% %   j%1416972%%% %   l%1414503%%% %   n%141552%%% %   {%141560%% %  2 %    - -; -V@{PGzDr M,X@&pMGzD@  %   -m]F@EmAYGzDa@6J@^39XGzD@ n -% %  a@6H@EmAXo_E;f@;f@? ?@ - %%% %  %14-1 %    %   - - |  %   ) - |  %  2  5 0/>:u?  unknown -_39X@[dJGzD_39X@[dJGzD@ %   u - -  %  - y ~0/>:u?   - unknown -_bTu,uDw2SGzD_bTu,uDw2SGzD@ %        %    -  -  %% %   -  %  - u  -% %  z*Tkn?`RGzD@T^*6<"ۘ<hC@F -o9? - -e@T@ %   -  -  %      %% %  - - ( % - - -% %  z*Tkn?`RGzD6p8I़?qE=4 '@? - -L@T@ %     S -   % -  - /iU? |  - unknown -@ -V |.QGzDEUGq.S_PGzD %  -   -ҨiU? v  - unknown -@ -V |.QGzD@EUFq.S_PGzD@%%% %  %14-1 %  -    - -@ -V |.QGzDEUFq.S_PGzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414553%% %   - r %  EU |.QGzD%% %   -  %  EU |.QGzD@ %   -    -   %    -   -   %  -  -  -66@[~@GzD>veHZZx9GzD@  -%% %   - % %  66@[2Zx9GzD@@ - -0/>:u? %  -  - iU?   - unknown -66@[~@GzD@>veHZ2Zx9GzD@%%% %   %1414348%% %   -  %  66@[2Zx9GzD@ %  -   -ݨiU?   - unknown -66@[~@GzD@veHZZx9GzD%%% %   %1414438%% %  - k %  66@[2Zx9GzD%% %  ! - % %  GzDdJGzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414552 % ) -   -x@T@  * - unknown -Ed[CGzD@v`-Z~@GzD@ %   % -   - <  % + -  - @T@  , - unknown -y M,X{PGzD@@ -V&pMGzD@%% %  - -  % . - & - / -% %  GzD@?(h`윲<W&pM? - -iU?%%% %  - %1416895 %  % -    - <  % 0 -   -b@T@  1 - unknown -y M,X{PGzD@ -V&pMGzD%% %  2 - % % 3 - & - 4 -% %  GzD -k' 7 ?c39X>dJ? - -DiU? % 5 -  - 8@T@  6 - unknown -Ed[CGzD w`-Z~@GzD%%% %   %1417090%% %  7 - % %   -w`-ZkACGzD@@ - -0/>:u?%%% %   %1414441%% %  8 - m %   -w`-ZkACGzD%%% %   %1414345%% %  9 -  %   -w`-ZkACGzD@%%% %   %141577%% %  : - C% %  ITTS@TTS@? ?\@ -  %    U  -  %%% %  %14-1 % ; - < -    - -~@>veHZ@GzD2Zx966@[@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414549 %  = - " > - ? -  %  , @ - "  - w  % A - 2 B -J@T@ " C - unknown -`@6J_39X@GzDp]FEmAY@GzD%% %  D - # % %  GzDAX0CͲ?=Zx966@[@=? - --iU?%%% %  % %1417041%% %  E - '% %  GzD@Nj<~@>veHZ@=? - -iU? %  ( F - G - H -   %  @ - , (  - w  % I - J - /@T@ ( K - unknown -a@6J_39X@GzD@{]FEmAY@GzD@%%% %  * %1416946%% %  L - -% %  {]FNA>Y@GzD@@ - -0/>:u?%%% %  . %1414368%% %  M - / - %  {]FNA>Y@GzD@%%% %  1 %1414419%% %  N - 2V %  {]FNA>Y@GzD%%% %  4 %141602%% %  O - 5[ %  ; A 8    % P - D >0/>:u? 8 Q - unknown -~@@CveHZ@GzD~@@CveHZ@GzD@ %   :  -   % R - t  iU? : S - unknown -dAC@wNA>Y@GzD]F@ -w`-Z@GzD %  A ; T -   % U -  V - -~@@v`-Z@GzDC@Ed[@GzD@ W - -%% %  X - < % Y - < Z -% %  A@EdZ@GzDRď6?D@6C? - -@T@%%% %  = %1414409%% %  [ - >K %  ~@@CveHZ@GzD%% %  \ - B % ] - ^ ^ -% %  A@EdZ@GzD@VFg<$6=<O? A]@?o9? - -;@T@%%% %  C %1414378%% %  _ - D %  ~@@CveHZ@GzD@%%% %  G%14-1% %  Mz *@\q[@o_E;f@;f@? ?@ - %%% %  H %1414492%%% %  K %1416958%%% %  N %1417029%% %  ` - Rm% %  X -@整[@GzD@@ - -0/>:u?%%% %  S %141542%% %  a - T  % b - d W0/>:u? U c - unknown -2Zx966@[@GzD2Zx966@[@GzD@%%% %  V %1414416%% %  d - WS %  2Zx966@[@GzD%%% %  Y %1414412%%% %  \ %1417031%%% %  ^ %1414375%%% %  a %1416956%%% %  c %1414371%% %  e - d  %  2Zx966@[@GzD@ % f -  t  @T@ i g - unknown -{]F@^39X@GzDn@6J@EmAY@GzD%% %  h - j% %  GzDbJqEOӴ?&pM@W@=? - -iU?%%% %  k %1414404%% %  i - lG %  &pM@W@GzD%%% %  o %1417013 %    r  -   % j -  @T@ r k - unknown -v`-Z@CGzDEd[@~@GzD%% %  l - sI % m -  n -% %  GzDeF|ol0Ufв?=veHZ@~@? - -iU?%%% %  t %1414479%% %  o - u %  66@[@NZx9GzD%%% %  x %1417163%%% %  | %141540%% %  p - }%%% %  ~%14-1 %  / (   ~  % q -  0/>:u?  r - unknown -NA>Y{]F@GzDNA>Y{]F@GzD@ %      -   % s -   iU?  t - unknown -66@[2Zx9@GzD>veHZ~@@GzD % u -   iU?  v - unknown -66@[2Zx9@GzD@=veHZ~@@GzD@%% %  w - h% %  66@[2Zx9@GzD@@ - -0/>:u? % x -    0/>:u?  y - unknown -CveHZ~@@GzDCveHZ~@@GzD@%% %  z -  % { -  | -% %  EdZA@GzD@VFg.<A]@O? ? - -/@T@%% %  } -  % ~ -   -% %  EdZA@GzDRďY]F@GzD % -  ViU? ' - unknown - -w`-ZwAC@GzD@{NA>Y{]F@GzD@%%% %   %1414294%% %  - b %   -w`-ZzAC@GzD%% %  -  %   -w`-ZzAC@GzD@%% %  - e% %   -w`-Z@zACGzD@@ - -0/>:u? %  -  r  %%% %   %1414291%% %  -  %   -w`-Z@zACGzD@ %   - q %%% %   %1414293%% %  -  %   -w`-Z@zACGzD%% %  - F % - s -% %  EmAX@n@6HGzDElR<~ ?삁?yox>? - - @T@%% %  -  % - s -% %  EmAX@n@6HGzD@";&Y;zF<^&aI@! -@? - -R@T@%%% %   %1416790%%% %   %1416791%%% %  %14-1% %  EdZ@Ao_E;f@;f@? ?@ - %%% %   !%1414309%% %  - % %  CveHZ@~@GzD@@ - -0/>:u?%%% %   $%1416826%%% %   &%1414555%%% %   1%141571%% %  - = % - -  ->dJ@c39XGzD&pM@WGzD@ C -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %  - - - - -   %  -  U - - 2  %   - Y - - 2  % - W  [ 0/>:u?  - unknown -整[X -GzD整[X -GzD@ %  -  = - - - 6  %   - F - - - 6  %  - -  L -  % - - -0/>:u?  - unknown -Gq.S_P@ -V@GzDGq.S_P@ -V@GzD@%%% %   ;%141596%% %  - U % - -  -n@6JEmAYGzD{]F^39XGzD@ P -% %  n@6HEmAXo_E;f@;f@? ?@ - %%% %  %14-1 %  - - - -   % -  -  -0/>:u?  - unknown -@ -VGq.S_PGzD@ -VGq.S_PGzD@ %     - -   %   b F - %% %  -  % - H -% %  \q[Lz *GzD2AA&c?cVϓ%}~@P9? - -@T@ %  f  G -  %% %  -  % - H -% %  \q[Lz *GzD@mcܚl;G%<!ȿ*?9? - -9@T@%%% %   C%1414528%% %  -  %  y[ѹɒ&GzD@%% %  - i %  y[ѹɒ&GzD %  U  - %%% %   F%1414432%% %  - d %  66@[2Zx9@GzD %   Y -  %%% %   H%1414354%% %  -  %  66@[2Zx9@GzD@ % - o  l 0/>:u? \ - unknown -y[ѹɒ&@GzDy[ѹɒ&@GzD@%% %  -  % - - -% %  GzD@aY@GzD@@ - -0/>:u?%%% %   W%1414500%% %  - H %  LdJ@_39X@GzD%%% %   Z%1414459%%% %   \%1414327%%% %   ^%1417124%%% %   _%1416861%%% %   a%1414498%%% %   d%1416863%%% %   h%1417122%%% %   j%1414457%%% %   k%1414329%%% %   m%141574%% %  - @ % -  -  - - -&pM_39XGzDRdJWGzD@  % -   -~@66@[GzDNZx9=veHZGzD@ -% %  ITTS@TTS@? ?\@ - %%% %   v%141616%% %  - i % - K  - |.QEU@GzDFq.S_P@ -V@GzD@ -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %    - -  %%% %  %14-1 % - -   - -cAC@ -w`-ZGzDs]F@zNA>YGzD@ % %  ITTS@TTS@? ?\@ - %%% %   }%1414570%% %  - - %  kAC@ -w`-ZGzD@%% %  -  %  kAC@ -w`-ZGzD %  -   -  %   -  - %% %  - % %  NZx966@[GzD@@ - -0/>:u? %   - - -  % - - iU?  - unknown -~@66@[GzDNZx9=veHZGzD%%% %   %1414456%% %  - | %  NZx966@[GzD %  -  - -   % -  -"iU?  - unknown -~@66@[GzD@NZx9>veHZGzD@%%% %   %1414330%% %  -  %  NZx966@[GzD@%%% %   %1416867%%% %   %1417118 %  ( /  ~  % - 2 +0/>:u? - unknown -_39XLdJ@GzD_39XLdJ@GzD@ %  - $ - -   %  - $ - D  % -  -2iU? $ - unknown -_bTt,uDw2S@GzD@s,uDw2S_bT@GzD@ %  % 5 - 8 %% %  - & % - -% %  z*Tkn?`R@GzD@6p8I<E=4 'ù? - -r@T@%% %  - ) % -  -% %  EmAXn@6H@GzD@";&Y;zF<^&aI! -? - -f@T@%%% %  * %1414358%% %  - + %  _39XLdJ@GzD@%% %  - 0 % -  -% %  EmAXn@6H@GzDElR<~ ?삁?yox?>@? - - @T@%%% %  1 %1414429%% %  - 2` %  _39XLdJ@GzD %  4 - - -  %  - 4 - D  % - - ިiU? 4 - unknown -_bTu,uDw2S@GzDt,uDw2S_bT@GzD%% %  6 %    % %  z*Tkn?`R@GzD/^*6dJc39X@GzD@ -% %  ITTS@TTS@? ?\@ - %%% %  D%14-1 %  - - D %% %   F% %  ~@@CveHZGzD@@ - -0/>:u?%%% %  G %141573 %  H -   %  H - m  %    @T@ H  unknown -m]F@EmAYGzD@a@6J@_39XGzD@%% %   I %    % %  GzD@zF` Y? - - iU?%%% %  J %1414322%%% %  M %1416853 %   O    %  O - m  %     o@T@ O  unknown -m]F@EmAYGzDa@6J@^39XGzD%% %   P; %   -  % %  GzDdFUD<?iAC@w`-Z? - -fiU?%%% %  Q %1414464%%% %  T %1417132%%% %  W %141600%% %   XY %    X -CEd[GzD~@v`-ZGzD@ -% %  AEdZo_E;f@;f@? ?@ - %%% %  Y%14-1 %   ! " Y  %  # \ f - -   %  \ # b - -   %   ]  T - -  %% %  $ ^% %  GzD@dFUD<<wAC@v`-Z@=? - -ViU?%%% %  _ %1414381%% %  % ` %  {]F@NA>Y@GzD@%%% %  c %1416970%%% %  e %1414501%%% %  k %141561%% %  & l3 % '  ( l -; -V@{PGzDr M,X@&pMGzD@ -% %  r M,W@ -FNo_E;f@;f@? ?@ - %%% %  m%14-1 %  - m  %  ) p * + -   %  p ) , - -   %  - - p -   % .  /  0 0/>:u? p 1 unknown - |.Q@EUGzD |.Q@EUGzD@ %  r q 2 3 - |  % 4  5  2 iU? - 6 unknown -W@&pMGzD_39X@UdJGzD % 7  5  8 iU? ) 9 unknown -W@&pMGzD@_39X@RdJGzD@%% %  : s% %  _39X@[dJGzD@@ - -0/>:u? %  ; t w  - - -  %  t ; { - - -  % <  ; = -_bT_bTGzDy,uDw2Sr,uDw2SGzD@ > -%% %  ? u% %  _bTu,uDw2SGzD@@ - -0/>:u? %  w @ - A   % B  C  yĨiU? w D unknown -_bT_bTGzD@y,uDw2Sr,uDw2SGzD@%%% %  x %1414340%% %  E y %  _bTu,uDw2SGzD@ %  F { - G  % H  ~ I iU? { J unknown -_bT_bTGzDy,uDw2St,uDw2SGzD%%% %  } %1414446%% %  K ~s %  _bTu,uDw2SGzD%% %  L ' % M   N % %  GzD_5i"zveHZ~@? - -iU?%%% %   %1416903%% %  V ! % W   X % %  GzD^YGlؽd?66@[Zx9? - -ݨiU?%%% %   %1417082%%% %   %1414437%%% %   %1414349%%% %   %141567%% %  Y 9 %     & - <  % Z   0/>:u? % - [ unknown -W&pMGzDW&pMGzD@%% %  \ u % ]  ^ _  ` - -EU@ |.QGzD@ -V@Fq.S_PGzD@ %% %  a % %  EdZAGzD@MRďdJc39X@GzD %    k o w %% %  p   % q  ? - r % %  a@6HEmAX@GzD6;&Y<e? -@&aI@? - -J@T@%%% %   #%1414417%%% %   '%1414370 %   - J -   %   k  H - -  % s  t  J -iU?  u unknown -&pMW@GzD@JdJ_39X@GzD@%% %  v  % w  H - x % %  a@6HEmAX@GzD@ElR <ayoxo? - -@T@%%% %   -%1414568%%% %   /%1416942%%% %   2%1417045%%% %   5%141603%% %  y % %  ~@@CveHZ@GzD@@ - -0/>:u?%% %  z % %  GzDF` Y@=? - -iU? % {   0/>:u? | unknown -kAC@ -w`-Z@GzDkAC@ -w`-Z@GzD@%%% %  %14-1 % }  ~   W - - -~@@v`-Z@GzDC@Ed[@GzD@ % %  A@EdZ@o_E;f@;f@? ?@ - %%% %   <%1414408%% %   J %  kAC@ -w`-Z@GzD%%% %   >%1417023%%% %   B%1414379%% %   %  kAC@ -w`-Z@GzD@%%% %   D%1416964%%% %   R%1414491%%% %   T%141543%% %  % %  2Zx966@[@GzD@@ - -0/>:u?%%% %   W%1417039%%% %   d%1416948%% %  % %  n@6H@EmAX@GzDElR 䰼?>@yox 9? - - @T@%%% %  j%1414405%%% %   l%1417015%% %   H% %  EdZ@AGzDRďY{]F@GzD@@ - -0/>:u?%% %   % %  GzDeF|olDUfв?>veHZ~@@=? - -iU?%% %   % %  GzD@K[YGjؽd<66@[=Zx9@=? - -iU?%%% %   %1414392%% %   g% %  CveHZ~@@GzD@@ - -0/>:u?%%% %   %1414295%% %    %  CveHZ~@@GzD@%%% %   %1414297%% %   c %  CveHZ~@@GzD%% %  % %  GzDߣ6sY]F@=? - -iU?%% %  ! % %  GzD@Qbr< -BL<v`-ZwAC@=? - -ViU?%%% %  # %1416798%%% %  % %1416799%%% %  ' %1414292 %  )  %%% %  + %1416793 %  - %%% %  / %1416795%%% %  1 %1414476%% %  2  %  _39X@[dJGzD%%% %  4 %1414310%% %  5  %  _39X@[dJGzD@%%% %  < %1414530%%% %  A %141572%%% %  B %14-1 %   - - B  %  E -   %  E -   %  E -  %   0/>:u? E unknown -Aq.S_P@@ -VGzDAq.S_P@@ -VGzD@ %  G F # - 2  %   W iU? U unknown -[X -GzD整[5X -@GzD %  [  7iU? Y unknown -[#X -GzD@整[NX -@GzD@%% %  H % %  整[X -GzD@@ - -0/>:u? %  J I  6  %  m  -&@T@ = - unknown -{P@ -V@GzD&pMr M,X@GzD %  - t @T@ F - unknown -{P> -V@GzD@&pMr M,X@GzD@ %  K - -  %  K - - %% %  L  %  L  %  L % %  Gq.S_P@ -V@GzD@@ - -0/>:u?%%% %  N %141597%%% %  O %14-1 %  O  %  R  - G -   %  R  - A -   %  R - -  %   0/>:u? R unknown - |.QEUGzD |.QEUGzD@%% %  S % %  @ -VGq.S_PGzD@@ - -0/>:u? %   -  -0/>:u?  - unknown -CveHZ~@GzDCveHZ~@GzD@%%% %  V %1414436%% %  W h %  整[X -GzD%%% %  Z %1414350%% %  [  %  整[X -GzD@%%% %  ^ %1416907%%% %  ` %1417078 %  o  :@T@ b unknown -\q\ X -@GzDy[ѹɒ&@GzD%%% %  d %1416991 %   l @T@ f unknown -\q\5X -@GzD@y[ѹɒ&@GzD@%%% %  h %1416917%% %  j % %  y[ѹɒ&@GzD@@ - -0/>:u?%%% %  k %1414353%% %  l  %  y[ѹɒ&@GzD@%%% %  n %1414433%% %  o f %  y[ѹɒ&@GzD%%% %  s %1414502%% %  t I %  {]F@NA>Y@GzD%%% %  w %1417017%%% %  %141575%% %  A %  -&pM_39XGzDRdJWGzD@ - -% %  ITTS@TTS@? ?\@ - %%% %  %14-1%%% %  %141617%%% %  %14-1 %   0/>:u? unknown -m]F@NA>YGzDm]F@NA>YGzD@%% %  q %  V -  - -&pM@y M,XGzD{P@@ -VGzD@ %%% %  -%1416851%%% %  %1417134 %  - %%% %  %1414538 %   %   - -  %   -@T@ unknown -CEd[GzD~@v`-ZGzD%% %  1 %  % %  GzDiNj?~@=veHZ? - -iU?%%% %  %1417116 %    %   - -  %  - /@T@ unknown -CEd[GzD@~@ w`-ZGzD@%% %   %  % %  GzD@eX0EͲ<ZZx966@[? - -"iU?%%% %  %1416869%% %  j% %  _39XLdJ@GzD@@ - -0/>:u? %  F - -   %  - - i  %  - e@T@ unknown -kn?`S_bT@GzD@ |.Qz*U@GzD@ %  - D %% %   %  % %  GzD@2%]?}<_bTt,uDw2S@=? - -2iU? %   0/>:u? unknown -_bTu,uDw2S@GzD_bTu,uDw2S@GzD@%%% %  &%1414361%% %   %  _bTu,uDw2S@GzD@%%% %  )%1414357%% %   %  NA>Y{]F@GzD@%%% %  +%1416922%%% %  0%1414430%% %  a %  NA>Y{]F@GzD%%% %  2%1417065 %  = - -  %  - - i  %   -L@T@ unknown -kn?`S_bT@GzD |.Qz*U@GzD%% %   %  - % %  GzD.f<>?t,uDw2S_bT@=? - -ިiU?%%% %  6%1414426%% %   \ %  _bTu,uDw2S@GzD%% %   m %       - -]F -w`-ZGzDpACwNA>YGzD@ %%% %  C%141566%%% %  %14-1 %  > - G - - - %%% %  F%1414535 %     %  -  - B  %  -   iU? unknown ->dJ@a39XGzD@&pM@WGzD@ %   m %% %   %    % %  a@6H@EmAXGzD@hElR <G@yox?? - -@T@%%% %  I%1414321%% %    %  m]F@NA>YGzD@ %    %   -  - B  %      iU?  unknown ->dJ@c39XGzD&pM@WGzD%% %   < %     % %  a@6H@EmAXGzD;&Y<e?3 -C&aI9? - -o@T@%%% %  P%1414465%% %    %  m]F@NA>YGzD%%% %  X%141601%%% %  %14-1 %  - -    %     - Y  %     - Y  %  " -  %  !  " 0/>:u? # unknown -Gq.S_P@ -VGzDGq.S_P@ -VGzD@ %  -  %%% %  ^%1414380%%% %  `%1416968%%% %  l%141562%%% %  %14-1 %  $ %  %  & '   %  ( +   % )  *  0 a@T@ * + unknown - |.Q@z*UGzD@kn?`S@_bTGzD@ %  , -  % -  /  . @T@ , / unknown - |.Q@z*UGzDkn?`S@_bTGzD%% %  0  % 1  2  % 3  4 % %   |.Q@EUGzD@@ - -0/>:u? %  3  % 5  8  5 0/>:u? 6 unknown -W@&pMGzDW@&pMGzD@%% %  7 E % 8  3 9 % %  GzD?(h`윲?W@&pM? - -iU?%% %  :  % ;  3 < % %  GzD@/d' 7 <_39X@RdJ? - -iU?%%% %  s%1414513 %  = - - %%% %  -%14-1 % >  -  > - -_bT_bTGzDy,uDw2Sr,uDw2SGzD@ % %  ITTS@TTS@? ?\@ - %%% %   - u%1414554 %   -  ?   % @   C `@T@  - A unknown -kn?`Sz*UGzD@ |.Q_bTGzD@%% %  B  - % C   - D % %  GzD@Pd<><y,uDw2S_bT? - -ĨiU?%%% %   - y%1416887 %    - E  % F  I  d@T@  - G unknown -kn?`Sz*UGzD |.Q_bTGzD%% %  H -) % I  - J % %  GzD2%]?}?_bTt,uDw2S? - -iU?%%% %  - ~%1417098%%% %  - %1414445%% %  K  -q %  @ -VGq.S_PGzD%%% %   - %1414341%% %  L  - %  @ -VGq.S_PGzD@%%% %   - %141624%%% %   - %1414347%% %  M  - %  CveHZ~@GzD@%%% %   - %1414439%% %  N  -l %  CveHZ~@GzD%%% %  $ - %141568%% %  O & -% %  W&pMGzD@@ - -0/>:u?%%% %  ' - %141629%% %  P ( -v % Q  R  S - -n,uDw2S@_bTGzD_bT@t,uDw2SGzD@  % T  U ( - -EU@ |.QGzD@ -V@Fq.S_PGzD@ ` -% %  ITTS@TTS@? ?\@ - %%% %  ) - %1414346%%% %  + - %1414342%%% %  . - %1416893%%% %  0 - %1414444%%% %  3 - %1417092%%% %  5 - %1414440%%% %  ; - %141618%% %  V < -k % W  < - -kn?`S_bT@GzD |.Qz*U@GzD@ j -% %  kn?`Rz*T@o_E;f@;f@? ?@ -  %  G - > - @ - o - %% %  X ? -  % Y  ? - Z % %  GzDpfdJc39X@=? - -wiU? % [  J - B -0/>:u? k \ unknown -LdJ_39X@GzDLdJ_39X@GzD@%%% %  A - %1414420%% %  ] B -W %  LdJ_39X@GzD%% %  ^ H - % _  H - ` % %  GzD@bJqFOӴ<&pMW@=? - -iU?%%% %  I - %1414367%% %  a J -  %  LdJ_39X@GzD@%%% %  P - %1414512%%% %  R - %1414407%% %  b T -% %  kAC@ -w`-Z@GzD@@ - -0/>:u?%% %  c V -s % d   e  f - -_bT@kn?`SGzDz*U@ |.QGzD@ %%% %  Y - %1417021%%% %  ] - %1416966%%% %  b - %1414571%%% %  f - %1414406%%% %  j -  %1414477%%% %  m - %1417159%%% %  q -  %1414487%%% %  s -  %1414393%%% %  u -  %1414355%%% %  x -  %1414296%%% %  { -  %1416801%%% %  ~ -  %1416803%%% %  - %1414431%%% %  - ! %1414356 %  g - h i   %  2 ( - -  % j  8  k A@T@ - l unknown -> -V@{PGzD@r M,X@&pMGzD@ %  - m n o  %  ( 2 - -  % p  q  5 i@T@ - r unknown -; -V@{PGzDr M,X@&pMGzD%%% %  - 2 %1417156%%% %  - 5 %1416829 %  -  % s    - 0/>:u? - t unknown -&pM@WGzD&pM@WGzD@ %  * -   % u  0  giU? v unknown -Aq.S_P@D -VGzD@ |.Q@EUGzD@ %  ,  -  % w   / iU? x unknown -Aq.S_P@C -VGzD |.Q@EUGzD %  -   -  %  -  -  % y  - - -&pM@y M,XGzD{P@@ -VGzD@ -%% %  z - % {  |  % }  ~ % %  Aq.S_P@@ -VGzD@@ - -0/>:u? %    0/>:u? - unknown -整[5X -@GzD整[5X -@GzD@%% %  - %  - % %  GzDn Gbv_w?[#X -@ 9? - -iU?%% %  - %  - % %  GzD@n Gbv_w<[#X - ? - -7iU?%%% %  - H %1414531 %  m  t 0/>:u?  unknown -&pMW@GzD&pMW@GzD@%% %  -% %   -FNr M,W@GzDEТ<}EB?c5p@@? - -&@T@%% %  -% %   -FNr M,W@GzD@bvTd"<|m1o Z? - -@T@ %  - - -  %   -ҨiU? - unknown - |.QEU@GzD@Fq.S_P@ -V@GzD@ %  - /iU? - unknown - |.QEU@GzDGq.S_P@ -V@GzD%%% %  - L %1414569%% %  - %  Gq.S_P@ -V@GzD@%% %  -Y %  Gq.S_P@ -V@GzD %  - - O  %  - - O  %  - -   %   0/>:u? - unknown -{]FNA>YGzD{]FNA>YGzD@ %  - - ; =   %  ! - @ ? -  %  - ! F E -  %  -  - |.Q@ -VGzDFq.S_PEUGzD@ -%% %  - %  ?  %  - % %   |.QEUGzD@@ - -0/>:u?%%% %  - S %1414558%% %  -% %  CveHZ~@GzD@@ - -0/>:u?%%% %  - W %1417076%%% %  - [ %1416909%% %  -% %  \q[3Mz *@GzDmcܚl;G%?!ȿ*?@ -9? - -:@T@%% %  -% %  \q[3Mz *@GzD@2AA&c<cVϓ%}~P? - -@T@%%% %  - j %1414565%%% %  - l %1416913%%% %  - o %1417072%%% %  - t %1417019%%% %  - %141576%%% %  -%14-1 %  - - %% %  -% %  m]F@NA>YGzD@@ - -0/>:u?%%% %  - %141625%% %  -r% %   -FN@y M,Wo_E;f@;f@? ?@ -  %  - - -  %  - -0/>:u? - unknown -~@CveHZGzD~@CveHZGzD@ %  -  %   - -   %   iU? - unknown -]F -w`-ZGzDpACwNA>YGzD%% %  -0 %  - % %  AEdZGzDRď6?D6C?? - -@T@%%% %  - %1414455%% %  -{ %  ~@CveHZGzD %  -   %   - -   %   ViU? - unknown -{]F -w`-ZGzD@wAC{NA>YGzD@%% %  - %  % %  AEdZGzD@VFg<"6=<O? @A]@ -9? - -/@T@%%% %  - %1414331%% %  - %  ~@CveHZGzD@%%% %  - %1414488 %  - - - i  %  - - i %% %  - %  % %  kn?`Rz*T@GzD@S^*6᡼*<F -hC? - -e@T@ %  - -0/>:u? - unknown -u,uDw2S_bT@GzDu,uDw2S_bT@GzD@%%% %  - %1414362%% %  - %  u,uDw2S_bT@GzD@%% %  -% %  _bTu,uDw2S@GzD@@ - -0/>:u?%%% %  - %1416930%%% %  - %1416920%%% %  - %1417067%% %  - %  % %  kn?`Rz*T@GzD6pYGzD@  -% %  ITTS@TTS@? ?\@ -  %   - ^@T@ unknown -&pM@y M,XGzD@{P@@ -VGzD@ %  -  - B %% %   %  % %  GzD@bJqFOӴ<&pM@W? - -iU? %     0/>:u? unknown ->dJ@_39XGzD>dJ@_39XGzD@%%% %  %1414320%% %    %  >dJ@_39XGzD@%%% %   %1416849 %    @T@  unknown -&pM@y M,XGzD{P@@ -VGzD%% %   = %  % %  GzDpfdJ@c39X? - -iU?%%% %   %1414466%% %    %  >dJ@_39XGzD%%% %   %1417136 %    -   %   0/>:u?  unknown -zAC -w`-ZGzDzAC -w`-ZGzD@ %   Y  %  @     %   " A@T@  unknown -{Pr M,XGzD@&pM> -VGzD@ %  F   %  !  i@T@  unknown -{Pr M,XGzD&pM; -VGzD%% %  "  %  "  %   % %  Gq.S_P@ -VGzD@@ - -0/>:u? %  n h ( % - _  %  q  k 0/>:u? ( unknown -@ -V@Gq.S_PGzD@ -V@Gq.S_PGzD@ %  ) ' - R  %  *  . 0/>:u? ) unknown -n,uDw2S@_bTGzDn,uDw2S@_bTGzD@ %  * g  %% %  +  %  % %  kn?`R@z*TGzD@S^*6᡼*<F -@hC@? - -a@T@ %  m , %% %  - @ %  % %  kn?`R@z*TGzD6p:u?%%% %  4 %1414475%% %  5  %  W@&pMGzD%%% %  7 %1414311%% %  8  %  W@&pMGzD@ %  I  C 0/>:u? unknown -{,uDw2S_bTGzD{,uDw2S_bTGzD@%% %  = l %  "  iU? @ unknown - |.Q@ -VGzD@Gq.S_PEUGzD@%% %  A % %  kn?`Rz*TGzD@6p:u?%%% %  q B -%1417047%%% %  s H -%1414366%% %   t  %  &pMW@GzD@%%% %  w J -%1416940%%% %  { T -%1414572%%% %  } V -%141627%% %  ~ t % -   ~ -_bT@kn?`SGzDz*U@ |.QGzD@ f -% %  z*T@kn?`Ro_E;f@;f@? ?@ -  %  (   %  $ U i - _  %  k   iU?  unknown -EU@ |.QGzD@@ -V@Gq.S_PGzD@%% %    %   i  % %  r M,W@ -FNGzD@EТ޳!̟<@c5p@? - -A@T@ %  ,    %  U $ o - _  %     q ҨiU?  unknown -EU@ |.QGzD@ -V@Fq.S_PGzD%% %   D %   o  % %  r M,W@ -FNGzD.v:u?%% %   % %  GzD@9=e:u?%%% %  -%1414435%% %  ! g %  整[5X -@GzD%%% %  -%1414351%% %  "  %  整[5X -@GzD@%% %  # % %  &pMW@GzD@@ - -0/>:u?%%% %  -%1414422%%% %  -%1414365 % $   0/>:u? % unknown - |.QEU@GzD |.QEU@GzD@%% %  & % %  GzD@ש=eYGzD@@ - -0/>:u?%%% %  %14-1% %  ITTS@TTS@? ?\@ - %%% %  -%1414560%% %  3  %   |.QEUGzD@%% %  4 u %   |.QEUGzD%%% %  -%1414544%%% %  -%1414434%%% %  -%1414352 %  5 - -  %  6 - -  % 7  )  , 0/>:u? 8 unknown -[dJ_39XGzD[dJ_39XGzD@%%% %  -%1414517%%% %  -%141626%% %  9 % %  ~@CveHZGzD@@ - -0/>:u? %   5 %% %  : /% %  GzDF` Y? - -iU?%%% %  -%1414454%% %  ; z %  zAC -w`-ZGzD%%% %  -%1417114 %   6  %% %  < % %  GzD@dFUD<<wACv`-Z? - -ViU?%%% %  -%1414332%% %  =  %  zAC -w`-ZGzD@%%% %  -%1416871%%% %  -%1414363%% %  >  %   |.QEU@GzD@%% %  ? % %  u,uDw2S_bT@GzD@@ - -0/>:u?%%% %  -%1416932%%% %  -%1414524%%% %  -%1414424%% %  @ Z %   |.QEU@GzD%%% %  -%1417055%%% %    %141622%% %  A  o%%% %   %14-1%% %  B  % %   -FN@y M,WGzD@v=Td"<[m1o @ Z?? - -^@T@%%% %  %1414319%% %  C -  %  &pM@WGzD@%% %  D % %  >dJ@_39XGzD@@ - -0/>:u?%%% %    %1416847%% %  E  >% %   -FN@y M,WGzDEТ<~EB?5pBo9? - -@T@%%% %    %1414467%% %  F   %  &pM@WGzD%%% %    %1417138%% %  G  % %  zAC -w`-ZGzD@@ - -0/>:u? %   - -  % H   0/>:u? I unknown -&pMWGzD&pMWGzD@%% %  J   % K  L % %   -FNr M,WGzD@EТ<}EB<c5p@ -? - -A@T@%% %  M  , % N  5 O % %   -FNr M,WGzDv"Td"?Hm1o Z?? - -i@T@%%% %  " %1414566%% %  P ! v %  Gq.S_P@ -VGzD%% %  Q "  %  Gq.S_P@ -VGzD@%% %  R % % %  @ -V@Gq.S_PGzD@@ - -0/>:u? %   & ( - R  %  &  , - R %% %  S ' % %  n,uDw2S@_bTGzD@@ - -0/>:u? % T  U  * iU? ( V unknown -n,uDw2S@_bTGzD@_bT@t,uDw2SGzD@%%% %  ) + %1414316%% %  W *  %  n,uDw2S@_bTGzD@ % X  .  Y 7iU? , Z unknown -n,uDw2S@_bTGzD_bT@u,uDw2SGzD%%% %  - - %1414470%% %  [ .  %  n,uDw2S@_bTGzD%%% %  1 / %1417144%%% %  3 0 %1416841%%% %  5 3 %1414514%%% %  8 5 %1417154%%% %  ; 8 %1416831%% %  \ = % %  {,uDw2S_bTGzD@@ - -0/>:u?%%% %  > = %141620%% %  ] ? % %  GzD@9QgpI<Hq.S_P@ -V? - -iU?%%% %  @ A %1414338%%% %  C C %1416885%% %  ^ E +% %  GzD=e:u?  b unknown -EU@ |.QGzDEU@ |.QGzD@%%% %  Y m %1417049%%% %  [ o %1414527%%% %  _ t %1416938%%% %  d ~ %141628%%% %  e %14-1 %   _ g - e  % c    U @T@ g d unknown -_bT@kn?`SGzD@z*U@ |.QGzD@%% %  e i  % f  i g % %  GzD@N5i"z -V@Kq.S_P? - -iU?%%% %  j %1414312%% %  h k  %  @ -V@Gq.S_PGzD@ %  _  m  - e  % i  Y   g@T@ m j unknown -_bT@kn?`SGzDz*U@ |.QGzD%% %  k o C % l   m % %  GzD7#G$xt:u?%%% %  %1414364%%% %  %1414423%% %  p . % q  5 r % %  n@6HEmAXGzDElR 䰼?>yox?? - - @T@%% %  s  % t  u % %  n@6HEmAXGzD@(;&Y<e<! -@^&aI? - -R@T@%%% %  %1414562%% %  v  %  {]FNA>YGzD@%% %  w y %  {]FNA>YGzD%%% %  %1416883%%% %  %1417102 % x   ) iU? y unknown -&pM_39XGzDUdJWGzD % z  ,  iU? { unknown -&pM_39XGzD@RdJWGzD@%% %  | % %  [dJ_39XGzD@@ - -0/>:u?%%% %  %1414539%%% %  %1414453%%% %  %1417112%%% %  %1414333%%% %  %1416873%%% %  %1416934%%% %  %1414525%%% %  %1417053%%% %   %141623%%% %   %1414318%%% %  - %1416845%%% %  %1414518%%% %   %1414468%%% %   %1417140%%% %   %1414567%% %  } % %  &pMWGzD@@ - -0/>:u?%%% %   %1414336%% %  ~  %  &pMWGzD@%%% %   %1414450%% %   w %  &pMWGzD%%% %  ! %1417104%%% %  " %1416881%%% %  % %1414519%%% %  ' %1414516%% %   %  % %  GzD@2%]?}<_bT@t,uDw2S? - -iU?%%% %  * %1416839%% %  A %  % %  GzD:\<>?q,uDw2S@_bT? - -7iU?%%% %  . %1417146%%% %  = %1414561%%% %  ? %1414337%%% %  E %1414449 %    ` e  %  Y  U 0/>:u? _ unknown -_bT@u,uDw2SGzD_bT@u,uDw2SGzD@%% %   % %  EU@ |.QGzD@@ - -0/>:u?%% %  % %  z*T@kn?`RGzD@6p8I<`E=4@ '@9? - -@T@%%% %  i %1414313%% %    %  EU@ |.QGzD@%%% %   k %1416833%% %   B% %  z*T@kn?`RGzDT^*6<"ۘ?hCF -o? - -g@T@%%% %   o %1414473%% %    %  EU@ |.QGzD%%% %   q %1417152%%% %  $ %1414573%%% %  ( %1414452%% %  ) x %  [dJ_39XGzD%%% %  + %1414334%% %  ,  %  [dJ_39XGzD@%%% %  / %1416875%%% %  1 %1417110%% %  5 -% %  GzDcJqGOӴ?&pMW? - -iU?%% %  6 % %  GzD@✻pf:u?%%% %  a  %1414574%%% %  c %1414314%%% %  f  %1416835%%% %  i  %1414472%%% %  l  %1417150%%% %  q ) %1417108%%% %  t , %1416877%%% %  x 5 %1414451%%% %  z 6 %1414335%%% %  U %1416837%%% %  Y %1417148%%% %  ` %1414575 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 272336 -$end 'sab' -$begin 'sab' -Design_80.setup/NativeGeometryFiles/0002465.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -dJFUB@֝P@GzD&pM@_39X@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth30 lump%   -dJFUB@֝P@GzD&pM@_39X@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111231 -shell%   -dJFUB@֝P@GzD&pM@_39X@GzD@properties%  ansoft% %  -  Stator_Teeth30 %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[30] face%     - -dJFUB@֝P@GzD/Ξ{F@δvT -R@GzD@ %%% %    %111231%%% %   %6Stator_Teeth[30]id%% %     %      - -iŻE@Aѳ%acQ@GzDMM@;bW@GzD@  loop%   -dJFUB@֝P@GzD/Ξ{F@δvT -R@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -'Ξ{F@֝P@GzD(Ξ{F@֝P@GzD@%%% %   %112242%% %  :   % ; < =  > - -MM@;bW@GzD&pM@W@GzD@  % ? @  -dJFUB@̴vT -R@GzD,[B@ܿ SFR@GzD@ ' -% %  ,[B@ۿ SFR@o_Eбv.?f8uNܿ<511@ %%% %  %11-1 %  A B C D   %  E  F G   %   E H I -   %  J A  -   % K L MgT=??  N unknown -iŻE@Aѳ%acQ@GzDMM@;bW@GzD %   O P   %  Q R  0 - S  % T 8 UHAޡh?  V unknown -dJFUB@֝P@GzD@/Ξ{F@ʹvT -R@GzD@ %  W X 2   % Y 7 ZHAޡh? [ unknown -dJFUB@֝P@GzD/Ξ{F@ʹvT -R@GzD %  \ ! X ] - 5  %  ! \ Q ^ - 5  % _ 3 ` -%Ξ{F@֝P@GzDkI#_F@,Q@GzD@ a -%% %  b "  vertex% c 2 d % e ^ f straight% -curve%  (Ξ{F@֝P@GzDifS7@@ - -0/>:u?%%% %  $ %112243%% %  g %  % h i j  k -JdJ@W@GzD&pM@_39X@GzD@  % l m % -MM@;bW@GzD&pM@W@GzD@ > -% %   -FN@r M,W@o_E;f@;f@? ?@ - %%% %  &%11-1 %  O n W o - &  %  , ) p q   %  ) r s t   %  u v ) D - j  % w x yiU? ) z unknown -LdJ@W@GzD&pM@_39X@GzD %  + * { | -   %  p } * G - =  % ~ L 0/>:u? * unknown -MM@;bW@GzDMM@;bW@GzD@ %  + I  %  M 0/>:u? + unknown -iŻE@Bѳ%acQ@GzDiŻE@Bѳ%acQ@GzD@ %  X ,  %% %  -  %  q  %  % %  MM@;bW@GzD  Ԋ%bP - -gT=?? %  @ . P - &  %  U Z0/>:u? . unknown -dJFUB@ʹvT -R@GzDdJFUB@δvT -R@GzD@ %  / 4 ^ S  %  / S  %  i -dJFUB@֝P@GzD@&pM@_39X@GzD@%% %  0  %  0  ellipse% %  GzD@?/Ξ{F@֝P@? - -HAޡh? %  1 @ o   %  1 J 3 ]  %% %  2  %  2 % %  GzD?/Ξ{F@֝P@? - -HAޡh? %  4 3 5  %   7cMBP? X unknown -%Ξ{F@֝P@GzDgI#_F@,Q@GzD %  8 cMBP? Q unknown -(Ξ{F@֝P@GzD@kI#_F@,Q@GzD@%%% %  5%11-1 %  5  a - -%Ξ{F@֝P@GzDkI#_F@,Q@GzD@ % %  CDE@2bP@o_E)fh9;?T"@@ %%% %  6 "%1116176%% %  7  -point%  (Ξ{F@֝P@GzD%% %  8  %  (Ξ{F@֝P@GzD@%%% %  ; %%112244%% %  <  %  S  -dJFUB@֝P@GzD@&pM@_39X@GzD@ -Ţ?'%?zs_0 %  u < -JdJ@W@GzD&pM@_39X@GzD@ k % %  ITTS@TTS@? ?\@ - %%% %  =%11-1 %  } p v =  %  @ - &  %  Z HMBP? W unknown -dJFUB@ʹvT -R@GzD,[B@ܿ SFR@GzD %  m F A q - =  %  y Lkh8cӼ? A unknown -MM@;bW@GzD&pM@W@GzD %  B   %  B t -  %   xi8cӼ? B unknown -vP(irJ@]X@GzDRdJ@_39X@GzD %  C - j  %  C m - j %% %  D  %   %  % %  GzDpf:u? %  H -  %  H J -  %  -hŻE@,Q@GzDhI#_F@Bѳ%acQ@GzD@ -%% %  I  %  % %  iŻE@Bѳ%acQ@GzD@@ - -0/>:u? %  M ж(A&Y? J unknown -iŻE@,Q@GzDhI#_F@Bѳ%acQ@GzD%%% %  K -%1116180%% %  L  %  MM@;bW@GzD%% %  M  %  iŻE@Bѳ%acQ@GzD %  n O R - & %% %  P % %  dJFUB@ʹvT -R@GzD@ifS7=pfSG=@ - -0/>:u? %  { Q S  %  R S  %   UHMBP? unknown -dJFUB@̴vT -R@GzD@,[B@ۿ SFR@GzD@%%% %  S%11-1 %  S %%% %  T 0%1116177%% %  U  %  dJFUB@ʹvT -R@GzD@ %  r W  %%% %  Y 2%1116179%% %  Z  %  dJFUB@ʹvT -R@GzD %  \ -  %   0/>:u? \ unknown -gI#_F@,Q@GzDgI#_F@,Q@GzD@%% %  ]  %  % %  gI#_F@,Q@GzD/RT֏\I - -cMBP?%% %  ^  %  % %  (Ξ{F@֝P@GzD@YRT֏\@I@,$3+ - -cMBP?%% %  `  %   - -hŻE@,Q@GzDhI#_F@Bѳ%acQ@GzD@ %%% %  c 7%1119946%%% %  e 8%1119947%%% %  h <%112245%% %  i  %   - -vP(irJ@]X@GzDRdJ@_39X@GzD@ % %  %= ףp=Z@GzD@ar^?@@ %%% %  j%11-1 %  y 0/>:u? m unknown -&pM@W@GzD&pM@W@GzD@ %  n  %   0/>:u? n unknown -,[B@ۿ SFR@GzD,[B@ۿ SFR@GzD@%% %  o  %  o % %  dJFUB@ʹvT -R@GzDXy{@_@ - -HMBP?%% %  q % %   -FN@r M,W@GzDEТ}EB?k5px@9? - -kh8cӼ? %  r -  %   ST=?? r unknown -zg !@C@ػR@GzD~P(irJ@]X@GzD %   s   %  s  u  %  -vP(irJ@]X@GzDRdJ@_39X@GzD@ -%% %   t  %  % %  n@6H@EmAX@GzDWgoFie,ȱ?ѱv. @f8uNo9? - -i8cӼ? %  v u - j  %   x0/>:u? u  unknown -LdJ@_39X@GzDLdJ@_39X@GzD@%%% %  w D%1116184%% %   x  %  LdJ@_39X@GzD%% %  - y  %  &pM@W@GzD %  { } S %% %   | % %  iŻE@Bѳ%acQ@GzD@ @ Ԋ@b`= - -gT=?? %   j8cӼ? }  unknown -MM@;bW@GzD@&pM@W@GzD@%%% %  ~ G%1116181%% %     %  MM@;bW@GzD@ %   ж(A&Y?  unknown -hŻE@,Q@GzD@gI#_F@Bѳ%acQ@GzD@%%% %  %11-1% %  gI#_F@,Q@o_Eh9;ῤ)f<ISRT֏\@ %%% %  I%1116183%% %     %  iŻE@Bѳ%acQ@GzD@%% %    % %  iŻE@Bѳ%acQ@GzDI@JRT֏\ - -ж(A&Y?%%% %  L%1119954%%% %  M%1119955%%% %  P%1116178 %    S  %   -  %   x(A&Y?  unknown -,[B@ػR@GzD@zg !@C@ۿ SFR@GzD@%% %     %  % %  ,[B@ۿ SFR@GzD@Xy{_#3+= - -HMBP? %    S  %   iU?  unknown -JdJ@W@GzD@&pM@_39X@GzD@%%% %  U%1119949 %   -  %   x(A&Y?  unknown -,[B@ػR@GzDzg !@C@ۿ SFR@GzD%%% %  Z%1119951%% %  !  % %  gI#_F@,Q@GzD@@ - -0/>:u?%%% %  ]%1116187%% %  "   %  gI#_F@,Q@GzD%%% %  ^%1116201%% %  #   %  gI#_F@,Q@GzD@%%% %  `%112250%% %  $  %%% %  i%112246%% %  %   % & '  ( - -zg !@C@ػR@GzD~P(irJ@]X@GzD@ % %  n@6H@EmAX@o_E;f@;f@? ?@ - %% %  )   % * +% %  &pM@W@GzD@@ - -0/>:u? % , ' -,[B@ػR@GzDzg !@C@ۿ SFR@GzD@ - -%% %  .  % %  ,[B@ۿ SFR@GzD@@ - -0/>:u?%%% %  o%1116188%% %  /   %  ,[B@ۿ SFR@GzD%%% %  q%1116185 %    0  %    -  % 1 -zg !@C@ػR@GzD~P(irJ@]X@GzD@ ( -%% %  2   % 3 4% %  zg !@C@ػR@GzDp4t~@R -J@$bP= - -ST=?? %   -  % 5  60/>:u? 7 unknown -vP(irJ@]X@GzDvP(irJ@]X@GzD@%%% %  %11-1%%% %  t%1116191%% %  8   %  vP(irJ@]X@GzD%% %  9   % :  ;% %  LdJ@_39X@GzD@@ - -0/>:u?%%% %  x%1119962%%% %  y%1119963%%% %  |%1116182%% %  <  % %   -FN@r M,W@GzD@2\-< 6 ST=?? ? unknown -zg !@C@ػR@GzD@vP(irJ@]X@GzD@ %  0 - %% %  @   % A 0 B% %  zg !@C@ػR@GzD@/_y{@ - -x(A&Y?%%% %  %1116192%% %  C   %  ,[B@ۿ SFR@GzD@ % D  6\k8cӼ? E unknown -vP(irJ@]X@GzD@RdJ@_39X@GzD@%% %  F  % %  GzD@bJqEOӴ?&pM@W@=? - -iU?%% %  G  % %  ,[B@ۿ SFR@GzD/_@y{ - -x(A&Y?%%% %  %1116205%%% %  %1119966%%% %  %1119990%%% %  %112251%%% %  %112247%% %  H   % I `  - - -,[B@ػR@GzDzg !@C@ۿ SFR@GzD@ % %  vP(irJ@]X@o_EI)?XP/߿<x0@ %%% %  %1116194%% %  J   %  &pM@W@GzD@%%% %  %11-1% %  zg !@C@ػR@o_Ef8uNܿбv.<_y{@ %%% %  %1116193%%% %  %1119969 % K  0/>:u? L unknown -zg !@C@ػR@GzDzg !@C@ػR@GzD@%%% %  %11-1%%% %  %1116190%% %  M   %  zg !@C@ػR@GzD%% %  N   % O  P% %  vP(irJ@]X@GzD@@ - -0/>:u?%%% %   %1119973%%% %   %1116196%% %  Q   %  LdJ@_39X@GzD@%%% %   %1116195%%% %   %1116202%% %  R  % %  vP(irJ@]X@GzD@p4t~R -Jb` - -ST=??%%% %   %1116200%% %  S   %  zg !@C@ػR@GzD@%%% %   %1119976%% %  T  % %  n@6H@EmAX@GzD@ElR< <>@yox 9? - -\k8cӼ?%%% %   %1116197%%% %   %1116189%%% %  & %112248%% %  U ' %%% %  * %1119979%% %  V 0 % %  zg !@C@ػR@GzD@@ - -0/>:u?%%% %  3 %1119971%%% %  5 %1116203%% %  W 6  %  vP(irJ@]X@GzD@%%% %  : %1119982%%% %  > %1116199%%% %  A %1119987%%% %  D %1116198%%% %  I '%112249%%% %  K 0%1116204%%% %  O 6%1119985 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_80.setup/NativeGeometryFiles/0002593.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -ʆF@&N@GzD |.Q@@ -V@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth32 lump%   -ʆF@&N@GzD |.Q@@ -V@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111237 -shell%   -ʆF@&N@GzD |.Q@@ -V@GzD@properties%  ansoft% %  -  Stator_Teeth32! -%%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[32] face%     - -ՆF@&N@GzD[_RJ@EP@GzD@ %%% %    %111237%%% %   %6Stator_Teeth[32]id%% %   " - %      - -ȋ,G@)s՘P@GzD8JG@0-P@GzD@  loop%   -ՆF@&N@GzD[_RJ@EP@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -ֆF@EP@GzD׆F@EP@GzD@%%% %   %112266%% %  : % - % ; < =  > -ՆF@&N@GzD |.Q@@ -V@GzD -΍ !o"@aU % ? @  -[_RJ@&N@GzDVAJ@6 "O@GzD@ ' -% %  0%eJ@\bN@o_E&[e\?ACH$@@ %%% %  %11-1 %  A B C D   %  E  F G   %   E H I -   %  J K  - =  % L M N`(A&Y?  O unknown -ȋ,G@)s՘P@GzD8JG@0-P@GzD %   P Q   %  K R  0 =  % S T 8Aޡh?  U unknown -ՆF@&N@GzD[_RJ@EP@GzD %  V W 2 -   % X Y 7Aޡh? Z unknown -ՆF@&N@GzD@[_RJ@EP@GzD@ %  F ! W [ - 5  %  ! F K \ - 5  % ] 4 ^ -ʆF@EP@GzDȋ,G@0-P@GzD@ _ -%% %  ` ". - vertex% a " b % c " d straight% -curve%  ֆF@EP@GzD@ifS7=pfSG=@ - -0/>:u?%%% %  $ %112267%% %  e %& - % f g h  i - -|7J@3 "O@GzDVAJ@f`O@GzD@  % j k % -ՆF@&N@GzD |.Q@@ -V@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  &%11-1 %  l P R m - &  %  n ) o p   %  ) q r s   %  t u ) D - v  % w x yҨiU? ) z unknown -Fq.S_P@EU@GzD@ |.Q@@ -V@GzD@ %  + * { | -   %  4 3 * G - 5  % } M ~0/>:u? *  unknown -ȋ,G@0-P@GzDȋ,G@0-P@GzD@ %  + I  %  N 0/>:u? + unknown -8JG@+s՘P@GzD8JG@+s՘P@GzD@ %  , =  %  , / 4 \ = %% %  -2 - %  -  %  - % %  ȋ,G@0-P@GzDI@$RT֏\cS[ - -`(A&Y? %  @ . Q - &  %  T Y0/>:u? . unknown -[_RJ@&N@GzD[_RJ@&N@GzD@ %  / @ m = %% %  0/ - %  m  ellipse% %  GzD?[_RJ@&N@? - -Aޡh? %  1   %  1 { 3 [  %% %  21 - %  % %  GzD@?[_RJ@&N@? - -Aޡh? %  ~ 7jMBP? W unknown -ʆF@EP@GzD@ȋ,G@0-P@GzD@ %  8 MjMBP? K unknown -ֆF@EP@GzDȋ,G@0-P@GzD%%% %  5%11-1 %  5  _ - -ʆF@EP@GzDȋ,G@0-P@GzD@ % %  ȋ,G@0-P@o_E)f?h9;<dN,@ %%% %  6 "%1116236%% %  7L - -point%  ֆF@EP@GzD@%% %  8M - %  ֆF@EP@GzD%%% %  ; %%112268%% %  <' - %   - -}7J@f`O@GzDwCƟQ@@U@GzD@  %  < -|7J@3 "O@GzDVAJ@f`O@GzD@ i -% %  VAJ@3 "O@o_Ee\&[<&~ -:Ě@ %%% %  =%11-1 %  =  %  @ &  %   TMBP? @ unknown -[_RJ@&N@GzDVAJ@3 "O@GzD %  { A   %  A p -  %  y j8cӼ? A unknown -z뻱PP@,U<V@GzD@Jq.S_P@@ -V@GzD@ %  B   %  B s -  %   x|i8cӼ? B unknown -wCƟQ@@U@GzD@ |.Q@EU@GzD@ %  C - v  %  C - v  %  t -Fq.S_P@EU@GzD |.Q@@ -V@GzD@ %% %  D6 - %  s  %  p % %  GzD@=e:u? %  H n -  %  H J -  %  -8JG@*s՘P@GzDz뻱PP@-U<V@GzD@ -%% %  I5 - %  % %  8JG@+s՘P@GzD@@ - -0/>:u? %  k J =  %  N NT=?? J unknown -8JG@+s՘P@GzDz뻱PP@-U<V@GzD%%% %  L -%1116240%% %  MQ - %  ȋ,G@0-P@GzD%% %  NP - %  8JG@+s՘P@GzD %  P l V - & %% %  Q0 -% %  [_RJ@&N@GzDifS7pfSG@@ - -0/>:u? %  R = %%% %  S 0%1116237%% %  TN - %  [_RJ@&N@GzD %  q V   %  Y MBP? V unknown -[_RJ@&N@GzD@VAJ@6 "O@GzD@%%% %  X 2%1116239%% %  YO - %  [_RJ@&N@GzD@%% %  [9 -% %  ȋ,G@0-P@GzD@$RT֏\I#3+= - -jMBP?%% %  \D -% %  ֆF@EP@GzD/RT֏\@I@ - -jMBP?%% %  ^, - %   - -8JG@*s՘P@GzDz뻱PP@-U<V@GzD@ %%% %  a 7%1120046%%% %  c 8%1120047%%% %  f <%112269%% %  g( - %  v  -Fq.S_P@EU@GzD |.Q@@ -V@GzD@  %  g -}7J@f`O@GzDwCƟQ@@U@GzD@ -% %  ~7J@f`O@o_Ewj鿊Զr?@@ %%% %  h%11-1 %  - h  %  k =  %  u t k - v  %   iU? k unknown -Gq.S_P@EU@GzD |.Q@@ -V@GzD %  l - h  %   0/>:u? l unknown -VAJ@3 "O@GzDVAJ@3 "O@GzD@%% %  m> - %  m % %  VAJ@3 "O@GzD -:Ě.~y$3+= - -MBP? %   NT=?? n unknown -8JG@*s՘P@GzD@z뻱PP@,U<V@GzD@ %  o u  %  o  %  -z뻱PP@,U<V@GzDLq.S_P@@ -V@GzD@ -%% %  p7 - %  p % %   -FN@r M,W@GzD@!v:u? t  unknown - |.Q@EU@GzD |.Q@EU@GzD@ %  y 0/>:u? u  unknown -Gq.S_P@@ -V@GzDGq.S_P@@ -V@GzD@%%% %  v%11-1% %  ITTS@TTS@? ?\@ - %%% %  w D%1116244%% %   xT - %   |.Q@EU@GzD@%% %   yU - %  Gq.S_P@@ -V@GzD@%% %   |4 -% %  8JG@+s՘P@GzD@I$RT֏\@ - -`(A&Y?%%% %  } G%1116241%% %   ~R - %  ȋ,G@0-P@GzD@ %  - %%% %  %11-1% %  z뻱PP@,U<V@o_EJ\}?0[2A{M+*=@ %%% %  I%1116243%% %   S - %  8JG@+s՘P@GzD@ %  -  %   Fl8cӼ?  unknown -z뻱PP@,U<V@GzDLq.S_P@@ -V@GzD%% %   E - %  % %  8JG@+s՘P@GzD -@ x@$bP= - -NT=??%%% %  M%1120054%%% %  N%1120055%%% %  Q%1116238 %   =  %   P(A&Y?  unknown -~7J@3 "O@GzDVAJ@f`O@GzD%%% %  T%1120049 %  - h  %   P(A&Y?  unknown -|7J@3 "O@GzD@VAJ@f`O@GzD@%% %  ! : - % " #% %  [_RJ@&N@GzD@ :Ě@B~@#3+ - -MBP?%%% %  Y%1120051%%% %  [%1116247%%% %  \%1116258%%% %  ^%112274%% %  $ - -%%% %  g%112270%% %  % ) - % &   - -z뻱PP@,U<V@GzDLq.S_P@@ -V@GzD@ %%% %  %11-1 %     -  %   ' h  %  -  % (  )i8cӼ? * unknown -wCƟQ@@U@GzD |.Q@EU@GzD%% %  + @ - % , - % . /% %  GzDQgpI<Kq.S_P@> -V@=? - -iU?%% %  0 ? -% %  VAJ@3 "O@GzD@@ - -0/>:u?%%% %  m%1116252%% %  1 Z - %  VAJ@3 "O@GzD%% %  2 8 -% %  z뻱PP@,U<V@GzD@ - xb` - -NT=?? % 3  0/>:u? 4 unknown -z뻱PP@,U<V@GzDz뻱PP@,U<V@GzD@%%% %  %11-1% %   -FN@r M,W@o_E;f@;f@? ?@ - %%% %  p%1116245%% %  5 V - %  z뻱PP@,U<V@GzD@ %  ' -  %   %% %  6 < - % 7 8% %  ~7J@f`O@GzD@b@6o ҂@b`= - -tT=?? % 9 ) 0/>:u?  : unknown -wCƟQ@@U@GzDwCƟQ@@U@GzD@%%% %  %11-1 % ; ^   - -wCƟQ@@U@GzD |.Q@EU@GzD@ % %  kn?`R@z*T@o_E;f@;f@? ?@ - %%% %  s%1116251%% %  < Y - %  wCƟQ@@U@GzD@%% %  = I -% %   |.Q@EU@GzD@@ - -0/>:u?%% %  > J -% %  Gq.S_P@@ -V@GzD@@ - -0/>:u?%%% %  x%1120062%%% %  y%1120063%%% %  |%1116242%%% %  ~%1120057%%% %  %1120059%% %  ? F -% %   -FN@r M,W@GzDO2\-D :u? J unknown -~7J@f`O@GzD~7J@f`O@GzD@%% %  K A - % L M% %  kn?`R@z*T@GzD6p@vrH? 'E=4@? - -i8cӼ?%%% %  %1116254%% %  N [ - %  Gq.S_P@@ -V@GzD%% %  O \ - %   |.Q@EU@GzD%%% %  %1116253%%% %  %1120076%%% %  %1116246%% %  P K -% %  z뻱PP@,U<V@GzD@@ - -0/>:u?%%% %  %1120065%%% %   %1116250%% %  Q X - %  ~7J@f`O@GzD@%% %  R H -% %  wCƟQ@@U@GzD@@ - -0/>:u?%% %  S + -%%% %   %1120073%%% %   %1116263%%% %   %1116264%%% %   %1116260%%% %   %1120088%% %  T B -% %  wCƟQ@@U@GzDb6o ҂%bP - -tT=??%%% %   %1116257%% %  U ^ - %  ~7J@f`O@GzD%%% %   %1116249%%% %  " %1120069%%% %  & %112272%% %  V 'G -% %  ~7J@f`O@GzD@@ - -0/>:u?%%% %  ( %1116255%% %  W )] - %  wCƟQ@@U@GzD%%% %  , %1120079%%% %  . %1120080%%% %  3 %1116265%%% %  7 %1120071%%% %  9 %1116262%%% %  ; %112273%%% %  A %1116256%%% %  D %1120084%%% %  I '%1116261%%% %  L )%1120082 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_80.setup/NativeGeometryFiles/0002721.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -wgB K@wgB K@GzD_bT@_bT@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth34 lump%   -wgB K@wgB K@GzD_bT@_bT@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111243 -shell%   -wgB K@wgB K@GzD_bT@_bT@GzD@properties%  ansoft% %  -  Stator_Teeth34 -%%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[34] face%     - -wgB K@wgB K@GzD-utDN@-utDN@GzD@ %%% %    %111243%%% %   %6Stator_Teeth[34]id%% %    - %      -wgB K@wgB K@GzD@_bT@_bT@GzD@ -(Hq?xKMߴ?pe'}`*b}ᚿ loop%   -wgB K@wgB K@GzD-utDN@-utDN@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown --utDN@wgB K@GzD-utDN@wgB K@GzD@%%% %   %112290%% %  :  - % ; < =  > - - 1dK@w/eM@GzD_ S@R_KT@GzD@  % ? @  -IcK@w/eM@GzD 1dK@9e'N@GzD@ ' -% %   1dK@w/eM@o_Ee\&[<&~ -:Ě@ %%% %  %11-1 %  A B C D   %  E  F G   %   H I J   %  K L  - - M  % N O PިiU?  Q unknown -u,uDw2S@t,uDw2S@GzD@_bT@_bT@GzD@ %   R S   %  T U  0 -   % V 8 W4Aޡh?  X unknown -wgB K@wgB K@GzD@-utDN@-utDN@GzD@ %  Y Z 2   % [ 7 \CAޡh? ] unknown -wgB K@wgB K@GzD-utDN@-utDN@GzD %  ^ ! Z _ - 5  %  ! ^ T ` - 5  % a 3 < --utDN@wgB K@GzD>e'N@IcK@GzD@ b -%% %  c " - vertex% d " e % f " g straight% -curve%  -utDN@wgB K@GzDifS7pfSG@@ - -0/>:u?%%% %  $ %112291%% %  h % - % i j 5  b - --utDN@wgB K@GzD>e'N@IcK@GzD@  % k l % - 1dK@w/eM@GzD_ S@R_KT@GzD@ > -% %  _ S@R_KT@o_E~?C6)Kr> m&=@ %%% %  &%11-1 %  m n o p - &  %  q ) r s   %  ) t u v   %  L K ) D - M  % w x yިiU? ) z unknown -t,uDw2S@u,uDw2S@GzD_bT@_bT@GzD %  { * | }   %  ~  * G -  %  P n8cӼ? * unknown -_ S@R_KT@GzD@w,uDw2S@_bT@GzD@ %  +   %  + J -  %   O:u? . unknown -wgB K@-utDN@GzDwgB K@-utDN@GzD@ %  / 4 `   %  / {  %% %  0 - %  S % %  GzD@?-utDN@wgB K@? - -4Aޡh? %  o 1   %  1 3 _  %% %  2 - %  S % %  GzD?-utDN@wgB K@? - -CAޡh? %  4 3 5  %   7MBP? Z unknown --utDN@wgB K@GzD9e'N@IcK@GzD %  8 %MBP? T unknown --utDN@wgB K@GzD@>e'N@IcK@GzD@%%% %  5%11-1% %  %M@DmMJ@o_E -e\*[?@@ %%% %  6 "%1116296%% %  7 - -point%  -utDN@wgB K@GzD%% %  8 - %  -utDN@wgB K@GzD@%%% %  ; %%112292%% %  < - %   - -w/eM@IcK@GzD:e'N@ 1dK@GzD@ %%% %  =%11-1 %  t - =  %  @ &  %  @ - &  %  t Y @ p   %   O(A&Y? o unknown -IcK@w/eM@GzD 1dK@9e'N@GzD %  A   %  A s -  %  y (m8cӼ? A unknown -R_KT@_ S@GzD_bT@v,uDw2S@GzD %  B o l   %   ~ B v -  %   x<t,uDw2S@_bT@=? - -ިiU? %  U E   %  E } - =  %   WT=?? E unknown - 1dK@w/eM@GzD@_ S@R_KT@GzD@ %  u F L  %  F u  %  ~ -_ S@R_KT@GzDw,uDw2S@_bT@GzD@ -%% %  G - %  G % %  kn?`R@z*T@GzD@4^*6<*<F -@`hCo9? - -n8cӼ? %  H T   %  H -  %   WT=?? H unknown -w/eM@ 1dK@GzD@R_KT@_ S@GzD@ %  r I -  %  I r K  %  -R_KT@_ S@GzD_bT@v,uDw2S@GzD@ -%% %  J - %  % %  z*T@kn?`R@GzD@Ļ:u? K unknown -_bT@u,uDw2S@GzD_bT@u,uDw2S@GzD@ %  P x0/>:u? ~ unknown -u,uDw2S@_bT@GzDu,uDw2S@_bT@GzD@%%% %  M%11-1 %  M  -t,uDw2S@t,uDw2S@GzD_bT@_bT@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  N -%1116300%% %  O - %  _bT@u,uDw2S@GzD@%% %  P - %  u,uDw2S@_bT@GzD@ %  R U -  %  R Y -  %  -wgB K@-utDN@GzDIcK@:u? %   WMBP? U unknown -wgB K@-utDN@GzD@IcK@9e'N@GzD@%%% %  V 0%1116297%% %  W - %  wgB K@-utDN@GzD@ %  \ MBP? Y unknown -wgB K@-utDN@GzDIcK@:u? ^ unknown -9e'N@IcK@GzD9e'N@IcK@GzD@%% %  _ - %  % %  9e'N@IcK@GzDB~ :Ě#3+= - -MBP?%% %  ` - %  % %  -utDN@wgB K@GzD@!~@ -:Ě@|#3+ - -%MBP?%%% %  d 7%1120146%%% %  f 8%1120147%%% %  i <%112293%% %   j - %   - -_ S@R_KT@GzDw,uDw2S@_bT@GzD@  %  j -w/eM@IcK@GzD:e'N@ 1dK@GzD@ -% %  9e'N@IcK@o_E*[ -e\ -:Ě*~@  %  | l n =  %  l |  - =  %   WT=?? t  unknown - 1dK@w/eM@GzD_ S@R_KT@GzD %  n m { - &  %  m -  %   0/>:u? m  unknown -IcK@9e'N@GzDIcK@9e'N@GzD@ %   0/>:u? n - unknown - 1dK@w/eM@GzD 1dK@w/eM@GzD@%% %   p - %  p  %  % %  IcK@9e'N@GzDF~@ :Ě - -O(A&Y? %  q -  %   WT=?? q  unknown -w/eM@ 1dK@GzDR_KT@_ S@GzD%% %   s - %  % %  z*T@kn?`R@GzDT^*6᡼"ۘ?hCF -@o9? - -(m8cӼ?%% %   v - %  % %  kn?`R@z*T@GzDĻꢼ_瑥?G[@~e\? - -:u? ! unknown -_ S@R_KT@GzD_ S@R_KT@GzD@%%% %  %11-1% %  kn?`R@z*T@o_E;f@;f@? ?@ - %%% %  G%1116301%% %  "  - %  _ S@R_KT@GzD@ %  # -  % $  Q(A&Y? % unknown -w/eM@IcK@GzD@9e'N@ 1dK@GzD@ %  # & -  %   % ' -w/eM@ 1dK@GzDR_KT@_ S@GzD@ ( -%% %  )  - % * +% %  w/eM@ 1dK@GzD@zm}k@wA9?fŅ@ - -WT=?? % ,  0/>:u? - unknown -R_KT@_ S@GzDR_KT@_ S@GzD@%%% %  %11-1 % .  - -R_KT@_ S@GzD_bT@v,uDw2S@GzD@ % %  z*T@kn?`R@o_E;f@;f@? ?@ - %%% %  J%1116308%% %  /  - %  R_KT@_ S@GzD@%% %  0  -% %  _bT@u,uDw2S@GzD@@ - -0/>:u?%% %  1  -% %  u,uDw2S@_bT@GzD@@ - -0/>:u?%% %  2  - % 3  ( - -w/eM@ 1dK@GzDR_KT@_ S@GzD@ %%% %  O%1120154%%% %  P%1120155%%% %  %11-1 % 4  - -wgB K@-utDN@GzDIcK@:u?%%% %  _%1116313%% %  <  - %  9e'N@IcK@GzD%%% %  `%1116305%% %  =  - %  9e'N@IcK@GzD@%%% %  j%112294%% %  >  -%%% %  %11-1%% %  ?  -% %   1dK@w/eM@GzDwA9?fŅ@zm}k@%bP= - -WT=??%% %  @  -% %  IcK@9e'N@GzD@@ - -0/>:u?%% %  A  -% %   1dK@w/eM@GzD@@ - -0/>:u?%%% %  p%1116315%% %  B  - %  IcK@9e'N@GzD%% %  C  - %   1dK@w/eM@GzD%% %  D  - % E F% %  R_KT@_ S@GzDzm}kwA9?fŅbP - -WT=??%%% %  s%1116310%% %  G  - %  R_KT@_ S@GzD%%% %  v%1116317%% %  H  - %  _ S@R_KT@GzD%%% %  x%1120171%%% %  y%1120172%% %  I  -% %   1dK@w/eM@GzD@F~ :Ě@ - -O(A&Y?%%% %  }%1116302%% %  J  - %   1dK@w/eM@GzD@%% %  K  -% %  _ S@R_KT@GzD@@ - -0/>:u?%%% %  %1120157 %  & %% %  L  -% %  9e'N@IcK@GzD@[ -:Ě~@ - -Q(A&Y? % M  0/>:u? # N unknown -w/eM@ 1dK@GzDw/eM@ 1dK@GzD@%%% %  %11-1% %  w/eM@ 1dK@o_E C6)K濜~?z> m&@@ %%% %  %1116307%% %  O  - %  w/eM@ 1dK@GzD@%% %  P  -% %  R_KT@_ S@GzD@@ - -0/>:u?%% %  Q  -%%% %  %1120168%%% %  %1116324%%% %  %1116323%%% %  %112297%% %  R  -%% %  S  -%%% %  %1116304%% %  T  - %  IcK@9e'N@GzD@%%% %  %1116314%% %  U  -% %  w/eM@ 1dK@GzD[ -:Ě@~ - -Q(A&Y?%%% %  %1116321%%% %  %1120178%%% %   %1120164%%% %   %112295%%% %   %1116316%%% %   %1116318%%% %   %1116319%%% %   %1120181%%% %   %1120183%%% %   %1116311%% %  V  - %  w/eM@ 1dK@GzD%%% %   %1120174%%% %   %1120185%%% %   %1116303%%% %   %1120159%%% %   %1116320%%% %  $ %1116306%% %  W & -% %  w/eM@ 1dK@GzD@@ - -0/>:u?%%% %  * %1120166%%% %  , %1116325%%% %  . %112299%%% %  3 %112298%%% %  4 %112296%%% %  6 %1120161%%% %  9 %1116312%%% %  E %1120176%%% %  M &%1116322 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_80.setup/NativeGeometryFiles/0002849.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -&N@ĆF@GzD@ -V@ |.Q@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth36 lump%   -&N@ĆF@GzD@ -V@ |.Q@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111249 -shell%   -&N@ĆF@GzD@ -V@ |.Q@GzD@properties%  ansoft% %  -  Stator_Teeth36! %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[36] face%     - -&N@džF@GzDEP@[_RJ@GzD@ %%% %    %111249%%% %   %6Stator_Teeth[36]id%% %   "  %      -&N@ɆF@GzD@@ -V@ |.Q@GzD@ -;Q|?jsB?o:u?  9 unknown -&N@[_RJ@GzD&N@[_RJ@GzD@%%% %   %112314%% %  : %  % ; < =  > -&N@ĆF@GzD@ -V@ |.Q@GzD -jsB?Q|o>aX# % ? @  -@U@wCƟQ@GzDEU@ |.Q@GzD@ ' -% %  z*T@kn?`R@o_E;f@;f@? ?@ - %%% %  %11-1 %  A , B C -   %  D  E F   %   G H I   %  ) J  - -   % K L MiU?  N unknown -EU@Gq.S_P@GzD@@ -V@ |.Q@GzD@ %   O P   %  Q R  0 =  % S T 8TAޡh?  U unknown -&N@džF@GzDEP@[_RJ@GzD %  V W 2 -   % X Y 7@ޡh? Z unknown -&N@ɆF@GzD@EP@[_RJ@GzD@ %  [ ! W \ - 5  %  ! [ Q ] - 5  % ^ 4 _ -&N@[_RJ@GzD6 "O@VAJ@GzD@ ` -%% %  a ".  vertex% b 2 c % d 0 e straight% -curve%  &N@[_RJ@GzD@ifS7=pfSG=@ - -0/>:u?%%% %  $ %112315%% %  f %&  % g h i  j - -EP@ĆF@GzD0-P@ ȋ,G@GzD@  % k l % -&N@ĆF@GzD@ -V@ |.Q@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  &%11-1 %  m E J n &  %  J ) l o -   %  H p ) C q  % r s L0/>:u? ) t unknown -@ -V@Gq.S_P@GzD@ -V@Gq.S_P@GzD@ %  u * v w   %  @ x * F - &  % y M zh8cӼ? * { unknown -@U@wCƟQ@GzD@EU@ |.Q@GzD@ %  + | } ~   %   B + I - q  %   Lm8cӼ? + unknown -,U<V@z뻱PP@GzD@@ -V@Lq.S_P@GzD@ %  , A @ n -  %% %  -2  %  I  %  n  ellipse% %  GzD@_5i"z:u? . unknown -EP@ȆF@GzDEP@ɆF@GzD@ %  / 4 ] =  %  / = %% %  0/  %  0 % %  GzD?EP@džF@? - -TAޡh? %  | 1   %  1 u 3 \  %% %  21  %  2 % %  GzD@?EP@ԆF@? - -@ޡh? %  4 3 - 5  %   7MBP? W unknown -&N@[_RJ@GzD@3 "O@VAJ@GzD@ %  8 MBP? Q unknown -&N@[_RJ@GzD6 "O@VAJ@GzD%%% %  5%11-1 %  5  ` - -&N@[_RJ@GzD6 "O@VAJ@GzD@ % %  3 "O@VAJ@o_E -e\?*[@ %%% %  6 "%1116356%% %  7L  -point%  &N@[_RJ@GzD@%% %  8M  %  &N@[_RJ@GzD%%% %  ; %%112316%% %  <'  %  _  - -+s՘P@ȋ,G@GzD0-P@8JG@GzD@  %  < -EP@ĆF@GzD0-P@ ȋ,G@GzD@ j -% %  %~P@IF@o_Eh9;ῤ)f?@@ %%% %  =%11-1 %  A o =  %  x @ - &  %  M 0/>:u? J unknown -EU@ |.Q@GzDEU@ |.Q@GzD@ %   sҨiU? A unknown -EU@Fq.S_P@GzD@ -V@ |.Q@GzD %  B  - q  %  B -*U<V@z뻱PP@GzD@ -V@Lq.S_P@GzD@ -%% %  C;  %  o % %  @ -V@Gq.S_P@GzD@@ - -0/>:u? %  W D   %  D w -  %  z ZT=?? D unknown -f`O@~7J@GzD@@U@wCƟQ@GzD@ %  E m & %% %  F3  %  F % %  z*T@kn?`R@GzD@6p<8I<qE=4@ '? - -h8cӼ? %  G V   %  G ~ -  %   MT=?? G unknown -+s՘P@8JG@GzD@/U<V@z뻱PP@GzD@ %  p H - q %% %  I:  %  I % %  r M,W@ -FN@GzD@t2\-<:Af<h9;)f -@? - -m8cӼ?%%% %  K -%1116360%% %  LP  %  @ -V@Gq.S_P@GzD@%% %  MQ  %  EU@ |.Q@GzD@ %  O R - i  %  O V - i %% %  P0 % %  EP@ɆF@GzDpfSWifS7@@ - -0/>:u? %  Q =  %  R =  %   TcMBP? R unknown -EP@ĆF@GzD0-P@ȋ,G@GzD%%% %  S 0%1116357%% %  TN  %  EP@ɆF@GzD %  Y cMBP? V unknown -EP@ɆF@GzD@0-P@ ȋ,G@GzD@%%% %  X 2%1116359%% %  YO  %  EP@ɆF@GzD@ %  [  %   0/>:u? [ unknown -3 "O@VAJ@GzD3 "O@VAJ@GzD@%% %  \6  %  % %  3 "O@VAJ@GzD@&~ -:Ě#$3+= - -MBP?%% %  ]D  %  % %  &N@[_RJ@GzDF~@ :Ě@$3+ - -MBP?%% %  _)  %   - -f`O@~7J@GzD@U@wCƟQ@GzD@ %%% %  b 7%1120246%%% %  d 8%1120247%%% %  g <%112317%% %  h(  %  h -+s՘P@ȋ,G@GzD0-P@8JG@GzD@ -% %  0-P@ȋ,G@o_E)fh9;SRT֏\I@ %%% %  i%11-1 %  l p =  %  l m =  %   |i8cӼ? m unknown -@U@wCƟQ@GzDEU@ |.Q@GzD%% %  n=  %  o % %  EU@ |.Q@GzD@@ - -0/>:u?%% %  o< % %  GzD7#G$xt:u? x  unknown -@U@wCƟQ@GzD@U@wCƟQ@GzD@%%% %  y F%1116361%% %   zR  %  @U@wCƟQ@GzD@ %    | -  %   ж(A&Y? | - unknown -+s՘P@ȋ,G@GzD@0-P@8JG@GzD@ %   }   -  %  }    %    -(s՘P@8JG@GzD/U<V@z뻱PP@GzD@  -%% %   ~9  %  % %  +s՘P@8JG@GzD@(x@ -@ - -MT=?? %   0/>:u?   unknown -,U<V@z뻱PP@GzD,U<V@z뻱PP@GzD@%%% %  I%1116368%% %   W  %  ,U<V@z뻱PP@GzD@%%% %  L%1120254%%% %  M%1120255 %    i %%% %  P%1116358 %   =  %  -  %   (A&Y?  unknown -3 "O@v7J@GzDf`O@VAJ@GzD %    =  %    -  %   ж(A&Y?  unknown -+s՘P@ȋ,G@GzD0-P@8JG@GzD%% %   C  %   !% %  0-P@ȋ,G@GzDIRT֏\$3+= - -cMBP?%%% %  T%1120249%% %  " 7  % #  $% %  EP@ɆF@GzD@I@JRT֏\@#3+ - -cMBP?%%% %  Y%1120251 % % -3 "O@v7J@GzDf`O@VAJ@GzD@ & -%% %  ' I % %  3 "O@VAJ@GzD@@ - -0/>:u?%%% %  \%1116364%% %  ( T  %  3 "O@VAJ@GzD@%%% %  ]%1116378%% %  ) ^  %  3 "O@VAJ@GzD%%% %  _%112319%% %  * * % %  @U@wCƟQ@o_EԶr?wj@ %%% %  h%112318%%% %  %11-1%% %  + >  % ,  -% %  z*T@kn?`R@GzDĻꢼI]Ԗ?+e\@ [o9? - -|i8cӼ?%%% %  n%1116371%% %  . Y  %  EU@ |.Q@GzD%%% %  o%1116370%% %  / @  % 0  1% %  r M,W@ -FN@GzD,v8!v ? ZLm1o @? - -m8cӼ?%% %  2 +  % 3   & - -3 "O@v7J@GzDf`O@VAJ@GzD@ %%% %  s%1120271 %  - %% %  4 5 % %  f`O@~7J@GzD@6 -:Ě ~@ - -(A&Y? %   -  % 5  0/>:u? 6 unknown -f`O@~7J@GzDf`O@~7J@GzD@%%% %  %11-1%%% %  w%1116362%% %  7 S  %  f`O@~7J@GzD@%% %  8 ? % %  @U@wCƟQ@GzD@@ - -0/>:u?%%% %  z%1120257 %   -  %   %% %  9 8 % %  0-P@ȋ,G@GzD@RT֏\I@ - -ж(A&Y? %   -  % :  0/>:u?  ; unknown -+s՘P@8JG@GzD+s՘P@8JG@GzD@%%% %  %11-1 % <   - -(s՘P@8JG@GzD/U<V@z뻱PP@GzD@ % %  +s՘P@8JG@o_E0[2AQ\}?@@ %%% %  ~%1116367%% %  = V  %  +s՘P@8JG@GzD@%% %  > K % %  ,U<V@z뻱PP@GzD@@ - -0/>:u?%%% %  %1120268 % ?  0/>:u? @ unknown -0-P@ȋ,G@GzD0-P@ȋ,G@GzD@ % A  ZT=?? B unknown -f`O@~7J@GzD@U@wCƟQ@GzD%% %  C E  % D  E% %  3 "O@VAJ@GzD6 -:Ě@ ~ - -(A&Y? % F  MT=?? G unknown -(s՘P@8JG@GzD,U<V@z뻱PP@GzD%% %  H B  % I  J% %  +s՘P@8JG@GzDRT֏\@I - -ж(A&Y?%%% %  %1116377%% %  K ]  %  0-P@ȋ,G@GzD%%% %  %1116365%% %  L U  %  0-P@ȋ,G@GzD@%%% %  %11-1% %  f`O@~7J@o_E*[ -e\ -:Ě*~@ %%% %  %1116383%%% %  %1120261%%% %  %1120286%%% %  %112320%%% %  %1116372%% %  M Z  %  @U@wCƟQ@GzD%%% %  %1120273%%% %  %1116374%% %  N [  %  ,U<V@z뻱PP@GzD%%% %  %112321%% %  O , %%% %  %1116363%% %  P J % %  f`O@~7J@GzD@@ - -0/>:u?%%% %   %1120259%%% %   %1116373%%% %   %1116366%% %  Q H % %  +s՘P@8JG@GzD@@ - -0/>:u?%% %  R - %%% %   %1120266%%% %   %1116385%% %  S G % %  0-P@ȋ,G@GzD@@ - -0/>:u?%% %  T F % %  f`O@~7J@GzD6o ҂@b@"bP= - -ZT=??%%% %   %1116379%% %  U _  %  f`O@~7J@GzD%% %  V A % %  ,U<V@z뻱PP@GzD(x - - -MT=??%%% %   %1116376%% %  W \  %  +s՘P@8JG@GzD%%% %   %1120283%%% %  # %1120264%%% %  , %1120276%%% %  0 %1120279%%% %  3 %112322%%% %  5 %1116384%%% %  : %1116382%%% %  < %112323%%% %  ? %1116381%%% %  A %1116380%%% %  D %1120288%%% %  F %1116375%%% %  I %1120281 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_80.setup/NativeGeometryFiles/0002977.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -֝P@dJFUB@GzD_39X@&pM@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth38 lump%   -֝P@dJFUB@GzD_39X@&pM@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111255 -shell%   -֝P@dJFUB@GzD_39X@&pM@GzD@properties%  ansoft% %  -  Stator_Teeth38 %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[38] face%     - -֝P@dJFUB@GzDʹvT -R@-Ξ{F@GzD@ %%% %    %111255%%% %   %6Stator_Teeth[38]id%% %     %      - -Aѳ%acQ@iŻE@GzD;bW@MM@GzD@  loop%   -֝P@dJFUB@GzDʹvT -R@-Ξ{F@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -˴vT -R@dJFUB@GzDʹvT -R@dJFUB@GzD@%%% %   %112338%% %  :   % ; < =  > -֝P@dJFUB@GzD_39X@&pM@GzD -Y?XoT]g~W4x_ - % ? @  -֝P@$Ξ{F@GzD,Q@gI#_F@GzD@ ' -% %  ,Q@gI#_F@o_Eh9;?)f@ %%% %  %11-1 %  A B C D -   %  E  B F   %   E G H -   %  I C  - =  % J K LgT=??  M unknown -Bѳ%acQ@iŻE@GzD;bW@MM@GzD %   N O   %  P Q  0 - R  % S 8 T$Aޡh?  U unknown -֝P@dJFUB@GzD@ʹvT -R@-Ξ{F@GzD@ %  V W 2 =  % X 7 Y@ޡh? Z unknown -֝P@dJFUB@GzDʹvT -R@(Ξ{F@GzD %  [ ! W \ - 5  %  ! [ P ] - 5  % ^ 3 _ -˴vT -R@dJFUB@GzDݿ SFR@,[B@GzD@ ` -%% %  a "  vertex% b \ c % d ] e straight% -curve%  ʹvT -R@dJFUB@GzDpfSWifS7@@ - -0/>:u?%%% %  $ %112339%% %  f %  % g h i  j - -]X@vP(irJ@GzD_39X@RdJ@GzD@  % k l % -֝P@dJFUB@GzD_39X@&pM@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  &%11-1 %  N m V n - &  %  o ) m p   %  ) o * F -   %  , V ) D =  % q r Kж(A&Y? ) s unknown -,Q@hŻE@GzDBѳ%acQ@gI#_F@GzD %  + * t u -   % v K w0/>:u? * x unknown -Bѳ%acQ@iŻE@GzDBѳ%acQ@iŻE@GzD@ %  y z + H {  % | L }0/>:u? + ~ unknown -;bW@MM@GzD;bW@MM@GzD@ %  l , z  = %% %  -  %  D  %  H % %  Bѳ%acQ@iŻE@GzD Ԋ@ @ - -gT=?? %  @ . O - &  %  T Y0/>:u? . unknown -֝P@(Ξ{F@GzD֝P@)Ξ{F@GzD@ %  / 4 ] R  %  / R  %  -֝P@dJFUB@GzD@_39X@&pM@GzD@%% %  0  %  O  ellipse% %  GzD@?˴vT -R@dJFUB@? - -$Aޡh? %  C 1 @ n =  %  1 3 \ = %% %  2  %  O % %  GzD?˴vT -R@dJFUB@? - -@ޡh? %  4 3 5  %   7HMBP? W unknown -̴vT -R@dJFUB@GzDۿ SFR@,[B@GzD %  8 HMBP? 4 unknown -ʹvT -R@dJFUB@GzD@ݿ SFR@,[B@GzD@%%% %  5%11-1 %  5  ` - -˴vT -R@dJFUB@GzDݿ SFR@,[B@GzD@ % %  Q@B@o_Ef8uNܿбv.?<511=@@ %%% %  6 "%1116416%% %  7  -point%  ʹvT -R@dJFUB@GzD%% %  8  %  ʹvT -R@dJFUB@GzD@%%% %  ; %%112340%% %  <  %   - -ػR@zg !@C@GzD]X@vP(irJ@GzD@  %  < -]X@vP(irJ@GzD_39X@RdJ@GzD@ j -% %  EmAX@n@6H@o_E;f@;f@? ?@ - %%% %  =%11-1 %  I =  %  @ A p - &  %  Y rMBP? @ unknown -֝P@(Ξ{F@GzD,Q@gI#_F@GzD %  B A -   %  r 0/>:u? A unknown -,Q@gI#_F@GzD,Q@gI#_F@GzD@%% %  D  %  D % %  ,Q@gI#_F@GzDJRT֏\@I - -ж(A&Y? %  E u R  %  } wgT=?? E unknown -Aѳ%acQ@iŻE@GzD@;bW@MM@GzD@%% %  F  %  F % %  Bѳ%acQ@iŻE@GzD@@ - -0/>:u? %  G - {  %  G I  - {  %  -;bW@MM@GzDW@&pM@GzD@ -%% %  H  %  H % %  ;bW@MM@GzD@@ - -0/>:u? %  L j8cӼ? I unknown -;bW@MM@GzDW@&pM@GzD%%% %  J -%1116420%% %  K  %  Bѳ%acQ@iŻE@GzD%% %  L  %  ;bW@MM@GzD %  m N Q - & %% %  O % %  ֝P@(Ξ{F@GzD@pfSG=ifS7=@ - -0/>:u? %  P R  %  Q t o R  %   TcMBP? unknown -֝P@$Ξ{F@GzD@,Q@gI#_F@GzD@%%% %  R%11-1 %  R  %  R  -֝P@dJFUB@GzD@_39X@&pM@GzD@ -SoT]?Y??g~W4x_ -%%% %  S 0%1116417%% %  T  %  ֝P@(Ξ{F@GzD@ %  W = %%% %  X 2%1116419%% %  Y  %  ֝P@(Ξ{F@GzD %  [ -  %   0/>:u? [ unknown -ۿ SFR@,[B@GzDۿ SFR@,[B@GzD@%% %  \  %  \ % %  ۿ SFR@,[B@GzD_Xy{^$3+= - -HMBP?%% %  ]  %  ] % %  ʹvT -R@dJFUB@GzD@2_@y{@#3+ - -HMBP?%% %  _  %  {  - -;bW@MM@GzDW@&pM@GzD@ %%% %  b 7%1120346%%% %  d 8%1120347%%% %  g <%112341%% %  h  %  _  -W@JdJ@GzD_39X@&pM@GzD@  %  h -ػR@zg !@C@GzD]X@vP(irJ@GzD@ -% %  ػR@zg !@C@o_EXP/߿I)?@@ %%% %  i%11-1 %  i  %  l =  %  l -  %   iU? l unknown -W@JdJ@GzD_39X@&pM@GzD%% %  n % %  ֝P@(Ξ{F@GzDI@YRT֏\@,$3+ - -MBP? %  w ж(A&Y? o unknown -,Q@iŻE@GzD@Bѳ%acQ@hI#_F@GzD@%% %  p  %  % %  ,Q@gI#_F@GzD@@ - -0/>:u?%%% %  q D%1116424%% %  r  %  ,Q@gI#_F@GzD %  t y R %% %  u % %  ;bW@MM@GzD@ Ԋ  - -gT=??%%% %  v F%1116421%% %  w  %  Bѳ%acQ@iŻE@GzD@ %  z y {  %   }g8cӼ? y unknown -;bW@MM@GzD@W@&pM@GzD@%%% %  {%11-1% %  r M,W@ -FN@o_E;f@;f@? ?@ - %%% %  | H%1116423%% %  }  %  ;bW@MM@GzD@%% %    %   % %  r M,W@ -FN@GzDr2\-Af?h9;@)f -o9? - -j8cӼ?%%% %  K%1120354%%% %  L%1120355%%% %  O%1116418 %    R  %   -  %   (A&Y?  unknown -ػR@,[B@GzD@ۿ SFR@zg !@C@GzD@%% %    % %  ,Q@gI#_F@GzD@IJRT֏\#3+= - -cMBP? %   R  %  -  % -  iU?  unknown -W@LdJ@GzD@_39X@&pM@GzD@%% %     %    - -ػR@,[B@GzDۿ SFR@zg !@C@GzD@ % %  %= ףp=Z@GzD@ar^?@@ %%% %  T%1120349 %   =  %   -  %   (A&Y?  unknown -ػR@,[B@GzDۿ SFR@zg !@C@GzD%%% %  Y%1120351 %  -ػR@,[B@GzDۿ SFR@zg !@C@GzD@  -%% %    % %  ۿ SFR@,[B@GzD@@ - -0/>:u?%%% %  \%1116433%% %     %  ۿ SFR@,[B@GzD%%% %  ]%1116443%% %     %  ۿ SFR@,[B@GzD@%%% %  _%112344%% %    %%% %  h%112342%% %     %  -W@JdJ@GzD_39X@&pM@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  %11-1 %     -  %    - i  %   - i  %  -  %   0/>:u?  unknown -_39X@LdJ@GzD_39X@LdJ@GzD@ %   !Bl8cӼ? " unknown -]X@vP(irJ@GzD_39X@RdJ@GzD %  - %% %  #   % $ %% %  GzD?(h`윲<W@&pM@=? - -iU?%%% %  n%1116427%% %  &  % %  Bѳ%acQ@iŻE@GzD@JRT֏\I@ - -ж(A&Y?%%% %  p%1116425%% %  '   %  ,Q@gI#_F@GzD@%%% %  r%1120362%%% %  u%1116422%%% %  w%1120357 % (  0/>:u? ) unknown -W@&pM@GzDW@&pM@GzD@%% %  *   % + ,% %  r M,W@ -FN@GzD@EТ< ޳!̟<f@}5p? - -g8cӼ?%%% %  }%1120359%%% %  %1116434%% %  -   %  W@&pM@GzD %     -  % .  /aT=??  0 unknown -ػR@zg !@C@GzD@]X@vP(irJ@GzD@ %   1 %% %  2   % 3 1 4% %  ۿ SFR@,[B@GzD@Oy{_@ - -(A&Y?%%% %  %1116428 % 5 / +l8cӼ? 6 unknown -]X@vP(irJ@GzD@_39X@RdJ@GzD@%% %  7   % 8 9% %  GzD@/d' 7 ?_39X@RdJ@=? - -iU?%%% %  %112346%% %  :  % %  ۿ SFR@,[B@o_Eбv.f8uNܿ<y{_@  % ; ! aT=?? < unknown -ػR@zg !@C@GzD]X@vP(irJ@GzD%% %  =   % >  ?% %  ػR@zg !@C@GzDOy{@_ - -(A&Y?%%% %  %11-1%%% %  %1116442%%% %  %1120376%%% %  %1120391%%% %  %112345%%% %  %112343%%% %  %11-1 %    @  %    1 -  %   @ - i %% %  A  % %  _39X@LdJ@GzD@@ - -0/>:u?%% %  B   % C @ D% %  EmAX@n@6H@GzDhElR`~ ?삁?yoxG@? - -Bl8cӼ?%%% %  %1116429%% %  E   %  _39X@LdJ@GzD%%% %  %1116426%%% %  %1120364%% %  F  % %  W@&pM@GzD@@ - -0/>:u?%%% %  %1116444%% %  G   %  W@&pM@GzD@%%% %   %1120369%% %  H   % I @ J% %  ػR@zg !@C@GzD@R -J@p4t~@ - -aT=?? % K  0/>:u?  L unknown -ػR@zg !@C@GzDػR@zg !@C@GzD@%%% %   %1116445%% %  M   %  ػR@zg !@C@GzD@%% %  N  % %  EmAX@n@6H@GzD@goF<ۍ<Bg8uNбv. @? - -+l8cӼ?%%% %  - %1116441%% %  O   %  _39X@LdJ@GzD@%%% %   %112347%% %  P  % %  ]X@vP(irJ@GzDR -Jp4t~$bP - -aT=??%%% %   %1116432%% %  Q   %  ػR@zg !@C@GzD % R ! /0/>:u?  S unknown -]X@vP(irJ@GzD]X@vP(irJ@GzD@%%% %   %1116435%%% %   %1116430%% %  T !  %  ]X@vP(irJ@GzD%%% %  $ %1120370%%% %  ( %1116440%%% %  + %1120388%%% %  . %1116438%% %  U /  %  ]X@vP(irJ@GzD@%% %  V 1 % %  ػR@zg !@C@GzD@@ - -0/>:u?%%% %  3 %1120385%%% %  5 %1116436%%% %  8 %1120380%%% %  ; %1116431%%% %  > %1120374%% %  W @ % %  ]X@vP(irJ@GzD@@ - -0/>:u?%%% %  C !%1120372%%% %  I /%1120382%%% %  K 1%1116439%%% %  R @%1116437 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_80.setup/NativeGeometryFiles/0003105.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -PbAR@:@GzD -w`-Z@]F@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth40 lump%   -PbAR@:@GzD -w`-Z@]F@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111261 -shell%   -PbAR@:@GzD -w`-Z@]F@GzD@properties%  ansoft% %  -  Stator_Teeth40! %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[40] face%     - -QbAR@:@GzDWнS@C wA@GzD@ %%% %    %111261%%% %   %6Stator_Teeth[40]id%% %   "  %      -PbAR@:@GzD@ -w`-Z@|]F@GzD@ -td?:cκ?TxV loop%   -QbAR@:@GzDWнS@C wA@GzD@  - cone% surface%  ևL@ևL@? ?C;@GzDylTS@ <@GzD@  % ( )  -VbAR@:@GzD -w`-Z@]F@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  %11-1 %  * + , -   %  .  / 0 -   %   . 1 2   %  3 4  " - 5  edge% 6 7 80/>:u?  9 unknown -QbAR@? wA@GzDXbAR@@ wA@GzD@%%% %   %112362%% %  : %  % ; < =  > - -RнS@:@GzDylTS@C ->C;@GzD@  % ? @  -R4S@C ->C;@GzDylTS@ <@GzD@ ' -% %  ylTS@C ->C;@o_E8j@MLvԿ< t0p@ %%% %  %11-1 %  A B C D   %  E  F G   %   H I J   %  K L  - - M  % N O PViU?  Q unknown -{NA>Y@kAC@GzD@ -w`-Z@{]F@GzD@ %   R S   %  T U  0   % V W 8&Aޡh?  X unknown -VbAR@:@GzDWнS@? wA@GzD %  Y Z 2 -   % [ \ 7LAޡh? ] unknown -QbAR@:@GzD@WнS@C wA@GzD@ %  ^ ! Z _ - 5  %  ! ^ T ` - 5  % a 4 b -PbAR@? wA@GzDb$ܵ|R@YA@GzD@ c -%% %  d ".  vertex% e _ f % g " h straight% -curve%  QbAR@? wA@GzD@pfSG=ifS7=@ - -0/>:u?%%% %  $ %112363%% %  i %&  % j k M  l -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@  % m n % -RнS@:@GzDylTS@C ->C;@GzD@ > -% %  )ragR@ ۉƟ:@o_ELvԿ8j@M?<2N8=@@ %%% %  &%11-1 %  o p q r - &  %  s ) t u   %  ) v w x   %  L K ) D - M  % y z { iU? ) | unknown -zNA>Y@cAC@GzD -w`-Z@{]F@GzD %  } * ~    %  * G -  %  P os8cӼ? * unknown -N%k)pY@XzYF@GzD@NA>Y@|]F@GzD@ %  +   %  + J -  %   O8cӼ? + unknown -(Z@qDC@GzD@ -w`-Z@yAC@GzD@ %  C , - M  %  , C - M  %  K < -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@ l %% %  -2  %  -  %  -  ellipse% %  GzD@Qbr< -BL?v`-Z@wAC@=? - -ViU? %  n . S - =  %  W \0/>:u? . unknown -TнS@:@GzDTнS@:@GzD@ %  / 4 `   %  / q n  %% %  0/  %  % %  GzD?WнS@:@? - -&Aޡh? %  1   %  1 } 3 _  %% %  21  %  S % %  GzD@?WнS@:@? - -LAޡh? %  4 3 - 5  %   7HMBP? Z unknown -PbAR@? wA@GzD@_$ܵ|R@YA@GzD@ %  8 MBP? T unknown -XbAR@? wA@GzDb$ܵ|R@YA@GzD%%% %  5%11-1 %  5  c - -PbAR@? wA@GzDb$ܵ|R@YA@GzD@ % %  _$ܵ|R@YA@o_Ef8uN?бv.B k!=@ %%% %  6 "%1116476%% %  7L  -point%  QbAR@? wA@GzD@%% %  8M  %  XbAR@? wA@GzD%%% %  ; %%112364%% %  <'  %   - -N%k)pY@XzYF@GzDNA>Y@]F@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  =%11-1 %  R U - =  %  @ &  %  @ - &  %  U s @ r   %   (A&Y? q unknown -R4S@C ->C;@GzDylTS@ <@GzD %  q A   %  A u -  %  { >8cӼ? A unknown -SZ@}DC@GzD -w`-Z@kAC@GzD %  B   %  B x -  %   zu8cӼ? B unknown -N%k)pY@YzYF@GzDNA>Y@]F@GzD%% %  D;  %  x  %  % %  GzDJ6sY@s]F@=? - - iU? %  Z E   %  E  -  %   >T=?? E unknown -hR@!l!A@GzD@N%k)pY@YzYF@GzD@ %  w F L  %  F w  %  k -N%k)pY@XzYF@GzDNA>Y@]F@GzD@ -%% %  G3  %  % %  EmAX@n@6H@GzD@!;&Y:u? K unknown - -w`-Z@kAC@GzD -w`-Z@kAC@GzD@ %  P z0/>:u? L unknown -NA>Y@{]F@GzDNA>Y@{]F@GzD@%%% %  M%11-1%%% %  N -%1116480%% %  OP  %   -w`-Z@kAC@GzD@%% %  PQ  %  NA>Y@{]F@GzD@ %  R Y - = %% %  S0 % %  TнS@:@GzDifS7@@ - -0/>:u? %  v T   %   WMBP? U unknown -RнS@:@GzDylTS@C ->C;@GzD%%% %  V 0%1116477%% %  WN  %  TнS@:@GzD %  \ MBP? Y unknown -TнS@:@GzD@ylTS@C ->C;@GzD@%%% %  [ 2%1116479%% %  \O  %  TнS@:@GzD@ %  ^  %   0/>:u? unknown -_$ܵ|R@YA@GzD_$ܵ|R@YA@GzD@%% %  _6  %  _ % %  _$ܵ|R@YA@GzD@_Xy{#3+= - -HMBP?%% %  `@  %  % %  XbAR@? wA@GzD_@Xy{@^$3+ - -MBP?%% %  b+  %    - -R4S@ <@GzDVZ@DC@GzD@ %%% %  e 7%1120446%%% %  g 8%1120447%%% %  j <%112365%% %   k(  %     - -hR@!l!A@GzDN%k)pY@YzYF@GzD@ % %  EmAX@n@6H@o_E;f@;f@? ?@ -  %  n p =  %  p o - &  %  o -  %   0/>:u? o  unknown -R4S@ <@GzDR4S@ <@GzD@ %   0/>:u? p  unknown -ylTS@C ->C;@GzDylTS@C ->C;@GzD@%% %   r>  % - r  %  % %  R4S@ <@GzDS t@p - -(A&Y? %  s -  %   T=?? s  unknown -R4S@ <@GzDVZ@}DC@GzD%% %   u<  %  % %  EdZ@A@GzDRďtS]qk?6CD@? - ->8cӼ? %  v -  %   >T=?? v  unknown -hR@!l!A@GzDN%k)pY@YzYF@GzD%% %   xC  %  % %  EmAX@n@6H@GzDhgoFۍ?f8uN?ѱv. _? - -u8cӼ?%%% %  y D%1116489%% %   zX  %  NA>Y@{]F@GzD%% %   {Y  %   -w`-Z@kAC@GzD %   } -  %   z(A&Y? }  unknown -_$ܵ|R@!l!A@GzD@hR@YA@GzD@ %  ~ -  %  ~    %  -hR@!l!A@GzDN%k)pY@YzYF@GzD@  -%% %   4  % !  "% %  N%k)pY@YzYF@GzD@h)Tx - ->T=?? % #  0/>:u? $ unknown -N%k)pY@YzYF@GzDN%k)pY@YzYF@GzD@%%% %  %11-1%%% %  G%1116481%% %  % R  %  N%k)pY@YzYF@GzD@ % &  (A&Y? ' unknown -R4S@C ->C;@GzD@ylTS@ <@GzD@ %   % ( -R4S@ <@GzDVZ@DC@GzD@  -%% %  ) 9  % * +% %  R4S@ <@GzD@# @[w@ - -T=?? % ,  0/>:u? - unknown -VZ@}DC@GzDVZ@}DC@GzD@%%% %  %11-1 % .  - -(Z@qDC@GzD -w`-Z@yAC@GzD@ % %  EdZ@A@o_E;f@;f@? ?@ - %%% %  J%1116488%% %  / W  %  VZ@}DC@GzD@%% %  0 F % %   -w`-Z@kAC@GzD@@ - -0/>:u?%% %  1 G % %  NA>Y@{]F@GzD@@ - -0/>:u?%%% %  O%1120454%%% %  P%1120455%%% %  S%1116478 %   -  % 2  z(A&Y? 3 unknown -_$ܵ|R@!l!A@GzDhR@YA@GzD%% %  4 ? % %  ylTS@C ->C;@GzDBp t#3+= - -MBP?%%% %  W%1120449%% %  5 7  % 6 7% %  TнS@:@GzD@0p@ t@Rf䠶 - -MBP?%%% %  \%1120451 % 8  -_$ܵ|R@!l!A@GzDhR@YA@GzD@ 9 -%% %  : J % %  _$ܵ|R@YA@GzD@@ - -0/>:u?%%% %  _%1116484%% %  ; T  %  _$ܵ|R@YA@GzD@%%% %  `%1116494%% %  < ]  %  _$ܵ|R@YA@GzD%%% %  b%112369%% %  = , % %  R4S@ <@o_E HC׿XQDž?@@ %%% %  k%112366%% %  > )  % ? b  9 - -_$ܵ|R@!l!A@GzDhR@YA@GzD@ % %  N%k)pY@YzYF@o_EHCZ?bge;a@ %% %  @ D % %  R4S@ <@GzD@@ - -0/>:u?%% %  A E % %  ylTS@C ->C;@GzD@@ - -0/>:u?%%% %  r%1116492%% %  B [  %  R4S@ <@GzD%% %  C \  %  ylTS@C ->C;@GzD%% %  D = % %  VZ@}DC@GzD# [w - -T=??%%% %  u%1116490%% %  E Z  %  VZ@}DC@GzD%% %  F B  % G  H% %  hR@!l!A@GzDh@)Tx@#bP= - ->T=??%%% %  x%1116497%% %  I _  %  N%k)pY@YzYF@GzD%%% %  z%1120471%%% %  {%1120472 %   - %% %  J 5 % %  hR@!l!A@GzD@Дy{_@ - -z(A&Y? % K  0/>:u? L unknown -hR@!l!A@GzDhR@!l!A@GzD@%%% %  %11-1%%% %  %1116482%% %  M S  %  hR@!l!A@GzD@%% %  N H % %  N%k)pY@YzYF@GzD@@ - -0/>:u?%%% %  %1120457%% %  O 8 % %  ylTS@C ->C;@GzD@S tp@'cS[= - -(A&Y?%%% %  %11-1%%% %  %1116487%% %  P V  %  R4S@ <@GzD@%% %  Q K % %  VZ@}DC@GzD@@ - -0/>:u?%% %  R - %%% %  %1120468%%% %  %1116500%%% %  %1116501%% %  S A % %  _$ܵ|R@YA@GzDДy{@_ - -z(A&Y?%%% %  %1116493%%% %  %1116485%% %  T U  %  ylTS@C ->C;@GzD@%%% %  %11-1% %  hR@!l!A@o_Eбv.f8uNܿ<y{_@ %%% %  %1116504%%% %  %1120461%%% %  %1120481%%% %  %112370%%% %   %112367%% %  U * %%% %   %1116498%%% %   %1116499%%% %  - %1120476%%% %   %1120478%%% %   %1116491%%% %   %1120474%%% %   %1116496%% %  V ^  %  hR@!l!A@GzD%%% %   %1120485%%% %   %1116483%% %  W I % %  hR@!l!A@GzD@@ - -0/>:u?%%% %  ! %1120459%%% %  # %1116502%%% %  & %1116486%%% %  * %1120466%%% %  , %1116505%%% %  . %112371%%% %  2 %1116495%%% %  6 %1120464%%% %  ? %112368%%% %  G %1120483%%% %  K %1116503 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_80.setup/NativeGeometryFiles/0003233.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -_[=S@Ó0@GzD66@[@~@@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth42 lump%   -_[=S@Ó0@GzD66@[@~@@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111267 -shell%   -_[=S@Ó0@GzD66@[@~@@GzD@properties%  ansoft% %  -  Stator_Teeth42 %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[42] face%     - -_[=S@Ó0@GzDS@| 9@GzD@ %%% %    %111267%%% %   %6Stator_Teeth[42]id%% %     %      -_[=S@Ó0@GzD66@[@~@@GzD -8绿lWNjX loop%   -_[=S@Ó0@GzDS@| 9@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -S@Ó0@GzDS@Ó0@GzD@%%% %   %112386%% %  :   % ; < =  > -_[=S@Ó0@GzD@66@[@~@@GzD@ -lW?8?NjX % ? @  -^Z@<@@GzDCveHZ@~@@GzD@ ' -% %  EdZ@A@o_E;f@;f@? ?@ - %%% %  %11-1 %  A B C D -   %  E  F G   %   H I J   %  K L  - - M  % N O PiU?  Q unknown ->veHZ@2Zx9@GzD66@[@~@@GzD %   A R   %  S T  0 - =  % U 8 V/Aޡh?  W unknown -_[=S@Ó0@GzD@S@| 9@GzD@ %  C X 2   % Y 7 Z/Aޡh? [ unknown -_[=S@Ó0@GzDS@| 9@GzD %  \ ! X ] - 5  %  ! \ S ^ - 5  % _ 3 ` -S@Ó0@GzDCb T@c`0@GzD@ a -%% %  b "  vertex% c " d % e ^ f straight% -curve%  S@Ó0@GzD@@ - -0/>:u?%%% %  $ %112387%% %  g %  % h i j  k - -!|S@!k7@GzD8"S@ 2p9@GzD@  % l m % -_[=S@Ó0@GzD@66@[@~@@GzD@% %  %= ףp=Z@GzD@ar^?@@ %%% %  &%11-1 %  I n K o &  %  p ) . R -   %  ) p q r -   %  s 1 ) D   % t Z uMBP? C v unknown -_[=S@w 9@GzD!|S@ 2p9@GzD %  w * x y   %  z { * G - |  % } P ~I8cӼ? *  unknown -!tk#[@+9@GzD66@[@7Zx9@GzD %  + s   %  @ + J - &  %   Oˋ8cӼ? + unknown -^Z@<@@GzDCveHZ@~@@GzD %  , @ o - M  %  , z - M  %  K -=veHZ@2Zx9@GzD66@[@~@@GzD@ %% %  -  %  -  %  -  ellipse% %  GzDeF|olDUfв<>veHZ@~@@=? - -iU? %  V Z0/>:u? . unknown -_[=S@w 9@GzD_[=S@x 9@GzD@ %  / 4 ^ =  %  / p = %% %  0  %  R % %  GzD@?S@Ó0@? - -/Aޡh? %  1 w 3 ]  %% %  2  %  D % %  GzD?S@Ó0@? - -/Aޡh? %  4 3 5  %   7䫣MBP? X unknown -S@Ó0@GzDCb T@]`0@GzD %  8 䫣MBP? S unknown -S@Ó0@GzD@Cb T@c`0@GzD@%%% %  5%11-1 %  5  a - -S@Ó0@GzDCb T@c`0@GzD@ % %  [S@\֊l0@o_Ei<ȿ\ϗb?@@ %%% %  6 "%1116536%% %  7  -point%  S@Ó0@GzD%% %  8  %  S@Ó0@GzD@%%% %  ; %%112388%% %  <  %   - -8"S@#k7@GzD^Z@@@@GzD@  %  < -!|S@!k7@GzD8"S@ 2p9@GzD@ k -% %  8"S@#k7@o_E8j@MLvԿ< t0p@ %%% %  =%11-1 %  =  %  @ - &  %   O0/>:u? @ unknown -CveHZ@~@@GzDCveHZ@~@@GzD@ %  B A T -   %  B r j  %  u 0/>:u? B unknown -!|S@ 2p9@GzD!|S@ 2p9@GzD@ %  H C  %% %  D  %  D % %  _[=S@w 9@GzD9p@ t@#3+ - -MBP? %  X E   %  E y -  %  ~ T=?? E unknown -nS@- -r2@GzD!tk#[@+9@GzD %  F L |  %  F - |  %  z -!tk#[@+9@GzD66@[@7Zx9@GzD@ -%% %  G  %  G % %  ۠U[@2,Ǩ5@GzDYirya&RA?) )jտ*[I@ D9? - -I8cӼ? %  H -  %   NT=?? H unknown -8"S@#k7@GzD^Z@@@@GzD %  n I & %% %  J  %  % %  EdZ@A@GzDq8:?>v?8j@MP? - -ˋ8cӼ? %  L K m - M  %  P 0/>:u? L unknown -66@[@2Zx9@GzD66@[@2Zx9@GzD@%%% %  M%11-1 %  M  -=veHZ@2Zx9@GzD66@[@~@@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  N -%1116540%% %  O  %  CveHZ@~@@GzD%% %  P  %  66@[@2Zx9@GzD%% %  R % %  _[=S@w 9@GzD@ifS'=@ - -0/>:u? %  S =  %  T =  %   VMBP? p unknown -_[=S@r 9@GzD@!|S@ 2p9@GzD@%%% %  U 0%1116537%% %  V  %  _[=S@w 9@GzD@%%% %  Y 2%1116539%% %  Z  %  _[=S@w 9@GzD %  \ -  %   0/>:u? unknown -Cb T@]`0@GzDCb T@]`0@GzD@%% %  ]  %  % %  Cb T@]`0@GzDAH,bh$3+= - -䫣MBP?%% %  ^  %  ^ % %  S@Ó0@GzD@AH@,bh@cRf䠶 - -䫣MBP?%% %  `  %   - -nS@- -r2@GzD!tk#[@+9@GzD@ %%% %  c 7%1120546%%% %  e 8%1120547%%% %  h <%112389%% %  i  %  `  - -nS@[`0@GzDCb T@/- -r2@GzD@  %  i -8"S@#k7@GzD^Z@@@@GzD@ -% %  ^Z@@@@o_E*%dw?/@ %%% %  j%11-1 %  q s - j  %  m n =  %  m =  %   iU? m unknown -=veHZ@2Zx9@GzD@66@[@~@@GzD@ %   "S8cӼ? n unknown -^Z@@@@GzD@CveHZ@~@@GzD@%% %  o  %  % %  CveHZ@~@@GzD@@ - -0/>:u? %  q - j %% %   r  %  r % %  !|S@ 2p9@GzD@@ - -0/>:u? %  u B(A&Y? s  unknown -!|S@!k7@GzD8"S@ 2p9@GzD%%% %  t D%1116545%% %   u  %  !|S@ 2p9@GzD %   w -  %   (A&Y? w  unknown -nS@[`0@GzDCb T@-- -r2@GzD %   x {  %  x   - -  %  x -nS@- -r2@GzD!tk#[@+9@GzD@ -%% %   y  %  % %  !tk#[@+9@GzDygL ތjn - -T=?? %  { z - |  %  ~ 0/>:u?  unknown -!tk#[@+9@GzD!tk#[@+9@GzD@%%% %  |%11-1 %  |  - -!tk#[@+9@GzD66@[@7Zx9@GzD@ % %  ۠U[@2,Ǩ5@o_E;f@;f@? ?@ - %%% %  } G%1116541%% %   ~  %  !tk#[@+9@GzD %     %   - %% %     %  % %  8"S@#k7@GzDn@@Ḱq@ - -NT=?? %   0/>:u?  unknown -^Z@@@@GzD^Z@@@@GzD@%%% %  J%1116548%% %     %  ^Z@@@@GzD%% %     %  % %  66@[@2Zx9@GzD@@ - -0/>:u?%% %    %%% %  O%1120554%%% %  P%1120555%%% %  R%1116538 %    =  %   -  % !  "(A&Y? # unknown -nS@]`0@GzD@Cb T@/- -r2@GzD@ %   $ =  % % & B(A&Y? ' unknown -!|S@#k7@GzD@8"S@ 2p9@GzD@%% %  (  % %  !|S@ 2p9@GzD@0p tRf䠶= - -MBP?%%% %  V%1120549%%% %  Z%1120551 % ) -nS@[`0@GzDCb T@/- -r2@GzD@ -%% %  *  % %  Cb T@]`0@GzD@@ - -0/>:u?%%% %  ]%1116544%% %  +   %  Cb T@]`0@GzD%%% %  ^%1116557%% %  ,   %  Cb T@]`0@GzD@%%% %  `%112392%% %  -  % %  nS@-- -r2@o_EPϿؒh?@@ %%% %  i%112390%% %  .  % %  Cb T@]`0@o_E\ϗbi<ȿ,bhAH@ %%% %  %11-1 %   - j  % /  j8cӼ? 0 unknown -!tk#[@+9@GzD@66@[@6Zx9@GzD@%% %  1  % %  GzD@K[YGjؽd?66@[@=Zx9@=? - -iU?%% %  2   % 3 $ 4% %  EdZ@A@GzD@VFg<.<A]@?O? ? - -"S8cӼ?%%% %  o%1116551%% %  5   %  CveHZ@~@@GzD@%%% %  r%1116550%% %  6   %  !|S@ 2p9@GzD@%% %  7  % %  !|S@ 2p9@GzDh t@p - -B(A&Y?%%% %  u%1120564 %  - %% %  8  % %  nS@-- -r2@GzDH+bh@AH - -(A&Y? %   -  % 9  "0/>:u?  : unknown -nS@-- -r2@GzDnS@-- -r2@GzD@%%% %  %11-1%%% %  y%1116542%% %  ;   %  nS@-- -r2@GzD%% %  <   % = >% %  !tk#[@+9@GzD@@ - -0/>:u?%% %  ?  %%% %  ~%1120557 %  $ -  % @  &0/>:u? A unknown -8"S@#k7@GzD8"S@#k7@GzD@%%% %  %1116547%% %  B   %  8"S@#k7@GzD%% %  C  % %  ^Z@@@@GzD@@ - -0/>:u?%%% %  %1120568%%% %  %1116565%% %  D   %  66@[@2Zx9@GzD@%%% %  %112394 % E " T=?? F unknown -nS@-- -r2@GzD@!tk#[@+9@GzD@%% %  G   % H I% %  Cb T@]`0@GzD@H+bhAH@ - -(A&Y? % J  &NT=?? K unknown -8"S@#k7@GzD@^Z@@@@GzD@%% %  L   % M $ N% %  8"S@#k7@GzD@h tp@ - -B(A&Y?%%% %  %1116549%%% %  %11-1%%% %  %1116563%%% %  %1120561%%% %  %1120584%%% %  %112393%%% %  %112391%% %  O  % %  ۠U[@2,Ǩ5@GzD@[6}4<$):u?%%% %   %1120559%%% %   %1116564%% %  R   %  !tk#[@+9@GzD@%%% %   %112395%% %  S  % %  8"S@#k7@GzD@@ - -0/>:u?%%% %   %1120566%%% %   %1116552%%% %   %1120579%% %  T  % %  nS@-- -r2@GzD@ygL@ ތjn@ - -T=??%%% %  ! %1116558%% %  U "  %  nS@-- -r2@GzD@%% %  V $ % %  ^Z@@@@GzD@n@Ḱq!b` - -NT=??%%% %  % %1116556%% %  W &  %  8"S@#k7@GzD@%%% %  / %1116560%%% %  3 %1120576%%% %  9 -%1116562%%% %  = %1120588%%% %  @ %1116561%%% %  E %1116559%%% %  H "%1120586%%% %  J $%1116555%%% %  M &%1120581 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_80.setup/NativeGeometryFiles/0005330.sab -BIN000000010112 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -V#M@^ @33333DB9R@!l7@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Magnet1 lump%   -V#M@^ @33333DB9R@!l7@33333D@ transform% ???? rgb_color% st% - %    ??? -shell%    -V#M@^ @33333DB9R@!l7@33333D@properties%  ansoft% %   Magnet1 face%  -  - -V#M@^ @33333DB9R@!l7@33333D -V#M@B9R@^ @!l7@id%% %   %     -V#M@^ @33333D@B9R@!l7@33333D@ -V#M@B9R@^ @!l7@ loop%    -V#M@^ @33333DB9R@!l7@33333D -plane% surface%  33333D?? %% %   %      -V#M@U53@33333Dn{O@!l7@33333D@  %   -V#M@^ @33333D@B9R@!l7@33333D@% %  33333D@??  coedge%      - %% %   %      -V#M@^ @33333D9#Q@U53@33333D@  %   -V#M@U53@33333Dn{O@!l7@33333D@% %   - N@?a5@[Sٺژ??  %    ! -   %  "  # $ -  %   " % & -  %  ' (   -   edge% ) *tN#;@ +J@@  , unknown -V#M@U53@33333Dn{O@!l7@33333D%% %   % - . /  0 -9#Q@^ @33333DB9R@0na*@33333D@  %  %  -V#M@^ @33333D9#Q@U53@33333D@% %  1TP@w(^>+@ٺژWS?  %  1  2 3 -   %   1 4 5 -   %  ( '  !   % 6 7tN#;@ 8J@@  9 unknown -V#M@U53@33333D@n{O@!l7@33333D@ %    : ; -  %  < =  $ - >  % ? +B/g.@ @"3q?@  A unknown -m{O@*na*@33333DB9R@!l7@33333D %  B C  & -   % D E 3q7 *_  F unknown -V#M@^ @33333D9#Q@U53@33333D %   C G -   %   < H -  %% %   vertex% I  J % K $ L straight% -curve%  fD@&C,33333Dٺژ?[S? %% %   % M >  N -m{O@*na*@33333DB9R@!l7@33333D@  %  :  -9#Q@^ @33333DB9R@0na*@33333D@% %  |~ZR@%@\S? ٺژ  %    O P -   %  C B  3   % Q R 3q7 7_  S unknown -V#M@^ @33333D@9#Q@U53@33333D@ %  = <  5 >  % T 8B/g.@ U"3q?@  V unknown -m{O@*na*@33333D@B9R@!l7@33333D@%% %  ! % W 3 X % Y ! Z% %  fD@&C,33333D@ٺژ?[S?  %  [ \ " ; - /  % ] @ K$a> EF C7 " ^ unknown -9#Q@^ @33333DB9R@0na*@33333D %  4 # ( H >  %  # 4 [ _ - >  %  # . -m{O@*na*@33333DB9R@!l7@33333D@%% %  $ % ` ; a% %  k -Pf3J@ٽڼ4A@33333DWS?ٺژ  %  2 % \ b -   %  % 2 ' G  %% %  & % c & d% %  `W6J@N*4,;8@33333DWSٺژ?  % e 733333T * C f unknown -V#M@U53@33333DV#M@U53@33333D@ % g +33333T 8 < h unknown -n{O@!l7@33333Dn{O@!l7@33333D@%% %  * -point%  V#M@U53@33333D%% %  + %  n{O@!l7@33333D%% %  .% %  ElQ@f 62@ٺژ?WS?  %  \ [ 1 P /  % i U K$a> RF C7 1 j unknown -9#Q@^ @33333D@B9R@0na*@33333D@%% %  3 % k P l% %  `W6J@N*4,;8@33333D@WSٺژ? %% %  5 % m 5 n% %  k -Pf3J@ٽڼ4A@33333D@WS?ٺژ %% %  7 %  V#M@U53@33333D@%% %  8 %  n{O@!l7@33333D@ %  O : = _ /  %  : O B b / %% %  ;% %  RiK@s"33333D ٺژ\S  % o @33333T U [ p unknown -B9R@0na*@33333DB9R@0na*@33333D@%% %  @ %  B9R@0na*@33333D % q R33333T E \ r unknown -9#Q@^ @33333D9#Q@^ @33333D@%% %  E %  9#Q@^ @33333D%% %  G% %  V#M@U53@33333D -K. -UG~@%% %  H% %  n{O@!l7@33333D@? -K. -UG~@%% %  P% %  RiK@s"33333D@ ٺژ\S %% %  R %  9#Q@^ @33333D@%% %  U %  B9R@0na*@33333D@%% %  _% %  B9R@0na*@33333D@? -K. -UG~@%% %  b% %  9#Q@^ @33333D -K. -UG~@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 9287 -$end 'sab' -$begin 'sab' -Design_80.setup/NativeGeometryFiles/0005358.sab -BIN000000004351 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -)\K)\K33333D)\K@)\K@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Shaft lump%   -)\K)\K33333D)\K@)\K@33333D@ transform% ???? rgb_color% st% - %    ?properties%  ansoft% %  Shaft -shell%    -)\K)\K33333D)\K@)\K@33333D@% % %   Shaft face%  -  - -)\K)\K33333D)\K@)\K@33333D id%% %   %      -)\K)\K33333D@)\K@)\K@33333D@  loop%    -)\K)\K33333D)\K@)\K@33333D -plane% surface%  33333D?? %% %  - %     -)\K)\K33333D)\K@)\K@33333D@  %   - -)\K)\K33333D@)\K@)\K@33333D@% %  33333D@??  coedge%      %% %   %     -)\K)\K33333D)\K@)\K@33333D   cone% %  ̣alK@4&@? ?(\K@  %      -   %      -   edge%  hs-8R? @   unknown -)\K)\K33333D)\K@)\K@33333D %    -)\K)\K33333D@)\K@)\K@33333D@   %        %  hs-8R? @  unknown -)\K)\K33333D@)\K@)\K@33333D@%% %   vertex% !  " ellipse% -curve%  33333ḌalK@4&@? %% %   % #  $% %  33333D@̣alK@4&@? %% %   -point%  (\K@33333D%% %   %  (\K@33333D@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 3526 -$end 'sab' -$begin 'sab' -Design_80.setup/NativeGeometryFiles/0005367.sab -BIN000000010112 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -yK@7ػ%<@33333D5tdO@h5F@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Magnet2 lump%   -yK@7ػ%<@33333D5tdO@h5F@33333D@ transform% ???? rgb_color% st% - %    ??? -shell%    -yK@7ػ%<@33333D5tdO@h5F@33333D@properties%  ansoft% %   Magnet2 face%  -  - -yK@7ػ%<@33333D5tdO@h5F@33333D -yK@5tdO@7ػ%<@h5F@id%% %   %     -yK@7ػ%<@33333D@5tdO@h5F@33333D@ -yK@5tdO@7ػ%<@h5F@ loop%    -yK@7ػ%<@33333D5tdO@h5F@33333D -plane% surface%  33333D?? %% %   %      -L(L@؂F@33333D5tdO@h5F@33333D@  %   -yK@7ػ%<@33333D@5tdO@h5F@33333D@% %  33333D@??  coedge%      - %% %   %      -yK@D$o<@33333DL(L@h5F@33333D@  %   -L(L@؂F@33333D5tdO@h5F@33333D@% %  lM@9mN#F@Q4<Φ???  %    ! -   %  "  # $ -  %   " % & -  %  ' (   -   edge% ) *tN#;@ +J@@  , unknown -L(L@؂F@33333D5tdO@h5F@33333D%% %   % - . /  0 -yK@7ػ%<@33333Dz\ O@F$o<@33333D@  %  %  -yK@D$o<@33333DL(L@h5F@33333D@% %  o K@։6B@￈Q4<Φ??  %  1  2 3 -   %   1 4 5 -   %  ( '  !   % 6 7tN#;@ 8J@@  9 unknown -L(L@؂F@33333D@5tdO@h5F@33333D@ %    : ; -  %  < =  $ - >  % ? + 3q7 @_  A unknown -y\ O@7ػ%<@33333D5tdO@؂F@33333D %  B C  & -   % D E?/g.@ *#3q?@  F unknown -yK@D$o<@33333DL(L@h5F@33333D %   C G -   %   < H -  %% %   vertex% I  J % K $ L straight% -curve%  Fl3=@a0\)F@33333D?Q4<Φ %% %   % M >  N -y\ O@7ػ%<@33333D5tdO@؂F@33333D@  %  :  -yK@7ػ%<@33333Dz\ O@F$o<@33333D@% %    % T 8 3q7 U_  V unknown -y\ O@7ػ%<@33333D@5tdO@؂F@33333D@%% %  ! % W 3 X % Y ! Z% %  Fl3=@a0\)F@33333D@?Q4<Φ  %  [ \ " ; - /  % ] @ K$a> EE C7 " ^ unknown -yK@7ػ%<@33333Dz\ O@F$o<@33333D %  4 # ( H >  %  # 4 [ _ - >  %  # . -y\ O@7ػ%<@33333D5tdO@؂F@33333D@%% %  $ % ` ; a% %  nX\2N@RRl4@33333DQ4<Φ  %  2 % \ b -   %  % 2 ' G  %% %  & % c & d% %  ,ftK@h1*@33333DQ4<Φ??  % e 733333T * C f unknown -L(L@h5F@33333DL(L@h5F@33333D@ % g +33333T 8 < h unknown -5tdO@؂F@33333D5tdO@؂F@33333D@%% %  * - -point%  L(L@h5F@33333D%% %  +  %  5tdO@؂F@33333D%% %  .% %  Io7O@2aϾB@?Q4<Φ  %  \ [ 1 P /  % i U K$a> RE C7 1 j unknown -yK@7ػ%<@33333D@z\ O@F$o<@33333D@%% %  3 % k P l% %  ,ftK@h1*@33333D@Q4<Φ?? %% %  5 % m 5 n% %  nX\2N@RRl4@33333D@Q4<Φ %% %  7 %  L(L@h5F@33333D@%% %  8 %  5tdO@؂F@33333D@ %  O : = _ /  %  : O B b / %% %  ;% %  =+?@OY%=@33333DQ4<Φ?  % o @33333T U [ p unknown -z\ O@7ػ%<@33333Dz\ O@7ػ%<@33333D@%% %  @  %  z\ O@7ػ%<@33333D % q R33333T E \ r unknown -yK@D$o<@33333DyK@D$o<@33333D@%% %  E  %  yK@D$o<@33333D%% %  G% %  L(L@h5F@33333D -x-إ -$.{@%% %  H% %  5tdO@؂F@33333D@? -x-إ -$.{@%% %  P% %  =+?@OY%=@33333D@Q4<Φ? %% %  R %  yK@D$o<@33333D@%% %  U %  z\ O@7ػ%<@33333D@%% %  _ % %  z\ O@7ػ%<@33333D@? -x-إ -$.{@%% %  b% %  yK@D$o<@33333D -x-إ -$.{@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 9287 -$end 'sab' -$begin 'sab' -Design_80.setup/NativeGeometryFiles/0005395.sab -BIN000000260756 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     - T T33333D T@ T@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Rotor lump%   - T T33333D T@ T@33333D@ transform% ???? rgb_color% st% - %    ???properties%  ansoft% %  Rotor@ -shell%    - T T33333D T@ T@33333D@% % %   Rotor@ face%  -  -9#Q@*rOr#33333D\BېR@^ 33333D@ id%% %   %      -\BېR@*rOr#33333DH=,R@33333D@  loop%    -9#Q@*rOr#33333D\BېR@^ 33333D@ -plane% surface%  N>Q@L{F""]S ٺژ %% %  - %      -H=,R@033333DH=,S@33333D@  %   - -\BېR@*rOr#33333DH=,R@33333D@% %  ҿzR@b' ٺژ?S  coedge%      %% %   %      -N7*|S@Hv&33333DH=,S@033333D@  %    -H=,R@033333DH=,S@33333D@% %  H=,:S@  %  ! " #   %  $  ! %  %   $ & ' -  %  ( "   - )  edge% * +tN#;@ ,bb<@  - unknown -9#Q@*rOr#33333D\BېR@^ 33333D%% %   % . / 0  1 -DsYN@Մ933333DN7*|S@v&33333D@  %  2  -N7*|S@Hv&33333DH=,S@033333D@% %  $$S@0 "^$ᅩt߈]??  %  3 4 5 6   %  7  4 8 -   %   7  % -   %   5  # - )  % 9 , : m,#@ " ; unknown -\BېR@*rOr#33333DH=,R@33333D %    < = -  % > ,33333T ?  @ unknown -\BېR@*rOr#33333D\BېR@*rOr#33333D@ %  A B  ' C  % D +33333T E & F unknown -9#Q@^ 33333D9#Q@^ 33333D@ %  G  B H - )  %  I  J -yK@ ?I33333DH=,S@33333D K -%% %   vertex% L H M % N  O straight% -curve%  tJ@4Fݿ;'@33333Dٺژ?YS %% %   % P Q R  S -EsYN@|lޥG33333DT9vO@Մ933333D@  %  T  -DsYN@Մ933333DN7*|S@v&33333D@% %  ox|Q@]I#\2ٺژS??  %  U V W X   %  Y  V Z -   %   Y 8   %  " W  6 - )  % [ : \ @ 5 ] unknown -H=,R@033333DH=,S@33333D %  ! ^ _ -   % ` a33333T : 4 b unknown -H=,R@33333DH=,R@33333D@%% %  # % c # d% %  \BېR@*rOr#33333DS?ٺژ?  %  ^ e $ = f  % g EtN#;@ ?bb<@ < h unknown -9#Q@*rOr#33333D@\BېR@^ 33333D@%% %  % % i _ j% %  \BېR@*rOr#33333D@? -9 X -ӤJ@ %  k & e l - C  %  & k ( H C  %  B m -T#M@U5333333D9#Q@^ 33333D@%% %  ' % n = o% %  9#Q@^ 33333D@? -9 X -ӤJ@ %  p ( q r - )  % s t?/g.@ +#3q?@ ( u unknown -T#M@U5333333D9#Q@^ 33333D %  v w J -@H=,S33333D ?I@yK33333D K - % x y z  K - - T T33333D T@ T@33333D % %  EJN@!V9@33333D?? %% %  +< -point%  9#Q@^ 33333D%% %  ,= %  \BېR@*rOr#33333D%% %  / % { | }  ~ -JwC2N@ ?I33333DT9vO@|lޥG33333D@  %   / -EsYN@|lޥG33333DT9vO@Մ933333D@% %  j9O@k/=BO4<Φ?  %  0  %  2 -   %  2 3 Z   %  5 2 X - )  %  \ R@ W unknown -N7*|S@Hv&33333DH=,S@033333D %  4 3 -   %  33333T \ V unknown -H=,S@033333DH=,S@033333D@%% %  6 %  6 % %  H=,R@33333D?  %  < 7 _ f  %  ? a m,#@ ^ unknown -\BېR@*rOr#33333D@H=,R@33333D@%% %  8 %  % %  H=,R@33333D -9 X -ӤJ@%% %  :@ %  H=,R@33333D %  < A l f  %  < y -yK@ ?I33333D@H=,S@33333D@ %% %  =% %  tJ@4Fݿ;'@33333D@ٺژ?YS %% %  ?> %  \BېR@*rOr#33333D@ %  B A - C  %  ?/g.@ E#3q?@ e unknown -T#M@U5333333D@9#Q@^ 33333D@ %  C  -T#M@U5333333D9#Q@^ 33333D@ %% %  E? %  9#Q@^ 33333D@ %  G - )  %  G r  %  9 tE C7 G unknown -T#M@Or433333D/ ON@U5333333D%% %  H %  r % %  RGmH@b=33333DYS?ٺژ?  %  J - ?IH=,S33333DyK33333D K - %  - I %% %  J %   - T T33333D@ T@ T@33333D@  %  ) J - T T33333D T@ T@33333D K -%% %  Q %   -| -"M@ ?I33333DJwC2N@ d/H33333D@  %  Q -JwC2N@ ?I33333DT9vO@|lޥG33333D@% %  qBN@绥rHMidLp.??  %  R  %  T - 0  %  T U 0  %  W T - )  %  *3 \h@ unknown -DsYN@Մ933333DN7*|S@v&33333D %  V U -   %  33333T  unknown -N7*|S@Hv&33333DN7*|S@Hv&33333D@%% %  X %  X % %  H=,S@033333Dt߈]^$  %  ^ Y f  %  a  @ unknown -H=,R@033333D@H=,S@33333D@%% %  Z %  % %  H=,S@033333D -9 X -ӤJ@%% %  \B %  H=,S@033333D%% %  _% %  \BېR@*rOr#33333D@S?ٺژ? %% %  aA %  H=,R@33333D@ %  e f  %  y -@H=,S33333D@ ?I@yK33333D@ % %  EJN@!V9@33333D@??  %  q k  %  t33333T  unknown -T#M@U5333333DT#M@U5333333D@%% %  l %  l % %  RGmH@b=33333D@YS?ٺژ? %% %  m$ %   -Rz~+F@ܵ M33333Dh5F@L(L33333D@ % %  0TP@~(^>+ٺژ?YS  %  p - )  %  p  %   2@ p unknown -kS,62M@KXv3633333D/ ON@Kr433333D %  q  %  q -T#M@Or433333D/ ON@U5333333D@%% %  r %  % %  :w逥E@oy)*33333D ٺژ\S? %% %  t\ %  T#M@U5333333D %  J -H=,S ?I33333DyK33333D K - %  - v  %  w - I  %  w - I  %  w  %  tN#;@ bb<@ w unknown -Rz~+F@ܵ M33333Dh5F@L(L33333D%% %  y %   -L(L@Tz~+F@33333Dܵ M@h5F@33333D@  %  f y -,\K&\K33333D@$\K@*\K@33333D@  %  z %% %  | %      -ܵ M@ d/H33333D| -"M@Rz~+F33333D@  %   | -| -"M@ ?I33333DJwC2N@ d/H33333D@% %  M@tw]H;f?;f??  %      }  %      - R  %    R  %    - )  % -  {2 W @  unknown -EsYN@|lޥG33333DT9vO@Մ933333D %    - 0  %  33333T   unknown -EsYN@Մ933333DEsYN@Մ933333D@%% %   %  % %  j{O@0l733333DS翍ٺژ  %   f  %   R@  unknown -N7*|S@Hv&33333D@H=,S@033333D@%% %   %   % %  N7*|S@Hv&33333D -9 X -ӤJ@%% %  D %  N7*|S@Hv&33333D%% %  % %  H=,R@33333D@? %% %  C %  H=,S@033333D@ %     f  %  -  %  9 E C7  unknown -T#M@Or433333D@/ ON@U5333333D@ %    y - ?IH=,S33333D@yK33333D@  %   ! " # %% %  % %  T#M@U5333333D@? -9 X -ӤJ@%% %  ] %  T#M@U5333333D@%% %  % % $ % &  ' -Xz~+F@| -"M33333D d/H@ܵ M33333D@  %  -Rz~+F@ܵ M33333Dh5F@L(L33333D@% %  0F@_Ĕ"LR4<Φ?  %  ( ) * - )  %  + , -  % . / @ 0 unknown -hkBL@DU933333DkS,62M@KXv3633333D %   -  %   + 1  %  2 -kS,62M@KXv3633333D/ ON@Kr433333D@%% %   % 3 4% %  kS,62M@KXv3633333DS?cٺژ?  % 5 33333T  6 unknown -/ ON@Kr433333D/ ON@Kr433333D@ % 7 m  8 -T#M@Or433333D/ ON@U5333333D@ %% %  Z %  / ON@Kr433333D %  9 : J -H=,S@33333DyK ?I@33333D K - %  ; < = > -  %  ? @ A - v  %  B C D - v  %  E F G  % H ItN#;@ Jbb<@ K unknown -*rOr#\BېR33333D^ 9#Q33333D %  L M N - I  %  O P Q  % R S?/g.@ #3q?@ T unknown -A$o<@L(L33333Dh5F@yK33333D %  U V W - I  %  X Y &  % Z  [ m,#@ \ unknown -Xz~+F@| -"M33333D d/H@ܵ M33333D %  " Y ]  %  " O ^ - %% %   % _ ` % a b% %  `0\)F@Fl3=33333DR4<Φ %% %   % c d e  f -ܵ M@Zz~+F@33333D| -"M@d/H@33333D@  %  g -L(L@Tz~+F@33333Dܵ M@h5F@33333D@% %  ^Ĕ"L@g0F@Q4<Φ  %  h i  %  - j  % k l -DT!? l`8U)zj@ m unknown - T T33333D T@ T@33333D%% %   % n o p  q -L(L@h5F33333Dܵ M@Rz~+F33333D@  %  r -ܵ M@ d/H33333D| -"M@Rz~+F33333D@% %  ޵,`;M@0?\q-G?V4<Φ?  %  s t u v  %  w t x - }  %  w  }  %  u  - )  % y  zR@  { unknown -JwC2N@ ?I33333DT9vO@|lޥG33333D %  | } - R  % ~ 33333T    unknown -T9vO@|lޥG33333DT9vO@|lޥG33333D@%% %   %  % %  5tdO@؂F33333DO4<Φ?  %  |  f  %  *3 \h@   unknown -DsYN@Մ933333D@N7*|S@v&33333D@%% %   %  } % %  EsYN@Մ933333D -9 X -ӤJ@%% %  F %  EsYN@Մ933333D%% %  % %  H=,S@033333D@t߈]^$ %% %  E %  N7*|S@Hv&33333D@ %     f  %   -  %   2@  unknown -kS,62M@KXv3633333D@/ ON@Kr433333D@%% %   %  % %  :w逥E@oy)*33333D@ ٺژ\S?  %    y -H=,S ?I33333D@yK33333D@  %       %      %      %  # -  %  tN#;@ bb<@  unknown -Rz~+F@ܵ M33333D@h5F@L(L33333D@%% %  & %      - d/H@JwC2N33333D ?I@| -"M33333D@  %  -Xz~+F@| -"M33333D d/H@ܵ M33333D@% %  2?\q-G@,`;MF4<Φ  %     - )  %    *   %   /32@  unknown -hkBL@S[<33333DXŁL@DU933333D %   1 - -  %     -  %   -hkBL@DU933333DkS,62M@KXv3633333D@%% %   %  * % %  hkBL@DU933333D -}?2k?  %  33333T   unknown -kS,62M@KXv3633333DkS,62M@KXv3633333D@ %    -kS,62M@KXv3633333D/ ON@Kr433333D@ %% %  X %  kS,62M@KXv3633333D%% %  % %  / ON@Kr433333D -9 X -ӤJ@%% %  #% %  .'QN@fu3\S? ٺژ??  %    J - ?IyK@33333DH=,S@33333D K - %      -  %     -  %     -  %    >   %  tN#;@ bb<@  unknown -ܵ Mh5F33333DL(LRz~+F33333D %     - v  %    A   %  ?/g.@ I#3q?@  unknown -U539#Q33333D^ U#M33333D %     - v  %    D   %  J  m,#@  unknown -*rOr#H=,R33333D\BېR33333D %     G  %     - G  %   -*rOr#\BېR33333D^ 9#Q33333D@%% %   %  A  %  % %  8Fݿ;'@tJ33333DYS ٺژ  %     - I  %    N   %  9 SE C7  unknown -S[<@ZŁL33333DC$o<@yK33333D %   ^ Q  %     - Q  %   -A$o<@L(L33333Dh5F@yK33333D@%% %   %  N % %  h1*@,ftK33333D?Q4<Φ  %     - I  %    W   %  [  @  unknown - d/H@JwC2N33333D ?I@| -"M33333D %     - &  %   ] - & %% %   %  % %  Xz~+F@ܵ M33333D?F4<Φ  %  33333T   unknown -Xz~+F@ܵ M33333DXz~+F@ܵ M33333D@ %  33333T  O  unknown -h5F@L(L33333Dh5F@L(L33333D@%% %  ^ %  h5F@L(L33333D%% %  _ %  Xz~+F@ܵ M33333D%% %   %      -| -"M@d/H@33333DJwC2N@ ?I@33333D@  %   -ܵ M@Zz~+F@33333D| -"M@d/H@33333D@% %  ,`;M@4?\q-G@?sF4<Φ  %       %  h h i -   %  -DT!? ^8U)zj@  unknown -,\K&\K33333D@$\K@*\K@33333D@ %   - T T33333D T@ T@33333D - %% %   %   ellipse% %  8==33333D -qZL@ -qZL@? %% %   %      -yK@h5F33333DL(L@I$o<33333D@  %    -L(L@h5F33333Dܵ M@Rz~+F33333D@% %  VĔ"L@𽇀0FQ4<Φ??  %        %      -  %     x  %     v - )  %  z @ u  unknown -| -"M@ ?I33333DJwC2N@ d/H33333D %      - }  %  33333T z t  unknown -JwC2N@ ?I33333DJwC2N@ ?I33333D@%% %   %   !% %  T9vO@|lޥG33333DLp.Mid  %     } f  % "  {2 W @ | # unknown -EsYN@|lޥG33333D@T9vO@Մ933333D@%% %   % $  %% %  T9vO@|lޥG33333D -9 X -ӤJ@%% %  H %  T9vO@|lޥG33333D%% %  % %  j{O@0l733333D@S翍ٺژ %% %  G %  EsYN@Մ933333D@ %   & ' ( f  %  , +   - -  % ) * @  + unknown -hkBL@DU933333D@kS,62M@KXv3633333D@%% %   % ,  -% %  kS,62M@KXv3633333D@S?cٺژ? %% %  [ %  / ON@Kr433333D@ %  . / y -H=,S@33333D@yK ?I@33333D@  %  0 1 2 3   %  4  5 6  %   7 8 9  %  F E   - G  % : ;tN#;@ <bb<@  = unknown -*rOr#\BېR33333D@^ 9#Q33333D@ %  >  ? @  %  Y X   - &  % A  B m,#@  C unknown -Xz~+F@| -"M33333D@ d/H@ܵ M33333D@ %  ! D E F  %  P O !  - Q  % G H?/g.@ #3q?@ ! I unknown -A$o<@L(L33333D@h5F@yK33333D@%% %  # % J # K % L  M% %  `0\)F@Fl3=33333D@R4<Φ %% %  %' % N O P  Q -|lޥG@T9vO33333D ?I@JwC2N33333D@  %  V % - d/H@JwC2N33333D ?I@| -"M33333D@% %  pw]H@Mc<f6;f  %  R ( S T - )  %  U V (  W  % X YtN#;@ bb<@ ( Z unknown -yK@I$o<33333DYŁL@S[<33333D %  ' ) ,  -   %  ) ' U [   %  ) \ -hkBL@S[<33333DXŁL@DU933333D@%% %  * % ]  ^% %  XŁL@S[<33333D^X4<Φ?  % _ *33333T / , ` unknown -hkBL@DU933333DhkBL@DU933333D@ % a 2 -  b -hkBL@DU933333DkS,62M@KXv3633333D@ %% %  /V %  hkBL@DU933333D%% %  1% %  kS,62M@KXv3633333D -9 X -ӤJ@%% %  2"% %  M@95hٺژ?S  %  c d J -@yK@33333D ?I@H=,S@33333D K - %  e f g h - 9  %  i : j k -  %  : l m n -  %  o p :  q  % r stN#;@ tbb<@ : u unknown -\BېR^ @33333D9#Q*rOr#@33333D %  v ; w x -  %  y z ;  {  % | }?/g.@ #3q?@ ; ~ unknown -L(Lh5F33333DyKB$o<33333D %  <    -  %    <    %    m,#@ <  unknown -| -"M d/H33333Dܵ MYz~+F33333D %  2 =     %  = 2 y  -   %  =  -ܵ Mh5F33333DL(LRz~+F33333D@%% %  >9 %    %  > % %  Fl3=`0\)F33333DQ4<Φ?  %   ?   - v  %    ?    %  9 E C7 ?  unknown -Nr4/ ON33333DU53U#M33333D %  8 @ F    %  @ 8   -   %  @  -U539#Q33333D^ U#M33333D@%% %  A7 %   % %  b=TGmH33333Dٺژ?YS  %  B    - v  %    B    %    @ B  unknown -(H=,S33333DH=,R33333D %  5 C   -   %  C 5 E  -   %  C  -*rOr#H=,R33333D\BېR33333D@%% %  D - %  D % %  *rOr#\BېR33333Dٺژ?S  %  J33333T < E  unknown -*rOr#\BېR33333D*rOr#\BېR33333D@ %  I33333T ;   unknown -^ 9#Q33333D^ 9#Q33333D@ %   G   -*rOr#\BېR33333D^ 9#Q33333D@ %% %  I %  ^ 9#Q33333D%% %  J %  *rOr#\BېR33333D %   L   - I  %    L    %   2@ L  unknown -DU9@ZŁL33333DS[<@ukBL33333D %  E M P    %  M E     %  M  -S[<@ZŁL33333DC$o<@yK33333D@%% %  N %   % %  MY%=@=+?33333DQ4<Φ??  %  S33333T H   unknown -A$o<@yK33333DA$o<@yK33333D@ %   Q   -A$o<@L(L33333Dh5F@yK33333D@ %% %  S~ %  A$o<@yK33333D %  U    - I  %    U  P  %   R@ U  unknown -|lޥG@T9vO33333D ?I@JwC2N33333D %  ? V   -   %  V ? X   %% %  W %  W % %   d/H@| -"M33333D6;f?c<f  %  B33333T [   unknown - d/H@| -"M33333D d/H@| -"M33333D@%% %  [b %   d/H@| -"M33333D%% %  ]% %  Xz~+F@ܵ M33333D@? -9 X -ӤJ@%% %  ^% %  h5F@L(L33333D@? -9 X -ӤJ@%% %  d %      -JwC2N@|lޥG@33333DT9vO@ ?I@33333D@  %   d -| -"M@d/H@33333DJwC2N@ ?I@33333D@% %  M@rw]H@7;f?b<f  %      e  %   g    %  g    -  %    g  - c  %  tN#;@ bb<@   unknown -L(L@Tz~+F@33333Dܵ M@h5F@33333D %  h  -,\K&\K33333D@$\K@*\K@33333D@  %% %  i %  i % %   =33333D@kVeC@eVeC@?  %     - - T T33333D T@ T@33333D@  cone% %  8== -qZL@ -qZL@? ? T@ %% %  l* %   -qZL@" -qZL33333D%% %  o %  \ W   -yK@I$o<33333DYŁL@S[<33333D@  %  S o -yK@h5F33333DL(L@I$o<33333D@% %  p K@؉6B?`Q4<Φ?  %    R  p  %   r   -   %  r  s    %  u R r  - )  %   Mm,#@   unknown -ܵ M@ d/H33333D| -"M@Rz~+F33333D %  t s   -  %  33333T    unknown -| -"M@ d/H33333D| -"M@ d/H33333D@%% %  v %  v % %  JwC2N@ ?I33333D;f;f?  %   | w  f  %   R@   unknown -JwC2N@ ?I33333D@T9vO@|lޥG33333D@%% %  x %   % %  JwC2N@ ?I33333D -9 X -ӤJ@%% %  zJ %  JwC2N@ ?I33333D%% %  }% %  5tdO@؂F33333D@O4<Φ? %% %  I %  T9vO@|lޥG33333D@ %      f  %     ( -   %   *32@   unknown -hkBL@S[<33333D@XŁL@DU933333D@%% %   %   % %  hkBL@DU933333D@ -}?2k? %% %  Y %  kS,62M@KXv3633333D@ %    y - ?IyK@33333D@H=,S@33333D@  %        %     -   %        %     3 -   %  tN#;@ bb<@   unknown -ܵ Mh5F33333D@L(LRz~+F33333D@ %       %     6 -   %  <  m,#@   unknown -*rOr#H=,R33333D@\BېR33333D@ %       %     9 -   %  ?/g.@ ;#3q?@   unknown -U539#Q33333D@^ U#M33333D@%% %   %    %  6 !% %  8Fݿ;'@tJ33333D@YS ٺژ  %  "  # $  %     @ -   % % B & @  ' unknown - d/H@JwC2N33333D@ ?I@| -"M33333D@%% %   % ( @ )% %  Xz~+F@ܵ M33333D@?F4<Φ  %   * + ,  %     F -   % - .9 HE C7  / unknown -S[<@ZŁL33333D@C$o<@yK33333D@%% %   % 0  1% %  h1*@,ftK33333D@?Q4<Φ %% %  a %  h5F@L(L33333D@%% %  ` %  Xz~+F@ܵ M33333D@%% %  ( % 2 3 4  5 -Մ9@T9vO33333D|lޥG@LsYN33333D@  %    -|lޥG@T9vO33333D ?I@JwC2N33333D@% %  軥rH@rBNgp.9id??  %      - )  %  6 7  T   % 8 9 3q7 Y_  : unknown -yK@h5F33333DL(L@I$o<33333D %     [ - W  %    6 ; - W  %    -yK@I$o<33333DYŁL@S[<33333D@%% %   % < T =% %  )2|<@=33333D?Q4<Φ?  % > 33333T   ? unknown -XŁL@S[<33333DXŁL@S[<33333D@ % @    A -hkBL@S[<33333DXŁL@DU933333D@ %% %  T %  XŁL@S[<33333D%% %  % %  hkBL@DU933333D -9 X -ӤJ@%% %  !% %  j_L@鶍72k? -}ؿ  %  B  J -yK@@33333DH=,S@ ?I@33333D K - %  C D E F -   %  G  H I - 9  %   J K L - 9  %  M N  h O  % P QtN#;@ Rbb<@  S unknown -h5FL(L@33333DSz~+Fܵ M@33333D %  T  U V -  %  W X  k Y  % Z [?/g.@ s#3q?@  \ unknown -9#Q^ @33333DT#MU53@33333D %   ] ^ _ -  %  ` a  n b  % c t d m,#@  e unknown -H=,R@33333D\BېR*rOr#@33333D %    a f q  %    W g - q  %   h -\BېR^ @33333D9#Q*rOr#@33333D@%% %  l % i k j % k  l% %  tJ:Fݿ;'33333D ٺژXS?  %  m  n o -  %  p q  x r  % s t9 }E C7  u unknown -ZŁLD$o<33333DyKS[<33333D %      {  %    p v - {  %   w -L(Lh5F33333DyKB$o<33333D@%% %  j % x x y% %  ,ftKh1*33333DQ4<Φ  %   z { | -  %  } ~     %    @   unknown -JwC2N ?I33333D| -"M d/H33333D %    ~  -   %      -   %    -| -"M d/H33333Dܵ MYz~+F33333D@%% %  = %   % %  ܵ MYz~+F33333DF4<Φ  %  33333T    unknown -ܵ MYz~+F33333Dܵ MYz~+F33333D@ %  33333T  y  unknown -L(Lh5F33333DL(Lh5F33333D@ %      -ܵ Mh5F33333DL(LRz~+F33333D@ %% %   %  L(Lh5F33333D%% %   %  ܵ MYz~+F33333D %      - v  %        %   2@   unknown -JXv36/ ON33333DJr4lS,62M33333D %        %        %    -Nr4/ ON33333DU53U#M33333D@%% %  4 %   % %  oy)*;w逥E33333D\S?ٺژ?  %  33333T    unknown -U53U#M33333DU53U#M33333D@ %      -U539#Q33333D^ U#M33333D@ %% %   %  U53U#M33333D %      - v  %        %   R@   unknown -Ev&H=,S33333D(N7*|S33333D %      -   %        %    -(H=,S33333DH=,R33333D@%% %    %   % %  H=,R33333D  %  33333T    unknown -H=,R33333DH=,R33333D@ %      -*rOr#H=,R33333D\BېR33333D@ %% %   %  H=,R33333D%% %  % %  *rOr#\BېR33333D@? -9 X -ӤJ@%% %   % %  ^ 9#Q33333D@? -9 X -ӤJ@%% %  6% %  J{F""O>Q ٺژ]S?  %      - I  %        %   @   unknown -7Xv36@dS,62M33333DDU9@ukBL33333D %  +    -   %   +     %    -DU9@ZŁL33333DS[<@ukBL33333D@%% %   %   % %  DU9@ukBL33333D?&J4<Φ  %  .33333T    unknown -S[<@ZŁL33333DS[<@ZŁL33333D@ %      -S[<@ZŁL33333DC$o<@yK33333D@ %% %  | %  S[<@ZŁL33333D%% %  % %  A$o<@yK33333D@? -9 X -ӤJ@%% %  5% %  Չ6B@p KQ4<Φ  %      - I  %      4  %  *3 \h@   unknown -Մ9@T9vO33333D|lޥG@LsYN33333D %  #    - P  %   #   P %% %   %   % %   ?I@JwC2N33333D9idgp.  %  &33333T    unknown - ?I@JwC2N33333D ?I@JwC2N33333D@%% %  d %   ?I@JwC2N33333D%% %  % %   d/H@| -"M33333D -9 X -ӤJ@%% %   %      -KsYN@Մ9@33333DT9vO@}lޥG@33333D@  %    -JwC2N@|lޥG@33333DT9vO@ ?I@33333D@% %  qBN@껥rH@8idhp.?  %        %      - e  %      - e  %      - c  %    m,#@   unknown -ܵ M@Zz~+F@33333D| -"M@d/H@33333D %      -  %  33333T    unknown -ܵ M@Zz~+F@33333Dܵ M@Zz~+F@33333D@ %        %  33333T    unknown -L(L@h5F@33333DL(L@h5F@33333D@ %      - c %% %   %    %   % %  Fl3=@a0\)F@33333D?Q4<Φ  %     -,\K&\K33333D$\K@*\K@33333D@ % %   =kVeC@eVeC@? (\K@ %% %  = %  fVeC@hVeC33333D@%% %   %  j   - T T33333D@ T@ T@33333D@ - %% %  % %  1>L@Aye<Q4<Φ?  %    7  p  %      p  %  9 9F C7 R  unknown -L(L@h5F33333Dܵ M@Rz~+F33333D %      -   %  33333T    unknown -ܵ M@Rz~+F33333Dܵ M@Rz~+F33333D@%% %   %   % %  | -"M@ d/H33333DU4<Φ?  %      f  %   @   unknown -| -"M@ ?I33333D@JwC2N@ d/H33333D@%% %   %   % %  | -"M@ d/H33333D -9 X -ӤJ@%% %  L %  | -"M@ d/H33333D%% %  % %  T9vO@|lޥG33333D@Lp.Mid %% %  K %  JwC2N@ ?I33333D@ %  &    f  %  V U &  - W  %  tN#;@ bb<@ &  unknown -yK@I$o<33333D@YŁL@S[<33333D@%% %  ( %  ( % %  XŁL@S[<33333D@^X4<Φ? %% %  *W %  hkBL@DU933333D@ %    y -@yK@33333D@ ?I@H=,S@33333D@  %    -  .  %   /     %  /      %  p o /  - q  %  tN#;@ bb<@ /  unknown -\BېR^ @33333D@9#Q*rOr#@33333D@ %   0     %    0 - -   %    m,#@ 0  unknown -| -"M d/H33333D@ܵ MYz~+F33333D@ %  1      %  z y 1  - {  %  ?/g.@ #3q?@ 1 ! unknown -L(Lh5F33333D@yKB$o<33333D@%% %  3; % " 3 # % $ - %% %  Fl3=`0\)F33333D@Q4<Φ?  %  & 4 ' (  %    4  -   % )  * @ 4 + unknown -(H=,S33333D@H=,R33333D@%% %  6  % ,  -% %  *rOr#\BېR33333D@ٺژ?S  %  7 . / 0  %    7  -   % 1 29 E C7 7 3 unknown -Nr4/ ON33333D@U53U#M33333D@%% %  98 % 4 9 5% %  b=TGmH33333D@ٺژ?YS %% %  ; %  ^ 9#Q33333D@%% %  < %  *rOr#\BېR33333D@ %  6 > 7 8  %    > $ - P  % 9 & :R@ > ; unknown -|lޥG@T9vO33333D@ ?I@JwC2N33333D@%% %  @ % < $ =% %   d/H@| -"M33333D@6;f?c<f %% %  Bc %   d/H@| -"M33333D@ %  D > ? @  %    D , -   % A B .2@ D C unknown -DU9@ZŁL33333D@S[<@ukBL33333D@%% %  F % D F E% %  MY%=@=+?33333D@Q4<Φ?? %% %  H %  A$o<@yK33333D@%% %  O) % F G H  I -nv&@L7*|S33333DՄ9@LsYN33333D@  %   O -Մ9@T9vO33333D|lޥG@LsYN33333D@% %  k/=B@j9O)G4<Φ???  %   S V ;   %  S    -  %% %  T % J  K% %  LvK@4P533333D`Q4<Φ?  % L Y33333T  6 M unknown -yK@I$o<33333DyK@I$o<33333D@%% %  YR %  yK@I$o<33333D%% %  [% %  XŁL@S[<33333D -9 X -ӤJ@%% %  \ % %  `=PL@b:?hX4<Φ?  %  N J -,\K&\K33333D$\K@*\K@33333D K - %  O d P Q -   %  d R S T -   %  U V d F W  % X YtN#;@ Zbb<@ d [ unknown -^ @9#Q@33333D*rOr#@\BېR@33333D %  \ e ] ^ - 9  %  _ ` e I a  % b c?/g.@ Q#3q?@ e d unknown -h5FyK@33333DC$o<L(L@33333D %  f e f g - 9  %  h i f L j  % k R l m,#@ f m unknown - d/Hܵ M@33333DYz~+F| -"M@33333D %  - g i n O  %  g - _ o - O  %  g p -h5FL(L@33333DSz~+Fܵ M@33333D@%% %  h % q I r % s h t% %  a0\)FFl3=@33333DQ4<Φ??  %  u i v w -  %  x y i V z  % { |9 [E C7 i } unknown -/ ONU53@33333DT#MLr4@33333D %   j p g Y  %  j  x ~ - Y  %  j  -9#Q^ @33333DT#MU53@33333D@%% %  k %  V % %  TGmHb=@33333DXSٺژ  %  l    -  %    l _   %  d  @ l  unknown -H=,S@33333DH=,R @33333D %   m   - b  %  m  o f - b  %  m  -H=,R@33333D\BېR*rOr#@33333D@%% %  np %  n % %  \BېR*rOr#@33333DS翕ٺژ  %  t33333T  o  unknown -\BېR*rOr#@33333D\BېR*rOr#@33333D@ %  s33333T  W  unknown -9#Q^ @33333D9#Q^ @33333D@ %   q   -\BېR^ @33333D9#Q*rOr#@33333D@ %% %  s %  9#Q^ @33333D%% %  t %  \BېR*rOr#@33333D %   v   -  %    v o   %   t2@ v  unknown -YŁLS[<33333DtkBLDU933333D %   w z v r  %  w    r  %  w  -ZŁLD$o<33333DyKS[<33333D@%% %  xg %  o % %  =+?NY%=33333D?Q4<Φ  %  }33333T  p  unknown -yKB$o<33333DyKB$o<33333D@ %  h {   -L(Lh5F33333DyKB$o<33333D@ %% %  } %  yKB$o<33333D %      -  %     |   %   R@   unknown -T9vO ?I33333DJwC2N|lޥG33333D %      -   %        %    -JwC2N ?I33333D| -"M d/H33333D@%% %  @ %   % %  | -"M d/H33333Dc<f6;f  %  33333T  ~  unknown -| -"M d/H33333D| -"M d/H33333D@ %      -| -"M d/H33333Dܵ MYz~+F33333D@ %% %   %  | -"M d/H33333D%% %  :% %  ܵ MYz~+F33333D@? -9 X -ӤJ@%% %  <% %  L(Lh5F33333D@? -9 X -ӤJ@%% %  G% %  _Ĕ"L0FQ4<Φ??  %      - v  %        %   @   unknown -DU9lS,62M33333DJXv36ikBL33333D %  /    -   %   /     %    -JXv36/ ON33333DJr4lS,62M33333D@%% %  1 %   % %  JXv36lS,62M33333Deٺژ?S  %  233333T    unknown -Jr4/ ON33333DJr4/ ON33333D@ %      -Nr4/ ON33333DU53U#M33333D@ %% %   %  Jr4/ ON33333D%% %  5% %  U53U#M33333D@? -9 X -ӤJ@%% %  F% %  z(^>+0TPYSٺژ  %      - v  %        %  *3 \h@   unknown -Մ9N7*|S33333Dv&EsYN33333D %  '    -   %   '     %    -Ev&H=,S33333D(N7*|S33333D@%% %   %   % %  (H=,S33333Df$ᅫt߈]?  %  *33333T    unknown -(H=,S33333D(H=,S33333D@ %      -(H=,S33333DH=,R33333D@ %% %   %  (H=,S33333D%% %   % %  H=,R33333D -9 X -ӤJ@%% %  7% %  b' ҿzRS翕ٺژ  %      - I  %        %   32@   unknown -Tr4@/ ON33333D7Xv36@dS,62M33333D %  ?    -   %   ?     %    -7Xv36@dS,62M33333DDU9@ukBL33333D@%% %   %   % %  7Xv36@dS,62M33333D2k?}?  %  B33333T    unknown -DU9@ukBL33333DDU9@ukBL33333D@ %      -DU9@ZŁL33333DS[<@ukBL33333D@ %% %  z %  DU9@ukBL33333D%% %  % %  S[<@ZŁL33333D -9 X -ӤJ@%% %  4% %   Aye<@1>L?Q4<Φ?  %      - I  %      H  %   {2 W @   unknown -nv&@L7*|S33333DՄ9@LsYN33333D %  7    - 4  %   7   4 %% %   %   % %  7ػ%<@|\ O33333D)G4<Φ?  %  :33333T    unknown -|lޥG@T9vO33333D|lޥG@T9vO33333D@%% %  f %  |lޥG@T9vO33333D%% %  % %   ?I@JwC2N33333D -9 X -ӤJ@%% %   %      -KsYN@wv&@33333DL7*|S@Մ9@33333D@  %    -KsYN@Մ9@33333DT9vO@}lޥG@33333D@% %  j9O@k/=B@G4<Φ??  %        %      -   %        %      - c  %    @   unknown -| -"M@d/H@33333DJwC2N@ ?I@33333D %      - e  %  33333T    unknown -| -"M@d/H@33333D| -"M@d/H@33333D@%% %   % -  % %  ܵ M@Zz~+F@33333DsF4<Φ??  %        %  tN#;@ bb<@   unknown -L(L@Tz~+F@33333D@ܵ M@h5F@33333D@%% %  + %   % %  ܵ M@Zz~+F@33333D@? -9 X -ӤJ@ %      -   %        %    -yK@D$o<@33333DL(L@h5F@33333D@%% %  , %   % %  L(L@h5F@33333D@? -9 X -ӤJ@ %      - c  %  ?/g.@ #3q?@   unknown -yK@D$o<@33333DL(L@h5F@33333D%% %  , %  L(L@h5F@33333D%% %  + %  ܵ M@Zz~+F@33333D%% %   %     -,\K&\K33333D$\K@*\K@33333D   %        %      - p  %  933333T !  " unknown -L(L@h5F33333DL(L@h5F33333D@%% %  % %  2x8@@0 -F33333DQ4<Φ  %      f  % #  Mm,#@  $ unknown -ܵ M@ d/H33333D@| -"M@Rz~+F33333D@%% %   % %  &% %  ܵ M@Rz~+F33333D -9 X -ӤJ@%% %  N %  ܵ M@Rz~+F33333D%% %  % %  JwC2N@ ?I33333D@;f;f? %% %  M %  | -"M@ d/H33333D@ %      f  %  7 6   -   % ' ! 3q7 _  ( unknown -yK@h5F33333D@L(L@I$o<33333D@%% %   % )  *% %  )2|<@=33333D@?Q4<Φ? %% %  U %  XŁL@S[<33333D@ %  +  y -yK@@33333D@H=,S@ ?I@33333D@  %  , - . /   %  0  1 2 .  %   3 4 5 .  %  N M   - O  % 6 7tN#;@ 8bb<@  9 unknown -h5FL(L@33333D@Sz~+Fܵ M@33333D@ %  :  ; <   %  a `   - b  % =  > m,#@  ? unknown -H=,R@33333D@\BېR*rOr#@33333D@ %   @ A B   %  X W   - Y  % C D?/g.@ #3q?@  E unknown -9#Q^ @33333D@T#MU53@33333D@%% %  n % F  G % H  I% %  tJ:Fݿ;'33333D@ ٺژXS?  %  J  K L   %  ~ }   -   % M  N @  O unknown -JwC2N ?I33333D@| -"M d/H33333D@%% %  -? % P  Q% %  ܵ MYz~+F33333D@F4<Φ  %   R S T   %  q p   - r  % U V9 E C7  W unknown -ZŁLD$o<33333D@yKS[<33333D@%% %  k % X  Y% %  ,ftKh1*33333D@Q4<Φ %% %   %  L(Lh5F33333D@%% %   %  ܵ MYz~+F33333D@ %  Z  [ \  %     ( -   % ] * ^R@  _ unknown -Ev&H=,S33333D@(N7*|S33333D@%% %   % ` ( a% %  H=,R33333D@ %% %   %  H=,R33333D@ %   b c d  %     0 -   % e f 22@  g unknown -JXv36/ ON33333D@Jr4lS,62M33333D@%% %  6 % h  i% %  oy)*;w逥E33333D@\S?ٺژ? %% %   %  U53U#M33333D@ %  j " k l  %    " 8 - 4  % m :*3 n\h@ " o unknown -Մ9@T9vO33333D@|lޥG@LsYN33333D@%% %  $ % p 8 q% %   ?I@JwC2N33333D@9idgp. %% %  &e %   ?I@JwC2N33333D@ %  * r s t  %    * @ -   % u v B@ * w unknown -7Xv36@dS,62M33333D@DU9@ukBL33333D@%% %  , % x , y% %  DU9@ukBL33333D@?&J4<Φ %% %  .} %  S[<@ZŁL33333D@%% %  3* % z { |  } -@H=,S33333Dov&@L7*|S33333D@  %   3 -nv&@L7*|S33333DՄ9@LsYN33333D@% %  |I#\2@ox|QES'ٺژ?? %% %  9P %  L(L@h5F33333D%% %  ;% %  yK@I$o<33333D@? -9 X -ӤJ@ %  N N  ~ - B  %   C   -   %    C Q   %  ?/g.@ Y#3q?@ C  unknown -^ @T#M@33333DU53@9#Q@33333D %  D    -   %    D T   %  Z  m,#@ D  unknown -@\BېR@33333D*rOr#@H=,R@33333D %  . E   W  %  E .   - W  %  E  -^ @9#Q@33333D*rOr#@\BېR@33333D@%% %  F %  Q  %  F % %  :Fݿ;'tJ@33333DXS? ٺژ?  %   G   - 9  %    G ^   %  9 cE C7 G  unknown -D$o<yK@33333DS[33333T d   unknown -H=,R@33333DH=,R@33333D@ %   b   -H=,R@33333D\BېR*rOr#@33333D@ %% %  d %  H=,R@33333D%% %  fm% %  \BېR*rOr#@33333D@? -9 X -ӤJ@%% %  go% %  9#Q^ @33333D@? -9 X -ӤJ@%% %  hX% %  N>QF{F""@\S? ٺژ?  %   m   -  %    m    %   @ m  unknown -cS,62MDU933333DtkBL8Xv3633333D %  S n q  -   %  n S     %  n  -YŁLS[<33333DtkBLDU933333D@%% %  od %   % %  tkBLDU933333DJ4<Φ  %  V33333T t q  unknown -YŁLS[<33333DYŁLS[<33333D@ %  w r   -ZŁLD$o<33333DyKS[<33333D@ %% %  t %  YŁLS[<33333D%% %  vh% %  yKB$o<33333D@? -9 X -ӤJ@%% %  wW% %  p KՉ6BᅳQ4<Φ?  %  z    -  %    z    %  *3 \h@ z  unknown -T9vO|lޥG33333DKsYNՄ933333D %  K {   -   %  { K }    %  {  -T9vO ?I33333DJwC2N|lޥG33333D@%% %  |C %  | % %  JwC2N ?I33333Dgp.9id?  %  N33333T    unknown -JwC2N ?I33333DJwC2N ?I33333D@ %      -JwC2N ?I33333D| -"M d/H33333D@ %% %   %  JwC2N ?I33333D%% %  >% %  | -"M d/H33333D -9 X -ӤJ@%% %  H% %  ,`;M3?\q-GᅤF4<Φ?  %      - v  %        %   32@   unknown -S[  ? -L7*|S@@33333DH=,S@wv&@33333D@  %  @  -KsYN@wv&@33333DL7*|S@Մ9@33333D@% %  ox|Q@I#\2@&ٺژFS?  %  A B C D   %  E  B F -   %   E     %   C   - c  % G  HR@  I unknown -JwC2N@|lޥG@33333DT9vO@ ?I@33333D %    J K -   % L M33333T   N unknown -JwC2N@ ?I@33333DJwC2N@ ?I@33333D@%% %   % O  P% %  | -"M@d/H@33333Db<f?7;f?  %  J      % Q   m,#@  R unknown -ܵ M@Zz~+F@33333D@| -"M@d/H@33333D@%% %  - % S K T% %  | -"M@d/H@33333D -9 X -ӤJ@%% %  ; %  | -"M@d/H@33333D %   U    %% %  % %  Fl3=@a0\)F@33333D@?Q4<Φ %% %  ? %  ܵ M@Zz~+F@33333D@ %    V W -   % X Y?/g.@ #3q?@  Z unknown -yK@D$o<@33333D@L(L@h5F@33333D@ % [    \ -yK@D$o<@33333DL(L@h5F@33333D@ %% %  > %  L(L@h5F@33333D@ %  ]  ^ _ - c  %  V `   a  % b c9 E C7  d unknown -yK@S[<@33333DYŁL@F$o<@33333D%% %   % e  f% %  ,ftK@h1*@33333DQ4<Φ??  %    N ~   %      - +  % g h -DT!? h`8U)zj@  i unknown - T T33333D@ T@ T@33333D@ % j 9 !F C7  k unknown -L(L@h5F33333D@ܵ M@Rz~+F33333D@%% %   % l  m% %  L(L@h5F33333D@? -9 X -ӤJ@%% %  % %  | -"M@ d/H33333D@U4<Φ? %% %  O %  ܵ M@Rz~+F33333D@%% %  % %  LvK@4P533333D@`Q4<Φ? %% %  S %  yK@I$o<33333D@ %   y - T T33333D@ T@ T@33333D@  %  n  o p   %   q r s   %  V U  / - W  % t utN#;@ vbb<@  w unknown -^ @9#Q@33333D@*rOr#@\BېR@33333D@ %  x  y z .  %  i h  2 - j  % { 8 | m,#@  } unknown - d/Hܵ M@33333D@Yz~+F| -"M@33333D@ %   ~   .  %  ` _  5 - a  %  ?/g.@ 7#3q?@   unknown -h5FyK@33333D@C$o<L(L@33333D@%% %   %    %  2 % %  a0\)FFl3=@33333D@Q4<Φ??  %        %     < -   %  >  @   unknown -H=,S@33333D@H=,R @33333D@%% %  r %  < % %  \BېR*rOr#@33333D@S翕ٺژ  %        %  y x  B - z  %  9 DE C7   unknown -/ ONU53@33333D@T#MLr4@33333D@%% %   %   % %  TGmHb=@33333D@XSٺژ %% %   %  9#Q^ @33333D@%% %   %  \BېR*rOr#@33333D@ %        %     L -   %  N R@   unknown -T9vO ?I33333D@JwC2N|lޥG33333D@%% %  B %  L % %  | -"M d/H33333D@c<f6;f %% %   %  | -"M d/H33333D@ %        %     T -   %   V2@   unknown -YŁLS[<33333D@tkBLDU933333D@%% %  i %   % %  =+?NY%=33333D@?Q4<Φ %% %   %  yKB$o<33333D@ %   &    %    & \ -   %  ^*3 \h@ &  unknown -Մ9N7*|S33333D@v&EsYN33333D@%% %  ( %  \ % %  (H=,S33333D@f$ᅫt߈]? %% %  * %  (H=,S33333D@ %  .     %    . d -   %   f@ .  unknown -DU9lS,62M33333D@JXv36ikBL33333D@%% %  03 %  0 % %  JXv36lS,62M33333D@eٺژ?S %% %  2 %  Jr4/ ON33333D@ %   6    %    6 l - H  %  n {2 W @ 6  unknown -nv&@L7*|S33333D@Մ9@LsYN33333D@%% %  8 %  l % %  7ػ%<@|\ O33333D@)G4<Φ? %% %  :g %  |lޥG@T9vO33333D@ %  >     %    > t -   %   v32@ >  unknown -Tr4@/ ON33333D@7Xv36@dS,62M33333D@%% %  @ %  @ % %  7Xv36@dS,62M33333D@2k?}? %% %  B{ %  DU9@ukBL33333D@%% %  G+ %      -@H=,S33333D@H=,R33333D@  %   G -@H=,S33333Dov&@L7*|S33333D@% %  3 "@#$Su߈]Z$??  %  -DT!? ^8U)zj@ N  unknown -,\K&\K33333D$\K@*\K@33333D %   O   -   %    O    %  9 E C7 O  unknown -U53@T#M@33333DLr4@/ ON@33333D %  r P V    %  P r   -   %  P  -^ @T#M@33333DU53@9#Q@33333D@%% %  Q %   % %  b=@TGmH@33333DٺژXS?  %  R    -   %    R    %    @ R  unknown -@H=,R@33333D @H=,S@33333D %  o S   -   %  S o U  -   %  S  -@\BېR@33333D*rOr#@H=,R@33333D@%% %  T %  T % %  *rOr#@\BېR@33333DٺژS?  %  Z33333T v U  unknown -*rOr#@\BېR@33333D*rOr#@\BېR@33333D@ %  Y33333T u   unknown -^ @9#Q@33333D^ @9#Q@33333D@ %   W   -^ @9#Q@33333D*rOr#@\BېR@33333D@ %% %  Y %  ^ @9#Q@33333D%% %  Z  %  *rOr#@\BېR@33333D %   \   - 9  %    \    %   2@ \  unknown -S[+@ٺژXS?  %   " # $ -  %  % &   '  % ( *3 )\h@  * unknown -N7*|Sv&@33333DDsYNՄ9@33333D %    & + -   %        %   , -H=,S @33333DN7*|S@v&@33333D@%% %  v % -  .% %  H=,S @33333Dt߈]?^$?  % / 33333T   0 unknown -H=,S @33333DH=,S @33333D@ % 1 ,   2 -H=,S@33333DH=,R @33333D@ %% %   %  H=,S @33333D%% %  q% %  H=,R@33333D -9 X -ӤJ@%% %  Y% %  ҿzRb' @ٺژS?  %  3  4 5 -  %  6 7   8  % 9 : 32@  ; unknown -/ ON8Xv3633333DcS,62MUr433333D %      -   %    6 <   %   = -cS,62MDU933333DtkBL8Xv3633333D@%% %  a % >  ?% %  cS,62M8Xv3633333D}?2k  % @ 33333T   A unknown -tkBLDU933333DtkBLDU933333D@ % B    C -YŁLS[<33333DtkBLDU933333D@ %% %   %  tkBLDU933333D%% %  e% %  YŁLS[<33333D -9 X -ӤJ@%% %  V% %  1>LAye<Q4<Φ?  %   D E F -  %  G H   I  % J  {2 KW @  L unknown -L7*|SՄ933333DKsYNrv&33333D %    H M -   %        %   N -T9vO|lޥG33333DKsYNՄ933333D@%% %  F % O  P% %  {\ O7ػ%<33333D!G4<Φ??  % Q 33333T   R unknown -T9vO|lޥG33333DT9vO|lޥG33333D@ % S N   T -T9vO ?I33333DJwC2N|lޥG33333D@ %% %   %  T9vO|lޥG33333D%% %  A% %  JwC2N ?I33333D -9 X -ӤJ@%% %  I% %  Mqw]H6;fc<f?  %  U  V W - v  %  X Y   Z  % [ \tN#;@ bb<@  ] unknown -H$o %  H=,R@33333D@ %  @      %    @  -   %   2@ @  unknown -/ ONHr4@33333D@lS,62MHXv36@33333D@%% %  B %  B % %  :w逥Eoy)*?33333D@ٺژ?[S %% %  D %  T#MU53@33333D@ %   J     %    J  -   %  *3 \h@ J  unknown -T9vO|lޥG33333D@KsYNՄ933333D@%% %  LE %   % %  JwC2N ?I33333D@gp.9id? %% %  N %  JwC2N ?I33333D@ %  R      %    R  -   %   @ R  unknown -cS,62MDU933333D@tkBL8Xv3633333D@%% %  Tf %  T % %  tkBLDU933333D@J4<Φ %% %  V %  YŁLS[<33333D@ %   Z    %    Z  -   %   {2 W @ Z  unknown -|lޥGT9vO33333D@Մ9EsYN33333D@%% %  \ %   % %  /l7l{O33333D@ٺژS? %% %  ^ %  Dv&N7*|S33333D@ %  b -    %    b  -   %   32@ b  unknown -S[  % ?  @R@  A unknown - @N7*|S@33333D@v&@H=,S@33333D %    = B -   %        %   C -@H=,R@33333D @H=,S@33333D@%% %   % D  E% %  @H=,R@33333D=?  % F 33333T   G unknown -@H=,R@33333D@H=,R@33333D@ % H C   I -@\BېR@33333D*rOr#@H=,R@33333D@ %% %    %  @H=,R@33333D%% %  % %  *rOr#@\BېR@33333D@? -9 X -ӤJ@%% %  % %  ^ @9#Q@33333D@? -9 X -ӤJ@%% %  z% %  F{F""@N>Q@ ٺژ?\S  %  J  K L - 9  %  M N   O  % P Q @  R unknown -DU9tkBL@33333D9Xv36cS,62M@33333D %      -   %    M S   %   T -S[  %   @   -   %  @  A    %  C  @  - c  %   {2 W @   unknown -KsYN@wv&@33333DL7*|S@Մ9@33333D %  B A   -   %  33333T    unknown -KsYN@Մ9@33333DKsYN@Մ9@33333D@%% %  D %  D % %  {\ O@7ػ%<@33333DG4<Φ  %   J E    %  M R@   unknown -JwC2N@|lޥG@33333D@T9vO@ ?I@33333D@%% %  F/ %   % %  T9vO@|lޥG@33333D -9 X -ӤJ@%% %  H9 %  T9vO@|lޥG@33333D%% %  K% %  | -"M@d/H@33333D@b<f?7;f? %% %  MA %  JwC2N@ ?I@33333D@ %  U     %  ` V U  - a  %    9 YE C7 U  unknown -yK@S[<@33333D@YŁL@F$o<@33333D@%% %  W;% %  yK@D$o<@33333D@? -9 X -ӤJ@%% %  YN %  yK@D$o<@33333D@ %   ]   - c  %  - ]   %   @ ]  unknown -tkBL@:Xv36@33333DcS,62M@DU9@33333D %   ^ `  -   %  ^     %  ^  -tkBL@DU9@33333DYŁL@S[<@33333D@%% %  _  %     % %  tkBL@DU9@33333D J4<Φ??  %    33333T c `  unknown -YŁL@S[<@33333DYŁL@S[<@33333D@ %    a   -yK@S[<@33333DYŁL@F$o<@33333D@ %% %  c. %  YŁL@S[<@33333D%% %  hO %   -qZL@" -qZL33333D@ %   n     %    n  -   %      @ n  unknown -@H=,R@33333D@ @H=,S@33333D@%% %  p %     % %  *rOr#@\BېR@33333D@ٺژS?  %  q  !   %    q  -   % "  # 9 E C7 q $ unknown -U53@T#M@33333D@Lr4@/ ON@33333D@%% %  s % %  s & % %  b=@TGmH@33333D@ٺژXS? %% %  u  %  ^ @9#Q@33333D@%% %  v - %  *rOr#@\BېR@33333D@ %  ' x ( ) .  %    x  -   % *   + R@ x , unknown - ?IJwC2N@33333D@|lޥGT9vO@33333D@%% %  z % -   . % %   d/H| -"M@33333D@7;fb<f? %% %  | %   d/H| -"M@33333D@ %  ~ / 0 1 .  %    ~  -   % 2  3  2@ ~ 4 unknown -S[ % %  H=,S @33333D@t߈]?^$? %% %   %  H=,S @33333D@ %   ? @ A   %      -   % B  C  @  D unknown -lS,62MHXv36@33333D@ikBLDU9@33333D@%% %   % E   F % %  lS,62MHXv36@33333D@Sfٺژ %% %   %  / ONHr4@33333D@ %  G  H I   %  H G   - I  % J   {2 K W @  L unknown -L7*|SՄ933333D@KsYNrv&33333D@%% %  H % M   N % %  {\ O7ػ%<33333D@!G4<Φ?? %% %   %  T9vO|lޥG33333D@ %   O P Q   %  7 6   - 8  % R  S  32@  T unknown -/ ON8Xv3633333D@cS,62MUr433333D@%% %  c % U   V % %  cS,62M8Xv3633333D@}?2k %% %   %  tkBLDU933333D@ %  W  X Y  %  j i   - k  % Z   [ R@  \ unknown - ?IT9vO33333D@|lޥGJwC2N33333D@%% %   % ]   ^ % %  ؂F5tdO33333D@O4<Φ %% %   %  Մ9EsYN33333D@ %   _ ` a  %  Y X   - Z  % b  c tN#;@ bb<@  d unknown -H$o+@0TP@XS?ٺژ?  %   -   %   ;  %  @*3 \h@  unknown -v&@DsYN@33333DՄ9@N7*|S@33333D %    - >  %     B >  %   - @N7*|S@33333D@v&@H=,S@33333D@%% %   %   % %   @H=,S@33333D^$?t߈]  %   33333T  = unknown - @H=,S@33333D @H=,S@33333D@ %    -@H=,R@33333D @H=,S@33333D@ %% %   %   @H=,S@33333D%% %  % %  @H=,R@33333D -9 X -ӤJ@%% %  {% %  b' @ҿzR@S?ٺژ?  %   - 9  %   L  %   Q32@  unknown -9Xv36cS,62M@33333DVr4/ ON@33333D %  0   S - O  %   0 O  %   -DU9tkBL@33333D9Xv36cS,62M@33333D@%% %   %  L % %  9Xv36cS,62M@33333D2k}ؿ  %  3 33333T   unknown -DU9tkBL@33333DDU9tkBL@33333D@ %     -S[L@Q4<Φ??  %   - 9  %   ]  %  b {2 W @  unknown -Մ9KsYN@33333Dtv&L7*|S@33333D %  (  - `  %   (  d `  %   -}lޥGKsYN@33333DՄ9T9vO@33333D@%% %   %   % %  7ػ%<{\ O@33333D?G4<Φ  %  + 33333T  _ unknown -|lޥGT9vO@33333D|lޥGT9vO@33333D@ %    - ?IJwC2N@33333D|lޥGT9vO@33333D@ %% %   %  |lޥGT9vO@33333D%% %  % %   ?IJwC2N@33333D -9 X -ӤJ@%% %  -k% %  qw]HM@b<f?7;f?  %   -  %   n  %  tN#;@ sbb<@  unknown -ZŁLS[<@33333DyKF$o<@33333D %  @   u - q  %   @ q  %   -XŁLDU9@33333DhkBLS[<@33333D@%% %   %  n % %  XŁLS[<@33333D~X4<Φ?  %  C 33333T   unknown -ikBLDU9@33333DikBLDU9@33333D@ %     -lS,62MHXv36@33333DikBLDU9@33333D@ %% %   %  ikBLDU9@33333D%% %  % %  lS,62MHXv36@33333D -9 X -ӤJ@%% %  f% %  M95@iٺژS?  %  " -  %  "   %   R@ " unknown -T9vO|lޥG@33333DJwC2N ?I@33333D %  8 # -   %  # 8 %    %  # -T9vOՄ9@33333DDsYN|lޥG@33333D@%% %  $| %  $ % %  5tdO؂F@33333DO4<Φ?  %  ; 33333T )  unknown -DsYNՄ9@33333DDsYNՄ9@33333D@ %  '  -N7*|Sv&@33333DDsYNՄ9@33333D@ %% %  ) %  DsYNՄ9@33333D%% %  +w% %  N7*|S@v&@33333D -9 X -ӤJ@%% %  ,[% %  $$S( "@^$?t߈]?  %   3 -  %  3   %   3q7 _ 3 unknown -9#QU5333333DV#M^ 33333D %  P 4 7  -   %  4 P -   %  4 -/ ONUr433333DV#MU5333333D@%% %  5[ %   % %  fD&C,?33333DٺژZS  %  S 33333T : 7 unknown -/ ONUr433333D/ ONUr433333D@ %  = 8  -/ ON8Xv3633333DcS,62MUr433333D@ %% %  : %  / ONUr433333D%% %  <_% %  cS,62M8Xv3633333D -9 X -ӤJ@%% %  =T% %  l_Lܶ72k}ؿ  %  D  -  %  D   %   @ D unknown -H=,S33333DH=,R33333D %  H E -   %  E H G    %  E -H=,Srv&33333DL7*|S33333D@%% %  FL %  F % %  L7*|Srv&33333Du߈]Z$?  %  K 33333T K  unknown -L7*|Srv&33333DL7*|Srv&33333D@ %  I  -L7*|SՄ933333DKsYNrv&33333D@ %% %  K %  L7*|Srv&33333D%% %  MG% %  KsYNՄ933333D -9 X -ӤJ@%% %  NK% %  j9Ok/=B?!G4<Φ?  %  U   % -  -9 F C7 U  - unknown -h5Fܵ M33333DRz~+FL(L33333D %  ` V Y    %  V `  - -   %  V  - -h5FL(L33333DH$o<yK33333D@%% %  W% %  -   -% %  4P5LvK33333D?pQ4<Φ?  %  - \33333T c    - unknown -H$o<yK33333DH$o<yK33333D@ % - _ Z  - - -H$o  %   * -   >  %   ( -   - c  % , -  - -R@  . - unknown -L7*|S@@33333DH=,S@wv&@33333D %    / - 0 - -   % 1 - 2 -33333T   3 - unknown -L7*|S@wv&@33333DL7*|S@wv&@33333D@%% %   % 4 -  5 -% %  C9R@ -  2@  ? - unknown -tkBL@DU9@33333D@YŁL@S[<@33333D@%% %  ( % @ -  A -% %  =+?@OY%=@33333D@Q4<Φ?  %  B -  C - D - - c  %  E - F -   G -  % H - I - 32@  J - unknown -cS,62M@Wr4@33333D/ ON@:Xv36@33333D %  ; -    -  %   ; - E - K -  %   L - -tkBL@:Xv36@33333DcS,62M@DU9@33333D@%% %   - % M -  N -% %  cS,62M@:Xv36@33333D}ؿ2k?  % O - > -33333T   P - unknown -tkBL@DU9@33333DtkBL@DU9@33333D@ % Q -    R - -tkBL@DU9@33333DYŁL@S[<@33333D@ %% %  / %  tkBL@DU9@33333D%% %  :% %  YŁL@S[<@33333D -9 X -ӤJ@%% %  % %  1>L@Aye<@Q4<Φ???  %  S -  T - U -   %  = <   - >  % V -   W -R@  X - unknown - @N7*|S@33333D@@v&@H=,S@33333D@%% %   % Y -  Z -% %  @H=,R@33333D@=? %% %    %  @H=,R@33333D@ %   [ - \ - ] -   %  , +  ! - -  % ^ - _ - # 2@  ` - unknown -Hr4@lS,62M@33333D@HXv36@/ ON@33333D@%% %   % a -  b -% %  oy)*?:w逥E@33333D@[Sٺژ %% %  ) %  U53@T#M@33333D@ %  c -  d - e - .  %  _ ^  ) - `  % f - + *3 g -\h@  h - unknown -}lޥGKsYN@33333D@Մ9T9vO@33333D@%% %   % i - ) j -% %   ?IJwC2N@33333D@8id?hp.? %% %   %   ?IJwC2N@33333D@ %   k - l - m - .  %  N M  1 - O  % n - o - 3 @  p - unknown -DU9tkBL@33333D@9Xv36cS,62M@33333D@%% %   % q -  r -% %  DU9tkBL@33333D@J4<Φ? %% %   %  S[Qٺژ?[S??  %  - ( - - -   %  - - ( y -  % - - ~ 32@ ( - unknown -DU9@hkBL@33333DS[<@XŁL@33333D %  \ - ) , - |  %  ) \ - - - |  %  ) - -HXv36@ikBL@33333DDU9@lS,62M@33333D@%% %  * % - y -% %  DU9@ikBL@33333D2k}?  % - _ -33333T / , - unknown -HXv36@lS,62M@33333DHXv36@lS,62M@33333D@ % - 2 -  - -Hr4@lS,62M@33333DHXv36@/ ON@33333D@ %% %  /$ %  HXv36@lS,62M@33333D%% %  1% %  Hr4@/ ON@33333D -9 X -ӤJ@%% %  2% %  fu3@.'QN@ٺژ[S??  %  9 - - - -   %  - - 9 -  % -  {2 -W @ 9 - unknown -Մ9@DsYN@33333D|lޥG@T9vO@33333D %  T - : - - -  %  : T - <  %  : - -v&@DsYN@33333DՄ9@N7*|S@33333D@%% %  ; % - ; -% %  -l7@k{O@33333Dٺژ?S  % - W -33333T @ - unknown -@v&@N7*|S@33333D@v&@N7*|S@33333D@ % - - >  - - @N7*|S@33333D@v&@H=,S@33333D@ %% %  @ %  @v&@N7*|S@33333D%% %  B% %   @H=,S@33333D -9 X -ӤJ@%% %  C|% %  @H=,:S@?  %  - J - - - 9  %  - - J -  % - -tN#;@ bb<@ J - unknown -Vr4V#M@33333DU53/ ON@33333D %  l - K N -  %  K l - - -  %  K - -9Xv36cS,62M@33333DVr4/ ON@33333D@%% %  L % - -% %  Vr4/ ON@33333Dغژ忟S  % - o -33333T Q N - unknown -9Xv36cS,62M@33333D9Xv36cS,62M@33333D@ % - T O  - -DU9tkBL@33333D9Xv36cS,62M@33333D@ %% %  Q %  9Xv36cS,62M@33333D%% %  S% %  DU9tkBL@33333D -9 X -ӤJ@%% %  Tw% %  b:f=PL@J4<Φ??  %  [ - - - - 9  %  - - [ -  % -  -R@ [ - unknown -tv&L7*|S@33333DH=,S@33333D %  d - \ - - -  %  \ d - ^  %  \ - -Մ9KsYN@33333Dtv&L7*|S@33333D@%% %  ] % - ] -% %  9na*C9R@33333D&ٺژ?FS?  % - g -33333T b - unknown -Մ9KsYN@33333DՄ9KsYN@33333D@ % - - `  - -}lޥGKsYN@33333DՄ9T9vO@33333D@ %% %  b %  Մ9KsYN@33333D%% %  d% %  |lޥGT9vO@33333D -9 X -ӤJ@%% %  el% %  黥rHqBN@hp.?8id?  %  l - - -  %  - - l -  % - - 3q7 _ l - unknown -L(LF$o<@33333DyKh5F@33333D %  | - m p -  %  m | - - - -  %  m - -ZŁLS[<@33333DyKF$o<@33333D@%% %  n % - -% %  *2|<=@33333DQ4<Φ  % -  -33333T s p - unknown -XŁLS[<@33333DXŁLS[<@33333D@ % - v q  - -XŁLDU9@33333DhkBLS[<@33333D@ %% %  s %  XŁLS[<@33333D%% %  u% %  ikBLDU9@33333D -9 X -ӤJ@%% %  ve% %  j_L涍7@2k}?  %  } - - -  %   }   %     @ }  unknown -JwC2N d/H@33333D| -"M ?I@33333D %  t - ~   -  %  ~ t -   %  ~  -T9vO|lޥG@33333DJwC2N ?I@33333D@%% %   %    % %  T9vO|lޥG@33333DKp.?Nid?  % -  w -33333T  unknown -T9vO|lޥG@33333DT9vO|lޥG@33333D@ %     -T9vOՄ9@33333DDsYN|lޥG@33333D@ %% %   %  T9vO|lޥG@33333D%% %  z% %  DsYNՄ9@33333D -9 X -ӤJ@%% %  \% %  ox|QZI#\2@ٺژ?S?  %       %    9 F C7   unknown -\BېR*rOr#33333D9#Q^ 33333D %  -    %   -   -  %    -9#QU5333333DV#M^ 33333D@%% %  X %    % %  `W6JL*4,;833333DVS?ٺژ  %   33333T -  unknown -V#MU5333333DV#MU5333333D@ %       -/ ONUr433333DV#MU5333333D@ %% %   %  V#MU5333333D%% %  \% %  / ONUr433333D -9 X -ӤJ@%% %  S% %  M95غژ忡S  %       %     Mm,#@  unknown -H=,R*rOr#33333D\BېR33333D %  -   ! -  %   -   %   " -H=,S33333DH=,R33333D@%% %  O % #   $ % %  H=,S33333D?\3&  % %  -33333T  & unknown -H=,S33333DH=,S33333D@ % '  "   ( -H=,Srv&33333DL7*|S33333D@ %% %   %  H=,S33333D%% %  J% %  L7*|Srv&33333D -9 X -ӤJ@%% %  L% %  ox|Q~I#\2'ٺژ?ES??  %  -    -  %   - - )  %   * -h5Fܵ M33333DRz~+FL(L33333D@%% %  " % +   , % %  0 -F3x8@33333DQ4<Φ?  % -  33333T - . unknown -h5FL(L33333Dh5FL(L33333D@ % /     0 -h5FL(L33333DH$o<yK33333D@ %% %   %  h5FL(L33333D%% %  &% %  H$o<yK33333D@? -9 X -ӤJ@%% %  A% %  Aye<1>LQ4<Φ  %  -  ) - -  %   -   - -  %   1 - d/H | -"M33333DRz~+Fܵ M33333D@%% %  % %   d/H | -"M33333D?V4<Φ?  % 2  -33333T  - 3 unknown - d/H | -"M33333D d/H | -"M33333D@ % 4  1   5 - ?IJwC2N33333D d/H| -"M33333D@ %% %   %   d/H | -"M33333D%% %  % %   ?IJwC2N33333D -9 X -ӤJ@%% %  <% %  绥rHrBNLp.?Nid??  % 6  -33333T   7 unknown -*rOr#@\BېR33333D*rOr#@\BېR33333D@%% %  p %  *rOr#@\BېR33333D%% %  % %  ^ @9#Q33333D@? -9 X -ӤJ@%% %  /% %  p(^>+@1TPVS?ٺژ %% %  % %  @H=,R33333D -9 X -ӤJ@%% %   % 8  9 :  ; -V#M@^ @33333D9#Q@U53@33333D@  %  <  -9#Q@^ @33333D\BېR@*rOr#@33333D@% %  L>Q@8{F""@\S ٺژ??  %  = > ? @   %  A  > B -   %   A  + -   %   ?  ) - - c  % C  - - D @ ( - E unknown -H=,R@@33333DH=,S@@33333D %    F G - >  % H  I 33333T - - ' - J unknown -H=,S@@33333DH=,S@@33333D@%% %   % K   L % %  L7*|S@wv&@33333Du߈]?Z$  %  F   0 -   % M   {2 2 -W @ / - N unknown -KsYN@wv&@33333D@L7*|S@Մ9@33333D@%% %  1 % O  G P % %  L7*|S@wv&@33333D -9 X -ӤJ@%% %  7 %  L7*|S@wv&@33333D%% %  % %  {\ O@7ػ%<@33333D@G4<Φ %% %  C %  KsYN@Մ9@33333D@ %  Q R S   %  - < - -  % T  U  > -@ V unknown -tkBL@:Xv36@33333D@cS,62M@DU9@33333D@%% %   ' % W   X % %  tkBL@DU9@33333D@ J4<Φ?? %% %   M %  YŁL@S[<@33333D@ %  Y  Z [ - c  %  \ ]  D - ^  % _  ` tN#;@ I -bb<@  a unknown -V#M@U53@33333D/ ON@Wr4@33333D %  R  - K - - G -  %   R \ b G -  %   c -cS,62M@Wr4@33333D/ ON@:Xv36@33333D@%% %     % d  D - e % %  / ON@Wr4@33333DS翻غژ?  % f  U 33333T  - g unknown -cS,62M@:Xv36@33333DcS,62M@:Xv36@33333D@ % h    i -tkBL@:Xv36@33333DcS,62M@DU9@33333D@ %% %  0 %  cS,62M@:Xv36@33333D%% %   9% %  tkBL@DU9@33333D -9 X -ӤJ@%% %   % %  f=PL@b:@?J4<Φ  %  j  k l   %   U - -  % m  W -*3 n \h@  o unknown -v&@DsYN@33333D@Մ9@N7*|S@33333D@%% %    % p  U - q % %   @H=,S@33333D@^$?t߈] %% %    %   @H=,S@33333D@ %   r s t   %  { z  ] - - |  % u  v  _ -@  w unknown -HXv36@ikBL@33333D@DU9@lS,62M@33333D@%% %  !  % x  ! y % %  HXv36@lS,62M@33333D@fٺژS? %% %  # ' %  Hr4@/ ON@33333D@ %  z ' { | .  %  ' e - -  % }  g - {2 ~ W @ '  unknown -Մ9KsYN@33333D@tv&L7*|S@33333D@%% %  )  %  e - % %  7ػ%<{\ O@33333D@?G4<Φ %% %  +  %  |lޥGT9vO@33333D@ %  / .  %  / m - -  %   o -32@ / unknown -9Xv36cS,62M@33333D@Vr4/ ON@33333D@%% %  1  %  1 % %  9Xv36cS,62M@33333D@2k}ؿ %% %  3  %  DU9tkBL@33333D@ %  7   %  7 u - -  %  w - R@ 7 unknown -T9vO|lޥG@33333D@JwC2N ?I@33333D@%% %  9 ~ %  u - % %  5tdO؂F@33333D@O4<Φ? %% %  ;  %  DsYNՄ9@33333D@ %  ?   %  ? } - -  %  tN#;@  -bb<@ ? unknown -ZŁLS[<@33333D@yKF$o<@33333D@%% %  A  %  A % %  XŁLS[<@33333D@~X4<Φ? %% %  C  %  ikBLDU9@33333D@ %  - G   %  G - -  %  - @ G unknown -H=,S33333D@H=,R33333D@%% %  I N %  - % %  L7*|Srv&33333D@u߈]Z$? %% %  K  %  L7*|Srv&33333D@ %  O -   %  O - -  %   3q7 -_ O unknown -9#QU5333333D@V#M^ 33333D@%% %  Q ] %  Q % %  fD&C,?33333D@ٺژZS %% %  S  %  / ONUr433333D@ %  - - W - - -  %  - Mm,#@ W unknown - d/H | -"M33333D@Rz~+Fܵ M33333D@%% %  Y  %  - % %   ?IJwC2N33333D@;f?;f? %% %  [  %   ?IJwC2N33333D@ %  _ - -  %  9 -F C7 _ unknown -h5Fܵ M33333D@Rz~+FL(L33333D@%% %  a ' %  a % %  4P5LvK33333D@?pQ4<Φ? %% %  c  %  H$o<yK33333D@%% %  h  %  o % %  @H=,R33333D@غژ?S? %% %  j o %  @H=,R33333D@%% %  o % %  s"RiK33333D@[Sٺژ? %% %  q s %  ^ @9#Q33333D@ %  w -   %  w -  %  tN#;@ -bb<@ w unknown -S[<@yK@33333DF$o<@ZŁL@33333D %  s x { - - -  %  x s -  %  x -DU9@hkBL@33333DS[<@XŁL@33333D@%% %  y  %  - % %  S[<@XŁL@33333D~X4<Φ  %  v 33333T ~  { unknown -DU9@ikBL@33333DDU9@ikBL@33333D@ %  |  -HXv36@ikBL@33333DDU9@lS,62M@33333D@ %% %  ~ " %  DU9@ikBL@33333D%% %  % %  HXv36@lS,62M@33333D -9 X -ӤJ@%% %  % %  95@M@S?iٺژ?  %  -   %  -  %  - R@ unknown -|lޥG@JwC2N@33333D ?I@T9vO@33333D %  k - -  %  k - -  %  -Մ9@DsYN@33333D|lޥG@T9vO@33333D@%% %   %  % %  ؂F@5tdO@33333D?O4<Φ?  %  n 33333T  - unknown -Մ9@DsYN@33333DՄ9@DsYN@33333D@ %   -v&@DsYN@33333DՄ9@N7*|S@33333D@ %% %   %  Մ9@DsYN@33333D%% %  % %  @v&@N7*|S@33333D -9 X -ӤJ@%% %  }% %  ( "@$$S@t߈]^$?  %  - - 9  %  -  %   3q7 -_ unknown -U53V#M@33333D^ 9#Q@33333D %  - - -  %  - -  %  -Vr4V#M@33333DU53/ ON@33333D@%% %   %  - % %  &C,?fD@33333D[Sٺژ?  %  33333T  unknown -Vr4/ ON@33333DVr4/ ON@33333D@ %   -9Xv36cS,62M@33333DVr4/ ON@33333D@ %% %   %  Vr4/ ON@33333D%% %  % %  9Xv36cS,62M@33333D -9 X -ӤJ@%% %  v% %  ݶ7l_L@}ؿ2k?  %  - - 9  %  -  %  - @ unknown -H=,R@33333DH=,S@33333D %  { - -  %  { - -  %  -tv&L7*|S@33333DH=,S@33333D@%% %   %  % %  tv&L7*|S@33333DZ$?u߈]?  %  ~ 33333T  - unknown -tv&L7*|S@33333Dtv&L7*|S@33333D@ %   -Մ9KsYN@33333Dtv&L7*|S@33333D@ %% %   %  tv&L7*|S@33333D%% %  % %  Մ9KsYN@33333D -9 X -ӤJ@%% %  m% %  k/=Bj9O@G4<Φ?  %  -  %  9 -F C7 unknown -ܵ MQz~+F@33333DL(Lh5F@33333D %  - -  %  - -  %  -L(LF$o<@33333DyKh5F@33333D@%% %   %  - % %  LvK4P5@33333DQ4<Φ?  %  33333T  - unknown -yKF$o<@33333DyKF$o<@33333D@ %     -ZŁLS[<@33333DyKF$o<@33333D@ %% %   %  yKF$o<@33333D%% %  % %  XŁLS[<@33333D -9 X -ӤJ@%% %  d% %  `=PLb:@￀X4<Φ  %    -   %     Mm,#@  unknown -| -"MQz~+F@33333Dܵ M d/H@33333D %    -   %     %  -JwC2N d/H@33333D| -"M ?I@33333D@%% %   % -  % %  JwC2N ?I@33333D;f?;f  %  33333T   unknown -JwC2N ?I@33333DJwC2N ?I@33333D@ %     -T9vO|lޥG@33333DJwC2N ?I@33333D@ %% %   %  JwC2N ?I@33333D%% %  }% %  T9vO|lޥG@33333D -9 X -ӤJ@%% %  ]% %  j9Ok/=B@?O4<Φ??  %     %      %   -\BېR*rOr#33333D9#Q^ 33333D@%% %  U %    % %  RiKs"@33333Dٺژ?[S?  %   33333T    unknown -9#Q^ 33333D9#Q^ 33333D@ %     -9#QU5333333DV#M^ 33333D@ %% %   %  9#Q^ 33333D%% %  Y% %  V#MU5333333D@? -9 X -ӤJ@%% %  R% %  .'QNfu3ZSٺژ?  %    -   %  !   %   -H=,R*rOr#33333D\BېR33333D@%% %  R% %  H=,R33333DS?غژ  %   33333T    unknown -H=,R33333DH=,R33333D@ %      -H=,S33333DH=,R33333D@ %% %   %  H=,R33333D%% %  M% %  H=,S33333D -9 X -ӤJ@%% %  M% %  #$S6 "Z$?u߈]??  %   33333T  -  unknown -Rz~+Fܵ M33333DRz~+Fܵ M33333D@ %    -  -h5Fܵ M33333DRz~+FL(L33333D@ %% %   - %  Rz~+Fܵ M33333D%% %   -#% %  h5FL(L33333D@? -9 X -ӤJ@%% %   -@% %  ؉6Bp KpQ4<Φ?  % !  * -  " - d/H | -"M33333DRz~+Fܵ M33333D@ %% %   -% %   d/H | -"M33333D -9 X -ӤJ@%% %   -=% %  tw]HM;f?;f? %% %   -% %  *rOr#@\BېR33333D -9 X -ӤJ@%% %  " - % #  c ^  $ -V#M@U53@33333D/ ON@Wr4@33333D@  %  Z " - -V#M@^ @33333D9#Q@U53@33333D@% %  1TP@w(^>+@ٺژ?WS?  %  % & Y ' # -  %  ( % - & ) -   %  % - ( & - B   %  ( - Y % - @ - c  % *  D  + Mm,#@ ? , unknown -\BېR@@33333DH=,R@*rOr#@33333D %  ' - & - - . -   % /  0 33333T D  > 1 unknown -H=,R@@33333DH=,R@@33333D@%% %  ) - % 2  ) - 3 % %  H=,S@@33333D  %  - / - * - G   % 4  2 - I R@ F 5 unknown -L7*|S@@33333D@H=,S@wv&@33333D@%% %  + -2 % 6  . 7 % %  H=,S@@33333D -9 X -ӤJ@%% %  - -6 %  H=,S@@33333D%% %  0 -% %  C9R@  < - ? % %  cS,62M@:Xv36@33333D@}ؿ2k? %% %  > -L %  tkBL@DU9@33333D@ %  ? B - < ' - c  %  @ A B - [ :  % B  C  3q7 ` _ B - D unknown -V#M@^ @33333D9#Q@U53@33333D %  9 C - F - b - ^  %  C - 9 @ E - ^  %  C - 9 -V#M@U53@33333D/ ON@Wr4@33333D@%% %  D -  % F  [ G % %  fD@&C,33333Dٺژ?[S?  % H  < 33333T I - F - I unknown -/ ON@Wr4@33333D/ ON@Wr4@33333D@ % J  L - G -  K -cS,62M@Wr4@33333D/ ON@:Xv36@33333D@ %% %  I -1 %  / ON@Wr4@33333D%% %  K -8% %  cS,62M@:Xv36@33333D -9 X -ӤJ@%% %  L -% %  l_L@޶7@2k?}?  %  L S - M N   %  - - S - l - -  % O  n  {2 P W @ S - Q unknown -Մ9@DsYN@33333D@|lޥG@T9vO@33333D@%% %  U - % R  l S % %  -l7@k{O@33333D@ٺژ?S %% %  W - %  @v&@N7*|S@33333D@ %  [ - T U V   %  - - [ - t - -  % W  X  v 32@ [ - Y unknown -DU9@hkBL@33333D@S[<@XŁL@33333D@%% %  ] - % Z  ] - [ % %  DU9@ikBL@33333D@2k}? %% %  _ -% %  HXv36@lS,62M@33333D@ %  \ c - ] ^ .  %  - - c - | - -  % _  ~  ` R@ c - a unknown -tv&L7*|S@33333D@H=,S@33333D@%% %  e - % b  | c % %  9na*C9R@33333D@&ٺژ?FS? %% %  g - %  Մ9KsYN@33333D@ %  k - d e f .  %  - - k - - -  % g  h tN#;@ bb<@ k - i unknown -Vr4V#M@33333D@U53/ ON@33333D@%% %  m - % j  m - k % %  Vr4/ ON@33333D@غژ忟S %% %  o - %  9Xv36cS,62M@33333D@ %  s - l m   %   s - -   % n   o @ s - p unknown -JwC2N d/H@33333D@| -"M ?I@33333D@%% %  u - % q  r % %  T9vO|lޥG@33333D@Kp.?Nid? %% %  w - %  T9vO|lޥG@33333D@ %  { - s t   %  - - { - - -  % u  v  3q7 _ { - w unknown -L(LF$o<@33333D@yKh5F@33333D@%% %  } - % x  } - y % %  *2|<=@33333D@Q4<Φ %% %   - %  XŁLS[<@33333D@ %    - -   % z   { Mm,#@ - | unknown -H=,R*rOr#33333D@\BېR33333D@%% %  -Q % }  ~ % %  H=,S33333D@?\3& %% %  - %  H=,S33333D@ %    - -   %   { 9 F C7 - unknown -\BېR*rOr#33333D@9#Q^ 33333D@%% %  -Z %  - % %  `W6JL*4,;833333D@VS?ٺژ %% %  - %  V#MU5333333D@%% %  -! %  - % %   d/H | -"M33333D@?V4<Φ? %% %  - %   d/H | -"M33333D@%% %  -$% %  0 -F3x8@33333D@Q4<Φ? %% %  - %  h5FL(L33333D@%% %  -q %  *rOr#@\BېR33333D@ %  - -   %  -  %   3q7 _ - unknown -F$o<@yK@33333Dh5F@L(L@33333D %  U - - -  %  - U -  %  - -S[<@yK@33333DF$o<@ZŁL@33333D@%% %  - %  % %  =@*2|<@33333DQ4<Φ?  %  X 33333T - - unknown -S[<@XŁL@33333DS[<@XŁL@33333D@ %  - -  -DU9@hkBL@33333DS[<@XŁL@33333D@ %% %  -  %  S[<@XŁL@33333D%% %  -% %  DU9@ikBL@33333D -9 X -ӤJ@%% %  -% %  涍7@j_L@}?2k?  %  - -   %  -  %   @ - unknown - d/H@| -"M@33333D ?I@JwC2N@33333D %  M - -  %  - M -  %  - -|lޥG@JwC2N@33333D ?I@T9vO@33333D@%% %  - %  - % %  |lޥG@T9vO@33333DNid?Kp.  %  P 33333T - unknown -|lޥG@T9vO@33333D|lޥG@T9vO@33333D@ %  -  -Մ9@DsYN@33333D|lޥG@T9vO@33333D@ %% %  - %  |lޥG@T9vO@33333D%% %  -% %  Մ9@DsYN@33333D -9 X -ӤJ@%% %  -~% %  ZI#\2@ox|Q@S翎ٺژ?  %  -  %  9 F C7 - unknown -*rOr#9#Q@33333D^ \BېR@33333D %  e - -  %  - e -  %  - -U53V#M@33333D^ 9#Q@33333D@%% %  - %  % %  M*4,;8`W6J@33333DٺژWS  %  -33333T h  unknown -U53V#M@33333DU53V#M@33333D@ %  - -  -Vr4V#M@33333DU53/ ON@33333D@ %% %  - %  U53V#M@33333D%% %  -% %  Vr4/ ON@33333D -9 X -ӤJ@%% %  -u% %  95M@S翾غژ?  %  -  %   Mm,#@ - unknown -*rOr#\BېR@33333DH=,R@33333D %  ] - -  %  - ] -  %  - -H=,R@33333DH=,S@33333D@%% %  - %  - % %  H=,S@33333D\3&  %  ` 33333T - unknown -H=,S@33333DH=,S@33333D@ %  -  -tv&L7*|S@33333DH=,S@33333D@ %% %  - %  H=,S@33333D%% %  -% %  tv&L7*|S@33333D -9 X -ӤJ@%% %  -n% %  I#\2ox|Q@FS?&ٺژ?  %  s - -  %  - s   %  - -ܵ MQz~+F@33333DL(Lh5F@33333D@%% %  - %  - % %  3x8@0 -F@33333D?Q4<Φ?  %  -33333T v  unknown -L(Lh5F@33333DL(Lh5F@33333D@ %  - -  -L(LF$o<@33333DyKh5F@33333D@ %% %  - %  L(Lh5F@33333D%% %  -% %  yKF$o<@33333D@? -9 X -ӤJ@%% %  -c% %  1>LAye<@Q4<Φ?  %  l - -   %  - l    %  - -| -"MQz~+F@33333Dܵ M d/H@33333D@%% %  -% %  | -"M d/H@33333DV4<Φ?  %  o 33333T    unknown -| -"M d/H@33333D| -"M d/H@33333D@ %    -JwC2N d/H@33333D| -"M ?I@33333D@ %% %    %  | -"M d/H@33333D%% %   % %  JwC2N ?I@33333D -9 X -ӤJ@%% %   ^% %  rBN滥rH@Nid?Kp.?  %  { 33333T    unknown -\BېR*rOr#33333D\BېR*rOr#33333D@ %     -\BېR*rOr#33333D9#Q^ 33333D@ %% %    %  \BېR*rOr#33333D%% %   V% %  9#Q^ 33333D@? -9 X -ӤJ@%% %   Q% %  1TPr(^>+ٺژVS  %     -H=,R*rOr#33333D\BېR33333D@ %% %  ! P% %  H=,R33333D -9 X -ӤJ@%% %  " N% %  H=,:S\3&? %% %  )  % %  Rz~+Fܵ M33333D -9 X -ӤJ@%% %  * ?% %  𽇀0FXĔ"L?Q4<Φ?? %% %  1 >% %  0?\q-G޵,`;MV4<Φ? %% %  9 % %  .'QN@fu3@[S?ٺژ  %  < A # -  %  < = ) # -  %  + 9 C F C7 Y unknown -9#Q@^ @33333D\BېR@*rOr#@33333D %  > = -   %  33333T +  & unknown -\BېR@*rOr#@33333D\BېR@*rOr#@33333D@%% %  @  %  @ % %  H=,R@@33333DSغژ?  %  F A .   %  I  0 @ - unknown -H=,R@@33333D@H=,S@@33333D@%% %  B 3 %  % %  H=,R@@33333D -9 X -ӤJ@%% %  D 5 %  H=,R@@33333D%% %  G % %  L7*|S@wv&@33333D@u߈]?Z$ %% %  I E %  H=,S@@33333D@ %  Q   %  ] \ Q : - ^  %  tN#;@ < bb<@ Q unknown -V#M@U53@33333D@/ ON@Wr4@33333D@%% %  S % %  S % %  / ON@Wr4@33333D@S翻غژ? %% %  U K %  cS,62M@:Xv36@33333D@ %  Z ] E :  %  Z % - : %% %  [   %  ' % %  `W6J@N*4,;8@33333DWSٺژ?  %  ` 33333T  @ unknown -V#M@U53@33333DV#M@U53@33333D@%% %  ` 2 %  V#M@U53@33333D%% %  b 7% %  / ON@Wr4@33333D -9 X -ӤJ@%% %  c % %  M@95@غژ?S?  %  j   %  j N -  %  P  R@ j unknown -|lޥG@JwC2N@33333D@ ?I@T9vO@33333D@%% %  l  %  N % %  ؂F@5tdO@33333D@?O4<Φ? %% %  n  %  Մ9@DsYN@33333D@ %  r   %  r V -  %  tN#;@ X bb<@ r unknown -S[<@yK@33333D@F$o<@ZŁL@33333D@%% %  t  %  t % %  S[<@XŁL@33333D@~X4<Φ %% %  v # %  DU9@ikBL@33333D@ %  d z .  %  z ^ -  %  `   @ z  unknown -H=,R@33333D@H=,S@33333D@%% %  |  %   ^  % %  tv&L7*|S@33333D@Z$?u߈]? %% %  ~  %  tv&L7*|S@33333D@ %  \   .  %  f -  %     3q7 h _ unknown -U53V#M@33333D@^ 9#Q@33333D@%% %   % -  % %  &C,?fD@33333D@[Sٺژ? %% %   %  Vr4/ ON@33333D@ %    m -   %  o  Mm,#@  unknown -| -"MQz~+F@33333D@ܵ M d/H@33333D@%% %   %   m  % %  JwC2N ?I@33333D@;f?;f %% %   %  JwC2N ?I@33333D@ %  t -  %   9 v F C7  unknown -ܵ MQz~+F@33333D@L(Lh5F@33333D@%% %   %    % %  LvK4P5@33333D@Q4<Φ? %% %   %  yKF$o<@33333D@%% %  T %    % %  H=,R33333D@S?غژ %% %   %  H=,R33333D@%% %  W% %  RiKs"@33333D@ٺژ?[S? %% %   %  9#Q^ 33333D@%% %   %  Rz~+Fܵ M33333D@ %      %    9 F C7  unknown -Qz~+F@L(L@33333Dh5F@ܵ M@33333D %   %    -  %   -F$o<@yK@33333Dh5F@L(L@33333D@%% %   %   % %  4P5@LvK@33333D￀Q4<Φ  % !  33333T  " unknown -F$o<@yK@33333DF$o<@yK@33333D@ % #   $ -S[<@yK@33333DF$o<@ZŁL@33333D@ %% %   %  F$o<@yK@33333D%% %  % %  S[<@XŁL@33333D -9 X -ӤJ@%% %  % %  b:@`=PL@X4<Φ?  %  % & '  % (    Mm,#@ ) unknown -Qz~+F@ܵ M@33333D d/H@| -"M@33333D %  & * -  %   %  + - d/H@| -"M@33333D ?I@JwC2N@33333D@%% %   % ,  - % %   ?I@JwC2N@33333D;f;f  % .  33333T  / unknown - ?I@JwC2N@33333D ?I@JwC2N@33333D@ % 0  +  1 -|lޥG@JwC2N@33333D ?I@T9vO@33333D@ %% %   %   ?I@JwC2N@33333D%% %  % %  |lޥG@T9vO@33333D -9 X -ӤJ@%% %  % %  k/=B@j9O@O4<Φ??  %    %   2  %  3 -*rOr#9#Q@33333D^ \BېR@33333D@%% %   % 4  5 % %  s"@RiK@33333D\S? ٺژ  % 6  33333T   7 unknown -^ 9#Q@33333D^ 9#Q@33333D@ % 8   9 -U53V#M@33333D^ 9#Q@33333D@ %% %   %  ^ 9#Q@33333D%% %  % %  U53V#M@33333D@? -9 X -ӤJ@%% %  t% %  fu3.'QN@ٺژ?[S?  %  2 -  %   %  : -*rOr#\BېR@33333DH=,R@33333D@%% %  % %  H=,R@33333Dغژ心S  % ;   33333T  < unknown -H=,R@33333DH=,R@33333D@ % =  :  > -H=,R@33333DH=,S@33333D@ %% %   %  H=,R@33333D%% %  % %  H=,S@33333D -9 X -ӤJ@%% %  o% %  8 "#$S@u߈]?Z$?  % ?  33333T  @ unknown -ܵ MQz~+F@33333Dܵ MQz~+F@33333D@ % A   B -ܵ MQz~+F@33333DL(Lh5F@33333D@ %% %   %  ܵ MQz~+F@33333D%% %  % %  L(Lh5F@33333D@? -9 X -ӤJ@%% %  b% %  p K׉6B@￀Q4<Φ  % C    D -| -"MQz~+F@33333Dܵ M d/H@33333D@ %% %   % %  | -"M d/H@33333D -9 X -ӤJ@%% %  _% %  Msw]H@;f;f? %% %   S% %  \BېR*rOr#33333D -9 X -ӤJ@%% %   P% %  L>Q3{F""[S?ٺژ? %% %   O% %  ҿzRb' غژ忇S  %  & % E - # -  % F  C 33333T G  % H unknown -9#Q@^ @33333D9#Q@^ @33333D@%% %  ' % %  RiK@s"33333D ٺژ\S  %  - (   % I  0  Mm,#@ J unknown -\BېR@@33333D@H=,R@*rOr#@33333D@%% %  ) 4 % K  E L % %  \BېR@*rOr#@33333D -9 X -ӤJ@%% %  + 4 %  \BېR@*rOr#@33333D%% %  .  % %  H=,S@@33333D@ %% %  0 F %  H=,R@@33333D@ %  8 E   %  A @ 8 - :  % M  G  3q7 _ 8 N unknown -V#M@^ @33333D@9#Q@U53@33333D@%% %  : $ % O  : P % %  fD@&C,33333D@ٺژ?[S? %% %  < J %  / ON@Wr4@33333D@%% %  C 3 %  9#Q@^ @33333D%% %  E 6% %  V#M@U53@33333D@? -9 X -ӤJ@ %  L Q R   %  L -  % S   T @ L U unknown - d/H@| -"M@33333D@ ?I@JwC2N@33333D@%% %  N  % V  W % %  |lޥG@T9vO@33333D@Nid?Kp. %% %  P  %  |lޥG@T9vO@33333D@ %  T X Y   %  T -  % Z  [  3q7 _ T \ unknown -F$o<@yK@33333D@h5F@L(L@33333D@%% %  V  % ]  V ^ % %  =@*2|<@33333D@Q4<Φ? %% %  X ! %  S[<@XŁL@33333D@ %  \ -  % _    ` Mm,#@ \ a unknown -*rOr#\BېR@33333D@H=,R@33333D@%% %  ^  % b  c % %  H=,S@33333D@\3& %% %  `  %  H=,S@33333D@ %  d  -  % d  ` 9  F C7 d e unknown -*rOr#9#Q@33333D@^ \BېR@33333D@%% %  f  % f  f g % %  M*4,;8`W6J@33333D@ٺژWS %% %  h  %  U53V#M@33333D@%% %  m  % h  t i % %  | -"M d/H@33333D@V4<Φ? %% %  o  %  | -"M d/H@33333D@%% %  t % %  3x8@0 -F@33333D@?Q4<Φ? %% %  v  %  L(Lh5F@33333D@%% %  {  %  \BېR*rOr#33333D@ %  X    %  X % j   %  k -Qz~+F@L(L@33333Dh5F@ܵ M@33333D@%% %   % l  m % %  0 -F@3x8@@33333DQ4<Φ?  % n  33333T [   o unknown -h5F@L(L@33333Dh5F@L(L@33333D@ % p   q -F$o<@yK@33333Dh5F@L(L@33333D@ %% %   %  h5F@L(L@33333D%% %  % %  F$o<@yK@33333D@? -9 X -ӤJ@%% %  % %  Aye<@1>L@?Q4<Φ?  %  Q  j - '  %  Q * '  %  r -Qz~+F@ܵ M@33333D d/H@| -"M@33333D@%% %  % %   d/H@| -"M@33333DV4<Φ  % s  T 33333T  & t unknown - d/H@| -"M@33333D d/H@| -"M@33333D@ % u  r  v - d/H@| -"M@33333D ?I@JwC2N@33333D@ %% %   %   d/H@| -"M@33333D%% %  % %   ?I@JwC2N@33333D -9 X -ӤJ@%% %  % %  滥rH@rBN@Kp.Nid?  % w  ` 33333T  x unknown -*rOr#\BېR@33333D*rOr#\BېR@33333D@ % y   z -*rOr#9#Q@33333D^ \BېR@33333D@ %% %   %  *rOr#\BېR@33333D%% %  % %  ^ 9#Q@33333D@? -9 X -ӤJ@%% %  s% %  u(^>+1TP@WSٺژ?  % {  3  | -*rOr#\BېR@33333DH=,R@33333D@ %% %  % %  H=,R@33333D -9 X -ӤJ@%% %  p% %  H=,:S@\3&<? %% %  % %  ܵ MQz~+F@33333D -9 X -ӤJ@%% %  a% %  WĔ"L0F@Q4<Φ?? %% %  `% %  ޵,`;M/?\q-G@V4<Φ  % }  9 G F C7 ~ unknown -9#Q@^ @33333D@\BېR@*rOr#@33333D@%% %  5 %   % %  9#Q@^ @33333D@? -9 X -ӤJ@%% %  !% %  H=,R@@33333D@Sغژ? %% %  G %  \BېR@*rOr#@33333D@%% %  #% %  `W6J@N*4,;8@33333D@WSٺژ? %% %  I %  V#M@U53@33333D@ %  & % R - '  %  T  Mm,#@ unknown -Qz~+F@ܵ M@33333D@ d/H@| -"M@33333D@%% %   %  R % %   ?I@JwC2N@33333D@;f;f %% %   %   ?I@JwC2N@33333D@ %    Y -   %  9 [ F C7 unknown -Qz~+F@L(L@33333D@h5F@ܵ M@33333D@%% %   %  % %  4P5@LvK@33333D@￀Q4<Φ %% %   %  F$o<@yK@33333D@%% %   %   % %  H=,R@33333D@غژ心S %% %    %  H=,R@33333D@%% %   % %  s"@RiK@33333D@\S? ٺژ %% %    %  ^ 9#Q@33333D@%% %   %  ܵ MQz~+F@33333D@ %  33333T    unknown -Qz~+F@ܵ M@33333DQz~+F@ܵ M@33333D@ %     -Qz~+F@L(L@33333Dh5F@ܵ M@33333D@ %% %    %  Qz~+F@ܵ M@33333D%% %   % %  h5F@L(L@33333D@? -9 X -ӤJ@%% %   % %  ׉6B@p K@Q4<Φ?  %  k '  -Qz~+F@ܵ M@33333D d/H@| -"M@33333D@ %% %  * % %   d/H@| -"M@33333D -9 X -ӤJ@%% %  + % %  sw]H@M@;f;f?? %% %  2 % %  *rOr#\BېR@33333D -9 X -ӤJ@%% %  3 r% %  6{F""L>Q@ ٺژ\S? %% %  : q% %  b' ҿzR@Sغژ? %% %  E "% %  RiK@s"33333D@ ٺژ\S %% %  G H %  9#Q@^ @33333D@%% %  R  %  Y % %   d/H@| -"M@33333D@V4<Φ %% %  T  %   d/H@| -"M@33333D@%% %  Y % %  0 -F@3x8@@33333D@Q4<Φ? %% %  [  %  h5F@L(L@33333D@%% %  `  %  *rOr#\BېR@33333D@%% %  j % %  Qz~+F@ܵ M@33333D -9 X -ӤJ@%% %  k % %  0F@WĔ"L@Q4<Φ? %% %  r % %  /?\q-G@޵,`;M@V4<Φ? %% %   %  Qz~+F@ܵ M@33333D@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 259929 -$end 'sab' -$end 'Design_80.setup/NativeGeometryFiles' -$begin 'Design_89.setup/NativeGeometryFiles' -NumFiles= 12 -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0000006.sab -BIN000000273163 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -p= -`p= -`GzDb@p= -`@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6 Stator_Yoke lump%   -p= -`p= -`GzDb@p= -`@GzD@ transform% ???? rgb_color% st% - %    ???properties%  ansoft% %    Stator_Yoke -shell%   -p= -`p= -`GzDb@p= -`@GzD@% % %  -   Stator_Yoke%%% %   ATTRIB_XACIS_ID%141135 face%     -p= -`p= -`GzD@b@p= -`@GzD@ -Ch:;S?M{rпo7?%%% %    %141135%%% %    ATTRIB_XSTEP_PRODUCT_ID%16 Stator_Yokeid%% %    %      -p= -`p= -`GzDb@p= -`@GzD -SÿAh:;?M{rпo7? loop%    -\q\\q\GzD@\q\@\q\@GzD@   -plane% surface%  %= ףp=Z@GzD@ar^?@@ %%% %  - %16 Stator_Yoke%%% %  %6 Stator_Yoke%%% %  %141536%% %    %      -?ZHج &T3@GzD-2`@p= -`@GzD@  %  ! -p= -`p= -`GzDb@p= -`@GzD  % %  :ș< ףp=Z@GzDar^<@ %%% %  %14-1 %  " # -`@GzD@a@@GzD@   coedge%  $ % & '  %%% %   %141538%% %  (   % ) * +   -?ZHp= -`GzD-2`@ڬ &T3GzD@  % , -  -?ZHج &T3@GzD-2`@p= -`@GzD@   cone% %  =24W@24W@? ?p= -`@ - %%% %  %14-1 % . / 0 -\q\\q\GzD\q\@\q\@GzD   %  1 2 3 4 -   %  5 6 -_R2\@GzD@P2_@GzD@   %  # # 7 8   %  9  : ;   %   < = >   %  ? @  ' - A  edge% B C D iU?  E unknown -zNA>Y@cAC@GzD@ -w`-Z@{]F@GzD@%%% %   %141584%% %  F  - % G H I   -p= -`j|mZGzD` -Tj|mZ@GzD@  % J K  -?ZHp= -`GzD-2`@ڬ &T3GzD@  %%% %  %14-1 %  L M N O -  %%% %  %14-1 %  P Q -`@GzDa@@GzD   %  R S T U  %  V ! W X -   %  ! Y Z [ -   %  \ ] ! 4 +  % ^ _;Iؿ `iq? ! a unknown -?ZHp= -`GzD-2`@ڬ &T3GzD %  b c -`R2_GzD@ P2\GzD@   %  6 6 d e "  %  7 7 # 8 - f  % g h9 h-DT!@ # i unknown -`@GzD@a@@GzD@ %  j $ k l   %  m n $ ; - o  % p D qf@T@ $ r unknown -v`-Z@~@@GzD@Ed[@C@GzD@ %  % s t u   %  v w % > - x  % y z C@T@ % { unknown -_39X@{]F@GzD@EmAY@n@6J@GzD@ %  T & w | - A  %  & T m } - A  % ~ @  -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@ -%% %  'x vertex%  '  %  '  ellipse% -curve%  GzD@J6sY@s]F@=? - - iU?%%% %  ) %141584%% %  *  %   - -`R2_GzD P2\GzD@  %  * -p= -`j|mZGzD` -Tj|mZ@GzD@  %%% %  +%14-1 %  ] \ - +  %  - -   %  - -   %  - O b  %  60p? +q5+ @ N unknown -?ZHج &T3@GzD@-2`@p= -`@GzD@ %  -_R2\@GzDP2_@GzD   %  Q Q /  %  0  %  0  %  @ ? 0 U - A  %   ViU? 0 unknown -{NA>Y@kAC@GzD -w`-Z@{]F@GzD %  1   %  1 X  %   -9 -p _,9 -p? W unknown -%^вN=%`GzD?ZH8q_GzD %  2   %  2 [  %  `,9 -p 8 -p? Z unknown --2`@۬ &T3GzD'XQa@q%GzD %  K 3 - +  %  3 K - + %% %  4 %  4  %  4 % %  GzD?NM=p= -`?  %  -p= -`p= -`GzD@b@p= -`@GzD@   %  c c 5  %  d d 6 e -  %  H -DT!@ 6 unknown -_R2\@GzD@P2_@GzD@ %  7 -`@GzD@a@@GzD@ -%% %  8 %  8 % %  @a@GzD@ar^<@?  %  9   %  9 l -  %  q iU? 9 unknown ->veHZ@2Zx9@GzD@66@[@~@@GzD@ %  : @ } o  %  : o  %  m -v`-Z@~@@GzDEd[@C@GzD@ -%% %  ;y %  ; % %  EdZ@A@GzD@Rď %  % %  EmAX@n@6H@GzD@hElR<`~ ?삁<yoxG@_9? - -@T@ %   C0/>:u? ? unknown -NA>Y@{]F@GzDNA>Y@{]F@GzD@ %  D 0/>:u? @ unknown - -w`-Z@kAC@GzD -w`-Z@kAC@GzD@%%% %  A%14-1 %  A  - -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  B '%1414299%% %  C -point%  NA>Y@{]F@GzD@%% %  D %   -w`-Z@kAC@GzD@%%% %  G *%141584%% %  H  %   - -_R2\@GzDP2_@GzD@  %  H -`R2_GzD P2\GzD -% %  @Q2]?=VcEJ-? ?@ %%% %  I%14-1 %  - I  %  K b  %  ;Iؿ iq? unknown -?ZHp= -`GzD@-2`@ڬ &T3GzD@ %  M L     %    L   %  GzD GzD@ L  tangent --2`@ڬ &T3@GzD-2`@ܬ &T3@GzD@ %  -  M   %  GzD GzD@ M  tangent -?ZHa4B_@GzD?ZHa4B_@GzD@ %   N   - b  %  N    - b %% %   O %  O  %   % %  GzD@? 1xK=p= -`?  %   -`R2_GzD P2\GzD   %    P  %  Q -   %  9 -DT!@ Q  unknown -`@GzDa@@GzD %   R ! "  %  w v R - x  % #  $f@T@ R % unknown -_39X@{]F@GzDEmAY@n@6J@GzD %  S & ' (  %  n m S - o  % ) * /@T@ S + unknown - w`-Z@~@@GzDEd[@C@GzD%% %  , U % - } . % / | 0% %  GzDQbr< -BL?v`-Z@wAC@=? - -ViU? %  1 V 2 3 -   %  4 5 V - 6  % 7 Q 8Q? V 9 unknown -@TI7ˇ`GzD%^вN֕EN]GzD %  : W ]  %  W : 4 ;  %  : < -%^вN=%`GzD?ZH8q_GzD@ = %% %  X % > ?% %  \0 -J8T`GzDar^<͐BhZ`sT#@?  %  Y   @ -   %  A B Y - C  % D EQ Q? Y F unknown -'XQa@q%GzDb@q%@GzD %  G Z B H  %  Z G \  %  Z I --2`@ܬ &T3GzD'XQa@q%GzD@ J %% %  [ % K L% %  ia@I4GzDar^<,[S6@?  % M GzD `GzD@ \ N tangent --2`@ܬ &T3GzD-2`@ڬ &T3GzD@ % O _GzD GzD@ ] P tangent -?ZHa4B_GzD?ZHa4B_GzD@%%% %  ^ 4%1414394%% %  _2 %  ?ZHa4B_GzD%% %  `1 %  -2`@ڬ &T3GzD%%% %  b%14-1 %  c -  % Q Rh/¼ R-DT!@ c S unknown -`R2_GzD@ P2\GzD@ %  d -_R2\@GzD@P2_@GzD@ -%% %  e % T e U% %  ?Q2]@GzD@ar^<@VcEJ-@?  % V <   - -`@GzDa@@GzD@ % %  @a@?@? ?@ %% %  h" %  a@GzD@ %  W j X Y   %  Z [ j - \  % ]  ^@T@ j _ unknown -66@[@kl$1@GzD@۠U\@2,Ǩ9@GzD@ %  ' k n -  %  k ' Z ` -  % a b -=veHZ@2Zx9@GzD66@[@~@@GzD@ c -%% %  d lz % e ` f% %  GzD@eF|olDUfв<>veHZ@~@@=? - -iU? % g * q0/>:u? h unknown -CveHZ@~@@GzDCveHZ@~@@GzD@%%% %  o%14-1 % i j o  - -v`-Z@~@@GzDEd[@C@GzD@ % %  EdZ@A@o_E;f@;f@? ?@ - %%% %  p ;%1414300%% %  k q %  CveHZ@~@@GzD@ %  s l m n   %  o p s - q  % r s f@T@ s t unknown -; -V@&pM@GzD@r M,X@{P@GzD@ %  ! t p u -  %  t ! v -  % v w -W@JdJ@GzD_39X@&pM@GzD@ x -%% %  y u % z {% %  GzD@?(h`윲<W@&pM@=? - -iU? % | z $0/>:u? } unknown -_39X@LdJ@GzD_39X@LdJ@GzD@%%% %  x%14-1 % ~  x  - -_39X@{]F@GzDEmAY@n@6J@GzD@ % %  EmAX@n@6H@o_E;f@;f@? ?@ - %%% %  y >%1414391%% %   z! %  _39X@LdJ@GzD@%% %   | straight% %  NA>Y@{]F@GzD@@ - -0/>:u?%% %   }% %   -w`-Z@kAC@GzD@@ - -0/>:u?%% %   D %      - -ѹɒ&y[@GzDn X -\q\@GzD@ %%% %  C%1416808%%% %  D%1416809%% %    %   -_R2\@GzDP2_@GzD -% %  ?Q2]@?@VcEJ-@? ?@  %  H -`R2_GzD@ P2\GzD@ - %    -  %     - I  %     - I  %    b  %  DU p] unknown -p= -`j|mZGzD@` -Tj|mZ@GzD@ %   G  - b  %   :  - b %% %    %   %    %    -   %  60p? +q5+ @  a unknown -?ZHڬ &T3@GzD-2`@p= -`@GzD %      %   @   %    --2`@q%@GzD'XQa@ܬ &T3@GzD@  %% %  V %   % %  -2`@ܬ &T3@=? -t=:R -t=:R@ %       %      %  -  -%^вN:q_@GzD?ZH=%`@GzD@  %% %  W %   % %  ?ZHa4B_@= -t=:R -t=:R@ %     b  %  9 -p 49 -p?   unknown -%^вN:q_@GzD@?ZH=%`@GzD@ %    b  %  ,9 -p 8 -p?   unknown --2`@q%@GzD@'XQa@۬ &T3@GzD@%%% %  O%1414298%% %  ) %  -2`@ڬ &T3@GzD@%% %  * %  ?ZHa4B_@GzD@ %      %     -  %  H< -DT!@  unknown -_R2\@GzDP2_@GzD %  f -`@GzDa@@GzD -%% %  S %  % %  @a@GzDar^?@?  %      %  " -  %  $ iU?  unknown -W@LdJ@GzD_39X@&pM@GzD%% %    %  % %  EmAX@n@6H@GzD!;&Yr;zF?^&aI@! -9? - -f@T@ %      %  ( -  %   *iU?  unknown -=veHZ@2Zx9@GzD66@[@~@@GzD%% %   R %  % %  EdZ@A@GzDVFg.?A]@?O? ? - -/@T@%%% %  U%1414395%% %   = %   -w`-Z@kAC@GzD%% %   > %  NA>Y@{]F@GzD %     -   %    3   %  89 -p 88 -p? 2  unknown -g -T֕EN]GzD6Sj|mZGzD %   ; - 6  %     - 6  %  4  -@TI7ˇ`GzD%^вN֕EN]GzD@  %% %   %  % %  Qؓ nO^GzDt #?  %    %  GzD GzD@ 4  tangent -%^вN=%`GzD%^вN=%`GzD@ %    = -%^вN=%`GzD?ZH8q_GzD@ % %  \0 -J8T`=͐BhZ`sT#@? #@ %% %  3 %  %^вN=%`GzD %  E8 -p ,9 -p?   unknown --2`@q%@GzD'XQa@۬ &T3@GzD %     - C  %   H - C  %  B  -'XQa@q%GzDb@q%@GzD@  %% %   %  % %  a@GzD&@?  %    %  GzD GzD@ B  tangent -'XQa@q%GzD'XQa@q%GzD@ %    J --2`@ܬ &T3GzD'XQa@q%GzD@ % %  ia@I4=?,[S6@? $@ %% %  < %  'XQa@q%GzD%% %  Y% %  -2`@ܬ &T3= -t=:R -t=:R@%% %  X% %  ?ZHa4B_=? -t=:R -t=:R@%% %   %  % %  @Q2]GzD@ar^<=VcEJ-? %% %  # %  QZM&^@GzD@%% %   %       %    Y -   %  ^ iU?  unknown -.w[@ѹɒ&@GzD@y[@kl$1@GzD@ %   ` \  %     \  %  Z  -66@[@kl$1@GzD۠U\@2,Ǩ9@GzD@  -%% %   { %   % %  ۠U[@2,Ǩ5@GzD@Yiry:u?  unknown -66@[@2Zx9@GzD66@[@2Zx9@GzD@%%% %  %14-1 %    c - -=veHZ@2Zx9@GzD66@[@~@@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  l%1414301%% %    %  66@[@2Zx9@GzD@%% %   p% %  CveHZ@~@@GzD@@ - -0/>:u?%% %   ` %      - -kl$1@۠U\GzD,Ǩ9@66@[GzD@ %%% %  q%1416811 %       %    n -   % -  sҨiU?  unknown -EU@Fq.S_P@GzD@@ -V@ |.Q@GzD@ %     q  %   u q  %  o  -; -V@&pM@GzDr M,X@{P@GzD@  -%% %    %  % %  r M,W@ -FN@GzD@,v<8!v < ZLm1o @? - -f@T@ %   0/>:u?  unknown -W@&pM@GzDW@&pM@GzD@%%% %  %14-1 %   x - -W@JdJ@GzD_39X@&pM@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  u%1414390%% %     %  W@&pM@GzD@%% %   % %  _39X@LdJ@GzD@@ - -0/>:u?%% %   I %   q   - -; -V@&pM@GzDr M,X@{P@GzD@ %%% %  z%1416988%%% %  |%1414547%%% %  }%1414546%%% %  %141579%% %   E %      - -kl$1@66@[@GzD2,Ǩ9@۠U\@GzD@  %  ! -ѹɒ&y[@GzDn X -\q\@GzD@  -% %  Lz *\q[@o_E;f@;f@? ?@ -  % " #h/< #-DT!@  $ unknown -`R2_GzD P2\GzD %  1  I  %  % &  '  % ( )GzD GzD@ * tangent -b -Tj|mZ@GzD` -Tj|mZ@GzD@ %  2 +    % , GzD GzD@ - tangent -g -Tj|mZGzDf -Tj|mZGzD@ %   + . - b  %   % / - b %% %  0  % 1 2 % 3 . 4 % 5 8 -p ,9 -p? G 6 unknown --2`@۬ &T3GzD@'XQa@q%GzD@ %    7 b  % 8 ,9 -p  -9 -p? : 9 unknown -%^вN=%`GzD@?ZH8q_GzD@%%% %  %1414298%% %  % %  ?ZHa4B_GzD@%% %  & %  -2`@ڬ &T3GzD@ %   : -  -  %% %  ;  %    A    % <     --2`@q%@GzD'XQa@ܬ &T3@GzD@ % %  ia@I4@=,[S6? $@ %% %  : %  -2`@ڬ &T3@GzD %   - = >   % ? 49 -p @9 -p? - A unknown -%^вN:q_@GzD?ZH=%`@GzD % B     -%^вN:q_@GzD?ZH=%`@GzD@ % %  N0 -J8T`@=?BgZ`sT#? $@ %% %  9 %  ?ZHa4B_@GzD %  = C   - D  % E Q FQ?  G unknown -?TڕEN]@GzD@%^вNI7ˇ`@GzD@%% %   % H  I% %  N0 -J8T`@GzD@ar^?BgZ`sT#?  %  B A   - C  % J Q Q?  K unknown -'XQa@q%GzD@b@q%@GzD@%% %   % L  M% %  ia@I4@GzD@ar^?,[S6? %% %  T % N  O% %  ?Q2]@GzDar^?@VcEJ-@? %% %   %  a@GzD %  P  Q R  %  p o   - q  % S  TK@T@  U unknown -? -V@&pM@GzDr M,X@{P@GzD%% %  V " % W  X% %  GzD/d' 7 ?_39X@RdJ@=? - -iU?%%% %  # %1414396%% %  Y $? %  _39X@LdJ@GzD %  & Z [ \  %  [ Z &  - \  % ] ^ @T@ & _ unknown -66@[@kl$1@GzD۠U\@2,Ǩ9@GzD%% %  ` (Q % a  b% %  GzDK[YGjؽd?66@[@=Zx9@=? - -iU?%%% %  ) %1414486%% %  c * %  CveHZ@~@@GzD%%% %  - %1416996%%% %  / %1416997 %  : 1 & d -   % e )DU r] 1 a unknown -p= -`j|mZGzD` -Tj|mZ@GzD %  + 2 5    %  2  -g -T֕EN]GzD6Sj|mZGzD@ f %% %  3 % g  h% %  6bV:8 d\GzDar^<q&N#@P@?  %  5 4  7 - 6  % i 8GzD jGzD@ 5 k tangent -5=AS:T֕EN]GzD5=AS:T֕EN]GzD@ % l m 6   -@TI7ˇ`GzD%^вN֕EN]GzD@ % %  Qؓ nO^?t #? ?&@ %% %  84 %  5=AS:T֕EN]GzD%% %  ;\ % n 7 o% %  %^вN=%`= -t=:R -t=:R@%% %  < % p q   f -g -T֕EN]GzD6Sj|mZGzD@ %% %  @% %  ia@I4@GzDar^<,[S6?  % r GzD EGzD@ A s tangent -'XQa@q%@GzD'XQa@q%@GzD@ % t u C   -'XQa@q%GzDb@q%@GzD@ % %  a@?&@? ?&@ %% %  E; %  'XQa@q%@GzD%% %  H` % v  w% %  'XQa@q%=? -t=:R -t=:R@%% %  I%% %  R$ %  QWM&^GzD@ %  x W y z   %  { | W  - }  % ~  9@T@ W  unknown -y[@ X -@GzD@\q\@ѹɒ&@GzD@ %  [ X [  -   %  X [ {  -   %    -.w[@ѹɒ&@GzDy[@kl$1@GzD@  -%% %   Y| %   % %  GzD@P0w:u? [  unknown -.w[@kl$1@GzD.w[@kl$1@GzD@%%% %  \%14-1 %   \   - -66@[@kl$1@GzD۠U\@2,Ǩ9@GzD@ % %  ۠U[@2,Ǩ5@o_E;f@;f@? ?@ - %%% %  ] %1414302%% %   ^ %  .w[@kl$1@GzD@%% %   `q% %  66@[@2Zx9@GzD@@ - -0/>:u?%% %   b"%%% %  e %1416813%%% %  g %1414494%%% %  i %141608%% %   ja %      - -r M,X&pM@GzD; -V{P@GzD@  %   j -kl$1@۠U\GzD,Ǩ9@66@[GzD@  -% %  ,Ǩ5@۠U[o_E;f@;f@? ?@ -  %  l      %    l  -   %   g@T@ l  unknown -_bT@ |.Q@GzD@z*U@kn?`S@GzD@ %  Q m   -   %  m Q o  -   %    -EU@Fq.S_P@GzD@ -V@ |.Q@GzD@  -%% %   n %   % %  GzD@7#G$xt:u?   unknown -@ -V@Gq.S_P@GzD@ -V@Gq.S_P@GzD@%%% %  q%14-1% %  r M,W@ -FN@o_E;f@;f@? ?@ - %%% %  r %1414389%% %   s %  @ -V@Gq.S_P@GzD@%% %   u% %  W@&pM@GzD@@ - -0/>:u?%% %   wH%%% %  z %1416986%%% %  | %1414551%%% %  ~ %141585%% %   J %      - -EmAYa@6JGzD_39Xm]FGzD@ %%% %   %141580%% %   F %  w    - -Cv`-Z@GzD~@Ed[@GzD@  %    -kl$1@66@[@GzD2,Ǩ9@۠U\@GzD@  -% %  2,Ǩ5@۠U[@o_E;f@;f@? ?@ - %%% %  %14-1 %       %% %  U %   % %  @Q2]GzDar^?=VcEJ-?  %     / '  %     d '  %  % q -b -Tj|mZ@GzD6SڕEN]@GzD@  %% %  Z %   % %  b -Tj|mZ@=? -t=:R -t=:R@ %     .  %% %  [% %  g -Tj|mZ= -t=:R -t=:R@ %  j8 -p 89 -p? +  unknown -g -T֕EN]GzD@6Sj|mZGzD@ %  N9 -p F8 -p? %  unknown -a -Tj|mZ@GzD@6SڕEN]@GzD@%%% %   %1414298%% %  - %  ` -Tj|mZ@GzD@%% %  . %  f -Tj|mZGzD@%% %  % %  ia@I4GzD@ar^?,[S6@?  %  jQ Q?   unknown -@TI7ˇ`GzD@%^вN֕EN]GzD@%% %  % %  \0 -J8T`GzD@ar^?͐BhZ`sT#@?  %       %%% %   %1414394%% %   %     > - D  %  @GzD GzD@ =  tangent -%^вN=%`@GzD%^вN=%`@GzD@%% %   %   % %  N0 -J8T`@GzDar^<BgZ`sT#? %% %   %      - D  %  C m -?TڕEN]@GzD%^вNI7ˇ`@GzD@  %% %   %  / % %  Qۓ nO^@GzD@?t #@? %% %  + %  %^вN=%`@GzD@%% %  % %  a@GzD@?&@? %% %  ( %  'XQa@q%@GzD@%% %   %  QZM&^@GzD %       %     R -   %  T iU?   unknown -EU@Gq.S_P@GzD@ -V@ |.Q@GzD%% %    %   % %  r M,W@ -FN@GzDEТ޳!̟?f@}5p? - -K@T@%%% %   "%1414397%% %   @ %  W@&pM@GzD%%% %   $%1416999 %       %     \ -   %   ^&iU?   unknown -.w[@ѹɒ&@GzDy[@kl$1@GzD%% %   P %  \ % %  ۠U[@2,Ǩ5@GzDhE|9|?.5u? -"|g? - -@T@%%% %   (%1414485%% %    %  66@[@2Zx9@GzD%%% %   *%1417174 %  8 -p )N9 -p? &  unknown -a -Tj|mZ@GzD6SڕEN]@GzD%% %   % %  6bV:8 d\=?q&N#@P@? $@ %% %  5 %  f -Tj|mZGzD%% %  ] %  7 % %  5=AS:T֕EN]=? -t=:R -t=:R@%% %   %  I D   -?TڕEN]@GzD%^вNI7ˇ`@GzD@ %% %  0 %  %^вN=%`GzD@%% %   %   '   -b -Tj|mZ@GzD6SڕEN]@GzD@ %% %  a% %  'XQa@q%@= -t=:R -t=:R@%% %   %      - -整[@X -GzD\@X -@GzD@ %% %  ' %  'XQa@q%GzD@ %        %     z -   %   eiU? y  unknown -整[@X -GzD@\@X -@GzD@ %      }  %      }  %  {  -y[@ X -@GzD\q\@ѹɒ&@GzD@  -%% %   } %   % %  \q[@Lz *@GzD@mcܚl;G%<!?*?@? - -9@T@ %   0/>:u?   unknown -y[@ѹɒ&@GzDy[@ѹɒ&@GzD@%%% %  %14-1 %      - -.w[@ѹɒ&@GzDy[@kl$1@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   Y%1414303%% %    %  y[@ѹɒ&@GzD@%% %   r% %  .w[@kl$1@GzD@@ - -0/>:u?%% %   # %      - -ҹɒ&\q\GzDfX -y[GzD@ %%% %   ^%1416815%%% %   `%1414495%%% %   b%141545%%% %   j%141609%% %  - b %      - -V X -@\q\GzDѹɒ&@y[GzD@  %    -r M,X&pM@GzD; -V{P@GzD@  -% %  r M,W -FN@o_E;f@;f@? ?@ - %%% %  %14-1 %        %        %      -   %   ިiU?   unknown -t,uDw2S@u,uDw2S@GzD@_bT@_bT@GzD@ %        %        %    -_bT@ |.Q@GzDz*U@kn?`S@GzD@ ! -%% %  "  % #  $% %  z*T@kn?`R@GzD@T^*6<"ۘ<hCF -@o? - -g@T@ % %  0/>:u?  & unknown -EU@ |.Q@GzDEU@ |.Q@GzD@%%% %  %14-1 % ' (    - -EU@Fq.S_P@GzD@ -V@ |.Q@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  - n%1414388%% %  )  %  EU@ |.Q@GzD@%% %  * ~% %  @ -V@Gq.S_P@GzD@@ - -0/>:u?%%% %   s%1416984%%% %   u%1414550%%% %   w%141583%%% %   %141586%% %  + K % , - .  / - -۠U\2,Ǩ9GzD66@[kl$1GzD@  % 0 1  -EmAYa@6JGzD_39Xm]FGzD@  -% %  EmAXa@6Ho_E;f@;f@? ?@ - %%% %   %141581%% %  2 G % 3 4  -Cv`-Z@GzD~@Ed[@GzD@  -% %  AEdZ@o_E;f@;f@? ?@ - %%% %  %14-1 %  5 6 7 8   %  9 ! : ; -   %  ! 9 < = -   %  > ? !  - @  % A B C0/>:u?  D unknown -ѹɒ&y[@GzDѹɒ&y[@GzD@%% %  # %  QWM&^GzD %  & % C  ' % %  6bV:8 d\@=q&N#@dP? $@ %% %  )6 %  ` -Tj|mZ@GzD%% %  .% %  6bV:8 d\GzD@ar^?q&N#@P@? %% %  /% %  6bV:8 d\@GzD@ar^?q&N#@dP? %% %  7% %  Qؓ nO^GzD@?t #?  %  C = :  - D  % E Q @Q? : F unknown -?TڕEN]@GzD%^вNI7ˇ`@GzD%% %  >_% %  %^вN=%`@=? -t=:R -t=:R@%% %  @8 %  %^вN=%`@GzD % G FGzD GzD@ C H tangent -/=AS:TڕEN]@GzD/=AS:TڕEN]@GzD@% %  Qۓ nO^@?t #@? ?&@ %% %  F, %  /=AS:TڕEN]@GzD@ %  I P J K  %    P  -   % L  My@T@ P N unknown -_bT@ |.Q@GzDz*U@kn?`S@GzD%% %  O R % P  Q% %  GzD_5i"zY@]FGzD -w`-Z@pACGzD@  % d  u -整[@X -GzD\@X -@GzD@  -% %  ITTS@TTS@? ?\@ -  %  e x f g   %  h i x  - j  % k  l@T@ x m unknown -y[@ҹɒ&GzD@\q\@X -GzD@ %  T y |  -   %  y T h n -  %% %  o z~ % p n q% %  GzD@m Gbw_w<[@X -@ ? - -eiU? % r W 0/>:u?  s unknown -整[@X -@GzD整[@X -@GzD@%%% %  }%14-1 % t u }   - -y[@ X -@GzD\q\@ѹɒ&@GzD@ % %  \q[@Lz *@o_E;f@;f@? ?@ - %%% %  ~ %1414304%% %  v  %  整[@X -@GzD@%% %  w % %  y[@ѹɒ&@GzD@@ - -0/>:u?%% %  x O % y z {  | - -۠U\kl$1@GzD66@[2,Ǩ9@GzD@ %%% %   %1416817%%% %   %1414496%%% %   %141546%% %  } $ % ~     - -X -\GzDX -@整[GzD@  %    -ҹɒ&\q\GzDfX -y[GzD@  -% %  lMz *\q[o_E;f@;f@? ?@ - %%% %   %141610%% %   c %      - -N,Ǩ9۠U\GzDǟkl$166@[GzD@  %    -V X -@\q\GzDѹɒ&@y[GzD@  -% %  Lz *@\q[o_E;f@;f@? ?@ - %%% %  %14-1 %        %      -   %      -   %      -   %   0/>:u?   unknown -kl$1@.w[GzDkl$1@.w[GzD@ %        %      -   %   r@T@   unknown - |.Q@_bT@GzD@kn?`S@z*U@GzD@ %  J    -   %   J   -   %    -t,uDw2S@t,uDw2S@GzD_bT@_bT@GzD@  -%% %    %   % %  GzD@e<><t,uDw2S@_bT@=? - -ިiU? %   M0/>:u?   unknown -_bT@u,uDw2S@GzD_bT@u,uDw2S@GzD@%%% %  %14-1 %     ! - -_bT@ |.Q@GzDz*U@kn?`S@GzD@ % %  z*T@kn?`R@o_E;f@;f@? ?@ - %%% %   %1414387%% %    %  _bT@u,uDw2S@GzD@%% %   }% %  EU@ |.Q@GzD@@ - -0/>:u?%% %   - %   @   - -kl$1.w[@GzDѹɒ&y[@GzD@ %%% %   %1416982%%% %   %1414508%%% %   %141587%% %   L %      - -z*Ukn?`SGzD_bT |.QGzD@  %    -۠U\2,Ǩ9GzD66@[kl$1GzD@ / -% %  ۠U[2,Ǩ5o_E;f@;f@? ?@ - %%% %  %14-1 %       %%% %   %141582%%% %  %14-1 %        %      -   %      -   %     8 -   %   0/>:u? 7  unknown -kl$1@.w[@GzDkl$1@.w[@GzD@ %        %     ;  %   C@T@ :  unknown -ѹɒ&y[@GzDX -\q\@GzD %     =   %  B 9@T@ <  unknown -ѹɒ&y[@GzD@n X -\q\@GzD@ %      - @  %      - @  %   ( -kl$1.w[@GzDѹɒ&y[@GzD@  -%% %    %    %  ; % %  ѹɒ&y[@GzD@@ - -0/>:u?%% %  % %  Qۓ nO^@GzDt #@? %% %  ^% %  /=AS:TڕEN]@= -t=:R -t=:R@ %       %     K -   %  M ިiU?   unknown -u,uDw2S@t,uDw2S@GzD_bT@_bT@GzD%% %    %   % %  z*T@kn?`R@GzD6p8I़?qE=4@ '? - -y@T@%%% %   R%1414399%% %   B %  EU@ |.Q@GzD%%% %   T%1417003 %       %     U -   %   WhiU? T  unknown -整[@X -GzD\@X -@GzD%% %   N %   % %  \q[@Lz *@GzD2AA&c?cVϓ?%}~P? - -@T@%%% %   \%1414483%% %    %  y[@ѹɒ&@GzD%%% %   ^%1417170%% %  7 %  /=AS:TڕEN]@GzD%%% %   u%141533%% %    %      - -Ed[~@@GzDv`-ZC@GzD@  %    -wNA>Y@]FGzD -w`-Z@pACGzD@ c -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %        %     g -   %  l iU?   unknown -.w[@ڟkl$1GzD@y[@ѹɒ&GzD@ %     n j  %      j  %  i - -y[@ҹɒ&GzD\q\@|X -GzD@  -%% %    %   % %  \q[@wMz *GzD@ 2DCA&c<cVϓ?}~@P? - -@T@ %   0/>:u?   unknown -整[@X -GzD整[@X -GzD@%%% %   z%1414289%% %    %  整[@X -GzD@%% %   b% %  整[@X -@GzD@@ - -0/>:u?%% %   \ %      - -66@[@N,Ǩ9GzD۠U\@ǟkl$1GzD@ %%% %   %1416783%%% %   %1414556%%% %   %141591%% %   P %      - -\q\ѹɒ&GzDy[V X -GzD@  %    -۠U\kl$1@GzD66@[2,Ǩ9@GzD@ | -% %  ۠U[2,Ǩ5@o_E;f@;f@? ?@ - %%% %   %141547%% %   % %  ! "  # - -JdJ@W@GzD&pM@_39X@GzD@  % $ %  -X -\GzDX -@整[GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %  & ' ( )  %%% %   %141611%% %  * d % + , -  . - -~@@Ed[GzDC@v`-ZGzD@  % / 0  -N,Ǩ9۠U\GzDǟkl$166@[GzD@  -% %  N,Ǩ5۠U[o_E;f@;f@? ?@ - %%% %  %14-1 %  1 2 3 4   %  5  6 7 -   %   5 8 9 -   %  : ;   - <  % = > ?0/>:u?  @ unknown -@ -VGq.S_P@GzD@ -VGq.S_P@GzD@ %    A B   %  C D     % E F @T@  G unknown -kl$1@۠U\GzD@,Ǩ9@66@[GzD@ %  H I    % J  Kq@T@  L unknown -kl$1@۠U\GzD,Ǩ9@66@[GzD %  3  I M -   %   3 C N -   % O 3 P -ѹɒ&@y[GzDkl$1@.w[GzD@ Q -%% %  R  % S  T % U  V% %  kl$1@.w[GzD@@ - -0/>:u? %   W X Y   %  Z [   - \  % ] ^ iU?  _ unknown -Gq.S_P@EU@GzD@ |.Q@@ -V@GzD@ %    [ `   %        % a  b - |.Q@_bT@GzDkn?`S@z*U@GzD@ c -%% %  d  % e ` f% %  kn?`R@z*T@GzD@6p<@vrH< 'E=4@¹? - -r@T@ % g  0/>:u?  h unknown -u,uDw2S@_bT@GzDu,uDw2S@_bT@GzD@%%% %  %14-1 % i     - -t,uDw2S@t,uDw2S@GzD_bT@_bT@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414386%% %  j  %  u,uDw2S@_bT@GzD@%% %  k |% %  _bT@u,uDw2S@GzD@@ - -0/>:u?%% %  l ,%%% %  # %1416980%%% %  % %1414507%%% %  ' %141556%% %  m (. % n o p  q - -2Zx9@=veHZ@GzD~@@66@[@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  , %141588%% %  r -M % s  t  u - -=veHZ@~@GzD66@[@NZx9GzD@  % v w - -z*Ukn?`SGzD_bT |.QGzD@  -% %  z*Tkn?`Ro_E;f@;f@? ?@ - %%% %  .%14-1 %  x y z { .  %  | 1 } ~ -   %  1 |   -   %    1  -   %   0/>:u?   unknown -NA>Ym]FGzDNA>Ym]FGzD@ %   4   -   %  4    -   %    4  -   %   0/>:u? 4  unknown -kAC -w`-Z@GzDkAC -w`-Z@GzD@ %  6 5     %    5   %   ɦ@T@   unknown -kl$1@66@[@GzD2,Ǩ9@۠U\@GzD %    6    %   o@T@   unknown -kl$1@66@[@GzD@2,Ǩ9@۠U\@GzD@ %   7   -   %  7    -   %  7  -ѹɒ&@.w[@GzDkl$1@y[@GzD@  -%% %   8o %    %   % %  kl$1@.w[@GzD@@ - -0/>:u? %    9  -   %   0/>:u?   unknown -X -整[@GzDX -整[@GzD@ %   : ?   %  :    %% %   ; %   % %  Lz *\q[@GzD2   %% %   = %  = % %  Lz *\q[@GzD@ucܚl   - @  %   BiU?   unknown -kl$1.w[@GzD@ѹɒ&y[@GzD@ %  C &iU?   unknown -kl$1.w[@GzDѹɒ&y[@GzD%%% %  @%14-1%%% %  A %1414509%% %   B %  ѹɒ&y[@GzD@%% %   CQ %  ѹɒ&y[@GzD %   I    %    I  -   %   \@T@ I  unknown - |.Q@_bT@GzDkn?`S@z*U@GzD%% %   K %   % %  GzD2%]?}?_bT@t,uDw2S@=? - -ިiU?%%% %  L %1414400%% %   MC %  _bT@u,uDw2S@GzD%%% %  P %1417005 %  S     %  i h S  - j  %   A@T@ S  unknown -y[@ҹɒ&GzD\q\@|X -GzD%% %   UM %  n % %  GzD~n Gbv_w?[@X - 9? - -hiU?%%% %  V %1414482%% %   W %  整[@X -@GzD%%% %  Z %1417168%%% %  ` %141534%% %   a %      - -66@[2Zx9@GzD=veHZ~@@GzD@  %   a -Ed[~@@GzDv`-ZC@GzD@  -% %  EdZA@o_E;f@;f@? ?@ - %%% %  b%14-1 %      - b  %   e     %    e  -   %   o@T@ e  unknown -66@[@N,Ǩ9GzD@۠U\@͟kl$1GzD@ %   f i  -   %  f    -   %    -.w[@۟kl$1GzDy[@ѹɒ&GzD@  -%% %   g %   % %  GzD@?:u?   unknown -y[@ҹɒ&GzDy[@ҹɒ&GzD@%%% %  j%14-1 %   j   - -y[@ҹɒ&GzD\q\@|X -GzD@ % %  \q[@wMz *o_E;f@;f@? ?@ - %%% %  k %1414305%% %   l %  y[@ҹɒ&GzD@%% %   nc% %  整[@X -GzD@@ - -0/>:u?%%% %  p %1416787%%% %  r %1414286%%% %  t %141604%% %   u] %      - -^39X@n@6JGzDEmAY@{]FGzD@  %   u -66@[@N,Ǩ9GzD۠U\@ǟkl$1GzD@  -% %  ۠U[@N,Ǩ5o_E;f@;f@? ?@ - %%% %  y %141592%% %   zQ %      - -Ed[CGzDv`-Z~@GzD@  %   z -\q\ѹɒ&GzDy[V X -GzD@  -% %  \q[Lz *o_E;f@;f@? ?@ - %%% %  {%14-1 %     - { %%% %  ~ %141548%% %   & %      - -{]F@^39X@GzDn@6J@EmAY@GzD@  %    -JdJ@W@GzD&pM@_39X@GzD@ # -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %      -   %      -   %      -   %     ) -   %   0/>:u?  ! unknown -ҹɒ&y[GzDҹɒ&y[GzD@%%% %   %141612%% %  " e % # $ %  & - -2,Ǩ966@[@GzDkl$1۠U\@GzD@  % ' (  -~@@Ed[GzDC@v`-ZGzD@ . -% %  A@EdZo_E;f@;f@? ?@ - %%% %  %14-1 %  ) * + ,   %    - . -   %    / 0 -   %     4 -   % 1 2 30/>:u? 3 4 unknown -ѹɒ&@y[GzDѹɒ&@y[GzD@ %    5 6   %  7 8  7   % 9 : ?A@T@ 6 ; unknown -r M,X&pM@GzD@> -V{P@GzD@ %  < =  9  % > > ?f@T@ 8 @ unknown -r M,X&pM@GzD; -V{P@GzD %  A  = B - <  %   A 7 C - <  % D A E -@ -VFq.S_P@GzDEU |.Q@GzD@ F -%% %  G  % H 9 I % J  K% %  @ -VGq.S_P@GzD@@ - -0/>:u? %  L M  B - N  % O F K0/>:u? A P unknown -2Zx9@66@[GzD2Zx9@66@[GzD@ %  /   N   %   Q L R  %% %  S  % T  U% %  ,Ǩ5@۠U[GzD@ZiryHc0<&[I@* )j?P9? - -@T@ %  V  M W  %   -  M %% %  X 8 % Y  Z% %  ,Ǩ5@۠U[GzDhE<,P? -"| -.5u? - -q@T@ % [ 3 &iU? I \ unknown -ѹɒ&@y[GzDkl$1@.w[GzD % ]  2+iU? C ^ unknown -ѹɒ&@y[GzD@kl$1@.w[GzD@%%% %  %14-1 % _ `   Q - -ѹɒ&@y[GzDkl$1@.w[GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414564%% %  a  %  kl$1@.w[GzD%% %  b  %  kl$1@.w[GzD@ %   c d e   %  f g  Y - h  % i j ^E@T@  k unknown -&pM@> -V@GzD@{P@r M,X@GzD@ %    g l - \  %     ` - \  % m [ n -Fq.S_P@EU@GzD |.Q@@ -V@GzD@ o -%% %  p  % q Y r% %  GzD@QgpI<Kq.S_P@> -V@=? - -iU? % s  0/>:u? [ t unknown - |.Q@EU@GzD |.Q@EU@GzD@%%% %  %14-1 % u    c - - |.Q@_bT@GzDkn?`S@z*U@GzD@ % %  kn?`R@z*T@o_E;f@;f@? ?@ - %%% %   %1414385%% %  v  %   |.Q@EU@GzD@%% %  w {% %  u,uDw2S@_bT@GzD@@ - -0/>:u?%% %  x +%%% %   %1416978%%% %   %1414506%%% %   %141555%%% %   (%141557%% %  y / % z { |  } - -W@&pMGzD_39X@RdJGzD@  % ~   -2Zx9@=veHZ@GzD~@@66@[@GzD@ q -% %  ITTS@TTS@? ?\@ - %%% %   -%141589%% %   N %    -=veHZ@~@GzD66@[@NZx9GzD@ u -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %        %      - .  %      - .  %     { -   %   0/>:u? z  unknown -.w[kl$1GzD.w[kl$1GzD@ %        %     ~   %   @T@ }  unknown -EmAYa@6JGzD@_39Xm]FGzD@ %       %   \@T@   unknown -EmAYa@6JGzD_39Xm]FGzD %      -   %      -   %    - -w`-Zs]FGzDzNA>YcACGzD@  -%% %    %    %  ~ % %  NA>Ym]FGzD@@ - -0/>:u? %        %       %   /@T@   unknown -C w`-Z@GzD~@Ed[@GzD %        %   @T@   unknown -Cv`-Z@GzD@~@Ed[@GzD@ %      -   %      -   %    -{]FyNA>Y@GzDcAC -w`-Z@GzD@  -%% %    %    %   % %  kAC -w`-Z@GzD@@ - -0/>:u? %      - p  %   0/>:u?   unknown -2Zx9@66@[@GzD2Zx9@66@[@GzD@ %       %      %% %    %   % %  2,Ǩ5@۠U[@GzD \iryHc0?$[I@+ )jտ? - -ɦ@T@ %        %       %% %    %   % %  2,Ǩ5@۠U[@GzD@hE<,P< -"|@.5u?? - -o@T@ %      -   %   iU?   unknown -ѹɒ&@.w[@GzD@kl$1@y[@GzD@ %   iU?   unknown -ѹɒ&@.w[@GzDkl$1@y[@GzD%%% %  %14-1 %  b    - -ѹɒ&@.w[@GzDkl$1@y[@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   8%1414493%% %    %  kl$1@.w[@GzD@%% %   M %  kl$1@.w[@GzD %      -   %      -   %    -X -整[@GzD#X -@\@GzD@  -%% %   l% %  X -整[@GzD@@ - -0/>:u? %       %       %   iU?   unknown -X -整[@GzD#X -@[@GzD%%% %   ;%1414414%% %   P %  X -整[@GzD %        %   iU?   unknown -X -整[@GzD@ X -@\@GzD@ %       %%% %   =%1414373%% %    %  X -整[@GzD@ %      %  %   0/>:u?   unknown -kl$1.w[@GzDkl$1.w[@GzD@%% %    %   % %  GzD@qp7s6Y]F@GzD@  %    -66@[2Zx9@GzD=veHZ~@@GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %        %      - b  %      - b  %        %   0/>:u?   unknown -NA>Y@{]FGzDNA>Y@{]FGzD@ %     !   %   "   - t  % #  $"iU?  % unknown ->veHZ@~@GzD@66@[@NZx9GzD@ %        %     &  %% %  '  % ( & )% %  ۠U[@N,Ǩ5GzD@hE|9|<@.5u? -"|@P9? - -o@T@ % *  0/>:u?  + unknown -.w[@͟kl$1GzD.w[@͟kl$1GzD@%%% %  %14-1 % , E    - -.w[@۟kl$1GzDy[@ѹɒ&GzD@ % %  ITTS@TTS@? ?\@ - %%% %   g%1414306%% %  -  %  .w[@͟kl$1GzD@%% %  . % %  y[@ҹɒ&GzD@@ - -0/>:u?%% %  / -: % 0 1 2  3 - -[#X -GzD整[NX -@GzD@ %%% %   l%1416820%%% %   n%1414288%%% %   u%141605%% %  4 ^ % 5 6  7 - -{P> -V@GzD&pMr M,X@GzD@  % 8   -^39X@n@6JGzDEmAY@{]FGzD@  -% %  EmAX@n@6Ho_E;f@;f@? ?@ - %%% %  %14-1%%% %   z%141593%% %  9 R % : ; <  = - -y M,X{PGzD@ -V&pMGzD@  % > ?  -Ed[CGzDv`-Z~@GzD@  -% %  EdZAo_E;f@;f@? ?@ - %%% %  %14-1 %  @ A B C   %  D  E F - {  %   D G H - {  %  I J  - - K  % L M N0/>:u?  O unknown -.w[kl$1@GzD.w[kl$1@GzD@%%% %   %141549%% %  P !' % Q n h  R - -&pM@; -V@GzD{P@r M,X@GzD@  % S T ! -{]F@^39X@GzDn@6J@EmAY@GzD@  -% %  n@6H@EmAX@o_E;f@;f@? ?@ - %%% %  "%14-1 %  U d V W - "  %  X % Y Z -   %  % X [ \ -   %  2 1 %    % ] ^ _0/>:u? % ` unknown -X -@整[GzDX -@整[GzD@ %  ' & X a   %  b [ &    % c d @T@  e unknown -ҹɒ&\q\GzD@X -y[GzD@ %  Y f '   % g  hA@T@  i unknown -ҹɒ&\q\GzDfX -y[GzD %  + ( f j -   %  ( + b k -   % l + m -ڟkl$1y[GzDѹɒ&.w[GzD@ n -%% %  o )s % p j q % r  s% %  ҹɒ&y[GzD@@ - -0/>:u?%%% %  + %141613%% %  t ,f % u v w  x - -a@6J_39X@GzDp]FEmAY@GzD@  % y  , -2,Ǩ966@[@GzDkl$1۠U\@GzD@ & -% %  2,Ǩ5۠U[@o_E;f@;f@? ?@ - %%% %  -%14-1 %  z { | } -  %  ~ 0   -   %  0 ~   -   %    0 , -   %   0/>:u? +  unknown -͟kl$1.w[GzD͟kl$1.w[GzD@ %  I Y 1 .  %  ^ 3@T@ -  unknown -X -@\q\GzDѹɒ&@y[GzD %  [ C 2 0   %  2 _9@T@ /  unknown -V X -@\q\GzD@ѹɒ&@y[GzD@%% %   4 %  4  %  4 % %  ѹɒ&@y[GzD@@ - -0/>:u? %    5 6 -   %  : ?0/>:u? 5  unknown -W&pM@GzDW&pM@GzD@ %   6 ; C   %  6     %% %   7 %   % %  r M,W -FN@GzD@EТ޳!̟<c5p9? - -A@T@ %   8    %  8  : B %% %   9 %  9 % %  r M,W -FN@GzD,v<8!v ? Z?Lm1o @? - -f@T@ %  ; :   - <  %   >ҨiU? =  unknown -@ -VFq.S_P@GzDEU |.Q@GzD %  ? 2iU? 7  unknown -@ -VGq.S_P@GzD@EU |.Q@GzD@%%% %  <%14-1 %   <  F - -@ -VFq.S_P@GzDEU |.Q@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  = %1414523%% %   >^ %  @ -VGq.S_P@GzD%% %   ? %  @ -VGq.S_P@GzD@ %   A D R - N  %  A  H W - N  %    -Zx9@66@[GzD~@@@veHZGzD@  -%% %   B% %  2Zx9@66@[GzD@@ - -0/>:u? %  D  {    %   FiU? D  unknown -2Zx9@66@[GzD@~@@AveHZGzD@%%% %  E %1414324%% %   F %  2Zx9@66@[GzD@ %   H z   %  K ݨiU? H  unknown -Zx9@66@[GzD~@@@veHZGzD%%% %  J %1414462%% %   K %  2Zx9@66@[GzD%% %   M7% %  GzDB[1m^b?ѹɒ&@y[? - -&iU?%% %   N% %  GzD@qp7s6:u? g  unknown -Gq.S_P@@ -V@GzDGq.S_P@@ -V@GzD@%%% %  \%14-1 %  b \  o - -Fq.S_P@EU@GzD |.Q@@ -V@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  ] %1414384%% %   ^ %  Gq.S_P@@ -V@GzD@%% %   `z% %   |.Q@EU@GzD@@ - -0/>:u?%% %   b*%%% %  e %1416976%%% %  g %1414505%%% %  i %141554%%% %  n %141558%% %   o0 %      - - |.Q@z*UGzDkn?`S@_bTGzD@  %   o -W@&pMGzD_39X@RdJGzD@ } -% %  ITTS@TTS@? ?\@ - %%% %  p%14-1%%% %  s %141590%%% %  t%14-1 %     & - t  %   w   -   %  w    -   %    w  -   %   0/>:u? w  unknown -EU |.QGzDEU |.QGzD@ %  y x   .  %    x    %   @T@   unknown -۠U\2,Ǩ9GzD@66@[kl$1GzD@ %    y   %   v@T@   unknown -۠U\2,Ǩ9GzD66@[kl$1GzD %  B z   -   %  z B   -   %  B  -y[kl$1GzD.w[ѹɒ&GzD@  -%% %   { %    %  { % %  .w[kl$1GzD@@ - -0/>:u? %    |  -   %   0/>:u? |  unknown -_39XLdJGzD_39XLdJGzD@ %   }     %  }     %% %   ~ % - ~ % %  EmAXa@6HGzD@hElR<`~ ?삁<yox?G_? - -@T@ %       %      %% %   $ %   % %  EmAXa@6HGzD ;&YY;zF?C&aI3 -@9? - -\@T@ %    ?  -   %   fiU?   unknown - -w`-Zm]FGzD}NA>YiACGzD %    iU?   unknown - -w`-Zs]FGzD@zNA>YcACGzD@%%% %  %14-1 %      - - -w`-Zs]FGzDzNA>YcACGzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414543%% %   n %  NA>Ym]FGzD%% %    %  NA>Ym]FGzD@ %      -   %   0/>:u?  ! unknown -~@CveHZ@GzD~@CveHZ@GzD@ %  "     %     # %% %  $  - % % # &% %  AEdZ@GzDVFg<&6=?O? @A]@?9? - -/@T@ %     '   %   (    %% %  )  % *  +% %  AEdZ@GzD@Rď6<D6C? - -@T@ %    , - -   % . /  iU?  0 unknown -{]FzNA>Y@GzD@cAC -w`-Z@GzD@ % 1  2٨iU?  3 unknown -{]FyNA>Y@GzDiAC -w`-Z@GzD%%% %  %14-1 % 4 5    - -{]FyNA>Y@GzDcAC -w`-Z@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414548%% %  6   %  kAC -w`-Z@GzD@%% %  7 U %  kAC -w`-Z@GzD %  8    - p  %   8   - p %% %  9 % %  2Zx9@66@[@GzD@@ - -0/>:u? %   : ; <  % = > iU?  ? unknown -2Zx9@>veHZ@GzD~@@66@[@GzD%%% %   %1414410%% %  @ L %  2Zx9@66@[@GzD %    A B   % C  DiU?  E unknown -2Zx9@=veHZ@GzD@~@@66@[@GzD@%%% %   %1414377%% %  F  %  2Zx9@66@[@GzD@ %      G  % H  0/>:u?  I unknown -ѹɒ&@y[@GzDѹɒ&@y[@GzD@%% %  J  % K  L% %  GzD@B[1n^b<ѹɒ&@y[@=? - -iU?%% %  M  % N  O% %  GzDqp7s6:u?%%% %   %1414372%% %  g  %  kl$1.w[@GzD@%%% %   %1414415%% %  h R %  kl$1.w[@GzD %  i  U j  %  g f   - h  % k  lf@T@  m unknown -&pM@; -V@GzD{P@r M,X@GzD%% %  n  % o  p% %  GzD=eY]F@GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %    D  -   %      -   %      -   %      -   %   0/>:u?   unknown - -w`-ZzAC@GzD -w`-ZzAC@GzD@ %      - b  %        %   ViU?   unknown -{NA>Y@{]FGzD@ -w`-Z@wACGzD@ %  r     %   iU?   unknown -wNA>Y@]FGzD -w`-Z@pACGzD %      -   %      -  %% %   d %    %   % %  NA>Y@{]FGzD@@ - -0/>:u? %     ! -   %  $ /@T@   unknown - w`-Z@CGzD@Ed[@~@GzD@ %      - t %% %    %   % %  GzD@XYGlؽd<66@[@ZZx9? - -"iU? %  u 0/>:u?   unknown -66@[@NZx9GzD66@[@NZx9GzD@%%% %   %1414307%% %    %  66@[@NZx9GzD@%% %   % %  .w[@͟kl$1GzD@@ - -0/>:u?%% %   4%%% %   %1416822%%% %   %1414521%%% %   -%141569%% %   ; %      - -Aq.S_P@D -VGzD |.Q@EUGzD@  %    -[#X -GzD整[NX -@GzD@ 3 -% %  ITTS@TTS@? ?\@ - %%% %   %141606%% %   _ %    -{P> -V@GzD&pMr M,X@GzD@ 7 -% %   -FNr M,W@o_E;f@;f@? ?@ - %%% %  %14-1%%% %   %141594%% %   S %      - -kn?`Sz*UGzD |.Q_bTGzD@  %    -y M,X{PGzD@ -V&pMGzD@ = -% %  y M,W -FNo_E;f@;f@? ?@ - %%% %  %14-1 %        %      -   %      -   %     C -   %   0/>:u? B  unknown -y[ѹɒ&GzDy[ѹɒ&GzD@ %      {  %     F  %   Nɦ@T@ E  unknown -۠U\kl$1@GzD66@[2,Ǩ9@GzD %     H   %  M o@T@ G  unknown -۠U\kl$1@GzD@66@[2,Ǩ9@GzD@ %      - K  %      - K  %   5 -y[ѹɒ&@GzD.w[kl$1@GzD@  -%% %   - %  H  %  - % %  .w[kl$1@GzD@@ - -0/>:u?%%% %   !%141550%% %   (% %   -FN@r M,W@o_E;f@;f@? ?@ - %%% %  %14-1 %        %     j - "  %     W   %   0/>:u?   unknown -LdJ@_39X@GzDLdJ@_39X@GzD@ %     a -   %  -   Z  %  h ^iU? Y  unknown -X -\GzDX -@整[GzD %   /  \   %  _ d:u? %  d h0/>:u?   unknown -X -整[GzDX -整[GzD@ %     k  %% %    %   % %  lMz *\q[GzD@$ 2Y@GzD]F@ -w`-Z@GzD@  %  , $ -a@6J_39X@GzDp]FEmAY@GzD@ x -% %  a@6HEmAX@o_E;f@;f@? ?@ - %%% %  %%14-1 %   ( V  - -  %  (  Q  - -  %    ( } -   %  - 0/>:u? (  unknown -kAC@ -w`-ZGzDkAC@ -w`-ZGzD@ %  * )     %  f  )   %   ɦ@T@   unknown -N,Ǩ9۠U\GzDǟkl$166@[GzD %   b *    %   o@T@   unknown -N,Ǩ9۠U\GzD@͟kl$166@[GzD@%% %   , %    %  j % %  ͟kl$1.w[GzD@@ - -0/>:u?%% %   .6% %  Lz *@\q[GzD2:u? %  $ 7 % &   %  8 ' ( )   % * + :yiU? 8 , unknown -_39XLdJ@GzD@W&pM@GzD@%%% %  9 7%1414359%% %  - : %  W&pM@GzD@ %  . < / 0  % 1 ? 2RiU? < 3 unknown -_39XJdJ@GzDW&pM@GzD %  = 4 5 6 %%% %  > 9%1414428%% %  7 ?_ %  W&pM@GzD %  5 % A  8  % 9  0/>:u? A : unknown -EU |.Q@GzDEU |.Q@GzD@%% %  ; B % < B =% %  GzD7#G$xt C % ?  @% %  GzD@5i"z%1417061%%% %  J ?%1416926 %  M L  F - N %%% %  N%14-1 % G m N   - -Zx9@66@[GzD~@@@veHZGzD@ % %  ITTS@TTS@? ?\@ - %%% %  O B%1414536 %  Q H  I   % J - x@T@ Q K unknown -~@@Ed[GzD@C@v`-ZGzD@%% %  L R % M R N% %  GzD@Nj<~@@AveHZ? - -iU?%%% %  T F%1416855 %  O V  P  % Q  8@T@ V R unknown -~@@Ed[GzDC@ w`-ZGzD%% %  S W9 % T  U% %  GzDX0?Ͳ?Zx9@66@[? - -ݨiU?%%% %  Y K%1417130%%% %  [ M%1414461%%% %  ] N%1414325%%% %  _ P%141598%% %  V `W % W X Y  Z - -{Pr M,XGzD&pM; -VGzD@  % [ \ ` -\q\ X -@GzDy[ѹɒ&@GzD@  -% %  \q[3Mz *@o_E;f@;f@? ?@ -  %  c  ] ^   %  T V c  -   % _ ` f@T@ c a unknown -{]F@_39X@GzD@n@6J@EmAY@GzD@ %  d U f  - " %% %  b e % c e d% %  GzD@pf:u?  f unknown -&pM@W@GzD&pM@W@GzD@%%% %  h%14-1%%% %  i Y%1414383%% %  g j %  &pM@W@GzD@%% %  h ly% %  Gq.S_P@@ -V@GzD@@ - -0/>:u?%% %  i n)%%% %  q ^%1416974%%% %  s `%1414504%%% %  u b%141553%%% %  z o%141559%% %  j {1 % k l m  n - -m]F@EmAYGzDa@6J@^39XGzD@  % o p { - |.Q@z*UGzDkn?`S@_bTGzD@  -% %  kn?`R@z*To_E;f@;f@? ?@ - %%% %  |%14-1 %  q r  s - |  %  "   s - t  %    t u   %  v w     % x y e@T@  z unknown -z*Ukn?`SGzD@_bT |.QGzD@ %  { |    % }  ~L@T@   unknown -z*Ukn?`SGzD_bT |.QGzD %    |  -   %    v  -   %    -@ -V |.QGzDEUFq.S_PGzD@  -%% %    %    %   % %  EU |.QGzD@@ - -0/>:u? %      -   %   0/>:u?   unknown -66@[2Zx9GzD66@[2Zx9GzD@ %        %       %% %    %   % %  ۠U[2,Ǩ5GzD@Yiry<_&RA<) )j?*[I/? - -@T@ %       %      %% %     %   % %  ۠U[2,Ǩ5GzDhEO|9|? -.5u -"|@? - -v@T@ %   &iU?   unknown -y[kl$1GzD.w[ѹɒ&GzD %   +iU?   unknown -y[kl$1GzD@.w[ѹɒ&GzD@%%% %  %14-1 %      - -y[kl$1GzD.w[ѹɒ&GzD@ % %  ITTS@TTS@? ?\@ - %%% %   {%1414529%% %   j %  .w[kl$1GzD%% %    %  .w[kl$1GzD@ %      -   %      -   %    -c39X&pMGzDW>dJGzD@  -%% %   % %  _39XLdJGzD@@ - -0/>:u? %        %   v     %   iU?   unknown -_39X&pMGzD@WJdJGzD@%%% %   ~%1414344%% %    %  _39XLdJGzD@ %  |     %   DiU?   unknown -c39X&pMGzDW>dJGzD %      %%% %   %1414442%% %   o %  _39XLdJGzD %   0/>:u?   unknown - -w`-ZkACGzD -w`-ZkACGzD@%% %   # %   % %  GzDQbr< -BL?w`-ZiAC? - -fiU?%% %    %   % %  GzD@J6sYs]F? - - iU?%% %   B %      - -66@[~@GzD>veHZZx9GzD@ %%% %   %1417088%%% %   %1416897 %     # -   %     ' -   %    -~@>veHZ@GzD2Zx966@[@GzD@  -%% %   % %  ~@CveHZ@GzD@@ - -0/>:u? %       %  W -iU?   unknown -~@@veHZ@GzD2Zx966@[@GzD%%% %   %1414418%% %   T %  ~@CveHZ@GzD %   diU?   unknown -~@>veHZ@GzD@2Zx966@[@GzD@ %       %%% %   %1414369%% %     %  ~@CveHZ@GzD@ %     - w  %  2 /0/>:u?   unknown -{]FNA>Y@GzD{]FNA>Y@GzD@%% %    %   % %  GzD@F` Y@=? - - iU?%% %     %   % %  GzDEdFUD<?iACw`-Z@=? - -٨iU?%% %   Z %   K   - -y[ѹɒ&@GzD.w[kl$1@GzD@ %%% %   %1416944%%% %   %1417043 %      - p %%% %   %1414511 %   i    %     < -   %   >@T@   unknown -~@@v`-Z@GzDC@Ed[@GzD%% %    %  < % %  GzDsNj?~@@>veHZ@=? - -iU?%%% %   %1417025 %     B -   %  D ;@T@   unknown -~@@w`-Z@GzD@C@Ed[@GzD@%% %    %   % %  GzD@AX0CͲ<=Zx9@66@[@=? - -iU?%%% %   %1416962 %   T - X -@y[@GzDѹɒ&@\q\@GzD@  -%% %   n% %  ѹɒ&@y[@GzD@@ - -0/>:u?%%% %   %1414376%% %    %  ѹɒ&@y[@GzD@%%% %   %1414411%% %   N %  ѹɒ&@y[@GzD%%% %   %141544 %     R G  %   0/>:u?   unknown -X -@整[@GzDX -@整[@GzD@%% %    %   G   - - X -@y[@GzDѹɒ&@\q\@GzD@  %      % %% %    %  # % %  2,Ǩ5۠U[@GzDhE<,P? -"|@ -.5u?? - -v@T@%% %   % %  Mz *@\q[@GzDucܚl:u?   unknown -66@[2Zx9@GzD66@[2Zx9@GzD@ %        %  '      %     /@T@   unknown -Ed[~@@GzD@ w`-ZC@GzD@ %   .    %     @T@   unknown -Ed[~@@GzDv`-ZC@GzD %    . -   %    ' ! -  %% %  " f % #   $  % %   & % %   -w`-ZzAC@GzD@@ - -0/>:u? %        % '   0/>:u?  ( unknown - -w`-Z@zACGzD -w`-Z@zACGzD@ %  )     %% %  *  % +   , % %  GzD@Qbr< -BL<v`-Z@wAC? - -ViU? %   -   %% %  . G % /   0 % %  GzDߣ6sY@]F? - -iU? %     s   % 1  2   @T@  3 unknown -^39X@n@6JGzDEmAY@{]FGzD % 4   5 R@T@  6 unknown -_39X@n@6JGzD@EmAY@{]FGzD@%%% %   %1414290%% %  7  %  NA>Y@{]FGzD@%% %  8  %  NA>Y@{]FGzD %    "    % 9    -v`-Z@CGzDEd[@~@GzD@ : -%% %  ; !% %  EdZ@AGzD@VFgѺ.<A]@?O? @9? - -/@T@ % <  $ 0/>:u?  = unknown -CveHZ@~@GzDCveHZ@~@GzD@%%% %  # %1414308%% %  > $ %  CveHZ@~@GzD@%% %  ? &% %  66@[@NZx9GzD@@ - -0/>:u?%%% %  ( %1416824%%% %  * %1414520%%% %  , %141563%%% %  0 %141570%% %  @ 1< % A   B  C - ->dJ@c39XGzD&pM@WGzD@  % D  E 1 -Aq.S_P@D -VGzD |.Q@EUGzD@  -% %  ITTS@TTS@? ?\@ - %%% %  2%14-1 %  F G  H - 2 %%% %  5 %141607%%% %  6%14-1 %  I J K L 6 %%% %  : %141595%% %  M ;T % N  P O  P - -n@6JEmAYGzD{]F^39XGzD@  % Q  R ; -kn?`Sz*UGzD |.Q_bTGzD@  -% %  kn?`Rz*To_E;f@;f@? ?@ - %%% %  <%14-1 %     S <  %  T ?   -   %  ? T   -   %  A @  H   %   U @   % V  W  @T@  X unknown -\q\ѹɒ&GzDy[X -GzD %  Y  A    % Z   [ 9@T@  \ unknown -\q\ѹɒ&GzD@y[V X -GzD@%% %  ] C % ^  C _  % `   a % %  y[ѹɒ&GzD@@ - -0/>:u? %  b E J   %  E    %% %  c F % d   e % %  ۠U[2,Ǩ5@GzD \iry<)RA?+ )j?$[I@? - -ɦ@T@ %   G     %  G f I   %% %  g H % h  H i % %  ۠U[2,Ǩ5@GzD@hE|9|<@.5u -"|P? - -o@T@ %  J I \ j - K  % k  l  MiU?  m unknown -y[ѹɒ&@GzD@.w[kl$1@GzD@ % n  N o iU?  p unknown -y[ѹɒ&@GzD.w[kl$1@GzD%%% %  K%14-1% %  ITTS@TTS@? ?\@ - %%% %  L -%1414557%% %  q M %  .w[kl$1@GzD@%% %  r Ne %  .w[kl$1@GzD%%% %  Q %141551 %  V T i  -   %  ]  T  -   % s  ` t 0/>:u? T u unknown -{]F@NA>Y@GzD{]F@NA>Y@GzD@%% %  v Wv % w  j x % %  LdJ@_39X@GzD@@ - -0/>:u?%% %  y Z5% %  GzD4+i:u?%%% %  c %1414328%% %  ~ d %  X -整[GzD@%%% %  g %1414458%% %   h %  X -整[GzD%% %  j3% %  GzDqp7s6Y@GzD]F@ -w`-Z@GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  w%14-1 %  { z  F -  %  |  I -   %  |  P -   %  | -cAC@ -w`-ZGzDs]F@zNA>YGzD@ -%% %  } %  I  %   % %  kAC@ -w`-ZGzD@@ - -0/>:u? %  ~  -  %   0/>:u?  unknown -NZx966@[GzDNZx966@[GzD@ %   %% %  2 %   % %  N,Ǩ5۠U[GzD \iryHc0?$[I+ )j?? - -ɦ@T@ %    %% %   %   % %  N,Ǩ5۠U[GzD@hE<,P< -"|@@.5u9? - -o@T@%%% %   ,%1414537%% %   %  ͟kl$1.w[GzD@%% %  } %  ͟kl$1.w[GzD%%% %   .%1414460%%% %   0%1414326%%% %   2%1416859%%% %   3%1417126 %    -  %%% %  %14-1% %  ITTS@TTS@? ?\@ - %%% %   6%1414489 %     %    & - 8  %   r@T@  unknown -z*U |.Q@GzD@_bTkn?`S@GzD@ %     !   %    ) - ~  %   +f@T@  unknown -EmAY{]F@GzD@_39Xn@6J@GzD@%% %   %   % %  GzD@_' 7 <\39X]dJ@=? - -yiU?%%% %   :%1416924 %      %    0 - ~  %  2  @T@  unknown -EmAY{]F@GzD^39Xn@6J@GzD%% %   %  0 % %  GzD?(h`윲?W&pM@=? - -RiU? %    %    6 - 8  %   \@T@  unknown -z*U |.Q@GzD_bTkn?`S@GzD%%% %   ?%1417063 %   -z*U |.Q@GzD_bTkn?`S@GzD@ -%% %  % %  EU |.Q@GzD@@ - -0/>:u?%%% %   B%1414427%% %  ] %  EU |.Q@GzD%%% %   C%1414360%% %   %  EU |.Q@GzD@%%% %   E%141564%% %  6 %    - -&pMW@GzD>dJc39X@GzD@  %   -_bTt,uDw2S@GzDs,uDw2S_bT@GzD@ E -% %  ITTS@TTS@? ?\@ -  %   0/>:u?  unknown -~@@CveHZGzD~@@CveHZGzD@%% %  > %     %   - iU?  unknown -cAC@ -w`-ZGzD@s]F@zNA>YGzD@%% %  % %  A@EdZGzD@eRď6<D@6C?9? - -x@T@%%% %   R%1414323%% %   %  ~@@CveHZGzD@ %    %   fiU?  unknown -iAC@ -w`-ZGzDm]F@}NA>YGzD%% %  :% %  A@EdZGzDQVFg<&6=?O? ]@o? - -8@T@%%% %   W%1414463%% %   %  ~@@CveHZGzD%%% %   `%141599%% %  X %    - -CEd[GzD~@v`-ZGzD@  %   -{Pr M,XGzD&pM; -VGzD@ Z -% %   -FNr M,Wo_E;f@;f@? ?@ - %%% %  %14-1 %   j   %    ^ -   %   `ViU?  unknown -kAC@{NA>Y@GzD@{]F@ -w`-Z@GzD@%% %   %  ^ % %  n@6H@EmAX@GzD@(;&Y<e<! -^&aI@? - -f@T@%%% %   e%1414382%% %   %  LdJ@_39X@GzD@%% %  w% %  &pM@W@GzD@@ - -0/>:u?%%% %   j%1416972%%% %   l%1414503%%% %   n%141552%%% %   {%141560%% %  2 %    - -; -V@{PGzDr M,X@&pMGzD@  %   -m]F@EmAYGzDa@6J@^39XGzD@ n -% %  a@6H@EmAXo_E;f@;f@? ?@ - %%% %  %14-1 %    %   - - |  %   ) - |  %  2  5 0/>:u?  unknown -_39X@[dJGzD_39X@[dJGzD@ %   u - -  %  - y ~0/>:u?   - unknown -_bTu,uDw2SGzD_bTu,uDw2SGzD@ %        %    -  -  %% %   -  %  - u  -% %  z*Tkn?`RGzD@T^*6<"ۘ<hC@F -o9? - -e@T@ %   -  -  %      %% %  - - ( % - - -% %  z*Tkn?`RGzD6p8I़?qE=4 '@? - -L@T@ %     S -   % -  - /iU? |  - unknown -@ -V |.QGzDEUGq.S_PGzD %  -   -ҨiU? v  - unknown -@ -V |.QGzD@EUFq.S_PGzD@%%% %  %14-1 %  -    - -@ -V |.QGzDEUFq.S_PGzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414553%% %   - r %  EU |.QGzD%% %   -  %  EU |.QGzD@ %   -    -   %    -   -   %  -  -  -66@[~@GzD>veHZZx9GzD@  -%% %   - % %  66@[2Zx9GzD@@ - -0/>:u? %  -  - iU?   - unknown -66@[~@GzD@>veHZ2Zx9GzD@%%% %   %1414348%% %   -  %  66@[2Zx9GzD@ %  -   -ݨiU?   - unknown -66@[~@GzD@veHZZx9GzD%%% %   %1414438%% %  - k %  66@[2Zx9GzD%% %  ! - % %  GzDdJGzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414552 % ) -   -x@T@  * - unknown -Ed[CGzD@v`-Z~@GzD@ %   % -   - <  % + -  - @T@  , - unknown -y M,X{PGzD@@ -V&pMGzD@%% %  - -  % . - & - / -% %  GzD@?(h`윲<W&pM? - -iU?%%% %  - %1416895 %  % -    - <  % 0 -   -b@T@  1 - unknown -y M,X{PGzD@ -V&pMGzD%% %  2 - % % 3 - & - 4 -% %  GzD -k' 7 ?c39X>dJ? - -DiU? % 5 -  - 8@T@  6 - unknown -Ed[CGzD w`-Z~@GzD%%% %   %1417090%% %  7 - % %   -w`-ZkACGzD@@ - -0/>:u?%%% %   %1414441%% %  8 - m %   -w`-ZkACGzD%%% %   %1414345%% %  9 -  %   -w`-ZkACGzD@%%% %   %141577%% %  : - C% %  ITTS@TTS@? ?\@ -  %    U  -  %%% %  %14-1 % ; - < -    - -~@>veHZ@GzD2Zx966@[@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414549 %  = - " > - ? -  %  , @ - "  - w  % A - 2 B -J@T@ " C - unknown -`@6J_39X@GzDp]FEmAY@GzD%% %  D - # % %  GzDAX0CͲ?=Zx966@[@=? - --iU?%%% %  % %1417041%% %  E - '% %  GzD@Nj<~@>veHZ@=? - -iU? %  ( F - G - H -   %  @ - , (  - w  % I - J - /@T@ ( K - unknown -a@6J_39X@GzD@{]FEmAY@GzD@%%% %  * %1416946%% %  L - -% %  {]FNA>Y@GzD@@ - -0/>:u?%%% %  . %1414368%% %  M - / - %  {]FNA>Y@GzD@%%% %  1 %1414419%% %  N - 2V %  {]FNA>Y@GzD%%% %  4 %141602%% %  O - 5[ %  ; A 8    % P - D >0/>:u? 8 Q - unknown -~@@CveHZ@GzD~@@CveHZ@GzD@ %   :  -   % R - t  iU? : S - unknown -dAC@wNA>Y@GzD]F@ -w`-Z@GzD %  A ; T -   % U -  V - -~@@v`-Z@GzDC@Ed[@GzD@ W - -%% %  X - < % Y - < Z -% %  A@EdZ@GzDRď6?D@6C? - -@T@%%% %  = %1414409%% %  [ - >K %  ~@@CveHZ@GzD%% %  \ - B % ] - ^ ^ -% %  A@EdZ@GzD@VFg<$6=<O? A]@?o9? - -;@T@%%% %  C %1414378%% %  _ - D %  ~@@CveHZ@GzD@%%% %  G%14-1% %  Mz *@\q[@o_E;f@;f@? ?@ - %%% %  H %1414492%%% %  K %1416958%%% %  N %1417029%% %  ` - Rm% %  X -@整[@GzD@@ - -0/>:u?%%% %  S %141542%% %  a - T  % b - d W0/>:u? U c - unknown -2Zx966@[@GzD2Zx966@[@GzD@%%% %  V %1414416%% %  d - WS %  2Zx966@[@GzD%%% %  Y %1414412%%% %  \ %1417031%%% %  ^ %1414375%%% %  a %1416956%%% %  c %1414371%% %  e - d  %  2Zx966@[@GzD@ % f -  t  @T@ i g - unknown -{]F@^39X@GzDn@6J@EmAY@GzD%% %  h - j% %  GzDbJqEOӴ?&pM@W@=? - -iU?%%% %  k %1414404%% %  i - lG %  &pM@W@GzD%%% %  o %1417013 %    r  -   % j -  @T@ r k - unknown -v`-Z@CGzDEd[@~@GzD%% %  l - sI % m -  n -% %  GzDeF|ol0Ufв?=veHZ@~@? - -iU?%%% %  t %1414479%% %  o - u %  66@[@NZx9GzD%%% %  x %1417163%%% %  | %141540%% %  p - }%%% %  ~%14-1 %  / (   ~  % q -  0/>:u?  r - unknown -NA>Y{]F@GzDNA>Y{]F@GzD@ %      -   % s -   iU?  t - unknown -66@[2Zx9@GzD>veHZ~@@GzD % u -   iU?  v - unknown -66@[2Zx9@GzD@=veHZ~@@GzD@%% %  w - h% %  66@[2Zx9@GzD@@ - -0/>:u? % x -    0/>:u?  y - unknown -CveHZ~@@GzDCveHZ~@@GzD@%% %  z -  % { -  | -% %  EdZA@GzD@VFg.<A]@O? ? - -/@T@%% %  } -  % ~ -   -% %  EdZA@GzDRďY]F@GzD % -  ViU? ' - unknown - -w`-ZwAC@GzD@{NA>Y{]F@GzD@%%% %   %1414294%% %  - b %   -w`-ZzAC@GzD%% %  -  %   -w`-ZzAC@GzD@%% %  - e% %   -w`-Z@zACGzD@@ - -0/>:u? %  -  r  %%% %   %1414291%% %  -  %   -w`-Z@zACGzD@ %   - q %%% %   %1414293%% %  -  %   -w`-Z@zACGzD%% %  - F % - s -% %  EmAX@n@6HGzDElR<~ ?삁?yox>? - - @T@%% %  -  % - s -% %  EmAX@n@6HGzD@";&Y;zF<^&aI@! -@? - -R@T@%%% %   %1416790%%% %   %1416791%%% %  %14-1% %  EdZ@Ao_E;f@;f@? ?@ - %%% %   !%1414309%% %  - % %  CveHZ@~@GzD@@ - -0/>:u?%%% %   $%1416826%%% %   &%1414555%%% %   1%141571%% %  - = % - -  ->dJ@c39XGzD&pM@WGzD@ C -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %  - - - - -   %  -  U - - 2  %   - Y - - 2  % - W  [ 0/>:u?  - unknown -整[X -GzD整[X -GzD@ %  -  = - - - 6  %   - F - - - 6  %  - -  L -  % - - -0/>:u?  - unknown -Gq.S_P@ -V@GzDGq.S_P@ -V@GzD@%%% %   ;%141596%% %  - U % - -  -n@6JEmAYGzD{]F^39XGzD@ P -% %  n@6HEmAXo_E;f@;f@? ?@ - %%% %  %14-1 %  - - - -   % -  -  -0/>:u?  - unknown -@ -VGq.S_PGzD@ -VGq.S_PGzD@ %     - -   %   b F - %% %  -  % - H -% %  \q[Lz *GzD2AA&c?cVϓ%}~@P9? - -@T@ %  f  G -  %% %  -  % - H -% %  \q[Lz *GzD@mcܚl;G%<!ȿ*?9? - -9@T@%%% %   C%1414528%% %  -  %  y[ѹɒ&GzD@%% %  - i %  y[ѹɒ&GzD %  U  - %%% %   F%1414432%% %  - d %  66@[2Zx9@GzD %   Y -  %%% %   H%1414354%% %  -  %  66@[2Zx9@GzD@ % - o  l 0/>:u? \ - unknown -y[ѹɒ&@GzDy[ѹɒ&@GzD@%% %  -  % - - -% %  GzD@aY@GzD@@ - -0/>:u?%%% %   W%1414500%% %  - H %  LdJ@_39X@GzD%%% %   Z%1414459%%% %   \%1414327%%% %   ^%1417124%%% %   _%1416861%%% %   a%1414498%%% %   d%1416863%%% %   h%1417122%%% %   j%1414457%%% %   k%1414329%%% %   m%141574%% %  - @ % -  -  - - -&pM_39XGzDRdJWGzD@  % -   -~@66@[GzDNZx9=veHZGzD@ -% %  ITTS@TTS@? ?\@ - %%% %   v%141616%% %  - i % - K  - |.QEU@GzDFq.S_P@ -V@GzD@ -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %    - -  %%% %  %14-1 % - -   - -cAC@ -w`-ZGzDs]F@zNA>YGzD@ % %  ITTS@TTS@? ?\@ - %%% %   }%1414570%% %  - - %  kAC@ -w`-ZGzD@%% %  -  %  kAC@ -w`-ZGzD %  -   -  %   -  - %% %  - % %  NZx966@[GzD@@ - -0/>:u? %   - - -  % - - iU?  - unknown -~@66@[GzDNZx9=veHZGzD%%% %   %1414456%% %  - | %  NZx966@[GzD %  -  - -   % -  -"iU?  - unknown -~@66@[GzD@NZx9>veHZGzD@%%% %   %1414330%% %  -  %  NZx966@[GzD@%%% %   %1416867%%% %   %1417118 %  ( /  ~  % - 2 +0/>:u? - unknown -_39XLdJ@GzD_39XLdJ@GzD@ %  - $ - -   %  - $ - D  % -  -2iU? $ - unknown -_bTt,uDw2S@GzD@s,uDw2S_bT@GzD@ %  % 5 - 8 %% %  - & % - -% %  z*Tkn?`R@GzD@6p8I<E=4 'ù? - -r@T@%% %  - ) % -  -% %  EmAXn@6H@GzD@";&Y;zF<^&aI! -? - -f@T@%%% %  * %1414358%% %  - + %  _39XLdJ@GzD@%% %  - 0 % -  -% %  EmAXn@6H@GzDElR<~ ?삁?yox?>@? - - @T@%%% %  1 %1414429%% %  - 2` %  _39XLdJ@GzD %  4 - - -  %  - 4 - D  % - - ިiU? 4 - unknown -_bTu,uDw2S@GzDt,uDw2S_bT@GzD%% %  6 %    % %  z*Tkn?`R@GzD/^*6dJc39X@GzD@ -% %  ITTS@TTS@? ?\@ - %%% %  D%14-1 %  - - D %% %   F% %  ~@@CveHZGzD@@ - -0/>:u?%%% %  G %141573 %  H -   %  H - m  %    @T@ H  unknown -m]F@EmAYGzD@a@6J@_39XGzD@%% %   I %    % %  GzD@zF` Y? - - iU?%%% %  J %1414322%%% %  M %1416853 %   O    %  O - m  %     o@T@ O  unknown -m]F@EmAYGzDa@6J@^39XGzD%% %   P; %   -  % %  GzDdFUD<?iAC@w`-Z? - -fiU?%%% %  Q %1414464%%% %  T %1417132%%% %  W %141600%% %   XY %    X -CEd[GzD~@v`-ZGzD@ -% %  AEdZo_E;f@;f@? ?@ - %%% %  Y%14-1 %   ! " Y  %  # \ f - -   %  \ # b - -   %   ]  T - -  %% %  $ ^% %  GzD@dFUD<<wAC@v`-Z@=? - -ViU?%%% %  _ %1414381%% %  % ` %  {]F@NA>Y@GzD@%%% %  c %1416970%%% %  e %1414501%%% %  k %141561%% %  & l3 % '  ( l -; -V@{PGzDr M,X@&pMGzD@ -% %  r M,W@ -FNo_E;f@;f@? ?@ - %%% %  m%14-1 %  - m  %  ) p * + -   %  p ) , - -   %  - - p -   % .  /  0 0/>:u? p 1 unknown - |.Q@EUGzD |.Q@EUGzD@ %  r q 2 3 - |  % 4  5  2 iU? - 6 unknown -W@&pMGzD_39X@UdJGzD % 7  5  8 iU? ) 9 unknown -W@&pMGzD@_39X@RdJGzD@%% %  : s% %  _39X@[dJGzD@@ - -0/>:u? %  ; t w  - - -  %  t ; { - - -  % <  ; = -_bT_bTGzDy,uDw2Sr,uDw2SGzD@ > -%% %  ? u% %  _bTu,uDw2SGzD@@ - -0/>:u? %  w @ - A   % B  C  yĨiU? w D unknown -_bT_bTGzD@y,uDw2Sr,uDw2SGzD@%%% %  x %1414340%% %  E y %  _bTu,uDw2SGzD@ %  F { - G  % H  ~ I iU? { J unknown -_bT_bTGzDy,uDw2St,uDw2SGzD%%% %  } %1414446%% %  K ~s %  _bTu,uDw2SGzD%% %  L ' % M   N % %  GzD_5i"zveHZ~@? - -iU?%%% %   %1416903%% %  V ! % W   X % %  GzD^YGlؽd?66@[Zx9? - -ݨiU?%%% %   %1417082%%% %   %1414437%%% %   %1414349%%% %   %141567%% %  Y 9 %     & - <  % Z   0/>:u? % - [ unknown -W&pMGzDW&pMGzD@%% %  \ u % ]  ^ _  ` - -EU@ |.QGzD@ -V@Fq.S_PGzD@ %% %  a % %  EdZAGzD@MRďdJc39X@GzD %    k o w %% %  p   % q  ? - r % %  a@6HEmAX@GzD6;&Y<e? -@&aI@? - -J@T@%%% %   #%1414417%%% %   '%1414370 %   - J -   %   k  H - -  % s  t  J -iU?  u unknown -&pMW@GzD@JdJ_39X@GzD@%% %  v  % w  H - x % %  a@6HEmAX@GzD@ElR <ayoxo? - -@T@%%% %   -%1414568%%% %   /%1416942%%% %   2%1417045%%% %   5%141603%% %  y % %  ~@@CveHZ@GzD@@ - -0/>:u?%% %  z % %  GzDF` Y@=? - -iU? % {   0/>:u? | unknown -kAC@ -w`-Z@GzDkAC@ -w`-Z@GzD@%%% %  %14-1 % }  ~   W - - -~@@v`-Z@GzDC@Ed[@GzD@ % %  A@EdZ@o_E;f@;f@? ?@ - %%% %   <%1414408%% %   J %  kAC@ -w`-Z@GzD%%% %   >%1417023%%% %   B%1414379%% %   %  kAC@ -w`-Z@GzD@%%% %   D%1416964%%% %   R%1414491%%% %   T%141543%% %  % %  2Zx966@[@GzD@@ - -0/>:u?%%% %   W%1417039%%% %   d%1416948%% %  % %  n@6H@EmAX@GzDElR 䰼?>@yox 9? - - @T@%%% %  j%1414405%%% %   l%1417015%% %   H% %  EdZ@AGzDRďY{]F@GzD@@ - -0/>:u?%% %   % %  GzDeF|olDUfв?>veHZ~@@=? - -iU?%% %   % %  GzD@K[YGjؽd<66@[=Zx9@=? - -iU?%%% %   %1414392%% %   g% %  CveHZ~@@GzD@@ - -0/>:u?%%% %   %1414295%% %    %  CveHZ~@@GzD@%%% %   %1414297%% %   c %  CveHZ~@@GzD%% %  % %  GzDߣ6sY]F@=? - -iU?%% %  ! % %  GzD@Qbr< -BL<v`-ZwAC@=? - -ViU?%%% %  # %1416798%%% %  % %1416799%%% %  ' %1414292 %  )  %%% %  + %1416793 %  - %%% %  / %1416795%%% %  1 %1414476%% %  2  %  _39X@[dJGzD%%% %  4 %1414310%% %  5  %  _39X@[dJGzD@%%% %  < %1414530%%% %  A %141572%%% %  B %14-1 %   - - B  %  E -   %  E -   %  E -  %   0/>:u? E unknown -Aq.S_P@@ -VGzDAq.S_P@@ -VGzD@ %  G F # - 2  %   W iU? U unknown -[X -GzD整[5X -@GzD %  [  7iU? Y unknown -[#X -GzD@整[NX -@GzD@%% %  H % %  整[X -GzD@@ - -0/>:u? %  J I  6  %  m  -&@T@ = - unknown -{P@ -V@GzD&pMr M,X@GzD %  - t @T@ F - unknown -{P> -V@GzD@&pMr M,X@GzD@ %  K - -  %  K - - %% %  L  %  L  %  L % %  Gq.S_P@ -V@GzD@@ - -0/>:u?%%% %  N %141597%%% %  O %14-1 %  O  %  R  - G -   %  R  - A -   %  R - -  %   0/>:u? R unknown - |.QEUGzD |.QEUGzD@%% %  S % %  @ -VGq.S_PGzD@@ - -0/>:u? %   -  -0/>:u?  - unknown -CveHZ~@GzDCveHZ~@GzD@%%% %  V %1414436%% %  W h %  整[X -GzD%%% %  Z %1414350%% %  [  %  整[X -GzD@%%% %  ^ %1416907%%% %  ` %1417078 %  o  :@T@ b unknown -\q\ X -@GzDy[ѹɒ&@GzD%%% %  d %1416991 %   l @T@ f unknown -\q\5X -@GzD@y[ѹɒ&@GzD@%%% %  h %1416917%% %  j % %  y[ѹɒ&@GzD@@ - -0/>:u?%%% %  k %1414353%% %  l  %  y[ѹɒ&@GzD@%%% %  n %1414433%% %  o f %  y[ѹɒ&@GzD%%% %  s %1414502%% %  t I %  {]F@NA>Y@GzD%%% %  w %1417017%%% %  %141575%% %  A %  -&pM_39XGzDRdJWGzD@ - -% %  ITTS@TTS@? ?\@ - %%% %  %14-1%%% %  %141617%%% %  %14-1 %   0/>:u? unknown -m]F@NA>YGzDm]F@NA>YGzD@%% %  q %  V -  - -&pM@y M,XGzD{P@@ -VGzD@ %%% %  -%1416851%%% %  %1417134 %  - %%% %  %1414538 %   %   - -  %   -@T@ unknown -CEd[GzD~@v`-ZGzD%% %  1 %  % %  GzDiNj?~@=veHZ? - -iU?%%% %  %1417116 %    %   - -  %  - /@T@ unknown -CEd[GzD@~@ w`-ZGzD@%% %   %  % %  GzD@eX0EͲ<ZZx966@[? - -"iU?%%% %  %1416869%% %  j% %  _39XLdJ@GzD@@ - -0/>:u? %  F - -   %  - - i  %  - e@T@ unknown -kn?`S_bT@GzD@ |.Qz*U@GzD@ %  - D %% %   %  % %  GzD@2%]?}<_bTt,uDw2S@=? - -2iU? %   0/>:u? unknown -_bTu,uDw2S@GzD_bTu,uDw2S@GzD@%%% %  &%1414361%% %   %  _bTu,uDw2S@GzD@%%% %  )%1414357%% %   %  NA>Y{]F@GzD@%%% %  +%1416922%%% %  0%1414430%% %  a %  NA>Y{]F@GzD%%% %  2%1417065 %  = - -  %  - - i  %   -L@T@ unknown -kn?`S_bT@GzD |.Qz*U@GzD%% %   %  - % %  GzD.f<>?t,uDw2S_bT@=? - -ިiU?%%% %  6%1414426%% %   \ %  _bTu,uDw2S@GzD%% %   m %       - -]F -w`-ZGzDpACwNA>YGzD@ %%% %  C%141566%%% %  %14-1 %  > - G - - - %%% %  F%1414535 %     %  -  - B  %  -   iU? unknown ->dJ@a39XGzD@&pM@WGzD@ %   m %% %   %    % %  a@6H@EmAXGzD@hElR <G@yox?? - -@T@%%% %  I%1414321%% %    %  m]F@NA>YGzD@ %    %   -  - B  %      iU?  unknown ->dJ@c39XGzD&pM@WGzD%% %   < %     % %  a@6H@EmAXGzD;&Y<e?3 -C&aI9? - -o@T@%%% %  P%1414465%% %    %  m]F@NA>YGzD%%% %  X%141601%%% %  %14-1 %  - -    %     - Y  %     - Y  %  " -  %  !  " 0/>:u? # unknown -Gq.S_P@ -VGzDGq.S_P@ -VGzD@ %  -  %%% %  ^%1414380%%% %  `%1416968%%% %  l%141562%%% %  %14-1 %  $ %  %  & '   %  ( +   % )  *  0 a@T@ * + unknown - |.Q@z*UGzD@kn?`S@_bTGzD@ %  , -  % -  /  . @T@ , / unknown - |.Q@z*UGzDkn?`S@_bTGzD%% %  0  % 1  2  % 3  4 % %   |.Q@EUGzD@@ - -0/>:u? %  3  % 5  8  5 0/>:u? 6 unknown -W@&pMGzDW@&pMGzD@%% %  7 E % 8  3 9 % %  GzD?(h`윲?W@&pM? - -iU?%% %  :  % ;  3 < % %  GzD@/d' 7 <_39X@RdJ? - -iU?%%% %  s%1414513 %  = - - %%% %  -%14-1 % >  -  > - -_bT_bTGzDy,uDw2Sr,uDw2SGzD@ % %  ITTS@TTS@? ?\@ - %%% %   - u%1414554 %   -  ?   % @   C `@T@  - A unknown -kn?`Sz*UGzD@ |.Q_bTGzD@%% %  B  - % C   - D % %  GzD@Pd<><y,uDw2S_bT? - -ĨiU?%%% %   - y%1416887 %    - E  % F  I  d@T@  - G unknown -kn?`Sz*UGzD |.Q_bTGzD%% %  H -) % I  - J % %  GzD2%]?}?_bTt,uDw2S? - -iU?%%% %  - ~%1417098%%% %  - %1414445%% %  K  -q %  @ -VGq.S_PGzD%%% %   - %1414341%% %  L  - %  @ -VGq.S_PGzD@%%% %   - %141624%%% %   - %1414347%% %  M  - %  CveHZ~@GzD@%%% %   - %1414439%% %  N  -l %  CveHZ~@GzD%%% %  $ - %141568%% %  O & -% %  W&pMGzD@@ - -0/>:u?%%% %  ' - %141629%% %  P ( -v % Q  R  S - -n,uDw2S@_bTGzD_bT@t,uDw2SGzD@  % T  U ( - -EU@ |.QGzD@ -V@Fq.S_PGzD@ ` -% %  ITTS@TTS@? ?\@ - %%% %  ) - %1414346%%% %  + - %1414342%%% %  . - %1416893%%% %  0 - %1414444%%% %  3 - %1417092%%% %  5 - %1414440%%% %  ; - %141618%% %  V < -k % W  < - -kn?`S_bT@GzD |.Qz*U@GzD@ j -% %  kn?`Rz*T@o_E;f@;f@? ?@ -  %  G - > - @ - o - %% %  X ? -  % Y  ? - Z % %  GzDpfdJc39X@=? - -wiU? % [  J - B -0/>:u? k \ unknown -LdJ_39X@GzDLdJ_39X@GzD@%%% %  A - %1414420%% %  ] B -W %  LdJ_39X@GzD%% %  ^ H - % _  H - ` % %  GzD@bJqFOӴ<&pMW@=? - -iU?%%% %  I - %1414367%% %  a J -  %  LdJ_39X@GzD@%%% %  P - %1414512%%% %  R - %1414407%% %  b T -% %  kAC@ -w`-Z@GzD@@ - -0/>:u?%% %  c V -s % d   e  f - -_bT@kn?`SGzDz*U@ |.QGzD@ %%% %  Y - %1417021%%% %  ] - %1416966%%% %  b - %1414571%%% %  f - %1414406%%% %  j -  %1414477%%% %  m - %1417159%%% %  q -  %1414487%%% %  s -  %1414393%%% %  u -  %1414355%%% %  x -  %1414296%%% %  { -  %1416801%%% %  ~ -  %1416803%%% %  - %1414431%%% %  - ! %1414356 %  g - h i   %  2 ( - -  % j  8  k A@T@ - l unknown -> -V@{PGzD@r M,X@&pMGzD@ %  - m n o  %  ( 2 - -  % p  q  5 i@T@ - r unknown -; -V@{PGzDr M,X@&pMGzD%%% %  - 2 %1417156%%% %  - 5 %1416829 %  -  % s    - 0/>:u? - t unknown -&pM@WGzD&pM@WGzD@ %  * -   % u  0  giU? v unknown -Aq.S_P@D -VGzD@ |.Q@EUGzD@ %  ,  -  % w   / iU? x unknown -Aq.S_P@C -VGzD |.Q@EUGzD %  -   -  %  -  -  % y  - - -&pM@y M,XGzD{P@@ -VGzD@ -%% %  z - % {  |  % }  ~ % %  Aq.S_P@@ -VGzD@@ - -0/>:u? %    0/>:u? - unknown -整[5X -@GzD整[5X -@GzD@%% %  - %  - % %  GzDn Gbv_w?[#X -@ 9? - -iU?%% %  - %  - % %  GzD@n Gbv_w<[#X - ? - -7iU?%%% %  - H %1414531 %  m  t 0/>:u?  unknown -&pMW@GzD&pMW@GzD@%% %  -% %   -FNr M,W@GzDEТ<}EB?c5p@@? - -&@T@%% %  -% %   -FNr M,W@GzD@bvTd"<|m1o Z? - -@T@ %  - - -  %   -ҨiU? - unknown - |.QEU@GzD@Fq.S_P@ -V@GzD@ %  - /iU? - unknown - |.QEU@GzDGq.S_P@ -V@GzD%%% %  - L %1414569%% %  - %  Gq.S_P@ -V@GzD@%% %  -Y %  Gq.S_P@ -V@GzD %  - - O  %  - - O  %  - -   %   0/>:u? - unknown -{]FNA>YGzD{]FNA>YGzD@ %  - - ; =   %  ! - @ ? -  %  - ! F E -  %  -  - |.Q@ -VGzDFq.S_PEUGzD@ -%% %  - %  ?  %  - % %   |.QEUGzD@@ - -0/>:u?%%% %  - S %1414558%% %  -% %  CveHZ~@GzD@@ - -0/>:u?%%% %  - W %1417076%%% %  - [ %1416909%% %  -% %  \q[3Mz *@GzDmcܚl;G%?!ȿ*?@ -9? - -:@T@%% %  -% %  \q[3Mz *@GzD@2AA&c<cVϓ%}~P? - -@T@%%% %  - j %1414565%%% %  - l %1416913%%% %  - o %1417072%%% %  - t %1417019%%% %  - %141576%%% %  -%14-1 %  - - %% %  -% %  m]F@NA>YGzD@@ - -0/>:u?%%% %  - %141625%% %  -r% %   -FN@y M,Wo_E;f@;f@? ?@ -  %  - - -  %  - -0/>:u? - unknown -~@CveHZGzD~@CveHZGzD@ %  -  %   - -   %   iU? - unknown -]F -w`-ZGzDpACwNA>YGzD%% %  -0 %  - % %  AEdZGzDRď6?D6C?? - -@T@%%% %  - %1414455%% %  -{ %  ~@CveHZGzD %  -   %   - -   %   ViU? - unknown -{]F -w`-ZGzD@wAC{NA>YGzD@%% %  - %  % %  AEdZGzD@VFg<"6=<O? @A]@ -9? - -/@T@%%% %  - %1414331%% %  - %  ~@CveHZGzD@%%% %  - %1414488 %  - - - i  %  - - i %% %  - %  % %  kn?`Rz*T@GzD@S^*6᡼*<F -hC? - -e@T@ %  - -0/>:u? - unknown -u,uDw2S_bT@GzDu,uDw2S_bT@GzD@%%% %  - %1414362%% %  - %  u,uDw2S_bT@GzD@%% %  -% %  _bTu,uDw2S@GzD@@ - -0/>:u?%%% %  - %1416930%%% %  - %1416920%%% %  - %1417067%% %  - %  % %  kn?`Rz*T@GzD6pYGzD@  -% %  ITTS@TTS@? ?\@ -  %   - ^@T@ unknown -&pM@y M,XGzD@{P@@ -VGzD@ %  -  - B %% %   %  % %  GzD@bJqFOӴ<&pM@W? - -iU? %     0/>:u? unknown ->dJ@_39XGzD>dJ@_39XGzD@%%% %  %1414320%% %    %  >dJ@_39XGzD@%%% %   %1416849 %    @T@  unknown -&pM@y M,XGzD{P@@ -VGzD%% %   = %  % %  GzDpfdJ@c39X? - -iU?%%% %   %1414466%% %    %  >dJ@_39XGzD%%% %   %1417136 %    -   %   0/>:u?  unknown -zAC -w`-ZGzDzAC -w`-ZGzD@ %   Y  %  @     %   " A@T@  unknown -{Pr M,XGzD@&pM> -VGzD@ %  F   %  !  i@T@  unknown -{Pr M,XGzD&pM; -VGzD%% %  "  %  "  %   % %  Gq.S_P@ -VGzD@@ - -0/>:u? %  n h ( % - _  %  q  k 0/>:u? ( unknown -@ -V@Gq.S_PGzD@ -V@Gq.S_PGzD@ %  ) ' - R  %  *  . 0/>:u? ) unknown -n,uDw2S@_bTGzDn,uDw2S@_bTGzD@ %  * g  %% %  +  %  % %  kn?`R@z*TGzD@S^*6᡼*<F -@hC@? - -a@T@ %  m , %% %  - @ %  % %  kn?`R@z*TGzD6p:u?%%% %  4 %1414475%% %  5  %  W@&pMGzD%%% %  7 %1414311%% %  8  %  W@&pMGzD@ %  I  C 0/>:u? unknown -{,uDw2S_bTGzD{,uDw2S_bTGzD@%% %  = l %  "  iU? @ unknown - |.Q@ -VGzD@Gq.S_PEUGzD@%% %  A % %  kn?`Rz*TGzD@6p:u?%%% %  q B -%1417047%%% %  s H -%1414366%% %   t  %  &pMW@GzD@%%% %  w J -%1416940%%% %  { T -%1414572%%% %  } V -%141627%% %  ~ t % -   ~ -_bT@kn?`SGzDz*U@ |.QGzD@ f -% %  z*T@kn?`Ro_E;f@;f@? ?@ -  %  (   %  $ U i - _  %  k   iU?  unknown -EU@ |.QGzD@@ -V@Gq.S_PGzD@%% %    %   i  % %  r M,W@ -FNGzD@EТ޳!̟<@c5p@? - -A@T@ %  ,    %  U $ o - _  %     q ҨiU?  unknown -EU@ |.QGzD@ -V@Fq.S_PGzD%% %   D %   o  % %  r M,W@ -FNGzD.v:u?%% %   % %  GzD@9=e:u?%%% %  -%1414435%% %  ! g %  整[5X -@GzD%%% %  -%1414351%% %  "  %  整[5X -@GzD@%% %  # % %  &pMW@GzD@@ - -0/>:u?%%% %  -%1414422%%% %  -%1414365 % $   0/>:u? % unknown - |.QEU@GzD |.QEU@GzD@%% %  & % %  GzD@ש=eYGzD@@ - -0/>:u?%%% %  %14-1% %  ITTS@TTS@? ?\@ - %%% %  -%1414560%% %  3  %   |.QEUGzD@%% %  4 u %   |.QEUGzD%%% %  -%1414544%%% %  -%1414434%%% %  -%1414352 %  5 - -  %  6 - -  % 7  )  , 0/>:u? 8 unknown -[dJ_39XGzD[dJ_39XGzD@%%% %  -%1414517%%% %  -%141626%% %  9 % %  ~@CveHZGzD@@ - -0/>:u? %   5 %% %  : /% %  GzDF` Y? - -iU?%%% %  -%1414454%% %  ; z %  zAC -w`-ZGzD%%% %  -%1417114 %   6  %% %  < % %  GzD@dFUD<<wACv`-Z? - -ViU?%%% %  -%1414332%% %  =  %  zAC -w`-ZGzD@%%% %  -%1416871%%% %  -%1414363%% %  >  %   |.QEU@GzD@%% %  ? % %  u,uDw2S_bT@GzD@@ - -0/>:u?%%% %  -%1416932%%% %  -%1414524%%% %  -%1414424%% %  @ Z %   |.QEU@GzD%%% %  -%1417055%%% %    %141622%% %  A  o%%% %   %14-1%% %  B  % %   -FN@y M,WGzD@v=Td"<[m1o @ Z?? - -^@T@%%% %  %1414319%% %  C -  %  &pM@WGzD@%% %  D % %  >dJ@_39XGzD@@ - -0/>:u?%%% %    %1416847%% %  E  >% %   -FN@y M,WGzDEТ<~EB?5pBo9? - -@T@%%% %    %1414467%% %  F   %  &pM@WGzD%%% %    %1417138%% %  G  % %  zAC -w`-ZGzD@@ - -0/>:u? %   - -  % H   0/>:u? I unknown -&pMWGzD&pMWGzD@%% %  J   % K  L % %   -FNr M,WGzD@EТ<}EB<c5p@ -? - -A@T@%% %  M  , % N  5 O % %   -FNr M,WGzDv"Td"?Hm1o Z?? - -i@T@%%% %  " %1414566%% %  P ! v %  Gq.S_P@ -VGzD%% %  Q "  %  Gq.S_P@ -VGzD@%% %  R % % %  @ -V@Gq.S_PGzD@@ - -0/>:u? %   & ( - R  %  &  , - R %% %  S ' % %  n,uDw2S@_bTGzD@@ - -0/>:u? % T  U  * iU? ( V unknown -n,uDw2S@_bTGzD@_bT@t,uDw2SGzD@%%% %  ) + %1414316%% %  W *  %  n,uDw2S@_bTGzD@ % X  .  Y 7iU? , Z unknown -n,uDw2S@_bTGzD_bT@u,uDw2SGzD%%% %  - - %1414470%% %  [ .  %  n,uDw2S@_bTGzD%%% %  1 / %1417144%%% %  3 0 %1416841%%% %  5 3 %1414514%%% %  8 5 %1417154%%% %  ; 8 %1416831%% %  \ = % %  {,uDw2S_bTGzD@@ - -0/>:u?%%% %  > = %141620%% %  ] ? % %  GzD@9QgpI<Hq.S_P@ -V? - -iU?%%% %  @ A %1414338%%% %  C C %1416885%% %  ^ E +% %  GzD=e:u?  b unknown -EU@ |.QGzDEU@ |.QGzD@%%% %  Y m %1417049%%% %  [ o %1414527%%% %  _ t %1416938%%% %  d ~ %141628%%% %  e %14-1 %   _ g - e  % c    U @T@ g d unknown -_bT@kn?`SGzD@z*U@ |.QGzD@%% %  e i  % f  i g % %  GzD@N5i"z -V@Kq.S_P? - -iU?%%% %  j %1414312%% %  h k  %  @ -V@Gq.S_PGzD@ %  _  m  - e  % i  Y   g@T@ m j unknown -_bT@kn?`SGzDz*U@ |.QGzD%% %  k o C % l   m % %  GzD7#G$xt:u?%%% %  %1414364%%% %  %1414423%% %  p . % q  5 r % %  n@6HEmAXGzDElR 䰼?>yox?? - - @T@%% %  s  % t  u % %  n@6HEmAXGzD@(;&Y<e<! -@^&aI? - -R@T@%%% %  %1414562%% %  v  %  {]FNA>YGzD@%% %  w y %  {]FNA>YGzD%%% %  %1416883%%% %  %1417102 % x   ) iU? y unknown -&pM_39XGzDUdJWGzD % z  ,  iU? { unknown -&pM_39XGzD@RdJWGzD@%% %  | % %  [dJ_39XGzD@@ - -0/>:u?%%% %  %1414539%%% %  %1414453%%% %  %1417112%%% %  %1414333%%% %  %1416873%%% %  %1416934%%% %  %1414525%%% %  %1417053%%% %   %141623%%% %   %1414318%%% %  - %1416845%%% %  %1414518%%% %   %1414468%%% %   %1417140%%% %   %1414567%% %  } % %  &pMWGzD@@ - -0/>:u?%%% %   %1414336%% %  ~  %  &pMWGzD@%%% %   %1414450%% %   w %  &pMWGzD%%% %  ! %1417104%%% %  " %1416881%%% %  % %1414519%%% %  ' %1414516%% %   %  % %  GzD@2%]?}<_bT@t,uDw2S? - -iU?%%% %  * %1416839%% %  A %  % %  GzD:\<>?q,uDw2S@_bT? - -7iU?%%% %  . %1417146%%% %  = %1414561%%% %  ? %1414337%%% %  E %1414449 %    ` e  %  Y  U 0/>:u? _ unknown -_bT@u,uDw2SGzD_bT@u,uDw2SGzD@%% %   % %  EU@ |.QGzD@@ - -0/>:u?%% %  % %  z*T@kn?`RGzD@6p8I<`E=4@ '@9? - -@T@%%% %  i %1414313%% %    %  EU@ |.QGzD@%%% %   k %1416833%% %   B% %  z*T@kn?`RGzDT^*6<"ۘ?hCF -o? - -g@T@%%% %   o %1414473%% %    %  EU@ |.QGzD%%% %   q %1417152%%% %  $ %1414573%%% %  ( %1414452%% %  ) x %  [dJ_39XGzD%%% %  + %1414334%% %  ,  %  [dJ_39XGzD@%%% %  / %1416875%%% %  1 %1417110%% %  5 -% %  GzDcJqGOӴ?&pMW? - -iU?%% %  6 % %  GzD@✻pf:u?%%% %  a  %1414574%%% %  c %1414314%%% %  f  %1416835%%% %  i  %1414472%%% %  l  %1417150%%% %  q ) %1417108%%% %  t , %1416877%%% %  x 5 %1414451%%% %  z 6 %1414335%%% %  U %1416837%%% %  Y %1417148%%% %  ` %1414575 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 272336 -$end 'sab' -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0002465.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -dJFUB@֝P@GzD&pM@_39X@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth30 lump%   -dJFUB@֝P@GzD&pM@_39X@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111231 -shell%   -dJFUB@֝P@GzD&pM@_39X@GzD@properties%  ansoft% %  -  Stator_Teeth30 %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[30] face%     - -dJFUB@֝P@GzD/Ξ{F@δvT -R@GzD@ %%% %    %111231%%% %   %6Stator_Teeth[30]id%% %     %      - -iŻE@Aѳ%acQ@GzDMM@;bW@GzD@  loop%   -dJFUB@֝P@GzD/Ξ{F@δvT -R@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -'Ξ{F@֝P@GzD(Ξ{F@֝P@GzD@%%% %   %112242%% %  :   % ; < =  > - -MM@;bW@GzD&pM@W@GzD@  % ? @  -dJFUB@̴vT -R@GzD,[B@ܿ SFR@GzD@ ' -% %  ,[B@ۿ SFR@o_Eбv.?f8uNܿ<511@ %%% %  %11-1 %  A B C D   %  E  F G   %   E H I -   %  J A  -   % K L MgT=??  N unknown -iŻE@Aѳ%acQ@GzDMM@;bW@GzD %   O P   %  Q R  0 - S  % T 8 UHAޡh?  V unknown -dJFUB@֝P@GzD@/Ξ{F@ʹvT -R@GzD@ %  W X 2   % Y 7 ZHAޡh? [ unknown -dJFUB@֝P@GzD/Ξ{F@ʹvT -R@GzD %  \ ! X ] - 5  %  ! \ Q ^ - 5  % _ 3 ` -%Ξ{F@֝P@GzDkI#_F@,Q@GzD@ a -%% %  b "  vertex% c 2 d % e ^ f straight% -curve%  (Ξ{F@֝P@GzDifS7@@ - -0/>:u?%%% %  $ %112243%% %  g %  % h i j  k -JdJ@W@GzD&pM@_39X@GzD@  % l m % -MM@;bW@GzD&pM@W@GzD@ > -% %   -FN@r M,W@o_E;f@;f@? ?@ - %%% %  &%11-1 %  O n W o - &  %  , ) p q   %  ) r s t   %  u v ) D - j  % w x yiU? ) z unknown -LdJ@W@GzD&pM@_39X@GzD %  + * { | -   %  p } * G - =  % ~ L 0/>:u? * unknown -MM@;bW@GzDMM@;bW@GzD@ %  + I  %  M 0/>:u? + unknown -iŻE@Bѳ%acQ@GzDiŻE@Bѳ%acQ@GzD@ %  X ,  %% %  -  %  q  %  % %  MM@;bW@GzD  Ԋ%bP - -gT=?? %  @ . P - &  %  U Z0/>:u? . unknown -dJFUB@ʹvT -R@GzDdJFUB@δvT -R@GzD@ %  / 4 ^ S  %  / S  %  i -dJFUB@֝P@GzD@&pM@_39X@GzD@%% %  0  %  0  ellipse% %  GzD@?/Ξ{F@֝P@? - -HAޡh? %  1 @ o   %  1 J 3 ]  %% %  2  %  2 % %  GzD?/Ξ{F@֝P@? - -HAޡh? %  4 3 5  %   7cMBP? X unknown -%Ξ{F@֝P@GzDgI#_F@,Q@GzD %  8 cMBP? Q unknown -(Ξ{F@֝P@GzD@kI#_F@,Q@GzD@%%% %  5%11-1 %  5  a - -%Ξ{F@֝P@GzDkI#_F@,Q@GzD@ % %  CDE@2bP@o_E)fh9;?T"@@ %%% %  6 "%1116176%% %  7  -point%  (Ξ{F@֝P@GzD%% %  8  %  (Ξ{F@֝P@GzD@%%% %  ; %%112244%% %  <  %  S  -dJFUB@֝P@GzD@&pM@_39X@GzD@ -Ţ?'%?zs_0 %  u < -JdJ@W@GzD&pM@_39X@GzD@ k % %  ITTS@TTS@? ?\@ - %%% %  =%11-1 %  } p v =  %  @ - &  %  Z HMBP? W unknown -dJFUB@ʹvT -R@GzD,[B@ܿ SFR@GzD %  m F A q - =  %  y Lkh8cӼ? A unknown -MM@;bW@GzD&pM@W@GzD %  B   %  B t -  %   xi8cӼ? B unknown -vP(irJ@]X@GzDRdJ@_39X@GzD %  C - j  %  C m - j %% %  D  %   %  % %  GzDpf:u? %  H -  %  H J -  %  -hŻE@,Q@GzDhI#_F@Bѳ%acQ@GzD@ -%% %  I  %  % %  iŻE@Bѳ%acQ@GzD@@ - -0/>:u? %  M ж(A&Y? J unknown -iŻE@,Q@GzDhI#_F@Bѳ%acQ@GzD%%% %  K -%1116180%% %  L  %  MM@;bW@GzD%% %  M  %  iŻE@Bѳ%acQ@GzD %  n O R - & %% %  P % %  dJFUB@ʹvT -R@GzD@ifS7=pfSG=@ - -0/>:u? %  { Q S  %  R S  %   UHMBP? unknown -dJFUB@̴vT -R@GzD@,[B@ۿ SFR@GzD@%%% %  S%11-1 %  S %%% %  T 0%1116177%% %  U  %  dJFUB@ʹvT -R@GzD@ %  r W  %%% %  Y 2%1116179%% %  Z  %  dJFUB@ʹvT -R@GzD %  \ -  %   0/>:u? \ unknown -gI#_F@,Q@GzDgI#_F@,Q@GzD@%% %  ]  %  % %  gI#_F@,Q@GzD/RT֏\I - -cMBP?%% %  ^  %  % %  (Ξ{F@֝P@GzD@YRT֏\@I@,$3+ - -cMBP?%% %  `  %   - -hŻE@,Q@GzDhI#_F@Bѳ%acQ@GzD@ %%% %  c 7%1119946%%% %  e 8%1119947%%% %  h <%112245%% %  i  %   - -vP(irJ@]X@GzDRdJ@_39X@GzD@ % %  %= ףp=Z@GzD@ar^?@@ %%% %  j%11-1 %  y 0/>:u? m unknown -&pM@W@GzD&pM@W@GzD@ %  n  %   0/>:u? n unknown -,[B@ۿ SFR@GzD,[B@ۿ SFR@GzD@%% %  o  %  o % %  dJFUB@ʹvT -R@GzDXy{@_@ - -HMBP?%% %  q % %   -FN@r M,W@GzDEТ}EB?k5px@9? - -kh8cӼ? %  r -  %   ST=?? r unknown -zg !@C@ػR@GzD~P(irJ@]X@GzD %   s   %  s  u  %  -vP(irJ@]X@GzDRdJ@_39X@GzD@ -%% %   t  %  % %  n@6H@EmAX@GzDWgoFie,ȱ?ѱv. @f8uNo9? - -i8cӼ? %  v u - j  %   x0/>:u? u  unknown -LdJ@_39X@GzDLdJ@_39X@GzD@%%% %  w D%1116184%% %   x  %  LdJ@_39X@GzD%% %  - y  %  &pM@W@GzD %  { } S %% %   | % %  iŻE@Bѳ%acQ@GzD@ @ Ԋ@b`= - -gT=?? %   j8cӼ? }  unknown -MM@;bW@GzD@&pM@W@GzD@%%% %  ~ G%1116181%% %     %  MM@;bW@GzD@ %   ж(A&Y?  unknown -hŻE@,Q@GzD@gI#_F@Bѳ%acQ@GzD@%%% %  %11-1% %  gI#_F@,Q@o_Eh9;ῤ)f<ISRT֏\@ %%% %  I%1116183%% %     %  iŻE@Bѳ%acQ@GzD@%% %    % %  iŻE@Bѳ%acQ@GzDI@JRT֏\ - -ж(A&Y?%%% %  L%1119954%%% %  M%1119955%%% %  P%1116178 %    S  %   -  %   x(A&Y?  unknown -,[B@ػR@GzD@zg !@C@ۿ SFR@GzD@%% %     %  % %  ,[B@ۿ SFR@GzD@Xy{_#3+= - -HMBP? %    S  %   iU?  unknown -JdJ@W@GzD@&pM@_39X@GzD@%%% %  U%1119949 %   -  %   x(A&Y?  unknown -,[B@ػR@GzDzg !@C@ۿ SFR@GzD%%% %  Z%1119951%% %  !  % %  gI#_F@,Q@GzD@@ - -0/>:u?%%% %  ]%1116187%% %  "   %  gI#_F@,Q@GzD%%% %  ^%1116201%% %  #   %  gI#_F@,Q@GzD@%%% %  `%112250%% %  $  %%% %  i%112246%% %  %   % & '  ( - -zg !@C@ػR@GzD~P(irJ@]X@GzD@ % %  n@6H@EmAX@o_E;f@;f@? ?@ - %% %  )   % * +% %  &pM@W@GzD@@ - -0/>:u? % , ' -,[B@ػR@GzDzg !@C@ۿ SFR@GzD@ - -%% %  .  % %  ,[B@ۿ SFR@GzD@@ - -0/>:u?%%% %  o%1116188%% %  /   %  ,[B@ۿ SFR@GzD%%% %  q%1116185 %    0  %    -  % 1 -zg !@C@ػR@GzD~P(irJ@]X@GzD@ ( -%% %  2   % 3 4% %  zg !@C@ػR@GzDp4t~@R -J@$bP= - -ST=?? %   -  % 5  60/>:u? 7 unknown -vP(irJ@]X@GzDvP(irJ@]X@GzD@%%% %  %11-1%%% %  t%1116191%% %  8   %  vP(irJ@]X@GzD%% %  9   % :  ;% %  LdJ@_39X@GzD@@ - -0/>:u?%%% %  x%1119962%%% %  y%1119963%%% %  |%1116182%% %  <  % %   -FN@r M,W@GzD@2\-< 6 ST=?? ? unknown -zg !@C@ػR@GzD@vP(irJ@]X@GzD@ %  0 - %% %  @   % A 0 B% %  zg !@C@ػR@GzD@/_y{@ - -x(A&Y?%%% %  %1116192%% %  C   %  ,[B@ۿ SFR@GzD@ % D  6\k8cӼ? E unknown -vP(irJ@]X@GzD@RdJ@_39X@GzD@%% %  F  % %  GzD@bJqEOӴ?&pM@W@=? - -iU?%% %  G  % %  ,[B@ۿ SFR@GzD/_@y{ - -x(A&Y?%%% %  %1116205%%% %  %1119966%%% %  %1119990%%% %  %112251%%% %  %112247%% %  H   % I `  - - -,[B@ػR@GzDzg !@C@ۿ SFR@GzD@ % %  vP(irJ@]X@o_EI)?XP/߿<x0@ %%% %  %1116194%% %  J   %  &pM@W@GzD@%%% %  %11-1% %  zg !@C@ػR@o_Ef8uNܿбv.<_y{@ %%% %  %1116193%%% %  %1119969 % K  0/>:u? L unknown -zg !@C@ػR@GzDzg !@C@ػR@GzD@%%% %  %11-1%%% %  %1116190%% %  M   %  zg !@C@ػR@GzD%% %  N   % O  P% %  vP(irJ@]X@GzD@@ - -0/>:u?%%% %   %1119973%%% %   %1116196%% %  Q   %  LdJ@_39X@GzD@%%% %   %1116195%%% %   %1116202%% %  R  % %  vP(irJ@]X@GzD@p4t~R -Jb` - -ST=??%%% %   %1116200%% %  S   %  zg !@C@ػR@GzD@%%% %   %1119976%% %  T  % %  n@6H@EmAX@GzD@ElR< <>@yox 9? - -\k8cӼ?%%% %   %1116197%%% %   %1116189%%% %  & %112248%% %  U ' %%% %  * %1119979%% %  V 0 % %  zg !@C@ػR@GzD@@ - -0/>:u?%%% %  3 %1119971%%% %  5 %1116203%% %  W 6  %  vP(irJ@]X@GzD@%%% %  : %1119982%%% %  > %1116199%%% %  A %1119987%%% %  D %1116198%%% %  I '%112249%%% %  K 0%1116204%%% %  O 6%1119985 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0002593.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -ʆF@&N@GzD |.Q@@ -V@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth32 lump%   -ʆF@&N@GzD |.Q@@ -V@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111237 -shell%   -ʆF@&N@GzD |.Q@@ -V@GzD@properties%  ansoft% %  -  Stator_Teeth32! -%%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[32] face%     - -ՆF@&N@GzD[_RJ@EP@GzD@ %%% %    %111237%%% %   %6Stator_Teeth[32]id%% %   " - %      - -ȋ,G@)s՘P@GzD8JG@0-P@GzD@  loop%   -ՆF@&N@GzD[_RJ@EP@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -ֆF@EP@GzD׆F@EP@GzD@%%% %   %112266%% %  : % - % ; < =  > -ՆF@&N@GzD |.Q@@ -V@GzD -΍ !o"@aU % ? @  -[_RJ@&N@GzDVAJ@6 "O@GzD@ ' -% %  0%eJ@\bN@o_E&[e\?ACH$@@ %%% %  %11-1 %  A B C D   %  E  F G   %   E H I -   %  J K  - =  % L M N`(A&Y?  O unknown -ȋ,G@)s՘P@GzD8JG@0-P@GzD %   P Q   %  K R  0 =  % S T 8Aޡh?  U unknown -ՆF@&N@GzD[_RJ@EP@GzD %  V W 2 -   % X Y 7Aޡh? Z unknown -ՆF@&N@GzD@[_RJ@EP@GzD@ %  F ! W [ - 5  %  ! F K \ - 5  % ] 4 ^ -ʆF@EP@GzDȋ,G@0-P@GzD@ _ -%% %  ` ". - vertex% a " b % c " d straight% -curve%  ֆF@EP@GzD@ifS7=pfSG=@ - -0/>:u?%%% %  $ %112267%% %  e %& - % f g h  i - -|7J@3 "O@GzDVAJ@f`O@GzD@  % j k % -ՆF@&N@GzD |.Q@@ -V@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  &%11-1 %  l P R m - &  %  n ) o p   %  ) q r s   %  t u ) D - v  % w x yҨiU? ) z unknown -Fq.S_P@EU@GzD@ |.Q@@ -V@GzD@ %  + * { | -   %  4 3 * G - 5  % } M ~0/>:u? *  unknown -ȋ,G@0-P@GzDȋ,G@0-P@GzD@ %  + I  %  N 0/>:u? + unknown -8JG@+s՘P@GzD8JG@+s՘P@GzD@ %  , =  %  , / 4 \ = %% %  -2 - %  -  %  - % %  ȋ,G@0-P@GzDI@$RT֏\cS[ - -`(A&Y? %  @ . Q - &  %  T Y0/>:u? . unknown -[_RJ@&N@GzD[_RJ@&N@GzD@ %  / @ m = %% %  0/ - %  m  ellipse% %  GzD?[_RJ@&N@? - -Aޡh? %  1   %  1 { 3 [  %% %  21 - %  % %  GzD@?[_RJ@&N@? - -Aޡh? %  ~ 7jMBP? W unknown -ʆF@EP@GzD@ȋ,G@0-P@GzD@ %  8 MjMBP? K unknown -ֆF@EP@GzDȋ,G@0-P@GzD%%% %  5%11-1 %  5  _ - -ʆF@EP@GzDȋ,G@0-P@GzD@ % %  ȋ,G@0-P@o_E)f?h9;<dN,@ %%% %  6 "%1116236%% %  7L - -point%  ֆF@EP@GzD@%% %  8M - %  ֆF@EP@GzD%%% %  ; %%112268%% %  <' - %   - -}7J@f`O@GzDwCƟQ@@U@GzD@  %  < -|7J@3 "O@GzDVAJ@f`O@GzD@ i -% %  VAJ@3 "O@o_Ee\&[<&~ -:Ě@ %%% %  =%11-1 %  =  %  @ &  %   TMBP? @ unknown -[_RJ@&N@GzDVAJ@3 "O@GzD %  { A   %  A p -  %  y j8cӼ? A unknown -z뻱PP@,U<V@GzD@Jq.S_P@@ -V@GzD@ %  B   %  B s -  %   x|i8cӼ? B unknown -wCƟQ@@U@GzD@ |.Q@EU@GzD@ %  C - v  %  C - v  %  t -Fq.S_P@EU@GzD |.Q@@ -V@GzD@ %% %  D6 - %  s  %  p % %  GzD@=e:u? %  H n -  %  H J -  %  -8JG@*s՘P@GzDz뻱PP@-U<V@GzD@ -%% %  I5 - %  % %  8JG@+s՘P@GzD@@ - -0/>:u? %  k J =  %  N NT=?? J unknown -8JG@+s՘P@GzDz뻱PP@-U<V@GzD%%% %  L -%1116240%% %  MQ - %  ȋ,G@0-P@GzD%% %  NP - %  8JG@+s՘P@GzD %  P l V - & %% %  Q0 -% %  [_RJ@&N@GzDifS7pfSG@@ - -0/>:u? %  R = %%% %  S 0%1116237%% %  TN - %  [_RJ@&N@GzD %  q V   %  Y MBP? V unknown -[_RJ@&N@GzD@VAJ@6 "O@GzD@%%% %  X 2%1116239%% %  YO - %  [_RJ@&N@GzD@%% %  [9 -% %  ȋ,G@0-P@GzD@$RT֏\I#3+= - -jMBP?%% %  \D -% %  ֆF@EP@GzD/RT֏\@I@ - -jMBP?%% %  ^, - %   - -8JG@*s՘P@GzDz뻱PP@-U<V@GzD@ %%% %  a 7%1120046%%% %  c 8%1120047%%% %  f <%112269%% %  g( - %  v  -Fq.S_P@EU@GzD |.Q@@ -V@GzD@  %  g -}7J@f`O@GzDwCƟQ@@U@GzD@ -% %  ~7J@f`O@o_Ewj鿊Զr?@@ %%% %  h%11-1 %  - h  %  k =  %  u t k - v  %   iU? k unknown -Gq.S_P@EU@GzD |.Q@@ -V@GzD %  l - h  %   0/>:u? l unknown -VAJ@3 "O@GzDVAJ@3 "O@GzD@%% %  m> - %  m % %  VAJ@3 "O@GzD -:Ě.~y$3+= - -MBP? %   NT=?? n unknown -8JG@*s՘P@GzD@z뻱PP@,U<V@GzD@ %  o u  %  o  %  -z뻱PP@,U<V@GzDLq.S_P@@ -V@GzD@ -%% %  p7 - %  p % %   -FN@r M,W@GzD@!v:u? t  unknown - |.Q@EU@GzD |.Q@EU@GzD@ %  y 0/>:u? u  unknown -Gq.S_P@@ -V@GzDGq.S_P@@ -V@GzD@%%% %  v%11-1% %  ITTS@TTS@? ?\@ - %%% %  w D%1116244%% %   xT - %   |.Q@EU@GzD@%% %   yU - %  Gq.S_P@@ -V@GzD@%% %   |4 -% %  8JG@+s՘P@GzD@I$RT֏\@ - -`(A&Y?%%% %  } G%1116241%% %   ~R - %  ȋ,G@0-P@GzD@ %  - %%% %  %11-1% %  z뻱PP@,U<V@o_EJ\}?0[2A{M+*=@ %%% %  I%1116243%% %   S - %  8JG@+s՘P@GzD@ %  -  %   Fl8cӼ?  unknown -z뻱PP@,U<V@GzDLq.S_P@@ -V@GzD%% %   E - %  % %  8JG@+s՘P@GzD -@ x@$bP= - -NT=??%%% %  M%1120054%%% %  N%1120055%%% %  Q%1116238 %   =  %   P(A&Y?  unknown -~7J@3 "O@GzDVAJ@f`O@GzD%%% %  T%1120049 %  - h  %   P(A&Y?  unknown -|7J@3 "O@GzD@VAJ@f`O@GzD@%% %  ! : - % " #% %  [_RJ@&N@GzD@ :Ě@B~@#3+ - -MBP?%%% %  Y%1120051%%% %  [%1116247%%% %  \%1116258%%% %  ^%112274%% %  $ - -%%% %  g%112270%% %  % ) - % &   - -z뻱PP@,U<V@GzDLq.S_P@@ -V@GzD@ %%% %  %11-1 %     -  %   ' h  %  -  % (  )i8cӼ? * unknown -wCƟQ@@U@GzD |.Q@EU@GzD%% %  + @ - % , - % . /% %  GzDQgpI<Kq.S_P@> -V@=? - -iU?%% %  0 ? -% %  VAJ@3 "O@GzD@@ - -0/>:u?%%% %  m%1116252%% %  1 Z - %  VAJ@3 "O@GzD%% %  2 8 -% %  z뻱PP@,U<V@GzD@ - xb` - -NT=?? % 3  0/>:u? 4 unknown -z뻱PP@,U<V@GzDz뻱PP@,U<V@GzD@%%% %  %11-1% %   -FN@r M,W@o_E;f@;f@? ?@ - %%% %  p%1116245%% %  5 V - %  z뻱PP@,U<V@GzD@ %  ' -  %   %% %  6 < - % 7 8% %  ~7J@f`O@GzD@b@6o ҂@b`= - -tT=?? % 9 ) 0/>:u?  : unknown -wCƟQ@@U@GzDwCƟQ@@U@GzD@%%% %  %11-1 % ; ^   - -wCƟQ@@U@GzD |.Q@EU@GzD@ % %  kn?`R@z*T@o_E;f@;f@? ?@ - %%% %  s%1116251%% %  < Y - %  wCƟQ@@U@GzD@%% %  = I -% %   |.Q@EU@GzD@@ - -0/>:u?%% %  > J -% %  Gq.S_P@@ -V@GzD@@ - -0/>:u?%%% %  x%1120062%%% %  y%1120063%%% %  |%1116242%%% %  ~%1120057%%% %  %1120059%% %  ? F -% %   -FN@r M,W@GzDO2\-D :u? J unknown -~7J@f`O@GzD~7J@f`O@GzD@%% %  K A - % L M% %  kn?`R@z*T@GzD6p@vrH? 'E=4@? - -i8cӼ?%%% %  %1116254%% %  N [ - %  Gq.S_P@@ -V@GzD%% %  O \ - %   |.Q@EU@GzD%%% %  %1116253%%% %  %1120076%%% %  %1116246%% %  P K -% %  z뻱PP@,U<V@GzD@@ - -0/>:u?%%% %  %1120065%%% %   %1116250%% %  Q X - %  ~7J@f`O@GzD@%% %  R H -% %  wCƟQ@@U@GzD@@ - -0/>:u?%% %  S + -%%% %   %1120073%%% %   %1116263%%% %   %1116264%%% %   %1116260%%% %   %1120088%% %  T B -% %  wCƟQ@@U@GzDb6o ҂%bP - -tT=??%%% %   %1116257%% %  U ^ - %  ~7J@f`O@GzD%%% %   %1116249%%% %  " %1120069%%% %  & %112272%% %  V 'G -% %  ~7J@f`O@GzD@@ - -0/>:u?%%% %  ( %1116255%% %  W )] - %  wCƟQ@@U@GzD%%% %  , %1120079%%% %  . %1120080%%% %  3 %1116265%%% %  7 %1120071%%% %  9 %1116262%%% %  ; %112273%%% %  A %1116256%%% %  D %1120084%%% %  I '%1116261%%% %  L )%1120082 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0002721.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -wgB K@wgB K@GzD_bT@_bT@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth34 lump%   -wgB K@wgB K@GzD_bT@_bT@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111243 -shell%   -wgB K@wgB K@GzD_bT@_bT@GzD@properties%  ansoft% %  -  Stator_Teeth34 -%%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[34] face%     - -wgB K@wgB K@GzD-utDN@-utDN@GzD@ %%% %    %111243%%% %   %6Stator_Teeth[34]id%% %    - %      -wgB K@wgB K@GzD@_bT@_bT@GzD@ -(Hq?xKMߴ?pe'}`*b}ᚿ loop%   -wgB K@wgB K@GzD-utDN@-utDN@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown --utDN@wgB K@GzD-utDN@wgB K@GzD@%%% %   %112290%% %  :  - % ; < =  > - - 1dK@w/eM@GzD_ S@R_KT@GzD@  % ? @  -IcK@w/eM@GzD 1dK@9e'N@GzD@ ' -% %   1dK@w/eM@o_Ee\&[<&~ -:Ě@ %%% %  %11-1 %  A B C D   %  E  F G   %   H I J   %  K L  - - M  % N O PިiU?  Q unknown -u,uDw2S@t,uDw2S@GzD@_bT@_bT@GzD@ %   R S   %  T U  0 -   % V 8 W4Aޡh?  X unknown -wgB K@wgB K@GzD@-utDN@-utDN@GzD@ %  Y Z 2   % [ 7 \CAޡh? ] unknown -wgB K@wgB K@GzD-utDN@-utDN@GzD %  ^ ! Z _ - 5  %  ! ^ T ` - 5  % a 3 < --utDN@wgB K@GzD>e'N@IcK@GzD@ b -%% %  c " - vertex% d " e % f " g straight% -curve%  -utDN@wgB K@GzDifS7pfSG@@ - -0/>:u?%%% %  $ %112291%% %  h % - % i j 5  b - --utDN@wgB K@GzD>e'N@IcK@GzD@  % k l % - 1dK@w/eM@GzD_ S@R_KT@GzD@ > -% %  _ S@R_KT@o_E~?C6)Kr> m&=@ %%% %  &%11-1 %  m n o p - &  %  q ) r s   %  ) t u v   %  L K ) D - M  % w x yިiU? ) z unknown -t,uDw2S@u,uDw2S@GzD_bT@_bT@GzD %  { * | }   %  ~  * G -  %  P n8cӼ? * unknown -_ S@R_KT@GzD@w,uDw2S@_bT@GzD@ %  +   %  + J -  %   O:u? . unknown -wgB K@-utDN@GzDwgB K@-utDN@GzD@ %  / 4 `   %  / {  %% %  0 - %  S % %  GzD@?-utDN@wgB K@? - -4Aޡh? %  o 1   %  1 3 _  %% %  2 - %  S % %  GzD?-utDN@wgB K@? - -CAޡh? %  4 3 5  %   7MBP? Z unknown --utDN@wgB K@GzD9e'N@IcK@GzD %  8 %MBP? T unknown --utDN@wgB K@GzD@>e'N@IcK@GzD@%%% %  5%11-1% %  %M@DmMJ@o_E -e\*[?@@ %%% %  6 "%1116296%% %  7 - -point%  -utDN@wgB K@GzD%% %  8 - %  -utDN@wgB K@GzD@%%% %  ; %%112292%% %  < - %   - -w/eM@IcK@GzD:e'N@ 1dK@GzD@ %%% %  =%11-1 %  t - =  %  @ &  %  @ - &  %  t Y @ p   %   O(A&Y? o unknown -IcK@w/eM@GzD 1dK@9e'N@GzD %  A   %  A s -  %  y (m8cӼ? A unknown -R_KT@_ S@GzD_bT@v,uDw2S@GzD %  B o l   %   ~ B v -  %   x<t,uDw2S@_bT@=? - -ިiU? %  U E   %  E } - =  %   WT=?? E unknown - 1dK@w/eM@GzD@_ S@R_KT@GzD@ %  u F L  %  F u  %  ~ -_ S@R_KT@GzDw,uDw2S@_bT@GzD@ -%% %  G - %  G % %  kn?`R@z*T@GzD@4^*6<*<F -@`hCo9? - -n8cӼ? %  H T   %  H -  %   WT=?? H unknown -w/eM@ 1dK@GzD@R_KT@_ S@GzD@ %  r I -  %  I r K  %  -R_KT@_ S@GzD_bT@v,uDw2S@GzD@ -%% %  J - %  % %  z*T@kn?`R@GzD@Ļ:u? K unknown -_bT@u,uDw2S@GzD_bT@u,uDw2S@GzD@ %  P x0/>:u? ~ unknown -u,uDw2S@_bT@GzDu,uDw2S@_bT@GzD@%%% %  M%11-1 %  M  -t,uDw2S@t,uDw2S@GzD_bT@_bT@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  N -%1116300%% %  O - %  _bT@u,uDw2S@GzD@%% %  P - %  u,uDw2S@_bT@GzD@ %  R U -  %  R Y -  %  -wgB K@-utDN@GzDIcK@:u? %   WMBP? U unknown -wgB K@-utDN@GzD@IcK@9e'N@GzD@%%% %  V 0%1116297%% %  W - %  wgB K@-utDN@GzD@ %  \ MBP? Y unknown -wgB K@-utDN@GzDIcK@:u? ^ unknown -9e'N@IcK@GzD9e'N@IcK@GzD@%% %  _ - %  % %  9e'N@IcK@GzDB~ :Ě#3+= - -MBP?%% %  ` - %  % %  -utDN@wgB K@GzD@!~@ -:Ě@|#3+ - -%MBP?%%% %  d 7%1120146%%% %  f 8%1120147%%% %  i <%112293%% %   j - %   - -_ S@R_KT@GzDw,uDw2S@_bT@GzD@  %  j -w/eM@IcK@GzD:e'N@ 1dK@GzD@ -% %  9e'N@IcK@o_E*[ -e\ -:Ě*~@  %  | l n =  %  l |  - =  %   WT=?? t  unknown - 1dK@w/eM@GzD_ S@R_KT@GzD %  n m { - &  %  m -  %   0/>:u? m  unknown -IcK@9e'N@GzDIcK@9e'N@GzD@ %   0/>:u? n - unknown - 1dK@w/eM@GzD 1dK@w/eM@GzD@%% %   p - %  p  %  % %  IcK@9e'N@GzDF~@ :Ě - -O(A&Y? %  q -  %   WT=?? q  unknown -w/eM@ 1dK@GzDR_KT@_ S@GzD%% %   s - %  % %  z*T@kn?`R@GzDT^*6᡼"ۘ?hCF -@o9? - -(m8cӼ?%% %   v - %  % %  kn?`R@z*T@GzDĻꢼ_瑥?G[@~e\? - -:u? ! unknown -_ S@R_KT@GzD_ S@R_KT@GzD@%%% %  %11-1% %  kn?`R@z*T@o_E;f@;f@? ?@ - %%% %  G%1116301%% %  "  - %  _ S@R_KT@GzD@ %  # -  % $  Q(A&Y? % unknown -w/eM@IcK@GzD@9e'N@ 1dK@GzD@ %  # & -  %   % ' -w/eM@ 1dK@GzDR_KT@_ S@GzD@ ( -%% %  )  - % * +% %  w/eM@ 1dK@GzD@zm}k@wA9?fŅ@ - -WT=?? % ,  0/>:u? - unknown -R_KT@_ S@GzDR_KT@_ S@GzD@%%% %  %11-1 % .  - -R_KT@_ S@GzD_bT@v,uDw2S@GzD@ % %  z*T@kn?`R@o_E;f@;f@? ?@ - %%% %  J%1116308%% %  /  - %  R_KT@_ S@GzD@%% %  0  -% %  _bT@u,uDw2S@GzD@@ - -0/>:u?%% %  1  -% %  u,uDw2S@_bT@GzD@@ - -0/>:u?%% %  2  - % 3  ( - -w/eM@ 1dK@GzDR_KT@_ S@GzD@ %%% %  O%1120154%%% %  P%1120155%%% %  %11-1 % 4  - -wgB K@-utDN@GzDIcK@:u?%%% %  _%1116313%% %  <  - %  9e'N@IcK@GzD%%% %  `%1116305%% %  =  - %  9e'N@IcK@GzD@%%% %  j%112294%% %  >  -%%% %  %11-1%% %  ?  -% %   1dK@w/eM@GzDwA9?fŅ@zm}k@%bP= - -WT=??%% %  @  -% %  IcK@9e'N@GzD@@ - -0/>:u?%% %  A  -% %   1dK@w/eM@GzD@@ - -0/>:u?%%% %  p%1116315%% %  B  - %  IcK@9e'N@GzD%% %  C  - %   1dK@w/eM@GzD%% %  D  - % E F% %  R_KT@_ S@GzDzm}kwA9?fŅbP - -WT=??%%% %  s%1116310%% %  G  - %  R_KT@_ S@GzD%%% %  v%1116317%% %  H  - %  _ S@R_KT@GzD%%% %  x%1120171%%% %  y%1120172%% %  I  -% %   1dK@w/eM@GzD@F~ :Ě@ - -O(A&Y?%%% %  }%1116302%% %  J  - %   1dK@w/eM@GzD@%% %  K  -% %  _ S@R_KT@GzD@@ - -0/>:u?%%% %  %1120157 %  & %% %  L  -% %  9e'N@IcK@GzD@[ -:Ě~@ - -Q(A&Y? % M  0/>:u? # N unknown -w/eM@ 1dK@GzDw/eM@ 1dK@GzD@%%% %  %11-1% %  w/eM@ 1dK@o_E C6)K濜~?z> m&@@ %%% %  %1116307%% %  O  - %  w/eM@ 1dK@GzD@%% %  P  -% %  R_KT@_ S@GzD@@ - -0/>:u?%% %  Q  -%%% %  %1120168%%% %  %1116324%%% %  %1116323%%% %  %112297%% %  R  -%% %  S  -%%% %  %1116304%% %  T  - %  IcK@9e'N@GzD@%%% %  %1116314%% %  U  -% %  w/eM@ 1dK@GzD[ -:Ě@~ - -Q(A&Y?%%% %  %1116321%%% %  %1120178%%% %   %1120164%%% %   %112295%%% %   %1116316%%% %   %1116318%%% %   %1116319%%% %   %1120181%%% %   %1120183%%% %   %1116311%% %  V  - %  w/eM@ 1dK@GzD%%% %   %1120174%%% %   %1120185%%% %   %1116303%%% %   %1120159%%% %   %1116320%%% %  $ %1116306%% %  W & -% %  w/eM@ 1dK@GzD@@ - -0/>:u?%%% %  * %1120166%%% %  , %1116325%%% %  . %112299%%% %  3 %112298%%% %  4 %112296%%% %  6 %1120161%%% %  9 %1116312%%% %  E %1120176%%% %  M &%1116322 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0002849.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -&N@ĆF@GzD@ -V@ |.Q@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth36 lump%   -&N@ĆF@GzD@ -V@ |.Q@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111249 -shell%   -&N@ĆF@GzD@ -V@ |.Q@GzD@properties%  ansoft% %  -  Stator_Teeth36! %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[36] face%     - -&N@džF@GzDEP@[_RJ@GzD@ %%% %    %111249%%% %   %6Stator_Teeth[36]id%% %   "  %      -&N@ɆF@GzD@@ -V@ |.Q@GzD@ -;Q|?jsB?o:u?  9 unknown -&N@[_RJ@GzD&N@[_RJ@GzD@%%% %   %112314%% %  : %  % ; < =  > -&N@ĆF@GzD@ -V@ |.Q@GzD -jsB?Q|o>aX# % ? @  -@U@wCƟQ@GzDEU@ |.Q@GzD@ ' -% %  z*T@kn?`R@o_E;f@;f@? ?@ - %%% %  %11-1 %  A , B C -   %  D  E F   %   G H I   %  ) J  - -   % K L MiU?  N unknown -EU@Gq.S_P@GzD@@ -V@ |.Q@GzD@ %   O P   %  Q R  0 =  % S T 8TAޡh?  U unknown -&N@džF@GzDEP@[_RJ@GzD %  V W 2 -   % X Y 7@ޡh? Z unknown -&N@ɆF@GzD@EP@[_RJ@GzD@ %  [ ! W \ - 5  %  ! [ Q ] - 5  % ^ 4 _ -&N@[_RJ@GzD6 "O@VAJ@GzD@ ` -%% %  a ".  vertex% b 2 c % d 0 e straight% -curve%  &N@[_RJ@GzD@ifS7=pfSG=@ - -0/>:u?%%% %  $ %112315%% %  f %&  % g h i  j - -EP@ĆF@GzD0-P@ ȋ,G@GzD@  % k l % -&N@ĆF@GzD@ -V@ |.Q@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  &%11-1 %  m E J n &  %  J ) l o -   %  H p ) C q  % r s L0/>:u? ) t unknown -@ -V@Gq.S_P@GzD@ -V@Gq.S_P@GzD@ %  u * v w   %  @ x * F - &  % y M zh8cӼ? * { unknown -@U@wCƟQ@GzD@EU@ |.Q@GzD@ %  + | } ~   %   B + I - q  %   Lm8cӼ? + unknown -,U<V@z뻱PP@GzD@@ -V@Lq.S_P@GzD@ %  , A @ n -  %% %  -2  %  I  %  n  ellipse% %  GzD@_5i"z:u? . unknown -EP@ȆF@GzDEP@ɆF@GzD@ %  / 4 ] =  %  / = %% %  0/  %  0 % %  GzD?EP@džF@? - -TAޡh? %  | 1   %  1 u 3 \  %% %  21  %  2 % %  GzD@?EP@ԆF@? - -@ޡh? %  4 3 - 5  %   7MBP? W unknown -&N@[_RJ@GzD@3 "O@VAJ@GzD@ %  8 MBP? Q unknown -&N@[_RJ@GzD6 "O@VAJ@GzD%%% %  5%11-1 %  5  ` - -&N@[_RJ@GzD6 "O@VAJ@GzD@ % %  3 "O@VAJ@o_E -e\?*[@ %%% %  6 "%1116356%% %  7L  -point%  &N@[_RJ@GzD@%% %  8M  %  &N@[_RJ@GzD%%% %  ; %%112316%% %  <'  %  _  - -+s՘P@ȋ,G@GzD0-P@8JG@GzD@  %  < -EP@ĆF@GzD0-P@ ȋ,G@GzD@ j -% %  %~P@IF@o_Eh9;ῤ)f?@@ %%% %  =%11-1 %  A o =  %  x @ - &  %  M 0/>:u? J unknown -EU@ |.Q@GzDEU@ |.Q@GzD@ %   sҨiU? A unknown -EU@Fq.S_P@GzD@ -V@ |.Q@GzD %  B  - q  %  B -*U<V@z뻱PP@GzD@ -V@Lq.S_P@GzD@ -%% %  C;  %  o % %  @ -V@Gq.S_P@GzD@@ - -0/>:u? %  W D   %  D w -  %  z ZT=?? D unknown -f`O@~7J@GzD@@U@wCƟQ@GzD@ %  E m & %% %  F3  %  F % %  z*T@kn?`R@GzD@6p<8I<qE=4@ '? - -h8cӼ? %  G V   %  G ~ -  %   MT=?? G unknown -+s՘P@8JG@GzD@/U<V@z뻱PP@GzD@ %  p H - q %% %  I:  %  I % %  r M,W@ -FN@GzD@t2\-<:Af<h9;)f -@? - -m8cӼ?%%% %  K -%1116360%% %  LP  %  @ -V@Gq.S_P@GzD@%% %  MQ  %  EU@ |.Q@GzD@ %  O R - i  %  O V - i %% %  P0 % %  EP@ɆF@GzDpfSWifS7@@ - -0/>:u? %  Q =  %  R =  %   TcMBP? R unknown -EP@ĆF@GzD0-P@ȋ,G@GzD%%% %  S 0%1116357%% %  TN  %  EP@ɆF@GzD %  Y cMBP? V unknown -EP@ɆF@GzD@0-P@ ȋ,G@GzD@%%% %  X 2%1116359%% %  YO  %  EP@ɆF@GzD@ %  [  %   0/>:u? [ unknown -3 "O@VAJ@GzD3 "O@VAJ@GzD@%% %  \6  %  % %  3 "O@VAJ@GzD@&~ -:Ě#$3+= - -MBP?%% %  ]D  %  % %  &N@[_RJ@GzDF~@ :Ě@$3+ - -MBP?%% %  _)  %   - -f`O@~7J@GzD@U@wCƟQ@GzD@ %%% %  b 7%1120246%%% %  d 8%1120247%%% %  g <%112317%% %  h(  %  h -+s՘P@ȋ,G@GzD0-P@8JG@GzD@ -% %  0-P@ȋ,G@o_E)fh9;SRT֏\I@ %%% %  i%11-1 %  l p =  %  l m =  %   |i8cӼ? m unknown -@U@wCƟQ@GzDEU@ |.Q@GzD%% %  n=  %  o % %  EU@ |.Q@GzD@@ - -0/>:u?%% %  o< % %  GzD7#G$xt:u? x  unknown -@U@wCƟQ@GzD@U@wCƟQ@GzD@%%% %  y F%1116361%% %   zR  %  @U@wCƟQ@GzD@ %    | -  %   ж(A&Y? | - unknown -+s՘P@ȋ,G@GzD@0-P@8JG@GzD@ %   }   -  %  }    %    -(s՘P@8JG@GzD/U<V@z뻱PP@GzD@  -%% %   ~9  %  % %  +s՘P@8JG@GzD@(x@ -@ - -MT=?? %   0/>:u?   unknown -,U<V@z뻱PP@GzD,U<V@z뻱PP@GzD@%%% %  I%1116368%% %   W  %  ,U<V@z뻱PP@GzD@%%% %  L%1120254%%% %  M%1120255 %    i %%% %  P%1116358 %   =  %  -  %   (A&Y?  unknown -3 "O@v7J@GzDf`O@VAJ@GzD %    =  %    -  %   ж(A&Y?  unknown -+s՘P@ȋ,G@GzD0-P@8JG@GzD%% %   C  %   !% %  0-P@ȋ,G@GzDIRT֏\$3+= - -cMBP?%%% %  T%1120249%% %  " 7  % #  $% %  EP@ɆF@GzD@I@JRT֏\@#3+ - -cMBP?%%% %  Y%1120251 % % -3 "O@v7J@GzDf`O@VAJ@GzD@ & -%% %  ' I % %  3 "O@VAJ@GzD@@ - -0/>:u?%%% %  \%1116364%% %  ( T  %  3 "O@VAJ@GzD@%%% %  ]%1116378%% %  ) ^  %  3 "O@VAJ@GzD%%% %  _%112319%% %  * * % %  @U@wCƟQ@o_EԶr?wj@ %%% %  h%112318%%% %  %11-1%% %  + >  % ,  -% %  z*T@kn?`R@GzDĻꢼI]Ԗ?+e\@ [o9? - -|i8cӼ?%%% %  n%1116371%% %  . Y  %  EU@ |.Q@GzD%%% %  o%1116370%% %  / @  % 0  1% %  r M,W@ -FN@GzD,v8!v ? ZLm1o @? - -m8cӼ?%% %  2 +  % 3   & - -3 "O@v7J@GzDf`O@VAJ@GzD@ %%% %  s%1120271 %  - %% %  4 5 % %  f`O@~7J@GzD@6 -:Ě ~@ - -(A&Y? %   -  % 5  0/>:u? 6 unknown -f`O@~7J@GzDf`O@~7J@GzD@%%% %  %11-1%%% %  w%1116362%% %  7 S  %  f`O@~7J@GzD@%% %  8 ? % %  @U@wCƟQ@GzD@@ - -0/>:u?%%% %  z%1120257 %   -  %   %% %  9 8 % %  0-P@ȋ,G@GzD@RT֏\I@ - -ж(A&Y? %   -  % :  0/>:u?  ; unknown -+s՘P@8JG@GzD+s՘P@8JG@GzD@%%% %  %11-1 % <   - -(s՘P@8JG@GzD/U<V@z뻱PP@GzD@ % %  +s՘P@8JG@o_E0[2AQ\}?@@ %%% %  ~%1116367%% %  = V  %  +s՘P@8JG@GzD@%% %  > K % %  ,U<V@z뻱PP@GzD@@ - -0/>:u?%%% %  %1120268 % ?  0/>:u? @ unknown -0-P@ȋ,G@GzD0-P@ȋ,G@GzD@ % A  ZT=?? B unknown -f`O@~7J@GzD@U@wCƟQ@GzD%% %  C E  % D  E% %  3 "O@VAJ@GzD6 -:Ě@ ~ - -(A&Y? % F  MT=?? G unknown -(s՘P@8JG@GzD,U<V@z뻱PP@GzD%% %  H B  % I  J% %  +s՘P@8JG@GzDRT֏\@I - -ж(A&Y?%%% %  %1116377%% %  K ]  %  0-P@ȋ,G@GzD%%% %  %1116365%% %  L U  %  0-P@ȋ,G@GzD@%%% %  %11-1% %  f`O@~7J@o_E*[ -e\ -:Ě*~@ %%% %  %1116383%%% %  %1120261%%% %  %1120286%%% %  %112320%%% %  %1116372%% %  M Z  %  @U@wCƟQ@GzD%%% %  %1120273%%% %  %1116374%% %  N [  %  ,U<V@z뻱PP@GzD%%% %  %112321%% %  O , %%% %  %1116363%% %  P J % %  f`O@~7J@GzD@@ - -0/>:u?%%% %   %1120259%%% %   %1116373%%% %   %1116366%% %  Q H % %  +s՘P@8JG@GzD@@ - -0/>:u?%% %  R - %%% %   %1120266%%% %   %1116385%% %  S G % %  0-P@ȋ,G@GzD@@ - -0/>:u?%% %  T F % %  f`O@~7J@GzD6o ҂@b@"bP= - -ZT=??%%% %   %1116379%% %  U _  %  f`O@~7J@GzD%% %  V A % %  ,U<V@z뻱PP@GzD(x - - -MT=??%%% %   %1116376%% %  W \  %  +s՘P@8JG@GzD%%% %   %1120283%%% %  # %1120264%%% %  , %1120276%%% %  0 %1120279%%% %  3 %112322%%% %  5 %1116384%%% %  : %1116382%%% %  < %112323%%% %  ? %1116381%%% %  A %1116380%%% %  D %1120288%%% %  F %1116375%%% %  I %1120281 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0002977.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -֝P@dJFUB@GzD_39X@&pM@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth38 lump%   -֝P@dJFUB@GzD_39X@&pM@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111255 -shell%   -֝P@dJFUB@GzD_39X@&pM@GzD@properties%  ansoft% %  -  Stator_Teeth38 %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[38] face%     - -֝P@dJFUB@GzDʹvT -R@-Ξ{F@GzD@ %%% %    %111255%%% %   %6Stator_Teeth[38]id%% %     %      - -Aѳ%acQ@iŻE@GzD;bW@MM@GzD@  loop%   -֝P@dJFUB@GzDʹvT -R@-Ξ{F@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -˴vT -R@dJFUB@GzDʹvT -R@dJFUB@GzD@%%% %   %112338%% %  :   % ; < =  > -֝P@dJFUB@GzD_39X@&pM@GzD -Y?XoT]g~W4x_ - % ? @  -֝P@$Ξ{F@GzD,Q@gI#_F@GzD@ ' -% %  ,Q@gI#_F@o_Eh9;?)f@ %%% %  %11-1 %  A B C D -   %  E  B F   %   E G H -   %  I C  - =  % J K LgT=??  M unknown -Bѳ%acQ@iŻE@GzD;bW@MM@GzD %   N O   %  P Q  0 - R  % S 8 T$Aޡh?  U unknown -֝P@dJFUB@GzD@ʹvT -R@-Ξ{F@GzD@ %  V W 2 =  % X 7 Y@ޡh? Z unknown -֝P@dJFUB@GzDʹvT -R@(Ξ{F@GzD %  [ ! W \ - 5  %  ! [ P ] - 5  % ^ 3 _ -˴vT -R@dJFUB@GzDݿ SFR@,[B@GzD@ ` -%% %  a "  vertex% b \ c % d ] e straight% -curve%  ʹvT -R@dJFUB@GzDpfSWifS7@@ - -0/>:u?%%% %  $ %112339%% %  f %  % g h i  j - -]X@vP(irJ@GzD_39X@RdJ@GzD@  % k l % -֝P@dJFUB@GzD_39X@&pM@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  &%11-1 %  N m V n - &  %  o ) m p   %  ) o * F -   %  , V ) D =  % q r Kж(A&Y? ) s unknown -,Q@hŻE@GzDBѳ%acQ@gI#_F@GzD %  + * t u -   % v K w0/>:u? * x unknown -Bѳ%acQ@iŻE@GzDBѳ%acQ@iŻE@GzD@ %  y z + H {  % | L }0/>:u? + ~ unknown -;bW@MM@GzD;bW@MM@GzD@ %  l , z  = %% %  -  %  D  %  H % %  Bѳ%acQ@iŻE@GzD Ԋ@ @ - -gT=?? %  @ . O - &  %  T Y0/>:u? . unknown -֝P@(Ξ{F@GzD֝P@)Ξ{F@GzD@ %  / 4 ] R  %  / R  %  -֝P@dJFUB@GzD@_39X@&pM@GzD@%% %  0  %  O  ellipse% %  GzD@?˴vT -R@dJFUB@? - -$Aޡh? %  C 1 @ n =  %  1 3 \ = %% %  2  %  O % %  GzD?˴vT -R@dJFUB@? - -@ޡh? %  4 3 5  %   7HMBP? W unknown -̴vT -R@dJFUB@GzDۿ SFR@,[B@GzD %  8 HMBP? 4 unknown -ʹvT -R@dJFUB@GzD@ݿ SFR@,[B@GzD@%%% %  5%11-1 %  5  ` - -˴vT -R@dJFUB@GzDݿ SFR@,[B@GzD@ % %  Q@B@o_Ef8uNܿбv.?<511=@@ %%% %  6 "%1116416%% %  7  -point%  ʹvT -R@dJFUB@GzD%% %  8  %  ʹvT -R@dJFUB@GzD@%%% %  ; %%112340%% %  <  %   - -ػR@zg !@C@GzD]X@vP(irJ@GzD@  %  < -]X@vP(irJ@GzD_39X@RdJ@GzD@ j -% %  EmAX@n@6H@o_E;f@;f@? ?@ - %%% %  =%11-1 %  I =  %  @ A p - &  %  Y rMBP? @ unknown -֝P@(Ξ{F@GzD,Q@gI#_F@GzD %  B A -   %  r 0/>:u? A unknown -,Q@gI#_F@GzD,Q@gI#_F@GzD@%% %  D  %  D % %  ,Q@gI#_F@GzDJRT֏\@I - -ж(A&Y? %  E u R  %  } wgT=?? E unknown -Aѳ%acQ@iŻE@GzD@;bW@MM@GzD@%% %  F  %  F % %  Bѳ%acQ@iŻE@GzD@@ - -0/>:u? %  G - {  %  G I  - {  %  -;bW@MM@GzDW@&pM@GzD@ -%% %  H  %  H % %  ;bW@MM@GzD@@ - -0/>:u? %  L j8cӼ? I unknown -;bW@MM@GzDW@&pM@GzD%%% %  J -%1116420%% %  K  %  Bѳ%acQ@iŻE@GzD%% %  L  %  ;bW@MM@GzD %  m N Q - & %% %  O % %  ֝P@(Ξ{F@GzD@pfSG=ifS7=@ - -0/>:u? %  P R  %  Q t o R  %   TcMBP? unknown -֝P@$Ξ{F@GzD@,Q@gI#_F@GzD@%%% %  R%11-1 %  R  %  R  -֝P@dJFUB@GzD@_39X@&pM@GzD@ -SoT]?Y??g~W4x_ -%%% %  S 0%1116417%% %  T  %  ֝P@(Ξ{F@GzD@ %  W = %%% %  X 2%1116419%% %  Y  %  ֝P@(Ξ{F@GzD %  [ -  %   0/>:u? [ unknown -ۿ SFR@,[B@GzDۿ SFR@,[B@GzD@%% %  \  %  \ % %  ۿ SFR@,[B@GzD_Xy{^$3+= - -HMBP?%% %  ]  %  ] % %  ʹvT -R@dJFUB@GzD@2_@y{@#3+ - -HMBP?%% %  _  %  {  - -;bW@MM@GzDW@&pM@GzD@ %%% %  b 7%1120346%%% %  d 8%1120347%%% %  g <%112341%% %  h  %  _  -W@JdJ@GzD_39X@&pM@GzD@  %  h -ػR@zg !@C@GzD]X@vP(irJ@GzD@ -% %  ػR@zg !@C@o_EXP/߿I)?@@ %%% %  i%11-1 %  i  %  l =  %  l -  %   iU? l unknown -W@JdJ@GzD_39X@&pM@GzD%% %  n % %  ֝P@(Ξ{F@GzDI@YRT֏\@,$3+ - -MBP? %  w ж(A&Y? o unknown -,Q@iŻE@GzD@Bѳ%acQ@hI#_F@GzD@%% %  p  %  % %  ,Q@gI#_F@GzD@@ - -0/>:u?%%% %  q D%1116424%% %  r  %  ,Q@gI#_F@GzD %  t y R %% %  u % %  ;bW@MM@GzD@ Ԋ  - -gT=??%%% %  v F%1116421%% %  w  %  Bѳ%acQ@iŻE@GzD@ %  z y {  %   }g8cӼ? y unknown -;bW@MM@GzD@W@&pM@GzD@%%% %  {%11-1% %  r M,W@ -FN@o_E;f@;f@? ?@ - %%% %  | H%1116423%% %  }  %  ;bW@MM@GzD@%% %    %   % %  r M,W@ -FN@GzDr2\-Af?h9;@)f -o9? - -j8cӼ?%%% %  K%1120354%%% %  L%1120355%%% %  O%1116418 %    R  %   -  %   (A&Y?  unknown -ػR@,[B@GzD@ۿ SFR@zg !@C@GzD@%% %    % %  ,Q@gI#_F@GzD@IJRT֏\#3+= - -cMBP? %   R  %  -  % -  iU?  unknown -W@LdJ@GzD@_39X@&pM@GzD@%% %     %    - -ػR@,[B@GzDۿ SFR@zg !@C@GzD@ % %  %= ףp=Z@GzD@ar^?@@ %%% %  T%1120349 %   =  %   -  %   (A&Y?  unknown -ػR@,[B@GzDۿ SFR@zg !@C@GzD%%% %  Y%1120351 %  -ػR@,[B@GzDۿ SFR@zg !@C@GzD@  -%% %    % %  ۿ SFR@,[B@GzD@@ - -0/>:u?%%% %  \%1116433%% %     %  ۿ SFR@,[B@GzD%%% %  ]%1116443%% %     %  ۿ SFR@,[B@GzD@%%% %  _%112344%% %    %%% %  h%112342%% %     %  -W@JdJ@GzD_39X@&pM@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  %11-1 %     -  %    - i  %   - i  %  -  %   0/>:u?  unknown -_39X@LdJ@GzD_39X@LdJ@GzD@ %   !Bl8cӼ? " unknown -]X@vP(irJ@GzD_39X@RdJ@GzD %  - %% %  #   % $ %% %  GzD?(h`윲<W@&pM@=? - -iU?%%% %  n%1116427%% %  &  % %  Bѳ%acQ@iŻE@GzD@JRT֏\I@ - -ж(A&Y?%%% %  p%1116425%% %  '   %  ,Q@gI#_F@GzD@%%% %  r%1120362%%% %  u%1116422%%% %  w%1120357 % (  0/>:u? ) unknown -W@&pM@GzDW@&pM@GzD@%% %  *   % + ,% %  r M,W@ -FN@GzD@EТ< ޳!̟<f@}5p? - -g8cӼ?%%% %  }%1120359%%% %  %1116434%% %  -   %  W@&pM@GzD %     -  % .  /aT=??  0 unknown -ػR@zg !@C@GzD@]X@vP(irJ@GzD@ %   1 %% %  2   % 3 1 4% %  ۿ SFR@,[B@GzD@Oy{_@ - -(A&Y?%%% %  %1116428 % 5 / +l8cӼ? 6 unknown -]X@vP(irJ@GzD@_39X@RdJ@GzD@%% %  7   % 8 9% %  GzD@/d' 7 ?_39X@RdJ@=? - -iU?%%% %  %112346%% %  :  % %  ۿ SFR@,[B@o_Eбv.f8uNܿ<y{_@  % ; ! aT=?? < unknown -ػR@zg !@C@GzD]X@vP(irJ@GzD%% %  =   % >  ?% %  ػR@zg !@C@GzDOy{@_ - -(A&Y?%%% %  %11-1%%% %  %1116442%%% %  %1120376%%% %  %1120391%%% %  %112345%%% %  %112343%%% %  %11-1 %    @  %    1 -  %   @ - i %% %  A  % %  _39X@LdJ@GzD@@ - -0/>:u?%% %  B   % C @ D% %  EmAX@n@6H@GzDhElR`~ ?삁?yoxG@? - -Bl8cӼ?%%% %  %1116429%% %  E   %  _39X@LdJ@GzD%%% %  %1116426%%% %  %1120364%% %  F  % %  W@&pM@GzD@@ - -0/>:u?%%% %  %1116444%% %  G   %  W@&pM@GzD@%%% %   %1120369%% %  H   % I @ J% %  ػR@zg !@C@GzD@R -J@p4t~@ - -aT=?? % K  0/>:u?  L unknown -ػR@zg !@C@GzDػR@zg !@C@GzD@%%% %   %1116445%% %  M   %  ػR@zg !@C@GzD@%% %  N  % %  EmAX@n@6H@GzD@goF<ۍ<Bg8uNбv. @? - -+l8cӼ?%%% %  - %1116441%% %  O   %  _39X@LdJ@GzD@%%% %   %112347%% %  P  % %  ]X@vP(irJ@GzDR -Jp4t~$bP - -aT=??%%% %   %1116432%% %  Q   %  ػR@zg !@C@GzD % R ! /0/>:u?  S unknown -]X@vP(irJ@GzD]X@vP(irJ@GzD@%%% %   %1116435%%% %   %1116430%% %  T !  %  ]X@vP(irJ@GzD%%% %  $ %1120370%%% %  ( %1116440%%% %  + %1120388%%% %  . %1116438%% %  U /  %  ]X@vP(irJ@GzD@%% %  V 1 % %  ػR@zg !@C@GzD@@ - -0/>:u?%%% %  3 %1120385%%% %  5 %1116436%%% %  8 %1120380%%% %  ; %1116431%%% %  > %1120374%% %  W @ % %  ]X@vP(irJ@GzD@@ - -0/>:u?%%% %  C !%1120372%%% %  I /%1120382%%% %  K 1%1116439%%% %  R @%1116437 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0003105.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -PbAR@:@GzD -w`-Z@]F@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth40 lump%   -PbAR@:@GzD -w`-Z@]F@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111261 -shell%   -PbAR@:@GzD -w`-Z@]F@GzD@properties%  ansoft% %  -  Stator_Teeth40! %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[40] face%     - -QbAR@:@GzDWнS@C wA@GzD@ %%% %    %111261%%% %   %6Stator_Teeth[40]id%% %   "  %      -PbAR@:@GzD@ -w`-Z@|]F@GzD@ -td?:cκ?TxV loop%   -QbAR@:@GzDWнS@C wA@GzD@  - cone% surface%  ևL@ևL@? ?C;@GzDylTS@ <@GzD@  % ( )  -VbAR@:@GzD -w`-Z@]F@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  %11-1 %  * + , -   %  .  / 0 -   %   . 1 2   %  3 4  " - 5  edge% 6 7 80/>:u?  9 unknown -QbAR@? wA@GzDXbAR@@ wA@GzD@%%% %   %112362%% %  : %  % ; < =  > - -RнS@:@GzDylTS@C ->C;@GzD@  % ? @  -R4S@C ->C;@GzDylTS@ <@GzD@ ' -% %  ylTS@C ->C;@o_E8j@MLvԿ< t0p@ %%% %  %11-1 %  A B C D   %  E  F G   %   H I J   %  K L  - - M  % N O PViU?  Q unknown -{NA>Y@kAC@GzD@ -w`-Z@{]F@GzD@ %   R S   %  T U  0   % V W 8&Aޡh?  X unknown -VbAR@:@GzDWнS@? wA@GzD %  Y Z 2 -   % [ \ 7LAޡh? ] unknown -QbAR@:@GzD@WнS@C wA@GzD@ %  ^ ! Z _ - 5  %  ! ^ T ` - 5  % a 4 b -PbAR@? wA@GzDb$ܵ|R@YA@GzD@ c -%% %  d ".  vertex% e _ f % g " h straight% -curve%  QbAR@? wA@GzD@pfSG=ifS7=@ - -0/>:u?%%% %  $ %112363%% %  i %&  % j k M  l -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@  % m n % -RнS@:@GzDylTS@C ->C;@GzD@ > -% %  )ragR@ ۉƟ:@o_ELvԿ8j@M?<2N8=@@ %%% %  &%11-1 %  o p q r - &  %  s ) t u   %  ) v w x   %  L K ) D - M  % y z { iU? ) | unknown -zNA>Y@cAC@GzD -w`-Z@{]F@GzD %  } * ~    %  * G -  %  P os8cӼ? * unknown -N%k)pY@XzYF@GzD@NA>Y@|]F@GzD@ %  +   %  + J -  %   O8cӼ? + unknown -(Z@qDC@GzD@ -w`-Z@yAC@GzD@ %  C , - M  %  , C - M  %  K < -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@ l %% %  -2  %  -  %  -  ellipse% %  GzD@Qbr< -BL?v`-Z@wAC@=? - -ViU? %  n . S - =  %  W \0/>:u? . unknown -TнS@:@GzDTнS@:@GzD@ %  / 4 `   %  / q n  %% %  0/  %  % %  GzD?WнS@:@? - -&Aޡh? %  1   %  1 } 3 _  %% %  21  %  S % %  GzD@?WнS@:@? - -LAޡh? %  4 3 - 5  %   7HMBP? Z unknown -PbAR@? wA@GzD@_$ܵ|R@YA@GzD@ %  8 MBP? T unknown -XbAR@? wA@GzDb$ܵ|R@YA@GzD%%% %  5%11-1 %  5  c - -PbAR@? wA@GzDb$ܵ|R@YA@GzD@ % %  _$ܵ|R@YA@o_Ef8uN?бv.B k!=@ %%% %  6 "%1116476%% %  7L  -point%  QbAR@? wA@GzD@%% %  8M  %  XbAR@? wA@GzD%%% %  ; %%112364%% %  <'  %   - -N%k)pY@XzYF@GzDNA>Y@]F@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  =%11-1 %  R U - =  %  @ &  %  @ - &  %  U s @ r   %   (A&Y? q unknown -R4S@C ->C;@GzDylTS@ <@GzD %  q A   %  A u -  %  { >8cӼ? A unknown -SZ@}DC@GzD -w`-Z@kAC@GzD %  B   %  B x -  %   zu8cӼ? B unknown -N%k)pY@YzYF@GzDNA>Y@]F@GzD%% %  D;  %  x  %  % %  GzDJ6sY@s]F@=? - - iU? %  Z E   %  E  -  %   >T=?? E unknown -hR@!l!A@GzD@N%k)pY@YzYF@GzD@ %  w F L  %  F w  %  k -N%k)pY@XzYF@GzDNA>Y@]F@GzD@ -%% %  G3  %  % %  EmAX@n@6H@GzD@!;&Y:u? K unknown - -w`-Z@kAC@GzD -w`-Z@kAC@GzD@ %  P z0/>:u? L unknown -NA>Y@{]F@GzDNA>Y@{]F@GzD@%%% %  M%11-1%%% %  N -%1116480%% %  OP  %   -w`-Z@kAC@GzD@%% %  PQ  %  NA>Y@{]F@GzD@ %  R Y - = %% %  S0 % %  TнS@:@GzDifS7@@ - -0/>:u? %  v T   %   WMBP? U unknown -RнS@:@GzDylTS@C ->C;@GzD%%% %  V 0%1116477%% %  WN  %  TнS@:@GzD %  \ MBP? Y unknown -TнS@:@GzD@ylTS@C ->C;@GzD@%%% %  [ 2%1116479%% %  \O  %  TнS@:@GzD@ %  ^  %   0/>:u? unknown -_$ܵ|R@YA@GzD_$ܵ|R@YA@GzD@%% %  _6  %  _ % %  _$ܵ|R@YA@GzD@_Xy{#3+= - -HMBP?%% %  `@  %  % %  XbAR@? wA@GzD_@Xy{@^$3+ - -MBP?%% %  b+  %    - -R4S@ <@GzDVZ@DC@GzD@ %%% %  e 7%1120446%%% %  g 8%1120447%%% %  j <%112365%% %   k(  %     - -hR@!l!A@GzDN%k)pY@YzYF@GzD@ % %  EmAX@n@6H@o_E;f@;f@? ?@ -  %  n p =  %  p o - &  %  o -  %   0/>:u? o  unknown -R4S@ <@GzDR4S@ <@GzD@ %   0/>:u? p  unknown -ylTS@C ->C;@GzDylTS@C ->C;@GzD@%% %   r>  % - r  %  % %  R4S@ <@GzDS t@p - -(A&Y? %  s -  %   T=?? s  unknown -R4S@ <@GzDVZ@}DC@GzD%% %   u<  %  % %  EdZ@A@GzDRďtS]qk?6CD@? - ->8cӼ? %  v -  %   >T=?? v  unknown -hR@!l!A@GzDN%k)pY@YzYF@GzD%% %   xC  %  % %  EmAX@n@6H@GzDhgoFۍ?f8uN?ѱv. _? - -u8cӼ?%%% %  y D%1116489%% %   zX  %  NA>Y@{]F@GzD%% %   {Y  %   -w`-Z@kAC@GzD %   } -  %   z(A&Y? }  unknown -_$ܵ|R@!l!A@GzD@hR@YA@GzD@ %  ~ -  %  ~    %  -hR@!l!A@GzDN%k)pY@YzYF@GzD@  -%% %   4  % !  "% %  N%k)pY@YzYF@GzD@h)Tx - ->T=?? % #  0/>:u? $ unknown -N%k)pY@YzYF@GzDN%k)pY@YzYF@GzD@%%% %  %11-1%%% %  G%1116481%% %  % R  %  N%k)pY@YzYF@GzD@ % &  (A&Y? ' unknown -R4S@C ->C;@GzD@ylTS@ <@GzD@ %   % ( -R4S@ <@GzDVZ@DC@GzD@  -%% %  ) 9  % * +% %  R4S@ <@GzD@# @[w@ - -T=?? % ,  0/>:u? - unknown -VZ@}DC@GzDVZ@}DC@GzD@%%% %  %11-1 % .  - -(Z@qDC@GzD -w`-Z@yAC@GzD@ % %  EdZ@A@o_E;f@;f@? ?@ - %%% %  J%1116488%% %  / W  %  VZ@}DC@GzD@%% %  0 F % %   -w`-Z@kAC@GzD@@ - -0/>:u?%% %  1 G % %  NA>Y@{]F@GzD@@ - -0/>:u?%%% %  O%1120454%%% %  P%1120455%%% %  S%1116478 %   -  % 2  z(A&Y? 3 unknown -_$ܵ|R@!l!A@GzDhR@YA@GzD%% %  4 ? % %  ylTS@C ->C;@GzDBp t#3+= - -MBP?%%% %  W%1120449%% %  5 7  % 6 7% %  TнS@:@GzD@0p@ t@Rf䠶 - -MBP?%%% %  \%1120451 % 8  -_$ܵ|R@!l!A@GzDhR@YA@GzD@ 9 -%% %  : J % %  _$ܵ|R@YA@GzD@@ - -0/>:u?%%% %  _%1116484%% %  ; T  %  _$ܵ|R@YA@GzD@%%% %  `%1116494%% %  < ]  %  _$ܵ|R@YA@GzD%%% %  b%112369%% %  = , % %  R4S@ <@o_E HC׿XQDž?@@ %%% %  k%112366%% %  > )  % ? b  9 - -_$ܵ|R@!l!A@GzDhR@YA@GzD@ % %  N%k)pY@YzYF@o_EHCZ?bge;a@ %% %  @ D % %  R4S@ <@GzD@@ - -0/>:u?%% %  A E % %  ylTS@C ->C;@GzD@@ - -0/>:u?%%% %  r%1116492%% %  B [  %  R4S@ <@GzD%% %  C \  %  ylTS@C ->C;@GzD%% %  D = % %  VZ@}DC@GzD# [w - -T=??%%% %  u%1116490%% %  E Z  %  VZ@}DC@GzD%% %  F B  % G  H% %  hR@!l!A@GzDh@)Tx@#bP= - ->T=??%%% %  x%1116497%% %  I _  %  N%k)pY@YzYF@GzD%%% %  z%1120471%%% %  {%1120472 %   - %% %  J 5 % %  hR@!l!A@GzD@Дy{_@ - -z(A&Y? % K  0/>:u? L unknown -hR@!l!A@GzDhR@!l!A@GzD@%%% %  %11-1%%% %  %1116482%% %  M S  %  hR@!l!A@GzD@%% %  N H % %  N%k)pY@YzYF@GzD@@ - -0/>:u?%%% %  %1120457%% %  O 8 % %  ylTS@C ->C;@GzD@S tp@'cS[= - -(A&Y?%%% %  %11-1%%% %  %1116487%% %  P V  %  R4S@ <@GzD@%% %  Q K % %  VZ@}DC@GzD@@ - -0/>:u?%% %  R - %%% %  %1120468%%% %  %1116500%%% %  %1116501%% %  S A % %  _$ܵ|R@YA@GzDДy{@_ - -z(A&Y?%%% %  %1116493%%% %  %1116485%% %  T U  %  ylTS@C ->C;@GzD@%%% %  %11-1% %  hR@!l!A@o_Eбv.f8uNܿ<y{_@ %%% %  %1116504%%% %  %1120461%%% %  %1120481%%% %  %112370%%% %   %112367%% %  U * %%% %   %1116498%%% %   %1116499%%% %  - %1120476%%% %   %1120478%%% %   %1116491%%% %   %1120474%%% %   %1116496%% %  V ^  %  hR@!l!A@GzD%%% %   %1120485%%% %   %1116483%% %  W I % %  hR@!l!A@GzD@@ - -0/>:u?%%% %  ! %1120459%%% %  # %1116502%%% %  & %1116486%%% %  * %1120466%%% %  , %1116505%%% %  . %112371%%% %  2 %1116495%%% %  6 %1120464%%% %  ? %112368%%% %  G %1120483%%% %  K %1116503 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0003233.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -_[=S@Ó0@GzD66@[@~@@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth42 lump%   -_[=S@Ó0@GzD66@[@~@@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111267 -shell%   -_[=S@Ó0@GzD66@[@~@@GzD@properties%  ansoft% %  -  Stator_Teeth42 %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[42] face%     - -_[=S@Ó0@GzDS@| 9@GzD@ %%% %    %111267%%% %   %6Stator_Teeth[42]id%% %     %      -_[=S@Ó0@GzD66@[@~@@GzD -8绿lWNjX loop%   -_[=S@Ó0@GzDS@| 9@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -S@Ó0@GzDS@Ó0@GzD@%%% %   %112386%% %  :   % ; < =  > -_[=S@Ó0@GzD@66@[@~@@GzD@ -lW?8?NjX % ? @  -^Z@<@@GzDCveHZ@~@@GzD@ ' -% %  EdZ@A@o_E;f@;f@? ?@ - %%% %  %11-1 %  A B C D -   %  E  F G   %   H I J   %  K L  - - M  % N O PiU?  Q unknown ->veHZ@2Zx9@GzD66@[@~@@GzD %   A R   %  S T  0 - =  % U 8 V/Aޡh?  W unknown -_[=S@Ó0@GzD@S@| 9@GzD@ %  C X 2   % Y 7 Z/Aޡh? [ unknown -_[=S@Ó0@GzDS@| 9@GzD %  \ ! X ] - 5  %  ! \ S ^ - 5  % _ 3 ` -S@Ó0@GzDCb T@c`0@GzD@ a -%% %  b "  vertex% c " d % e ^ f straight% -curve%  S@Ó0@GzD@@ - -0/>:u?%%% %  $ %112387%% %  g %  % h i j  k - -!|S@!k7@GzD8"S@ 2p9@GzD@  % l m % -_[=S@Ó0@GzD@66@[@~@@GzD@% %  %= ףp=Z@GzD@ar^?@@ %%% %  &%11-1 %  I n K o &  %  p ) . R -   %  ) p q r -   %  s 1 ) D   % t Z uMBP? C v unknown -_[=S@w 9@GzD!|S@ 2p9@GzD %  w * x y   %  z { * G - |  % } P ~I8cӼ? *  unknown -!tk#[@+9@GzD66@[@7Zx9@GzD %  + s   %  @ + J - &  %   Oˋ8cӼ? + unknown -^Z@<@@GzDCveHZ@~@@GzD %  , @ o - M  %  , z - M  %  K -=veHZ@2Zx9@GzD66@[@~@@GzD@ %% %  -  %  -  %  -  ellipse% %  GzDeF|olDUfв<>veHZ@~@@=? - -iU? %  V Z0/>:u? . unknown -_[=S@w 9@GzD_[=S@x 9@GzD@ %  / 4 ^ =  %  / p = %% %  0  %  R % %  GzD@?S@Ó0@? - -/Aޡh? %  1 w 3 ]  %% %  2  %  D % %  GzD?S@Ó0@? - -/Aޡh? %  4 3 5  %   7䫣MBP? X unknown -S@Ó0@GzDCb T@]`0@GzD %  8 䫣MBP? S unknown -S@Ó0@GzD@Cb T@c`0@GzD@%%% %  5%11-1 %  5  a - -S@Ó0@GzDCb T@c`0@GzD@ % %  [S@\֊l0@o_Ei<ȿ\ϗb?@@ %%% %  6 "%1116536%% %  7  -point%  S@Ó0@GzD%% %  8  %  S@Ó0@GzD@%%% %  ; %%112388%% %  <  %   - -8"S@#k7@GzD^Z@@@@GzD@  %  < -!|S@!k7@GzD8"S@ 2p9@GzD@ k -% %  8"S@#k7@o_E8j@MLvԿ< t0p@ %%% %  =%11-1 %  =  %  @ - &  %   O0/>:u? @ unknown -CveHZ@~@@GzDCveHZ@~@@GzD@ %  B A T -   %  B r j  %  u 0/>:u? B unknown -!|S@ 2p9@GzD!|S@ 2p9@GzD@ %  H C  %% %  D  %  D % %  _[=S@w 9@GzD9p@ t@#3+ - -MBP? %  X E   %  E y -  %  ~ T=?? E unknown -nS@- -r2@GzD!tk#[@+9@GzD %  F L |  %  F - |  %  z -!tk#[@+9@GzD66@[@7Zx9@GzD@ -%% %  G  %  G % %  ۠U[@2,Ǩ5@GzDYirya&RA?) )jտ*[I@ D9? - -I8cӼ? %  H -  %   NT=?? H unknown -8"S@#k7@GzD^Z@@@@GzD %  n I & %% %  J  %  % %  EdZ@A@GzDq8:?>v?8j@MP? - -ˋ8cӼ? %  L K m - M  %  P 0/>:u? L unknown -66@[@2Zx9@GzD66@[@2Zx9@GzD@%%% %  M%11-1 %  M  -=veHZ@2Zx9@GzD66@[@~@@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  N -%1116540%% %  O  %  CveHZ@~@@GzD%% %  P  %  66@[@2Zx9@GzD%% %  R % %  _[=S@w 9@GzD@ifS'=@ - -0/>:u? %  S =  %  T =  %   VMBP? p unknown -_[=S@r 9@GzD@!|S@ 2p9@GzD@%%% %  U 0%1116537%% %  V  %  _[=S@w 9@GzD@%%% %  Y 2%1116539%% %  Z  %  _[=S@w 9@GzD %  \ -  %   0/>:u? unknown -Cb T@]`0@GzDCb T@]`0@GzD@%% %  ]  %  % %  Cb T@]`0@GzDAH,bh$3+= - -䫣MBP?%% %  ^  %  ^ % %  S@Ó0@GzD@AH@,bh@cRf䠶 - -䫣MBP?%% %  `  %   - -nS@- -r2@GzD!tk#[@+9@GzD@ %%% %  c 7%1120546%%% %  e 8%1120547%%% %  h <%112389%% %  i  %  `  - -nS@[`0@GzDCb T@/- -r2@GzD@  %  i -8"S@#k7@GzD^Z@@@@GzD@ -% %  ^Z@@@@o_E*%dw?/@ %%% %  j%11-1 %  q s - j  %  m n =  %  m =  %   iU? m unknown -=veHZ@2Zx9@GzD@66@[@~@@GzD@ %   "S8cӼ? n unknown -^Z@@@@GzD@CveHZ@~@@GzD@%% %  o  %  % %  CveHZ@~@@GzD@@ - -0/>:u? %  q - j %% %   r  %  r % %  !|S@ 2p9@GzD@@ - -0/>:u? %  u B(A&Y? s  unknown -!|S@!k7@GzD8"S@ 2p9@GzD%%% %  t D%1116545%% %   u  %  !|S@ 2p9@GzD %   w -  %   (A&Y? w  unknown -nS@[`0@GzDCb T@-- -r2@GzD %   x {  %  x   - -  %  x -nS@- -r2@GzD!tk#[@+9@GzD@ -%% %   y  %  % %  !tk#[@+9@GzDygL ތjn - -T=?? %  { z - |  %  ~ 0/>:u?  unknown -!tk#[@+9@GzD!tk#[@+9@GzD@%%% %  |%11-1 %  |  - -!tk#[@+9@GzD66@[@7Zx9@GzD@ % %  ۠U[@2,Ǩ5@o_E;f@;f@? ?@ - %%% %  } G%1116541%% %   ~  %  !tk#[@+9@GzD %     %   - %% %     %  % %  8"S@#k7@GzDn@@Ḱq@ - -NT=?? %   0/>:u?  unknown -^Z@@@@GzD^Z@@@@GzD@%%% %  J%1116548%% %     %  ^Z@@@@GzD%% %     %  % %  66@[@2Zx9@GzD@@ - -0/>:u?%% %    %%% %  O%1120554%%% %  P%1120555%%% %  R%1116538 %    =  %   -  % !  "(A&Y? # unknown -nS@]`0@GzD@Cb T@/- -r2@GzD@ %   $ =  % % & B(A&Y? ' unknown -!|S@#k7@GzD@8"S@ 2p9@GzD@%% %  (  % %  !|S@ 2p9@GzD@0p tRf䠶= - -MBP?%%% %  V%1120549%%% %  Z%1120551 % ) -nS@[`0@GzDCb T@/- -r2@GzD@ -%% %  *  % %  Cb T@]`0@GzD@@ - -0/>:u?%%% %  ]%1116544%% %  +   %  Cb T@]`0@GzD%%% %  ^%1116557%% %  ,   %  Cb T@]`0@GzD@%%% %  `%112392%% %  -  % %  nS@-- -r2@o_EPϿؒh?@@ %%% %  i%112390%% %  .  % %  Cb T@]`0@o_E\ϗbi<ȿ,bhAH@ %%% %  %11-1 %   - j  % /  j8cӼ? 0 unknown -!tk#[@+9@GzD@66@[@6Zx9@GzD@%% %  1  % %  GzD@K[YGjؽd?66@[@=Zx9@=? - -iU?%% %  2   % 3 $ 4% %  EdZ@A@GzD@VFg<.<A]@?O? ? - -"S8cӼ?%%% %  o%1116551%% %  5   %  CveHZ@~@@GzD@%%% %  r%1116550%% %  6   %  !|S@ 2p9@GzD@%% %  7  % %  !|S@ 2p9@GzDh t@p - -B(A&Y?%%% %  u%1120564 %  - %% %  8  % %  nS@-- -r2@GzDH+bh@AH - -(A&Y? %   -  % 9  "0/>:u?  : unknown -nS@-- -r2@GzDnS@-- -r2@GzD@%%% %  %11-1%%% %  y%1116542%% %  ;   %  nS@-- -r2@GzD%% %  <   % = >% %  !tk#[@+9@GzD@@ - -0/>:u?%% %  ?  %%% %  ~%1120557 %  $ -  % @  &0/>:u? A unknown -8"S@#k7@GzD8"S@#k7@GzD@%%% %  %1116547%% %  B   %  8"S@#k7@GzD%% %  C  % %  ^Z@@@@GzD@@ - -0/>:u?%%% %  %1120568%%% %  %1116565%% %  D   %  66@[@2Zx9@GzD@%%% %  %112394 % E " T=?? F unknown -nS@-- -r2@GzD@!tk#[@+9@GzD@%% %  G   % H I% %  Cb T@]`0@GzD@H+bhAH@ - -(A&Y? % J  &NT=?? K unknown -8"S@#k7@GzD@^Z@@@@GzD@%% %  L   % M $ N% %  8"S@#k7@GzD@h tp@ - -B(A&Y?%%% %  %1116549%%% %  %11-1%%% %  %1116563%%% %  %1120561%%% %  %1120584%%% %  %112393%%% %  %112391%% %  O  % %  ۠U[@2,Ǩ5@GzD@[6}4<$):u?%%% %   %1120559%%% %   %1116564%% %  R   %  !tk#[@+9@GzD@%%% %   %112395%% %  S  % %  8"S@#k7@GzD@@ - -0/>:u?%%% %   %1120566%%% %   %1116552%%% %   %1120579%% %  T  % %  nS@-- -r2@GzD@ygL@ ތjn@ - -T=??%%% %  ! %1116558%% %  U "  %  nS@-- -r2@GzD@%% %  V $ % %  ^Z@@@@GzD@n@Ḱq!b` - -NT=??%%% %  % %1116556%% %  W &  %  8"S@#k7@GzD@%%% %  / %1116560%%% %  3 %1120576%%% %  9 -%1116562%%% %  = %1120588%%% %  @ %1116561%%% %  E %1116559%%% %  H "%1120586%%% %  J $%1116555%%% %  M &%1120581 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0005330.sab -BIN000000010112 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -V#M@^ @33333DB9R@!l7@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Magnet1 lump%   -V#M@^ @33333DB9R@!l7@33333D@ transform% ???? rgb_color% st% - %    ??? -shell%    -V#M@^ @33333DB9R@!l7@33333D@properties%  ansoft% %   Magnet1 face%  -  - -V#M@^ @33333DB9R@!l7@33333D -V#M@B9R@^ @!l7@id%% %   %     -V#M@^ @33333D@B9R@!l7@33333D@ -V#M@B9R@^ @!l7@ loop%    -V#M@^ @33333DB9R@!l7@33333D -plane% surface%  33333D?? %% %   %      -V#M@U53@33333Dn{O@!l7@33333D@  %   -V#M@^ @33333D@B9R@!l7@33333D@% %  33333D@??  coedge%      - %% %   %      -V#M@^ @33333D9#Q@U53@33333D@  %   -V#M@U53@33333Dn{O@!l7@33333D@% %   - N@?a5@[Sٺژ??  %    ! -   %  "  # $ -  %   " % & -  %  ' (   -   edge% ) *tN#;@ +J@@  , unknown -V#M@U53@33333Dn{O@!l7@33333D%% %   % - . /  0 -9#Q@^ @33333DB9R@0na*@33333D@  %  %  -V#M@^ @33333D9#Q@U53@33333D@% %  1TP@w(^>+@ٺژWS?  %  1  2 3 -   %   1 4 5 -   %  ( '  !   % 6 7tN#;@ 8J@@  9 unknown -V#M@U53@33333D@n{O@!l7@33333D@ %    : ; -  %  < =  $ - >  % ? +B/g.@ @"3q?@  A unknown -m{O@*na*@33333DB9R@!l7@33333D %  B C  & -   % D E 3q7 *_  F unknown -V#M@^ @33333D9#Q@U53@33333D %   C G -   %   < H -  %% %   vertex% I  J % K $ L straight% -curve%  fD@&C,33333Dٺژ?[S? %% %   % M >  N -m{O@*na*@33333DB9R@!l7@33333D@  %  :  -9#Q@^ @33333DB9R@0na*@33333D@% %  |~ZR@%@\S? ٺژ  %    O P -   %  C B  3   % Q R 3q7 7_  S unknown -V#M@^ @33333D@9#Q@U53@33333D@ %  = <  5 >  % T 8B/g.@ U"3q?@  V unknown -m{O@*na*@33333D@B9R@!l7@33333D@%% %  ! % W 3 X % Y ! Z% %  fD@&C,33333D@ٺژ?[S?  %  [ \ " ; - /  % ] @ K$a> EF C7 " ^ unknown -9#Q@^ @33333DB9R@0na*@33333D %  4 # ( H >  %  # 4 [ _ - >  %  # . -m{O@*na*@33333DB9R@!l7@33333D@%% %  $ % ` ; a% %  k -Pf3J@ٽڼ4A@33333DWS?ٺژ  %  2 % \ b -   %  % 2 ' G  %% %  & % c & d% %  `W6J@N*4,;8@33333DWSٺژ?  % e 733333T * C f unknown -V#M@U53@33333DV#M@U53@33333D@ % g +33333T 8 < h unknown -n{O@!l7@33333Dn{O@!l7@33333D@%% %  * -point%  V#M@U53@33333D%% %  + %  n{O@!l7@33333D%% %  .% %  ElQ@f 62@ٺژ?WS?  %  \ [ 1 P /  % i U K$a> RF C7 1 j unknown -9#Q@^ @33333D@B9R@0na*@33333D@%% %  3 % k P l% %  `W6J@N*4,;8@33333D@WSٺژ? %% %  5 % m 5 n% %  k -Pf3J@ٽڼ4A@33333D@WS?ٺژ %% %  7 %  V#M@U53@33333D@%% %  8 %  n{O@!l7@33333D@ %  O : = _ /  %  : O B b / %% %  ;% %  RiK@s"33333D ٺژ\S  % o @33333T U [ p unknown -B9R@0na*@33333DB9R@0na*@33333D@%% %  @ %  B9R@0na*@33333D % q R33333T E \ r unknown -9#Q@^ @33333D9#Q@^ @33333D@%% %  E %  9#Q@^ @33333D%% %  G% %  V#M@U53@33333D -K. -UG~@%% %  H% %  n{O@!l7@33333D@? -K. -UG~@%% %  P% %  RiK@s"33333D@ ٺژ\S %% %  R %  9#Q@^ @33333D@%% %  U %  B9R@0na*@33333D@%% %  _% %  B9R@0na*@33333D@? -K. -UG~@%% %  b% %  9#Q@^ @33333D -K. -UG~@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 9287 -$end 'sab' -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0005358.sab -BIN000000004351 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -)\K)\K33333D)\K@)\K@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Shaft lump%   -)\K)\K33333D)\K@)\K@33333D@ transform% ???? rgb_color% st% - %    ?properties%  ansoft% %  Shaft -shell%    -)\K)\K33333D)\K@)\K@33333D@% % %   Shaft face%  -  - -)\K)\K33333D)\K@)\K@33333D id%% %   %      -)\K)\K33333D@)\K@)\K@33333D@  loop%    -)\K)\K33333D)\K@)\K@33333D -plane% surface%  33333D?? %% %  - %     -)\K)\K33333D)\K@)\K@33333D@  %   - -)\K)\K33333D@)\K@)\K@33333D@% %  33333D@??  coedge%      %% %   %     -)\K)\K33333D)\K@)\K@33333D   cone% %  ̣alK@4&@? ?(\K@  %      -   %      -   edge%  hs-8R? @   unknown -)\K)\K33333D)\K@)\K@33333D %    -)\K)\K33333D@)\K@)\K@33333D@   %        %  hs-8R? @  unknown -)\K)\K33333D@)\K@)\K@33333D@%% %   vertex% !  " ellipse% -curve%  33333ḌalK@4&@? %% %   % #  $% %  33333D@̣alK@4&@? %% %   -point%  (\K@33333D%% %   %  (\K@33333D@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 3526 -$end 'sab' -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0005367.sab -BIN000000010112 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     -yK@7ػ%<@33333D5tdO@h5F@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Magnet2 lump%   -yK@7ػ%<@33333D5tdO@h5F@33333D@ transform% ???? rgb_color% st% - %    ??? -shell%    -yK@7ػ%<@33333D5tdO@h5F@33333D@properties%  ansoft% %   Magnet2 face%  -  - -yK@7ػ%<@33333D5tdO@h5F@33333D -yK@5tdO@7ػ%<@h5F@id%% %   %     -yK@7ػ%<@33333D@5tdO@h5F@33333D@ -yK@5tdO@7ػ%<@h5F@ loop%    -yK@7ػ%<@33333D5tdO@h5F@33333D -plane% surface%  33333D?? %% %   %      -L(L@؂F@33333D5tdO@h5F@33333D@  %   -yK@7ػ%<@33333D@5tdO@h5F@33333D@% %  33333D@??  coedge%      - %% %   %      -yK@D$o<@33333DL(L@h5F@33333D@  %   -L(L@؂F@33333D5tdO@h5F@33333D@% %  lM@9mN#F@Q4<Φ???  %    ! -   %  "  # $ -  %   " % & -  %  ' (   -   edge% ) *tN#;@ +J@@  , unknown -L(L@؂F@33333D5tdO@h5F@33333D%% %   % - . /  0 -yK@7ػ%<@33333Dz\ O@F$o<@33333D@  %  %  -yK@D$o<@33333DL(L@h5F@33333D@% %  o K@։6B@￈Q4<Φ??  %  1  2 3 -   %   1 4 5 -   %  ( '  !   % 6 7tN#;@ 8J@@  9 unknown -L(L@؂F@33333D@5tdO@h5F@33333D@ %    : ; -  %  < =  $ - >  % ? + 3q7 @_  A unknown -y\ O@7ػ%<@33333D5tdO@؂F@33333D %  B C  & -   % D E?/g.@ *#3q?@  F unknown -yK@D$o<@33333DL(L@h5F@33333D %   C G -   %   < H -  %% %   vertex% I  J % K $ L straight% -curve%  Fl3=@a0\)F@33333D?Q4<Φ %% %   % M >  N -y\ O@7ػ%<@33333D5tdO@؂F@33333D@  %  :  -yK@7ػ%<@33333Dz\ O@F$o<@33333D@% %    % T 8 3q7 U_  V unknown -y\ O@7ػ%<@33333D@5tdO@؂F@33333D@%% %  ! % W 3 X % Y ! Z% %  Fl3=@a0\)F@33333D@?Q4<Φ  %  [ \ " ; - /  % ] @ K$a> EE C7 " ^ unknown -yK@7ػ%<@33333Dz\ O@F$o<@33333D %  4 # ( H >  %  # 4 [ _ - >  %  # . -y\ O@7ػ%<@33333D5tdO@؂F@33333D@%% %  $ % ` ; a% %  nX\2N@RRl4@33333DQ4<Φ  %  2 % \ b -   %  % 2 ' G  %% %  & % c & d% %  ,ftK@h1*@33333DQ4<Φ??  % e 733333T * C f unknown -L(L@h5F@33333DL(L@h5F@33333D@ % g +33333T 8 < h unknown -5tdO@؂F@33333D5tdO@؂F@33333D@%% %  * - -point%  L(L@h5F@33333D%% %  +  %  5tdO@؂F@33333D%% %  .% %  Io7O@2aϾB@?Q4<Φ  %  \ [ 1 P /  % i U K$a> RE C7 1 j unknown -yK@7ػ%<@33333D@z\ O@F$o<@33333D@%% %  3 % k P l% %  ,ftK@h1*@33333D@Q4<Φ?? %% %  5 % m 5 n% %  nX\2N@RRl4@33333D@Q4<Φ %% %  7 %  L(L@h5F@33333D@%% %  8 %  5tdO@؂F@33333D@ %  O : = _ /  %  : O B b / %% %  ;% %  =+?@OY%=@33333DQ4<Φ?  % o @33333T U [ p unknown -z\ O@7ػ%<@33333Dz\ O@7ػ%<@33333D@%% %  @  %  z\ O@7ػ%<@33333D % q R33333T E \ r unknown -yK@D$o<@33333DyK@D$o<@33333D@%% %  E  %  yK@D$o<@33333D%% %  G% %  L(L@h5F@33333D -x-إ -$.{@%% %  H% %  5tdO@؂F@33333D@? -x-إ -$.{@%% %  P% %  =+?@OY%=@33333D@Q4<Φ? %% %  R %  yK@D$o<@33333D@%% %  U %  z\ O@7ػ%<@33333D@%% %  _ % %  z\ O@7ػ%<@33333D@? -x-إ -$.{@%% %  b% %  yK@D$o<@33333D -x-إ -$.{@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 9287 -$end 'sab' -$begin 'sab' -Design_89.setup/NativeGeometryFiles/0005395.sab -BIN000000260756 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MRXX5NS2V5FBUQGU33VG7JSKRV4M48NQ5WBNMEEQVTA4CQ4Q5QCNUEEQ5Y8CVPR6BUCPKPJ7EQ8GVP body%     - T T33333D T@ T@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Rotor lump%   - T T33333D T@ T@33333D@ transform% ???? rgb_color% st% - %    ???properties%  ansoft% %  Rotor@ -shell%    - T T33333D T@ T@33333D@% % %   Rotor@ face%  -  -9#Q@*rOr#33333D\BېR@^ 33333D@ id%% %   %      -\BېR@*rOr#33333DH=,R@33333D@  loop%    -9#Q@*rOr#33333D\BېR@^ 33333D@ -plane% surface%  N>Q@L{F""]S ٺژ %% %  - %      -H=,R@033333DH=,S@33333D@  %   - -\BېR@*rOr#33333DH=,R@33333D@% %  ҿzR@b' ٺژ?S  coedge%      %% %   %      -N7*|S@Hv&33333DH=,S@033333D@  %    -H=,R@033333DH=,S@33333D@% %  H=,:S@  %  ! " #   %  $  ! %  %   $ & ' -  %  ( "   - )  edge% * +tN#;@ ,bb<@  - unknown -9#Q@*rOr#33333D\BېR@^ 33333D%% %   % . / 0  1 -DsYN@Մ933333DN7*|S@v&33333D@  %  2  -N7*|S@Hv&33333DH=,S@033333D@% %  $$S@0 "^$ᅩt߈]??  %  3 4 5 6   %  7  4 8 -   %   7  % -   %   5  # - )  % 9 , : m,#@ " ; unknown -\BېR@*rOr#33333DH=,R@33333D %    < = -  % > ,33333T ?  @ unknown -\BېR@*rOr#33333D\BېR@*rOr#33333D@ %  A B  ' C  % D +33333T E & F unknown -9#Q@^ 33333D9#Q@^ 33333D@ %  G  B H - )  %  I  J -yK@ ?I33333DH=,S@33333D K -%% %   vertex% L H M % N  O straight% -curve%  tJ@4Fݿ;'@33333Dٺژ?YS %% %   % P Q R  S -EsYN@|lޥG33333DT9vO@Մ933333D@  %  T  -DsYN@Մ933333DN7*|S@v&33333D@% %  ox|Q@]I#\2ٺژS??  %  U V W X   %  Y  V Z -   %   Y 8   %  " W  6 - )  % [ : \ @ 5 ] unknown -H=,R@033333DH=,S@33333D %  ! ^ _ -   % ` a33333T : 4 b unknown -H=,R@33333DH=,R@33333D@%% %  # % c # d% %  \BېR@*rOr#33333DS?ٺژ?  %  ^ e $ = f  % g EtN#;@ ?bb<@ < h unknown -9#Q@*rOr#33333D@\BېR@^ 33333D@%% %  % % i _ j% %  \BېR@*rOr#33333D@? -9 X -ӤJ@ %  k & e l - C  %  & k ( H C  %  B m -T#M@U5333333D9#Q@^ 33333D@%% %  ' % n = o% %  9#Q@^ 33333D@? -9 X -ӤJ@ %  p ( q r - )  % s t?/g.@ +#3q?@ ( u unknown -T#M@U5333333D9#Q@^ 33333D %  v w J -@H=,S33333D ?I@yK33333D K - % x y z  K - - T T33333D T@ T@33333D % %  EJN@!V9@33333D?? %% %  +< -point%  9#Q@^ 33333D%% %  ,= %  \BېR@*rOr#33333D%% %  / % { | }  ~ -JwC2N@ ?I33333DT9vO@|lޥG33333D@  %   / -EsYN@|lޥG33333DT9vO@Մ933333D@% %  j9O@k/=BO4<Φ?  %  0  %  2 -   %  2 3 Z   %  5 2 X - )  %  \ R@ W unknown -N7*|S@Hv&33333DH=,S@033333D %  4 3 -   %  33333T \ V unknown -H=,S@033333DH=,S@033333D@%% %  6 %  6 % %  H=,R@33333D?  %  < 7 _ f  %  ? a m,#@ ^ unknown -\BېR@*rOr#33333D@H=,R@33333D@%% %  8 %  % %  H=,R@33333D -9 X -ӤJ@%% %  :@ %  H=,R@33333D %  < A l f  %  < y -yK@ ?I33333D@H=,S@33333D@ %% %  =% %  tJ@4Fݿ;'@33333D@ٺژ?YS %% %  ?> %  \BېR@*rOr#33333D@ %  B A - C  %  ?/g.@ E#3q?@ e unknown -T#M@U5333333D@9#Q@^ 33333D@ %  C  -T#M@U5333333D9#Q@^ 33333D@ %% %  E? %  9#Q@^ 33333D@ %  G - )  %  G r  %  9 tE C7 G unknown -T#M@Or433333D/ ON@U5333333D%% %  H %  r % %  RGmH@b=33333DYS?ٺژ?  %  J - ?IH=,S33333DyK33333D K - %  - I %% %  J %   - T T33333D@ T@ T@33333D@  %  ) J - T T33333D T@ T@33333D K -%% %  Q %   -| -"M@ ?I33333DJwC2N@ d/H33333D@  %  Q -JwC2N@ ?I33333DT9vO@|lޥG33333D@% %  qBN@绥rHMidLp.??  %  R  %  T - 0  %  T U 0  %  W T - )  %  *3 \h@ unknown -DsYN@Մ933333DN7*|S@v&33333D %  V U -   %  33333T  unknown -N7*|S@Hv&33333DN7*|S@Hv&33333D@%% %  X %  X % %  H=,S@033333Dt߈]^$  %  ^ Y f  %  a  @ unknown -H=,R@033333D@H=,S@33333D@%% %  Z %  % %  H=,S@033333D -9 X -ӤJ@%% %  \B %  H=,S@033333D%% %  _% %  \BېR@*rOr#33333D@S?ٺژ? %% %  aA %  H=,R@33333D@ %  e f  %  y -@H=,S33333D@ ?I@yK33333D@ % %  EJN@!V9@33333D@??  %  q k  %  t33333T  unknown -T#M@U5333333DT#M@U5333333D@%% %  l %  l % %  RGmH@b=33333D@YS?ٺژ? %% %  m$ %   -Rz~+F@ܵ M33333Dh5F@L(L33333D@ % %  0TP@~(^>+ٺژ?YS  %  p - )  %  p  %   2@ p unknown -kS,62M@KXv3633333D/ ON@Kr433333D %  q  %  q -T#M@Or433333D/ ON@U5333333D@%% %  r %  % %  :w逥E@oy)*33333D ٺژ\S? %% %  t\ %  T#M@U5333333D %  J -H=,S ?I33333DyK33333D K - %  - v  %  w - I  %  w - I  %  w  %  tN#;@ bb<@ w unknown -Rz~+F@ܵ M33333Dh5F@L(L33333D%% %  y %   -L(L@Tz~+F@33333Dܵ M@h5F@33333D@  %  f y -,\K&\K33333D@$\K@*\K@33333D@  %  z %% %  | %      -ܵ M@ d/H33333D| -"M@Rz~+F33333D@  %   | -| -"M@ ?I33333DJwC2N@ d/H33333D@% %  M@tw]H;f?;f??  %      }  %      - R  %    R  %    - )  % -  {2 W @  unknown -EsYN@|lޥG33333DT9vO@Մ933333D %    - 0  %  33333T   unknown -EsYN@Մ933333DEsYN@Մ933333D@%% %   %  % %  j{O@0l733333DS翍ٺژ  %   f  %   R@  unknown -N7*|S@Hv&33333D@H=,S@033333D@%% %   %   % %  N7*|S@Hv&33333D -9 X -ӤJ@%% %  D %  N7*|S@Hv&33333D%% %  % %  H=,R@33333D@? %% %  C %  H=,S@033333D@ %     f  %  -  %  9 E C7  unknown -T#M@Or433333D@/ ON@U5333333D@ %    y - ?IH=,S33333D@yK33333D@  %   ! " # %% %  % %  T#M@U5333333D@? -9 X -ӤJ@%% %  ] %  T#M@U5333333D@%% %  % % $ % &  ' -Xz~+F@| -"M33333D d/H@ܵ M33333D@  %  -Rz~+F@ܵ M33333Dh5F@L(L33333D@% %  0F@_Ĕ"LR4<Φ?  %  ( ) * - )  %  + , -  % . / @ 0 unknown -hkBL@DU933333DkS,62M@KXv3633333D %   -  %   + 1  %  2 -kS,62M@KXv3633333D/ ON@Kr433333D@%% %   % 3 4% %  kS,62M@KXv3633333DS?cٺژ?  % 5 33333T  6 unknown -/ ON@Kr433333D/ ON@Kr433333D@ % 7 m  8 -T#M@Or433333D/ ON@U5333333D@ %% %  Z %  / ON@Kr433333D %  9 : J -H=,S@33333DyK ?I@33333D K - %  ; < = > -  %  ? @ A - v  %  B C D - v  %  E F G  % H ItN#;@ Jbb<@ K unknown -*rOr#\BېR33333D^ 9#Q33333D %  L M N - I  %  O P Q  % R S?/g.@ #3q?@ T unknown -A$o<@L(L33333Dh5F@yK33333D %  U V W - I  %  X Y &  % Z  [ m,#@ \ unknown -Xz~+F@| -"M33333D d/H@ܵ M33333D %  " Y ]  %  " O ^ - %% %   % _ ` % a b% %  `0\)F@Fl3=33333DR4<Φ %% %   % c d e  f -ܵ M@Zz~+F@33333D| -"M@d/H@33333D@  %  g -L(L@Tz~+F@33333Dܵ M@h5F@33333D@% %  ^Ĕ"L@g0F@Q4<Φ  %  h i  %  - j  % k l -DT!? l`8U)zj@ m unknown - T T33333D T@ T@33333D%% %   % n o p  q -L(L@h5F33333Dܵ M@Rz~+F33333D@  %  r -ܵ M@ d/H33333D| -"M@Rz~+F33333D@% %  ޵,`;M@0?\q-G?V4<Φ?  %  s t u v  %  w t x - }  %  w  }  %  u  - )  % y  zR@  { unknown -JwC2N@ ?I33333DT9vO@|lޥG33333D %  | } - R  % ~ 33333T    unknown -T9vO@|lޥG33333DT9vO@|lޥG33333D@%% %   %  % %  5tdO@؂F33333DO4<Φ?  %  |  f  %  *3 \h@   unknown -DsYN@Մ933333D@N7*|S@v&33333D@%% %   %  } % %  EsYN@Մ933333D -9 X -ӤJ@%% %  F %  EsYN@Մ933333D%% %  % %  H=,S@033333D@t߈]^$ %% %  E %  N7*|S@Hv&33333D@ %     f  %   -  %   2@  unknown -kS,62M@KXv3633333D@/ ON@Kr433333D@%% %   %  % %  :w逥E@oy)*33333D@ ٺژ\S?  %    y -H=,S ?I33333D@yK33333D@  %       %      %      %  # -  %  tN#;@ bb<@  unknown -Rz~+F@ܵ M33333D@h5F@L(L33333D@%% %  & %      - d/H@JwC2N33333D ?I@| -"M33333D@  %  -Xz~+F@| -"M33333D d/H@ܵ M33333D@% %  2?\q-G@,`;MF4<Φ  %     - )  %    *   %   /32@  unknown -hkBL@S[<33333DXŁL@DU933333D %   1 - -  %     -  %   -hkBL@DU933333DkS,62M@KXv3633333D@%% %   %  * % %  hkBL@DU933333D -}?2k?  %  33333T   unknown -kS,62M@KXv3633333DkS,62M@KXv3633333D@ %    -kS,62M@KXv3633333D/ ON@Kr433333D@ %% %  X %  kS,62M@KXv3633333D%% %  % %  / ON@Kr433333D -9 X -ӤJ@%% %  #% %  .'QN@fu3\S? ٺژ??  %    J - ?IyK@33333DH=,S@33333D K - %      -  %     -  %     -  %    >   %  tN#;@ bb<@  unknown -ܵ Mh5F33333DL(LRz~+F33333D %     - v  %    A   %  ?/g.@ I#3q?@  unknown -U539#Q33333D^ U#M33333D %     - v  %    D   %  J  m,#@  unknown -*rOr#H=,R33333D\BېR33333D %     G  %     - G  %   -*rOr#\BېR33333D^ 9#Q33333D@%% %   %  A  %  % %  8Fݿ;'@tJ33333DYS ٺژ  %     - I  %    N   %  9 SE C7  unknown -S[<@ZŁL33333DC$o<@yK33333D %   ^ Q  %     - Q  %   -A$o<@L(L33333Dh5F@yK33333D@%% %   %  N % %  h1*@,ftK33333D?Q4<Φ  %     - I  %    W   %  [  @  unknown - d/H@JwC2N33333D ?I@| -"M33333D %     - &  %   ] - & %% %   %  % %  Xz~+F@ܵ M33333D?F4<Φ  %  33333T   unknown -Xz~+F@ܵ M33333DXz~+F@ܵ M33333D@ %  33333T  O  unknown -h5F@L(L33333Dh5F@L(L33333D@%% %  ^ %  h5F@L(L33333D%% %  _ %  Xz~+F@ܵ M33333D%% %   %      -| -"M@d/H@33333DJwC2N@ ?I@33333D@  %   -ܵ M@Zz~+F@33333D| -"M@d/H@33333D@% %  ,`;M@4?\q-G@?sF4<Φ  %       %  h h i -   %  -DT!? ^8U)zj@  unknown -,\K&\K33333D@$\K@*\K@33333D@ %   - T T33333D T@ T@33333D - %% %   %   ellipse% %  8==33333D -qZL@ -qZL@? %% %   %      -yK@h5F33333DL(L@I$o<33333D@  %    -L(L@h5F33333Dܵ M@Rz~+F33333D@% %  VĔ"L@𽇀0FQ4<Φ??  %        %      -  %     x  %     v - )  %  z @ u  unknown -| -"M@ ?I33333DJwC2N@ d/H33333D %      - }  %  33333T z t  unknown -JwC2N@ ?I33333DJwC2N@ ?I33333D@%% %   %   !% %  T9vO@|lޥG33333DLp.Mid  %     } f  % "  {2 W @ | # unknown -EsYN@|lޥG33333D@T9vO@Մ933333D@%% %   % $  %% %  T9vO@|lޥG33333D -9 X -ӤJ@%% %  H %  T9vO@|lޥG33333D%% %  % %  j{O@0l733333D@S翍ٺژ %% %  G %  EsYN@Մ933333D@ %   & ' ( f  %  , +   - -  % ) * @  + unknown -hkBL@DU933333D@kS,62M@KXv3633333D@%% %   % ,  -% %  kS,62M@KXv3633333D@S?cٺژ? %% %  [ %  / ON@Kr433333D@ %  . / y -H=,S@33333D@yK ?I@33333D@  %  0 1 2 3   %  4  5 6  %   7 8 9  %  F E   - G  % : ;tN#;@ <bb<@  = unknown -*rOr#\BېR33333D@^ 9#Q33333D@ %  >  ? @  %  Y X   - &  % A  B m,#@  C unknown -Xz~+F@| -"M33333D@ d/H@ܵ M33333D@ %  ! D E F  %  P O !  - Q  % G H?/g.@ #3q?@ ! I unknown -A$o<@L(L33333D@h5F@yK33333D@%% %  # % J # K % L  M% %  `0\)F@Fl3=33333D@R4<Φ %% %  %' % N O P  Q -|lޥG@T9vO33333D ?I@JwC2N33333D@  %  V % - d/H@JwC2N33333D ?I@| -"M33333D@% %  pw]H@Mc<f6;f  %  R ( S T - )  %  U V (  W  % X YtN#;@ bb<@ ( Z unknown -yK@I$o<33333DYŁL@S[<33333D %  ' ) ,  -   %  ) ' U [   %  ) \ -hkBL@S[<33333DXŁL@DU933333D@%% %  * % ]  ^% %  XŁL@S[<33333D^X4<Φ?  % _ *33333T / , ` unknown -hkBL@DU933333DhkBL@DU933333D@ % a 2 -  b -hkBL@DU933333DkS,62M@KXv3633333D@ %% %  /V %  hkBL@DU933333D%% %  1% %  kS,62M@KXv3633333D -9 X -ӤJ@%% %  2"% %  M@95hٺژ?S  %  c d J -@yK@33333D ?I@H=,S@33333D K - %  e f g h - 9  %  i : j k -  %  : l m n -  %  o p :  q  % r stN#;@ tbb<@ : u unknown -\BېR^ @33333D9#Q*rOr#@33333D %  v ; w x -  %  y z ;  {  % | }?/g.@ #3q?@ ; ~ unknown -L(Lh5F33333DyKB$o<33333D %  <    -  %    <    %    m,#@ <  unknown -| -"M d/H33333Dܵ MYz~+F33333D %  2 =     %  = 2 y  -   %  =  -ܵ Mh5F33333DL(LRz~+F33333D@%% %  >9 %    %  > % %  Fl3=`0\)F33333DQ4<Φ?  %   ?   - v  %    ?    %  9 E C7 ?  unknown -Nr4/ ON33333DU53U#M33333D %  8 @ F    %  @ 8   -   %  @  -U539#Q33333D^ U#M33333D@%% %  A7 %   % %  b=TGmH33333Dٺژ?YS  %  B    - v  %    B    %    @ B  unknown -(H=,S33333DH=,R33333D %  5 C   -   %  C 5 E  -   %  C  -*rOr#H=,R33333D\BېR33333D@%% %  D - %  D % %  *rOr#\BېR33333Dٺژ?S  %  J33333T < E  unknown -*rOr#\BېR33333D*rOr#\BېR33333D@ %  I33333T ;   unknown -^ 9#Q33333D^ 9#Q33333D@ %   G   -*rOr#\BېR33333D^ 9#Q33333D@ %% %  I %  ^ 9#Q33333D%% %  J %  *rOr#\BېR33333D %   L   - I  %    L    %   2@ L  unknown -DU9@ZŁL33333DS[<@ukBL33333D %  E M P    %  M E     %  M  -S[<@ZŁL33333DC$o<@yK33333D@%% %  N %   % %  MY%=@=+?33333DQ4<Φ??  %  S33333T H   unknown -A$o<@yK33333DA$o<@yK33333D@ %   Q   -A$o<@L(L33333Dh5F@yK33333D@ %% %  S~ %  A$o<@yK33333D %  U    - I  %    U  P  %   R@ U  unknown -|lޥG@T9vO33333D ?I@JwC2N33333D %  ? V   -   %  V ? X   %% %  W %  W % %   d/H@| -"M33333D6;f?c<f  %  B33333T [   unknown - d/H@| -"M33333D d/H@| -"M33333D@%% %  [b %   d/H@| -"M33333D%% %  ]% %  Xz~+F@ܵ M33333D@? -9 X -ӤJ@%% %  ^% %  h5F@L(L33333D@? -9 X -ӤJ@%% %  d %      -JwC2N@|lޥG@33333DT9vO@ ?I@33333D@  %   d -| -"M@d/H@33333DJwC2N@ ?I@33333D@% %  M@rw]H@7;f?b<f  %      e  %   g    %  g    -  %    g  - c  %  tN#;@ bb<@   unknown -L(L@Tz~+F@33333Dܵ M@h5F@33333D %  h  -,\K&\K33333D@$\K@*\K@33333D@  %% %  i %  i % %   =33333D@kVeC@eVeC@?  %     - - T T33333D T@ T@33333D@  cone% %  8== -qZL@ -qZL@? ? T@ %% %  l* %   -qZL@" -qZL33333D%% %  o %  \ W   -yK@I$o<33333DYŁL@S[<33333D@  %  S o -yK@h5F33333DL(L@I$o<33333D@% %  p K@؉6B?`Q4<Φ?  %    R  p  %   r   -   %  r  s    %  u R r  - )  %   Mm,#@   unknown -ܵ M@ d/H33333D| -"M@Rz~+F33333D %  t s   -  %  33333T    unknown -| -"M@ d/H33333D| -"M@ d/H33333D@%% %  v %  v % %  JwC2N@ ?I33333D;f;f?  %   | w  f  %   R@   unknown -JwC2N@ ?I33333D@T9vO@|lޥG33333D@%% %  x %   % %  JwC2N@ ?I33333D -9 X -ӤJ@%% %  zJ %  JwC2N@ ?I33333D%% %  }% %  5tdO@؂F33333D@O4<Φ? %% %  I %  T9vO@|lޥG33333D@ %      f  %     ( -   %   *32@   unknown -hkBL@S[<33333D@XŁL@DU933333D@%% %   %   % %  hkBL@DU933333D@ -}?2k? %% %  Y %  kS,62M@KXv3633333D@ %    y - ?IyK@33333D@H=,S@33333D@  %        %     -   %        %     3 -   %  tN#;@ bb<@   unknown -ܵ Mh5F33333D@L(LRz~+F33333D@ %       %     6 -   %  <  m,#@   unknown -*rOr#H=,R33333D@\BېR33333D@ %       %     9 -   %  ?/g.@ ;#3q?@   unknown -U539#Q33333D@^ U#M33333D@%% %   %    %  6 !% %  8Fݿ;'@tJ33333D@YS ٺژ  %  "  # $  %     @ -   % % B & @  ' unknown - d/H@JwC2N33333D@ ?I@| -"M33333D@%% %   % ( @ )% %  Xz~+F@ܵ M33333D@?F4<Φ  %   * + ,  %     F -   % - .9 HE C7  / unknown -S[<@ZŁL33333D@C$o<@yK33333D@%% %   % 0  1% %  h1*@,ftK33333D@?Q4<Φ %% %  a %  h5F@L(L33333D@%% %  ` %  Xz~+F@ܵ M33333D@%% %  ( % 2 3 4  5 -Մ9@T9vO33333D|lޥG@LsYN33333D@  %    -|lޥG@T9vO33333D ?I@JwC2N33333D@% %  軥rH@rBNgp.9id??  %      - )  %  6 7  T   % 8 9 3q7 Y_  : unknown -yK@h5F33333DL(L@I$o<33333D %     [ - W  %    6 ; - W  %    -yK@I$o<33333DYŁL@S[<33333D@%% %   % < T =% %  )2|<@=33333D?Q4<Φ?  % > 33333T   ? unknown -XŁL@S[<33333DXŁL@S[<33333D@ % @    A -hkBL@S[<33333DXŁL@DU933333D@ %% %  T %  XŁL@S[<33333D%% %  % %  hkBL@DU933333D -9 X -ӤJ@%% %  !% %  j_L@鶍72k? -}ؿ  %  B  J -yK@@33333DH=,S@ ?I@33333D K - %  C D E F -   %  G  H I - 9  %   J K L - 9  %  M N  h O  % P QtN#;@ Rbb<@  S unknown -h5FL(L@33333DSz~+Fܵ M@33333D %  T  U V -  %  W X  k Y  % Z [?/g.@ s#3q?@  \ unknown -9#Q^ @33333DT#MU53@33333D %   ] ^ _ -  %  ` a  n b  % c t d m,#@  e unknown -H=,R@33333D\BېR*rOr#@33333D %    a f q  %    W g - q  %   h -\BېR^ @33333D9#Q*rOr#@33333D@%% %  l % i k j % k  l% %  tJ:Fݿ;'33333D ٺژXS?  %  m  n o -  %  p q  x r  % s t9 }E C7  u unknown -ZŁLD$o<33333DyKS[<33333D %      {  %    p v - {  %   w -L(Lh5F33333DyKB$o<33333D@%% %  j % x x y% %  ,ftKh1*33333DQ4<Φ  %   z { | -  %  } ~     %    @   unknown -JwC2N ?I33333D| -"M d/H33333D %    ~  -   %      -   %    -| -"M d/H33333Dܵ MYz~+F33333D@%% %  = %   % %  ܵ MYz~+F33333DF4<Φ  %  33333T    unknown -ܵ MYz~+F33333Dܵ MYz~+F33333D@ %  33333T  y  unknown -L(Lh5F33333DL(Lh5F33333D@ %      -ܵ Mh5F33333DL(LRz~+F33333D@ %% %   %  L(Lh5F33333D%% %   %  ܵ MYz~+F33333D %      - v  %        %   2@   unknown -JXv36/ ON33333DJr4lS,62M33333D %        %        %    -Nr4/ ON33333DU53U#M33333D@%% %  4 %   % %  oy)*;w逥E33333D\S?ٺژ?  %  33333T    unknown -U53U#M33333DU53U#M33333D@ %      -U539#Q33333D^ U#M33333D@ %% %   %  U53U#M33333D %      - v  %        %   R@   unknown -Ev&H=,S33333D(N7*|S33333D %      -   %        %    -(H=,S33333DH=,R33333D@%% %    %   % %  H=,R33333D  %  33333T    unknown -H=,R33333DH=,R33333D@ %      -*rOr#H=,R33333D\BېR33333D@ %% %   %  H=,R33333D%% %  % %  *rOr#\BېR33333D@? -9 X -ӤJ@%% %   % %  ^ 9#Q33333D@? -9 X -ӤJ@%% %  6% %  J{F""O>Q ٺژ]S?  %      - I  %        %   @   unknown -7Xv36@dS,62M33333DDU9@ukBL33333D %  +    -   %   +     %    -DU9@ZŁL33333DS[<@ukBL33333D@%% %   %   % %  DU9@ukBL33333D?&J4<Φ  %  .33333T    unknown -S[<@ZŁL33333DS[<@ZŁL33333D@ %      -S[<@ZŁL33333DC$o<@yK33333D@ %% %  | %  S[<@ZŁL33333D%% %  % %  A$o<@yK33333D@? -9 X -ӤJ@%% %  5% %  Չ6B@p KQ4<Φ  %      - I  %      4  %  *3 \h@   unknown -Մ9@T9vO33333D|lޥG@LsYN33333D %  #    - P  %   #   P %% %   %   % %   ?I@JwC2N33333D9idgp.  %  &33333T    unknown - ?I@JwC2N33333D ?I@JwC2N33333D@%% %  d %   ?I@JwC2N33333D%% %  % %   d/H@| -"M33333D -9 X -ӤJ@%% %   %      -KsYN@Մ9@33333DT9vO@}lޥG@33333D@  %    -JwC2N@|lޥG@33333DT9vO@ ?I@33333D@% %  qBN@껥rH@8idhp.?  %        %      - e  %      - e  %      - c  %    m,#@   unknown -ܵ M@Zz~+F@33333D| -"M@d/H@33333D %      -  %  33333T    unknown -ܵ M@Zz~+F@33333Dܵ M@Zz~+F@33333D@ %        %  33333T    unknown -L(L@h5F@33333DL(L@h5F@33333D@ %      - c %% %   %    %   % %  Fl3=@a0\)F@33333D?Q4<Φ  %     -,\K&\K33333D$\K@*\K@33333D@ % %   =kVeC@eVeC@? (\K@ %% %  = %  fVeC@hVeC33333D@%% %   %  j   - T T33333D@ T@ T@33333D@ - %% %  % %  1>L@Aye<Q4<Φ?  %    7  p  %      p  %  9 9F C7 R  unknown -L(L@h5F33333Dܵ M@Rz~+F33333D %      -   %  33333T    unknown -ܵ M@Rz~+F33333Dܵ M@Rz~+F33333D@%% %   %   % %  | -"M@ d/H33333DU4<Φ?  %      f  %   @   unknown -| -"M@ ?I33333D@JwC2N@ d/H33333D@%% %   %   % %  | -"M@ d/H33333D -9 X -ӤJ@%% %  L %  | -"M@ d/H33333D%% %  % %  T9vO@|lޥG33333D@Lp.Mid %% %  K %  JwC2N@ ?I33333D@ %  &    f  %  V U &  - W  %  tN#;@ bb<@ &  unknown -yK@I$o<33333D@YŁL@S[<33333D@%% %  ( %  ( % %  XŁL@S[<33333D@^X4<Φ? %% %  *W %  hkBL@DU933333D@ %    y -@yK@33333D@ ?I@H=,S@33333D@  %    -  .  %   /     %  /      %  p o /  - q  %  tN#;@ bb<@ /  unknown -\BېR^ @33333D@9#Q*rOr#@33333D@ %   0     %    0 - -   %    m,#@ 0  unknown -| -"M d/H33333D@ܵ MYz~+F33333D@ %  1      %  z y 1  - {  %  ?/g.@ #3q?@ 1 ! unknown -L(Lh5F33333D@yKB$o<33333D@%% %  3; % " 3 # % $ - %% %  Fl3=`0\)F33333D@Q4<Φ?  %  & 4 ' (  %    4  -   % )  * @ 4 + unknown -(H=,S33333D@H=,R33333D@%% %  6  % ,  -% %  *rOr#\BېR33333D@ٺژ?S  %  7 . / 0  %    7  -   % 1 29 E C7 7 3 unknown -Nr4/ ON33333D@U53U#M33333D@%% %  98 % 4 9 5% %  b=TGmH33333D@ٺژ?YS %% %  ; %  ^ 9#Q33333D@%% %  < %  *rOr#\BېR33333D@ %  6 > 7 8  %    > $ - P  % 9 & :R@ > ; unknown -|lޥG@T9vO33333D@ ?I@JwC2N33333D@%% %  @ % < $ =% %   d/H@| -"M33333D@6;f?c<f %% %  Bc %   d/H@| -"M33333D@ %  D > ? @  %    D , -   % A B .2@ D C unknown -DU9@ZŁL33333D@S[<@ukBL33333D@%% %  F % D F E% %  MY%=@=+?33333D@Q4<Φ?? %% %  H %  A$o<@yK33333D@%% %  O) % F G H  I -nv&@L7*|S33333DՄ9@LsYN33333D@  %   O -Մ9@T9vO33333D|lޥG@LsYN33333D@% %  k/=B@j9O)G4<Φ???  %   S V ;   %  S    -  %% %  T % J  K% %  LvK@4P533333D`Q4<Φ?  % L Y33333T  6 M unknown -yK@I$o<33333DyK@I$o<33333D@%% %  YR %  yK@I$o<33333D%% %  [% %  XŁL@S[<33333D -9 X -ӤJ@%% %  \ % %  `=PL@b:?hX4<Φ?  %  N J -,\K&\K33333D$\K@*\K@33333D K - %  O d P Q -   %  d R S T -   %  U V d F W  % X YtN#;@ Zbb<@ d [ unknown -^ @9#Q@33333D*rOr#@\BېR@33333D %  \ e ] ^ - 9  %  _ ` e I a  % b c?/g.@ Q#3q?@ e d unknown -h5FyK@33333DC$o<L(L@33333D %  f e f g - 9  %  h i f L j  % k R l m,#@ f m unknown - d/Hܵ M@33333DYz~+F| -"M@33333D %  - g i n O  %  g - _ o - O  %  g p -h5FL(L@33333DSz~+Fܵ M@33333D@%% %  h % q I r % s h t% %  a0\)FFl3=@33333DQ4<Φ??  %  u i v w -  %  x y i V z  % { |9 [E C7 i } unknown -/ ONU53@33333DT#MLr4@33333D %   j p g Y  %  j  x ~ - Y  %  j  -9#Q^ @33333DT#MU53@33333D@%% %  k %  V % %  TGmHb=@33333DXSٺژ  %  l    -  %    l _   %  d  @ l  unknown -H=,S@33333DH=,R @33333D %   m   - b  %  m  o f - b  %  m  -H=,R@33333D\BېR*rOr#@33333D@%% %  np %  n % %  \BېR*rOr#@33333DS翕ٺژ  %  t33333T  o  unknown -\BېR*rOr#@33333D\BېR*rOr#@33333D@ %  s33333T  W  unknown -9#Q^ @33333D9#Q^ @33333D@ %   q   -\BېR^ @33333D9#Q*rOr#@33333D@ %% %  s %  9#Q^ @33333D%% %  t %  \BېR*rOr#@33333D %   v   -  %    v o   %   t2@ v  unknown -YŁLS[<33333DtkBLDU933333D %   w z v r  %  w    r  %  w  -ZŁLD$o<33333DyKS[<33333D@%% %  xg %  o % %  =+?NY%=33333D?Q4<Φ  %  }33333T  p  unknown -yKB$o<33333DyKB$o<33333D@ %  h {   -L(Lh5F33333DyKB$o<33333D@ %% %  } %  yKB$o<33333D %      -  %     |   %   R@   unknown -T9vO ?I33333DJwC2N|lޥG33333D %      -   %        %    -JwC2N ?I33333D| -"M d/H33333D@%% %  @ %   % %  | -"M d/H33333Dc<f6;f  %  33333T  ~  unknown -| -"M d/H33333D| -"M d/H33333D@ %      -| -"M d/H33333Dܵ MYz~+F33333D@ %% %   %  | -"M d/H33333D%% %  :% %  ܵ MYz~+F33333D@? -9 X -ӤJ@%% %  <% %  L(Lh5F33333D@? -9 X -ӤJ@%% %  G% %  _Ĕ"L0FQ4<Φ??  %      - v  %        %   @   unknown -DU9lS,62M33333DJXv36ikBL33333D %  /    -   %   /     %    -JXv36/ ON33333DJr4lS,62M33333D@%% %  1 %   % %  JXv36lS,62M33333Deٺژ?S  %  233333T    unknown -Jr4/ ON33333DJr4/ ON33333D@ %      -Nr4/ ON33333DU53U#M33333D@ %% %   %  Jr4/ ON33333D%% %  5% %  U53U#M33333D@? -9 X -ӤJ@%% %  F% %  z(^>+0TPYSٺژ  %      - v  %        %  *3 \h@   unknown -Մ9N7*|S33333Dv&EsYN33333D %  '    -   %   '     %    -Ev&H=,S33333D(N7*|S33333D@%% %   %   % %  (H=,S33333Df$ᅫt߈]?  %  *33333T    unknown -(H=,S33333D(H=,S33333D@ %      -(H=,S33333DH=,R33333D@ %% %   %  (H=,S33333D%% %   % %  H=,R33333D -9 X -ӤJ@%% %  7% %  b' ҿzRS翕ٺژ  %      - I  %        %   32@   unknown -Tr4@/ ON33333D7Xv36@dS,62M33333D %  ?    -   %   ?     %    -7Xv36@dS,62M33333DDU9@ukBL33333D@%% %   %   % %  7Xv36@dS,62M33333D2k?}?  %  B33333T    unknown -DU9@ukBL33333DDU9@ukBL33333D@ %      -DU9@ZŁL33333DS[<@ukBL33333D@ %% %  z %  DU9@ukBL33333D%% %  % %  S[<@ZŁL33333D -9 X -ӤJ@%% %  4% %   Aye<@1>L?Q4<Φ?  %      - I  %      H  %   {2 W @   unknown -nv&@L7*|S33333DՄ9@LsYN33333D %  7    - 4  %   7   4 %% %   %   % %  7ػ%<@|\ O33333D)G4<Φ?  %  :33333T    unknown -|lޥG@T9vO33333D|lޥG@T9vO33333D@%% %  f %  |lޥG@T9vO33333D%% %  % %   ?I@JwC2N33333D -9 X -ӤJ@%% %   %      -KsYN@wv&@33333DL7*|S@Մ9@33333D@  %    -KsYN@Մ9@33333DT9vO@}lޥG@33333D@% %  j9O@k/=B@G4<Φ??  %        %      -   %        %      - c  %    @   unknown -| -"M@d/H@33333DJwC2N@ ?I@33333D %      - e  %  33333T    unknown -| -"M@d/H@33333D| -"M@d/H@33333D@%% %   % -  % %  ܵ M@Zz~+F@33333DsF4<Φ??  %        %  tN#;@ bb<@   unknown -L(L@Tz~+F@33333D@ܵ M@h5F@33333D@%% %  + %   % %  ܵ M@Zz~+F@33333D@? -9 X -ӤJ@ %      -   %        %    -yK@D$o<@33333DL(L@h5F@33333D@%% %  , %   % %  L(L@h5F@33333D@? -9 X -ӤJ@ %      - c  %  ?/g.@ #3q?@   unknown -yK@D$o<@33333DL(L@h5F@33333D%% %  , %  L(L@h5F@33333D%% %  + %  ܵ M@Zz~+F@33333D%% %   %     -,\K&\K33333D$\K@*\K@33333D   %        %      - p  %  933333T !  " unknown -L(L@h5F33333DL(L@h5F33333D@%% %  % %  2x8@@0 -F33333DQ4<Φ  %      f  % #  Mm,#@  $ unknown -ܵ M@ d/H33333D@| -"M@Rz~+F33333D@%% %   % %  &% %  ܵ M@Rz~+F33333D -9 X -ӤJ@%% %  N %  ܵ M@Rz~+F33333D%% %  % %  JwC2N@ ?I33333D@;f;f? %% %  M %  | -"M@ d/H33333D@ %      f  %  7 6   -   % ' ! 3q7 _  ( unknown -yK@h5F33333D@L(L@I$o<33333D@%% %   % )  *% %  )2|<@=33333D@?Q4<Φ? %% %  U %  XŁL@S[<33333D@ %  +  y -yK@@33333D@H=,S@ ?I@33333D@  %  , - . /   %  0  1 2 .  %   3 4 5 .  %  N M   - O  % 6 7tN#;@ 8bb<@  9 unknown -h5FL(L@33333D@Sz~+Fܵ M@33333D@ %  :  ; <   %  a `   - b  % =  > m,#@  ? unknown -H=,R@33333D@\BېR*rOr#@33333D@ %   @ A B   %  X W   - Y  % C D?/g.@ #3q?@  E unknown -9#Q^ @33333D@T#MU53@33333D@%% %  n % F  G % H  I% %  tJ:Fݿ;'33333D@ ٺژXS?  %  J  K L   %  ~ }   -   % M  N @  O unknown -JwC2N ?I33333D@| -"M d/H33333D@%% %  -? % P  Q% %  ܵ MYz~+F33333D@F4<Φ  %   R S T   %  q p   - r  % U V9 E C7  W unknown -ZŁLD$o<33333D@yKS[<33333D@%% %  k % X  Y% %  ,ftKh1*33333D@Q4<Φ %% %   %  L(Lh5F33333D@%% %   %  ܵ MYz~+F33333D@ %  Z  [ \  %     ( -   % ] * ^R@  _ unknown -Ev&H=,S33333D@(N7*|S33333D@%% %   % ` ( a% %  H=,R33333D@ %% %   %  H=,R33333D@ %   b c d  %     0 -   % e f 22@  g unknown -JXv36/ ON33333D@Jr4lS,62M33333D@%% %  6 % h  i% %  oy)*;w逥E33333D@\S?ٺژ? %% %   %  U53U#M33333D@ %  j " k l  %    " 8 - 4  % m :*3 n\h@ " o unknown -Մ9@T9vO33333D@|lޥG@LsYN33333D@%% %  $ % p 8 q% %   ?I@JwC2N33333D@9idgp. %% %  &e %   ?I@JwC2N33333D@ %  * r s t  %    * @ -   % u v B@ * w unknown -7Xv36@dS,62M33333D@DU9@ukBL33333D@%% %  , % x , y% %  DU9@ukBL33333D@?&J4<Φ %% %  .} %  S[<@ZŁL33333D@%% %  3* % z { |  } -@H=,S33333Dov&@L7*|S33333D@  %   3 -nv&@L7*|S33333DՄ9@LsYN33333D@% %  |I#\2@ox|QES'ٺژ?? %% %  9P %  L(L@h5F33333D%% %  ;% %  yK@I$o<33333D@? -9 X -ӤJ@ %  N N  ~ - B  %   C   -   %    C Q   %  ?/g.@ Y#3q?@ C  unknown -^ @T#M@33333DU53@9#Q@33333D %  D    -   %    D T   %  Z  m,#@ D  unknown -@\BېR@33333D*rOr#@H=,R@33333D %  . E   W  %  E .   - W  %  E  -^ @9#Q@33333D*rOr#@\BېR@33333D@%% %  F %  Q  %  F % %  :Fݿ;'tJ@33333DXS? ٺژ?  %   G   - 9  %    G ^   %  9 cE C7 G  unknown -D$o<yK@33333DS[33333T d   unknown -H=,R@33333DH=,R@33333D@ %   b   -H=,R@33333D\BېR*rOr#@33333D@ %% %  d %  H=,R@33333D%% %  fm% %  \BېR*rOr#@33333D@? -9 X -ӤJ@%% %  go% %  9#Q^ @33333D@? -9 X -ӤJ@%% %  hX% %  N>QF{F""@\S? ٺژ?  %   m   -  %    m    %   @ m  unknown -cS,62MDU933333DtkBL8Xv3633333D %  S n q  -   %  n S     %  n  -YŁLS[<33333DtkBLDU933333D@%% %  od %   % %  tkBLDU933333DJ4<Φ  %  V33333T t q  unknown -YŁLS[<33333DYŁLS[<33333D@ %  w r   -ZŁLD$o<33333DyKS[<33333D@ %% %  t %  YŁLS[<33333D%% %  vh% %  yKB$o<33333D@? -9 X -ӤJ@%% %  wW% %  p KՉ6BᅳQ4<Φ?  %  z    -  %    z    %  *3 \h@ z  unknown -T9vO|lޥG33333DKsYNՄ933333D %  K {   -   %  { K }    %  {  -T9vO ?I33333DJwC2N|lޥG33333D@%% %  |C %  | % %  JwC2N ?I33333Dgp.9id?  %  N33333T    unknown -JwC2N ?I33333DJwC2N ?I33333D@ %      -JwC2N ?I33333D| -"M d/H33333D@ %% %   %  JwC2N ?I33333D%% %  >% %  | -"M d/H33333D -9 X -ӤJ@%% %  H% %  ,`;M3?\q-GᅤF4<Φ?  %      - v  %        %   32@   unknown -S[  ? -L7*|S@@33333DH=,S@wv&@33333D@  %  @  -KsYN@wv&@33333DL7*|S@Մ9@33333D@% %  ox|Q@I#\2@&ٺژFS?  %  A B C D   %  E  B F -   %   E     %   C   - c  % G  HR@  I unknown -JwC2N@|lޥG@33333DT9vO@ ?I@33333D %    J K -   % L M33333T   N unknown -JwC2N@ ?I@33333DJwC2N@ ?I@33333D@%% %   % O  P% %  | -"M@d/H@33333Db<f?7;f?  %  J      % Q   m,#@  R unknown -ܵ M@Zz~+F@33333D@| -"M@d/H@33333D@%% %  - % S K T% %  | -"M@d/H@33333D -9 X -ӤJ@%% %  ; %  | -"M@d/H@33333D %   U    %% %  % %  Fl3=@a0\)F@33333D@?Q4<Φ %% %  ? %  ܵ M@Zz~+F@33333D@ %    V W -   % X Y?/g.@ #3q?@  Z unknown -yK@D$o<@33333D@L(L@h5F@33333D@ % [    \ -yK@D$o<@33333DL(L@h5F@33333D@ %% %  > %  L(L@h5F@33333D@ %  ]  ^ _ - c  %  V `   a  % b c9 E C7  d unknown -yK@S[<@33333DYŁL@F$o<@33333D%% %   % e  f% %  ,ftK@h1*@33333DQ4<Φ??  %    N ~   %      - +  % g h -DT!? h`8U)zj@  i unknown - T T33333D@ T@ T@33333D@ % j 9 !F C7  k unknown -L(L@h5F33333D@ܵ M@Rz~+F33333D@%% %   % l  m% %  L(L@h5F33333D@? -9 X -ӤJ@%% %  % %  | -"M@ d/H33333D@U4<Φ? %% %  O %  ܵ M@Rz~+F33333D@%% %  % %  LvK@4P533333D@`Q4<Φ? %% %  S %  yK@I$o<33333D@ %   y - T T33333D@ T@ T@33333D@  %  n  o p   %   q r s   %  V U  / - W  % t utN#;@ vbb<@  w unknown -^ @9#Q@33333D@*rOr#@\BېR@33333D@ %  x  y z .  %  i h  2 - j  % { 8 | m,#@  } unknown - d/Hܵ M@33333D@Yz~+F| -"M@33333D@ %   ~   .  %  ` _  5 - a  %  ?/g.@ 7#3q?@   unknown -h5FyK@33333D@C$o<L(L@33333D@%% %   %    %  2 % %  a0\)FFl3=@33333D@Q4<Φ??  %        %     < -   %  >  @   unknown -H=,S@33333D@H=,R @33333D@%% %  r %  < % %  \BېR*rOr#@33333D@S翕ٺژ  %        %  y x  B - z  %  9 DE C7   unknown -/ ONU53@33333D@T#MLr4@33333D@%% %   %   % %  TGmHb=@33333D@XSٺژ %% %   %  9#Q^ @33333D@%% %   %  \BېR*rOr#@33333D@ %        %     L -   %  N R@   unknown -T9vO ?I33333D@JwC2N|lޥG33333D@%% %  B %  L % %  | -"M d/H33333D@c<f6;f %% %   %  | -"M d/H33333D@ %        %     T -   %   V2@   unknown -YŁLS[<33333D@tkBLDU933333D@%% %  i %   % %  =+?NY%=33333D@?Q4<Φ %% %   %  yKB$o<33333D@ %   &    %    & \ -   %  ^*3 \h@ &  unknown -Մ9N7*|S33333D@v&EsYN33333D@%% %  ( %  \ % %  (H=,S33333D@f$ᅫt߈]? %% %  * %  (H=,S33333D@ %  .     %    . d -   %   f@ .  unknown -DU9lS,62M33333D@JXv36ikBL33333D@%% %  03 %  0 % %  JXv36lS,62M33333D@eٺژ?S %% %  2 %  Jr4/ ON33333D@ %   6    %    6 l - H  %  n {2 W @ 6  unknown -nv&@L7*|S33333D@Մ9@LsYN33333D@%% %  8 %  l % %  7ػ%<@|\ O33333D@)G4<Φ? %% %  :g %  |lޥG@T9vO33333D@ %  >     %    > t -   %   v32@ >  unknown -Tr4@/ ON33333D@7Xv36@dS,62M33333D@%% %  @ %  @ % %  7Xv36@dS,62M33333D@2k?}? %% %  B{ %  DU9@ukBL33333D@%% %  G+ %      -@H=,S33333D@H=,R33333D@  %   G -@H=,S33333Dov&@L7*|S33333D@% %  3 "@#$Su߈]Z$??  %  -DT!? ^8U)zj@ N  unknown -,\K&\K33333D$\K@*\K@33333D %   O   -   %    O    %  9 E C7 O  unknown -U53@T#M@33333DLr4@/ ON@33333D %  r P V    %  P r   -   %  P  -^ @T#M@33333DU53@9#Q@33333D@%% %  Q %   % %  b=@TGmH@33333DٺژXS?  %  R    -   %    R    %    @ R  unknown -@H=,R@33333D @H=,S@33333D %  o S   -   %  S o U  -   %  S  -@\BېR@33333D*rOr#@H=,R@33333D@%% %  T %  T % %  *rOr#@\BېR@33333DٺژS?  %  Z33333T v U  unknown -*rOr#@\BېR@33333D*rOr#@\BېR@33333D@ %  Y33333T u   unknown -^ @9#Q@33333D^ @9#Q@33333D@ %   W   -^ @9#Q@33333D*rOr#@\BېR@33333D@ %% %  Y %  ^ @9#Q@33333D%% %  Z  %  *rOr#@\BېR@33333D %   \   - 9  %    \    %   2@ \  unknown -S[+@ٺژXS?  %   " # $ -  %  % &   '  % ( *3 )\h@  * unknown -N7*|Sv&@33333DDsYNՄ9@33333D %    & + -   %        %   , -H=,S @33333DN7*|S@v&@33333D@%% %  v % -  .% %  H=,S @33333Dt߈]?^$?  % / 33333T   0 unknown -H=,S @33333DH=,S @33333D@ % 1 ,   2 -H=,S@33333DH=,R @33333D@ %% %   %  H=,S @33333D%% %  q% %  H=,R@33333D -9 X -ӤJ@%% %  Y% %  ҿzRb' @ٺژS?  %  3  4 5 -  %  6 7   8  % 9 : 32@  ; unknown -/ ON8Xv3633333DcS,62MUr433333D %      -   %    6 <   %   = -cS,62MDU933333DtkBL8Xv3633333D@%% %  a % >  ?% %  cS,62M8Xv3633333D}?2k  % @ 33333T   A unknown -tkBLDU933333DtkBLDU933333D@ % B    C -YŁLS[<33333DtkBLDU933333D@ %% %   %  tkBLDU933333D%% %  e% %  YŁLS[<33333D -9 X -ӤJ@%% %  V% %  1>LAye<Q4<Φ?  %   D E F -  %  G H   I  % J  {2 KW @  L unknown -L7*|SՄ933333DKsYNrv&33333D %    H M -   %        %   N -T9vO|lޥG33333DKsYNՄ933333D@%% %  F % O  P% %  {\ O7ػ%<33333D!G4<Φ??  % Q 33333T   R unknown -T9vO|lޥG33333DT9vO|lޥG33333D@ % S N   T -T9vO ?I33333DJwC2N|lޥG33333D@ %% %   %  T9vO|lޥG33333D%% %  A% %  JwC2N ?I33333D -9 X -ӤJ@%% %  I% %  Mqw]H6;fc<f?  %  U  V W - v  %  X Y   Z  % [ \tN#;@ bb<@  ] unknown -H$o %  H=,R@33333D@ %  @      %    @  -   %   2@ @  unknown -/ ONHr4@33333D@lS,62MHXv36@33333D@%% %  B %  B % %  :w逥Eoy)*?33333D@ٺژ?[S %% %  D %  T#MU53@33333D@ %   J     %    J  -   %  *3 \h@ J  unknown -T9vO|lޥG33333D@KsYNՄ933333D@%% %  LE %   % %  JwC2N ?I33333D@gp.9id? %% %  N %  JwC2N ?I33333D@ %  R      %    R  -   %   @ R  unknown -cS,62MDU933333D@tkBL8Xv3633333D@%% %  Tf %  T % %  tkBLDU933333D@J4<Φ %% %  V %  YŁLS[<33333D@ %   Z    %    Z  -   %   {2 W @ Z  unknown -|lޥGT9vO33333D@Մ9EsYN33333D@%% %  \ %   % %  /l7l{O33333D@ٺژS? %% %  ^ %  Dv&N7*|S33333D@ %  b -    %    b  -   %   32@ b  unknown -S[  % ?  @R@  A unknown - @N7*|S@33333D@v&@H=,S@33333D %    = B -   %        %   C -@H=,R@33333D @H=,S@33333D@%% %   % D  E% %  @H=,R@33333D=?  % F 33333T   G unknown -@H=,R@33333D@H=,R@33333D@ % H C   I -@\BېR@33333D*rOr#@H=,R@33333D@ %% %    %  @H=,R@33333D%% %  % %  *rOr#@\BېR@33333D@? -9 X -ӤJ@%% %  % %  ^ @9#Q@33333D@? -9 X -ӤJ@%% %  z% %  F{F""@N>Q@ ٺژ?\S  %  J  K L - 9  %  M N   O  % P Q @  R unknown -DU9tkBL@33333D9Xv36cS,62M@33333D %      -   %    M S   %   T -S[  %   @   -   %  @  A    %  C  @  - c  %   {2 W @   unknown -KsYN@wv&@33333DL7*|S@Մ9@33333D %  B A   -   %  33333T    unknown -KsYN@Մ9@33333DKsYN@Մ9@33333D@%% %  D %  D % %  {\ O@7ػ%<@33333DG4<Φ  %   J E    %  M R@   unknown -JwC2N@|lޥG@33333D@T9vO@ ?I@33333D@%% %  F/ %   % %  T9vO@|lޥG@33333D -9 X -ӤJ@%% %  H9 %  T9vO@|lޥG@33333D%% %  K% %  | -"M@d/H@33333D@b<f?7;f? %% %  MA %  JwC2N@ ?I@33333D@ %  U     %  ` V U  - a  %    9 YE C7 U  unknown -yK@S[<@33333D@YŁL@F$o<@33333D@%% %  W;% %  yK@D$o<@33333D@? -9 X -ӤJ@%% %  YN %  yK@D$o<@33333D@ %   ]   - c  %  - ]   %   @ ]  unknown -tkBL@:Xv36@33333DcS,62M@DU9@33333D %   ^ `  -   %  ^     %  ^  -tkBL@DU9@33333DYŁL@S[<@33333D@%% %  _  %     % %  tkBL@DU9@33333D J4<Φ??  %    33333T c `  unknown -YŁL@S[<@33333DYŁL@S[<@33333D@ %    a   -yK@S[<@33333DYŁL@F$o<@33333D@ %% %  c. %  YŁL@S[<@33333D%% %  hO %   -qZL@" -qZL33333D@ %   n     %    n  -   %      @ n  unknown -@H=,R@33333D@ @H=,S@33333D@%% %  p %     % %  *rOr#@\BېR@33333D@ٺژS?  %  q  !   %    q  -   % "  # 9 E C7 q $ unknown -U53@T#M@33333D@Lr4@/ ON@33333D@%% %  s % %  s & % %  b=@TGmH@33333D@ٺژXS? %% %  u  %  ^ @9#Q@33333D@%% %  v - %  *rOr#@\BېR@33333D@ %  ' x ( ) .  %    x  -   % *   + R@ x , unknown - ?IJwC2N@33333D@|lޥGT9vO@33333D@%% %  z % -   . % %   d/H| -"M@33333D@7;fb<f? %% %  | %   d/H| -"M@33333D@ %  ~ / 0 1 .  %    ~  -   % 2  3  2@ ~ 4 unknown -S[ % %  H=,S @33333D@t߈]?^$? %% %   %  H=,S @33333D@ %   ? @ A   %      -   % B  C  @  D unknown -lS,62MHXv36@33333D@ikBLDU9@33333D@%% %   % E   F % %  lS,62MHXv36@33333D@Sfٺژ %% %   %  / ONHr4@33333D@ %  G  H I   %  H G   - I  % J   {2 K W @  L unknown -L7*|SՄ933333D@KsYNrv&33333D@%% %  H % M   N % %  {\ O7ػ%<33333D@!G4<Φ?? %% %   %  T9vO|lޥG33333D@ %   O P Q   %  7 6   - 8  % R  S  32@  T unknown -/ ON8Xv3633333D@cS,62MUr433333D@%% %  c % U   V % %  cS,62M8Xv3633333D@}?2k %% %   %  tkBLDU933333D@ %  W  X Y  %  j i   - k  % Z   [ R@  \ unknown - ?IT9vO33333D@|lޥGJwC2N33333D@%% %   % ]   ^ % %  ؂F5tdO33333D@O4<Φ %% %   %  Մ9EsYN33333D@ %   _ ` a  %  Y X   - Z  % b  c tN#;@ bb<@  d unknown -H$o+@0TP@XS?ٺژ?  %   -   %   ;  %  @*3 \h@  unknown -v&@DsYN@33333DՄ9@N7*|S@33333D %    - >  %     B >  %   - @N7*|S@33333D@v&@H=,S@33333D@%% %   %   % %   @H=,S@33333D^$?t߈]  %   33333T  = unknown - @H=,S@33333D @H=,S@33333D@ %    -@H=,R@33333D @H=,S@33333D@ %% %   %   @H=,S@33333D%% %  % %  @H=,R@33333D -9 X -ӤJ@%% %  {% %  b' @ҿzR@S?ٺژ?  %   - 9  %   L  %   Q32@  unknown -9Xv36cS,62M@33333DVr4/ ON@33333D %  0   S - O  %   0 O  %   -DU9tkBL@33333D9Xv36cS,62M@33333D@%% %   %  L % %  9Xv36cS,62M@33333D2k}ؿ  %  3 33333T   unknown -DU9tkBL@33333DDU9tkBL@33333D@ %     -S[L@Q4<Φ??  %   - 9  %   ]  %  b {2 W @  unknown -Մ9KsYN@33333Dtv&L7*|S@33333D %  (  - `  %   (  d `  %   -}lޥGKsYN@33333DՄ9T9vO@33333D@%% %   %   % %  7ػ%<{\ O@33333D?G4<Φ  %  + 33333T  _ unknown -|lޥGT9vO@33333D|lޥGT9vO@33333D@ %    - ?IJwC2N@33333D|lޥGT9vO@33333D@ %% %   %  |lޥGT9vO@33333D%% %  % %   ?IJwC2N@33333D -9 X -ӤJ@%% %  -k% %  qw]HM@b<f?7;f?  %   -  %   n  %  tN#;@ sbb<@  unknown -ZŁLS[<@33333DyKF$o<@33333D %  @   u - q  %   @ q  %   -XŁLDU9@33333DhkBLS[<@33333D@%% %   %  n % %  XŁLS[<@33333D~X4<Φ?  %  C 33333T   unknown -ikBLDU9@33333DikBLDU9@33333D@ %     -lS,62MHXv36@33333DikBLDU9@33333D@ %% %   %  ikBLDU9@33333D%% %  % %  lS,62MHXv36@33333D -9 X -ӤJ@%% %  f% %  M95@iٺژS?  %  " -  %  "   %   R@ " unknown -T9vO|lޥG@33333DJwC2N ?I@33333D %  8 # -   %  # 8 %    %  # -T9vOՄ9@33333DDsYN|lޥG@33333D@%% %  $| %  $ % %  5tdO؂F@33333DO4<Φ?  %  ; 33333T )  unknown -DsYNՄ9@33333DDsYNՄ9@33333D@ %  '  -N7*|Sv&@33333DDsYNՄ9@33333D@ %% %  ) %  DsYNՄ9@33333D%% %  +w% %  N7*|S@v&@33333D -9 X -ӤJ@%% %  ,[% %  $$S( "@^$?t߈]?  %   3 -  %  3   %   3q7 _ 3 unknown -9#QU5333333DV#M^ 33333D %  P 4 7  -   %  4 P -   %  4 -/ ONUr433333DV#MU5333333D@%% %  5[ %   % %  fD&C,?33333DٺژZS  %  S 33333T : 7 unknown -/ ONUr433333D/ ONUr433333D@ %  = 8  -/ ON8Xv3633333DcS,62MUr433333D@ %% %  : %  / ONUr433333D%% %  <_% %  cS,62M8Xv3633333D -9 X -ӤJ@%% %  =T% %  l_Lܶ72k}ؿ  %  D  -  %  D   %   @ D unknown -H=,S33333DH=,R33333D %  H E -   %  E H G    %  E -H=,Srv&33333DL7*|S33333D@%% %  FL %  F % %  L7*|Srv&33333Du߈]Z$?  %  K 33333T K  unknown -L7*|Srv&33333DL7*|Srv&33333D@ %  I  -L7*|SՄ933333DKsYNrv&33333D@ %% %  K %  L7*|Srv&33333D%% %  MG% %  KsYNՄ933333D -9 X -ӤJ@%% %  NK% %  j9Ok/=B?!G4<Φ?  %  U   % -  -9 F C7 U  - unknown -h5Fܵ M33333DRz~+FL(L33333D %  ` V Y    %  V `  - -   %  V  - -h5FL(L33333DH$o<yK33333D@%% %  W% %  -   -% %  4P5LvK33333D?pQ4<Φ?  %  - \33333T c    - unknown -H$o<yK33333DH$o<yK33333D@ % - _ Z  - - -H$o  %   * -   >  %   ( -   - c  % , -  - -R@  . - unknown -L7*|S@@33333DH=,S@wv&@33333D %    / - 0 - -   % 1 - 2 -33333T   3 - unknown -L7*|S@wv&@33333DL7*|S@wv&@33333D@%% %   % 4 -  5 -% %  C9R@ -  2@  ? - unknown -tkBL@DU9@33333D@YŁL@S[<@33333D@%% %  ( % @ -  A -% %  =+?@OY%=@33333D@Q4<Φ?  %  B -  C - D - - c  %  E - F -   G -  % H - I - 32@  J - unknown -cS,62M@Wr4@33333D/ ON@:Xv36@33333D %  ; -    -  %   ; - E - K -  %   L - -tkBL@:Xv36@33333DcS,62M@DU9@33333D@%% %   - % M -  N -% %  cS,62M@:Xv36@33333D}ؿ2k?  % O - > -33333T   P - unknown -tkBL@DU9@33333DtkBL@DU9@33333D@ % Q -    R - -tkBL@DU9@33333DYŁL@S[<@33333D@ %% %  / %  tkBL@DU9@33333D%% %  :% %  YŁL@S[<@33333D -9 X -ӤJ@%% %  % %  1>L@Aye<@Q4<Φ???  %  S -  T - U -   %  = <   - >  % V -   W -R@  X - unknown - @N7*|S@33333D@@v&@H=,S@33333D@%% %   % Y -  Z -% %  @H=,R@33333D@=? %% %    %  @H=,R@33333D@ %   [ - \ - ] -   %  , +  ! - -  % ^ - _ - # 2@  ` - unknown -Hr4@lS,62M@33333D@HXv36@/ ON@33333D@%% %   % a -  b -% %  oy)*?:w逥E@33333D@[Sٺژ %% %  ) %  U53@T#M@33333D@ %  c -  d - e - .  %  _ ^  ) - `  % f - + *3 g -\h@  h - unknown -}lޥGKsYN@33333D@Մ9T9vO@33333D@%% %   % i - ) j -% %   ?IJwC2N@33333D@8id?hp.? %% %   %   ?IJwC2N@33333D@ %   k - l - m - .  %  N M  1 - O  % n - o - 3 @  p - unknown -DU9tkBL@33333D@9Xv36cS,62M@33333D@%% %   % q -  r -% %  DU9tkBL@33333D@J4<Φ? %% %   %  S[Qٺژ?[S??  %  - ( - - -   %  - - ( y -  % - - ~ 32@ ( - unknown -DU9@hkBL@33333DS[<@XŁL@33333D %  \ - ) , - |  %  ) \ - - - |  %  ) - -HXv36@ikBL@33333DDU9@lS,62M@33333D@%% %  * % - y -% %  DU9@ikBL@33333D2k}?  % - _ -33333T / , - unknown -HXv36@lS,62M@33333DHXv36@lS,62M@33333D@ % - 2 -  - -Hr4@lS,62M@33333DHXv36@/ ON@33333D@ %% %  /$ %  HXv36@lS,62M@33333D%% %  1% %  Hr4@/ ON@33333D -9 X -ӤJ@%% %  2% %  fu3@.'QN@ٺژ[S??  %  9 - - - -   %  - - 9 -  % -  {2 -W @ 9 - unknown -Մ9@DsYN@33333D|lޥG@T9vO@33333D %  T - : - - -  %  : T - <  %  : - -v&@DsYN@33333DՄ9@N7*|S@33333D@%% %  ; % - ; -% %  -l7@k{O@33333Dٺژ?S  % - W -33333T @ - unknown -@v&@N7*|S@33333D@v&@N7*|S@33333D@ % - - >  - - @N7*|S@33333D@v&@H=,S@33333D@ %% %  @ %  @v&@N7*|S@33333D%% %  B% %   @H=,S@33333D -9 X -ӤJ@%% %  C|% %  @H=,:S@?  %  - J - - - 9  %  - - J -  % - -tN#;@ bb<@ J - unknown -Vr4V#M@33333DU53/ ON@33333D %  l - K N -  %  K l - - -  %  K - -9Xv36cS,62M@33333DVr4/ ON@33333D@%% %  L % - -% %  Vr4/ ON@33333Dغژ忟S  % - o -33333T Q N - unknown -9Xv36cS,62M@33333D9Xv36cS,62M@33333D@ % - T O  - -DU9tkBL@33333D9Xv36cS,62M@33333D@ %% %  Q %  9Xv36cS,62M@33333D%% %  S% %  DU9tkBL@33333D -9 X -ӤJ@%% %  Tw% %  b:f=PL@J4<Φ??  %  [ - - - - 9  %  - - [ -  % -  -R@ [ - unknown -tv&L7*|S@33333DH=,S@33333D %  d - \ - - -  %  \ d - ^  %  \ - -Մ9KsYN@33333Dtv&L7*|S@33333D@%% %  ] % - ] -% %  9na*C9R@33333D&ٺژ?FS?  % - g -33333T b - unknown -Մ9KsYN@33333DՄ9KsYN@33333D@ % - - `  - -}lޥGKsYN@33333DՄ9T9vO@33333D@ %% %  b %  Մ9KsYN@33333D%% %  d% %  |lޥGT9vO@33333D -9 X -ӤJ@%% %  el% %  黥rHqBN@hp.?8id?  %  l - - -  %  - - l -  % - - 3q7 _ l - unknown -L(LF$o<@33333DyKh5F@33333D %  | - m p -  %  m | - - - -  %  m - -ZŁLS[<@33333DyKF$o<@33333D@%% %  n % - -% %  *2|<=@33333DQ4<Φ  % -  -33333T s p - unknown -XŁLS[<@33333DXŁLS[<@33333D@ % - v q  - -XŁLDU9@33333DhkBLS[<@33333D@ %% %  s %  XŁLS[<@33333D%% %  u% %  ikBLDU9@33333D -9 X -ӤJ@%% %  ve% %  j_L涍7@2k}?  %  } - - -  %   }   %     @ }  unknown -JwC2N d/H@33333D| -"M ?I@33333D %  t - ~   -  %  ~ t -   %  ~  -T9vO|lޥG@33333DJwC2N ?I@33333D@%% %   %    % %  T9vO|lޥG@33333DKp.?Nid?  % -  w -33333T  unknown -T9vO|lޥG@33333DT9vO|lޥG@33333D@ %     -T9vOՄ9@33333DDsYN|lޥG@33333D@ %% %   %  T9vO|lޥG@33333D%% %  z% %  DsYNՄ9@33333D -9 X -ӤJ@%% %  \% %  ox|QZI#\2@ٺژ?S?  %       %    9 F C7   unknown -\BېR*rOr#33333D9#Q^ 33333D %  -    %   -   -  %    -9#QU5333333DV#M^ 33333D@%% %  X %    % %  `W6JL*4,;833333DVS?ٺژ  %   33333T -  unknown -V#MU5333333DV#MU5333333D@ %       -/ ONUr433333DV#MU5333333D@ %% %   %  V#MU5333333D%% %  \% %  / ONUr433333D -9 X -ӤJ@%% %  S% %  M95غژ忡S  %       %     Mm,#@  unknown -H=,R*rOr#33333D\BېR33333D %  -   ! -  %   -   %   " -H=,S33333DH=,R33333D@%% %  O % #   $ % %  H=,S33333D?\3&  % %  -33333T  & unknown -H=,S33333DH=,S33333D@ % '  "   ( -H=,Srv&33333DL7*|S33333D@ %% %   %  H=,S33333D%% %  J% %  L7*|Srv&33333D -9 X -ӤJ@%% %  L% %  ox|Q~I#\2'ٺژ?ES??  %  -    -  %   - - )  %   * -h5Fܵ M33333DRz~+FL(L33333D@%% %  " % +   , % %  0 -F3x8@33333DQ4<Φ?  % -  33333T - . unknown -h5FL(L33333Dh5FL(L33333D@ % /     0 -h5FL(L33333DH$o<yK33333D@ %% %   %  h5FL(L33333D%% %  &% %  H$o<yK33333D@? -9 X -ӤJ@%% %  A% %  Aye<1>LQ4<Φ  %  -  ) - -  %   -   - -  %   1 - d/H | -"M33333DRz~+Fܵ M33333D@%% %  % %   d/H | -"M33333D?V4<Φ?  % 2  -33333T  - 3 unknown - d/H | -"M33333D d/H | -"M33333D@ % 4  1   5 - ?IJwC2N33333D d/H| -"M33333D@ %% %   %   d/H | -"M33333D%% %  % %   ?IJwC2N33333D -9 X -ӤJ@%% %  <% %  绥rHrBNLp.?Nid??  % 6  -33333T   7 unknown -*rOr#@\BېR33333D*rOr#@\BېR33333D@%% %  p %  *rOr#@\BېR33333D%% %  % %  ^ @9#Q33333D@? -9 X -ӤJ@%% %  /% %  p(^>+@1TPVS?ٺژ %% %  % %  @H=,R33333D -9 X -ӤJ@%% %   % 8  9 :  ; -V#M@^ @33333D9#Q@U53@33333D@  %  <  -9#Q@^ @33333D\BېR@*rOr#@33333D@% %  L>Q@8{F""@\S ٺژ??  %  = > ? @   %  A  > B -   %   A  + -   %   ?  ) - - c  % C  - - D @ ( - E unknown -H=,R@@33333DH=,S@@33333D %    F G - >  % H  I 33333T - - ' - J unknown -H=,S@@33333DH=,S@@33333D@%% %   % K   L % %  L7*|S@wv&@33333Du߈]?Z$  %  F   0 -   % M   {2 2 -W @ / - N unknown -KsYN@wv&@33333D@L7*|S@Մ9@33333D@%% %  1 % O  G P % %  L7*|S@wv&@33333D -9 X -ӤJ@%% %  7 %  L7*|S@wv&@33333D%% %  % %  {\ O@7ػ%<@33333D@G4<Φ %% %  C %  KsYN@Մ9@33333D@ %  Q R S   %  - < - -  % T  U  > -@ V unknown -tkBL@:Xv36@33333D@cS,62M@DU9@33333D@%% %   ' % W   X % %  tkBL@DU9@33333D@ J4<Φ?? %% %   M %  YŁL@S[<@33333D@ %  Y  Z [ - c  %  \ ]  D - ^  % _  ` tN#;@ I -bb<@  a unknown -V#M@U53@33333D/ ON@Wr4@33333D %  R  - K - - G -  %   R \ b G -  %   c -cS,62M@Wr4@33333D/ ON@:Xv36@33333D@%% %     % d  D - e % %  / ON@Wr4@33333DS翻غژ?  % f  U 33333T  - g unknown -cS,62M@:Xv36@33333DcS,62M@:Xv36@33333D@ % h    i -tkBL@:Xv36@33333DcS,62M@DU9@33333D@ %% %  0 %  cS,62M@:Xv36@33333D%% %   9% %  tkBL@DU9@33333D -9 X -ӤJ@%% %   % %  f=PL@b:@?J4<Φ  %  j  k l   %   U - -  % m  W -*3 n \h@  o unknown -v&@DsYN@33333D@Մ9@N7*|S@33333D@%% %    % p  U - q % %   @H=,S@33333D@^$?t߈] %% %    %   @H=,S@33333D@ %   r s t   %  { z  ] - - |  % u  v  _ -@  w unknown -HXv36@ikBL@33333D@DU9@lS,62M@33333D@%% %  !  % x  ! y % %  HXv36@lS,62M@33333D@fٺژS? %% %  # ' %  Hr4@/ ON@33333D@ %  z ' { | .  %  ' e - -  % }  g - {2 ~ W @ '  unknown -Մ9KsYN@33333D@tv&L7*|S@33333D@%% %  )  %  e - % %  7ػ%<{\ O@33333D@?G4<Φ %% %  +  %  |lޥGT9vO@33333D@ %  / .  %  / m - -  %   o -32@ / unknown -9Xv36cS,62M@33333D@Vr4/ ON@33333D@%% %  1  %  1 % %  9Xv36cS,62M@33333D@2k}ؿ %% %  3  %  DU9tkBL@33333D@ %  7   %  7 u - -  %  w - R@ 7 unknown -T9vO|lޥG@33333D@JwC2N ?I@33333D@%% %  9 ~ %  u - % %  5tdO؂F@33333D@O4<Φ? %% %  ;  %  DsYNՄ9@33333D@ %  ?   %  ? } - -  %  tN#;@  -bb<@ ? unknown -ZŁLS[<@33333D@yKF$o<@33333D@%% %  A  %  A % %  XŁLS[<@33333D@~X4<Φ? %% %  C  %  ikBLDU9@33333D@ %  - G   %  G - -  %  - @ G unknown -H=,S33333D@H=,R33333D@%% %  I N %  - % %  L7*|Srv&33333D@u߈]Z$? %% %  K  %  L7*|Srv&33333D@ %  O -   %  O - -  %   3q7 -_ O unknown -9#QU5333333D@V#M^ 33333D@%% %  Q ] %  Q % %  fD&C,?33333D@ٺژZS %% %  S  %  / ONUr433333D@ %  - - W - - -  %  - Mm,#@ W unknown - d/H | -"M33333D@Rz~+Fܵ M33333D@%% %  Y  %  - % %   ?IJwC2N33333D@;f?;f? %% %  [  %   ?IJwC2N33333D@ %  _ - -  %  9 -F C7 _ unknown -h5Fܵ M33333D@Rz~+FL(L33333D@%% %  a ' %  a % %  4P5LvK33333D@?pQ4<Φ? %% %  c  %  H$o<yK33333D@%% %  h  %  o % %  @H=,R33333D@غژ?S? %% %  j o %  @H=,R33333D@%% %  o % %  s"RiK33333D@[Sٺژ? %% %  q s %  ^ @9#Q33333D@ %  w -   %  w -  %  tN#;@ -bb<@ w unknown -S[<@yK@33333DF$o<@ZŁL@33333D %  s x { - - -  %  x s -  %  x -DU9@hkBL@33333DS[<@XŁL@33333D@%% %  y  %  - % %  S[<@XŁL@33333D~X4<Φ  %  v 33333T ~  { unknown -DU9@ikBL@33333DDU9@ikBL@33333D@ %  |  -HXv36@ikBL@33333DDU9@lS,62M@33333D@ %% %  ~ " %  DU9@ikBL@33333D%% %  % %  HXv36@lS,62M@33333D -9 X -ӤJ@%% %  % %  95@M@S?iٺژ?  %  -   %  -  %  - R@ unknown -|lޥG@JwC2N@33333D ?I@T9vO@33333D %  k - -  %  k - -  %  -Մ9@DsYN@33333D|lޥG@T9vO@33333D@%% %   %  % %  ؂F@5tdO@33333D?O4<Φ?  %  n 33333T  - unknown -Մ9@DsYN@33333DՄ9@DsYN@33333D@ %   -v&@DsYN@33333DՄ9@N7*|S@33333D@ %% %   %  Մ9@DsYN@33333D%% %  % %  @v&@N7*|S@33333D -9 X -ӤJ@%% %  }% %  ( "@$$S@t߈]^$?  %  - - 9  %  -  %   3q7 -_ unknown -U53V#M@33333D^ 9#Q@33333D %  - - -  %  - -  %  -Vr4V#M@33333DU53/ ON@33333D@%% %   %  - % %  &C,?fD@33333D[Sٺژ?  %  33333T  unknown -Vr4/ ON@33333DVr4/ ON@33333D@ %   -9Xv36cS,62M@33333DVr4/ ON@33333D@ %% %   %  Vr4/ ON@33333D%% %  % %  9Xv36cS,62M@33333D -9 X -ӤJ@%% %  v% %  ݶ7l_L@}ؿ2k?  %  - - 9  %  -  %  - @ unknown -H=,R@33333DH=,S@33333D %  { - -  %  { - -  %  -tv&L7*|S@33333DH=,S@33333D@%% %   %  % %  tv&L7*|S@33333DZ$?u߈]?  %  ~ 33333T  - unknown -tv&L7*|S@33333Dtv&L7*|S@33333D@ %   -Մ9KsYN@33333Dtv&L7*|S@33333D@ %% %   %  tv&L7*|S@33333D%% %  % %  Մ9KsYN@33333D -9 X -ӤJ@%% %  m% %  k/=Bj9O@G4<Φ?  %  -  %  9 -F C7 unknown -ܵ MQz~+F@33333DL(Lh5F@33333D %  - -  %  - -  %  -L(LF$o<@33333DyKh5F@33333D@%% %   %  - % %  LvK4P5@33333DQ4<Φ?  %  33333T  - unknown -yKF$o<@33333DyKF$o<@33333D@ %     -ZŁLS[<@33333DyKF$o<@33333D@ %% %   %  yKF$o<@33333D%% %  % %  XŁLS[<@33333D -9 X -ӤJ@%% %  d% %  `=PLb:@￀X4<Φ  %    -   %     Mm,#@  unknown -| -"MQz~+F@33333Dܵ M d/H@33333D %    -   %     %  -JwC2N d/H@33333D| -"M ?I@33333D@%% %   % -  % %  JwC2N ?I@33333D;f?;f  %  33333T   unknown -JwC2N ?I@33333DJwC2N ?I@33333D@ %     -T9vO|lޥG@33333DJwC2N ?I@33333D@ %% %   %  JwC2N ?I@33333D%% %  }% %  T9vO|lޥG@33333D -9 X -ӤJ@%% %  ]% %  j9Ok/=B@?O4<Φ??  %     %      %   -\BېR*rOr#33333D9#Q^ 33333D@%% %  U %    % %  RiKs"@33333Dٺژ?[S?  %   33333T    unknown -9#Q^ 33333D9#Q^ 33333D@ %     -9#QU5333333DV#M^ 33333D@ %% %   %  9#Q^ 33333D%% %  Y% %  V#MU5333333D@? -9 X -ӤJ@%% %  R% %  .'QNfu3ZSٺژ?  %    -   %  !   %   -H=,R*rOr#33333D\BېR33333D@%% %  R% %  H=,R33333DS?غژ  %   33333T    unknown -H=,R33333DH=,R33333D@ %      -H=,S33333DH=,R33333D@ %% %   %  H=,R33333D%% %  M% %  H=,S33333D -9 X -ӤJ@%% %  M% %  #$S6 "Z$?u߈]??  %   33333T  -  unknown -Rz~+Fܵ M33333DRz~+Fܵ M33333D@ %    -  -h5Fܵ M33333DRz~+FL(L33333D@ %% %   - %  Rz~+Fܵ M33333D%% %   -#% %  h5FL(L33333D@? -9 X -ӤJ@%% %   -@% %  ؉6Bp KpQ4<Φ?  % !  * -  " - d/H | -"M33333DRz~+Fܵ M33333D@ %% %   -% %   d/H | -"M33333D -9 X -ӤJ@%% %   -=% %  tw]HM;f?;f? %% %   -% %  *rOr#@\BېR33333D -9 X -ӤJ@%% %  " - % #  c ^  $ -V#M@U53@33333D/ ON@Wr4@33333D@  %  Z " - -V#M@^ @33333D9#Q@U53@33333D@% %  1TP@w(^>+@ٺژ?WS?  %  % & Y ' # -  %  ( % - & ) -   %  % - ( & - B   %  ( - Y % - @ - c  % *  D  + Mm,#@ ? , unknown -\BېR@@33333DH=,R@*rOr#@33333D %  ' - & - - . -   % /  0 33333T D  > 1 unknown -H=,R@@33333DH=,R@@33333D@%% %  ) - % 2  ) - 3 % %  H=,S@@33333D  %  - / - * - G   % 4  2 - I R@ F 5 unknown -L7*|S@@33333D@H=,S@wv&@33333D@%% %  + -2 % 6  . 7 % %  H=,S@@33333D -9 X -ӤJ@%% %  - -6 %  H=,S@@33333D%% %  0 -% %  C9R@  < - ? % %  cS,62M@:Xv36@33333D@}ؿ2k? %% %  > -L %  tkBL@DU9@33333D@ %  ? B - < ' - c  %  @ A B - [ :  % B  C  3q7 ` _ B - D unknown -V#M@^ @33333D9#Q@U53@33333D %  9 C - F - b - ^  %  C - 9 @ E - ^  %  C - 9 -V#M@U53@33333D/ ON@Wr4@33333D@%% %  D -  % F  [ G % %  fD@&C,33333Dٺژ?[S?  % H  < 33333T I - F - I unknown -/ ON@Wr4@33333D/ ON@Wr4@33333D@ % J  L - G -  K -cS,62M@Wr4@33333D/ ON@:Xv36@33333D@ %% %  I -1 %  / ON@Wr4@33333D%% %  K -8% %  cS,62M@:Xv36@33333D -9 X -ӤJ@%% %  L -% %  l_L@޶7@2k?}?  %  L S - M N   %  - - S - l - -  % O  n  {2 P W @ S - Q unknown -Մ9@DsYN@33333D@|lޥG@T9vO@33333D@%% %  U - % R  l S % %  -l7@k{O@33333D@ٺژ?S %% %  W - %  @v&@N7*|S@33333D@ %  [ - T U V   %  - - [ - t - -  % W  X  v 32@ [ - Y unknown -DU9@hkBL@33333D@S[<@XŁL@33333D@%% %  ] - % Z  ] - [ % %  DU9@ikBL@33333D@2k}? %% %  _ -% %  HXv36@lS,62M@33333D@ %  \ c - ] ^ .  %  - - c - | - -  % _  ~  ` R@ c - a unknown -tv&L7*|S@33333D@H=,S@33333D@%% %  e - % b  | c % %  9na*C9R@33333D@&ٺژ?FS? %% %  g - %  Մ9KsYN@33333D@ %  k - d e f .  %  - - k - - -  % g  h tN#;@ bb<@ k - i unknown -Vr4V#M@33333D@U53/ ON@33333D@%% %  m - % j  m - k % %  Vr4/ ON@33333D@غژ忟S %% %  o - %  9Xv36cS,62M@33333D@ %  s - l m   %   s - -   % n   o @ s - p unknown -JwC2N d/H@33333D@| -"M ?I@33333D@%% %  u - % q  r % %  T9vO|lޥG@33333D@Kp.?Nid? %% %  w - %  T9vO|lޥG@33333D@ %  { - s t   %  - - { - - -  % u  v  3q7 _ { - w unknown -L(LF$o<@33333D@yKh5F@33333D@%% %  } - % x  } - y % %  *2|<=@33333D@Q4<Φ %% %   - %  XŁLS[<@33333D@ %    - -   % z   { Mm,#@ - | unknown -H=,R*rOr#33333D@\BېR33333D@%% %  -Q % }  ~ % %  H=,S33333D@?\3& %% %  - %  H=,S33333D@ %    - -   %   { 9 F C7 - unknown -\BېR*rOr#33333D@9#Q^ 33333D@%% %  -Z %  - % %  `W6JL*4,;833333D@VS?ٺژ %% %  - %  V#MU5333333D@%% %  -! %  - % %   d/H | -"M33333D@?V4<Φ? %% %  - %   d/H | -"M33333D@%% %  -$% %  0 -F3x8@33333D@Q4<Φ? %% %  - %  h5FL(L33333D@%% %  -q %  *rOr#@\BېR33333D@ %  - -   %  -  %   3q7 _ - unknown -F$o<@yK@33333Dh5F@L(L@33333D %  U - - -  %  - U -  %  - -S[<@yK@33333DF$o<@ZŁL@33333D@%% %  - %  % %  =@*2|<@33333DQ4<Φ?  %  X 33333T - - unknown -S[<@XŁL@33333DS[<@XŁL@33333D@ %  - -  -DU9@hkBL@33333DS[<@XŁL@33333D@ %% %  -  %  S[<@XŁL@33333D%% %  -% %  DU9@ikBL@33333D -9 X -ӤJ@%% %  -% %  涍7@j_L@}?2k?  %  - -   %  -  %   @ - unknown - d/H@| -"M@33333D ?I@JwC2N@33333D %  M - -  %  - M -  %  - -|lޥG@JwC2N@33333D ?I@T9vO@33333D@%% %  - %  - % %  |lޥG@T9vO@33333DNid?Kp.  %  P 33333T - unknown -|lޥG@T9vO@33333D|lޥG@T9vO@33333D@ %  -  -Մ9@DsYN@33333D|lޥG@T9vO@33333D@ %% %  - %  |lޥG@T9vO@33333D%% %  -% %  Մ9@DsYN@33333D -9 X -ӤJ@%% %  -~% %  ZI#\2@ox|Q@S翎ٺژ?  %  -  %  9 F C7 - unknown -*rOr#9#Q@33333D^ \BېR@33333D %  e - -  %  - e -  %  - -U53V#M@33333D^ 9#Q@33333D@%% %  - %  % %  M*4,;8`W6J@33333DٺژWS  %  -33333T h  unknown -U53V#M@33333DU53V#M@33333D@ %  - -  -Vr4V#M@33333DU53/ ON@33333D@ %% %  - %  U53V#M@33333D%% %  -% %  Vr4/ ON@33333D -9 X -ӤJ@%% %  -u% %  95M@S翾غژ?  %  -  %   Mm,#@ - unknown -*rOr#\BېR@33333DH=,R@33333D %  ] - -  %  - ] -  %  - -H=,R@33333DH=,S@33333D@%% %  - %  - % %  H=,S@33333D\3&  %  ` 33333T - unknown -H=,S@33333DH=,S@33333D@ %  -  -tv&L7*|S@33333DH=,S@33333D@ %% %  - %  H=,S@33333D%% %  -% %  tv&L7*|S@33333D -9 X -ӤJ@%% %  -n% %  I#\2ox|Q@FS?&ٺژ?  %  s - -  %  - s   %  - -ܵ MQz~+F@33333DL(Lh5F@33333D@%% %  - %  - % %  3x8@0 -F@33333D?Q4<Φ?  %  -33333T v  unknown -L(Lh5F@33333DL(Lh5F@33333D@ %  - -  -L(LF$o<@33333DyKh5F@33333D@ %% %  - %  L(Lh5F@33333D%% %  -% %  yKF$o<@33333D@? -9 X -ӤJ@%% %  -c% %  1>LAye<@Q4<Φ?  %  l - -   %  - l    %  - -| -"MQz~+F@33333Dܵ M d/H@33333D@%% %  -% %  | -"M d/H@33333DV4<Φ?  %  o 33333T    unknown -| -"M d/H@33333D| -"M d/H@33333D@ %    -JwC2N d/H@33333D| -"M ?I@33333D@ %% %    %  | -"M d/H@33333D%% %   % %  JwC2N ?I@33333D -9 X -ӤJ@%% %   ^% %  rBN滥rH@Nid?Kp.?  %  { 33333T    unknown -\BېR*rOr#33333D\BېR*rOr#33333D@ %     -\BېR*rOr#33333D9#Q^ 33333D@ %% %    %  \BېR*rOr#33333D%% %   V% %  9#Q^ 33333D@? -9 X -ӤJ@%% %   Q% %  1TPr(^>+ٺژVS  %     -H=,R*rOr#33333D\BېR33333D@ %% %  ! P% %  H=,R33333D -9 X -ӤJ@%% %  " N% %  H=,:S\3&? %% %  )  % %  Rz~+Fܵ M33333D -9 X -ӤJ@%% %  * ?% %  𽇀0FXĔ"L?Q4<Φ?? %% %  1 >% %  0?\q-G޵,`;MV4<Φ? %% %  9 % %  .'QN@fu3@[S?ٺژ  %  < A # -  %  < = ) # -  %  + 9 C F C7 Y unknown -9#Q@^ @33333D\BېR@*rOr#@33333D %  > = -   %  33333T +  & unknown -\BېR@*rOr#@33333D\BېR@*rOr#@33333D@%% %  @  %  @ % %  H=,R@@33333DSغژ?  %  F A .   %  I  0 @ - unknown -H=,R@@33333D@H=,S@@33333D@%% %  B 3 %  % %  H=,R@@33333D -9 X -ӤJ@%% %  D 5 %  H=,R@@33333D%% %  G % %  L7*|S@wv&@33333D@u߈]?Z$ %% %  I E %  H=,S@@33333D@ %  Q   %  ] \ Q : - ^  %  tN#;@ < bb<@ Q unknown -V#M@U53@33333D@/ ON@Wr4@33333D@%% %  S % %  S % %  / ON@Wr4@33333D@S翻غژ? %% %  U K %  cS,62M@:Xv36@33333D@ %  Z ] E :  %  Z % - : %% %  [   %  ' % %  `W6J@N*4,;8@33333DWSٺژ?  %  ` 33333T  @ unknown -V#M@U53@33333DV#M@U53@33333D@%% %  ` 2 %  V#M@U53@33333D%% %  b 7% %  / ON@Wr4@33333D -9 X -ӤJ@%% %  c % %  M@95@غژ?S?  %  j   %  j N -  %  P  R@ j unknown -|lޥG@JwC2N@33333D@ ?I@T9vO@33333D@%% %  l  %  N % %  ؂F@5tdO@33333D@?O4<Φ? %% %  n  %  Մ9@DsYN@33333D@ %  r   %  r V -  %  tN#;@ X bb<@ r unknown -S[<@yK@33333D@F$o<@ZŁL@33333D@%% %  t  %  t % %  S[<@XŁL@33333D@~X4<Φ %% %  v # %  DU9@ikBL@33333D@ %  d z .  %  z ^ -  %  `   @ z  unknown -H=,R@33333D@H=,S@33333D@%% %  |  %   ^  % %  tv&L7*|S@33333D@Z$?u߈]? %% %  ~  %  tv&L7*|S@33333D@ %  \   .  %  f -  %     3q7 h _ unknown -U53V#M@33333D@^ 9#Q@33333D@%% %   % -  % %  &C,?fD@33333D@[Sٺژ? %% %   %  Vr4/ ON@33333D@ %    m -   %  o  Mm,#@  unknown -| -"MQz~+F@33333D@ܵ M d/H@33333D@%% %   %   m  % %  JwC2N ?I@33333D@;f?;f %% %   %  JwC2N ?I@33333D@ %  t -  %   9 v F C7  unknown -ܵ MQz~+F@33333D@L(Lh5F@33333D@%% %   %    % %  LvK4P5@33333D@Q4<Φ? %% %   %  yKF$o<@33333D@%% %  T %    % %  H=,R33333D@S?غژ %% %   %  H=,R33333D@%% %  W% %  RiKs"@33333D@ٺژ?[S? %% %   %  9#Q^ 33333D@%% %   %  Rz~+Fܵ M33333D@ %      %    9 F C7  unknown -Qz~+F@L(L@33333Dh5F@ܵ M@33333D %   %    -  %   -F$o<@yK@33333Dh5F@L(L@33333D@%% %   %   % %  4P5@LvK@33333D￀Q4<Φ  % !  33333T  " unknown -F$o<@yK@33333DF$o<@yK@33333D@ % #   $ -S[<@yK@33333DF$o<@ZŁL@33333D@ %% %   %  F$o<@yK@33333D%% %  % %  S[<@XŁL@33333D -9 X -ӤJ@%% %  % %  b:@`=PL@X4<Φ?  %  % & '  % (    Mm,#@ ) unknown -Qz~+F@ܵ M@33333D d/H@| -"M@33333D %  & * -  %   %  + - d/H@| -"M@33333D ?I@JwC2N@33333D@%% %   % ,  - % %   ?I@JwC2N@33333D;f;f  % .  33333T  / unknown - ?I@JwC2N@33333D ?I@JwC2N@33333D@ % 0  +  1 -|lޥG@JwC2N@33333D ?I@T9vO@33333D@ %% %   %   ?I@JwC2N@33333D%% %  % %  |lޥG@T9vO@33333D -9 X -ӤJ@%% %  % %  k/=B@j9O@O4<Φ??  %    %   2  %  3 -*rOr#9#Q@33333D^ \BېR@33333D@%% %   % 4  5 % %  s"@RiK@33333D\S? ٺژ  % 6  33333T   7 unknown -^ 9#Q@33333D^ 9#Q@33333D@ % 8   9 -U53V#M@33333D^ 9#Q@33333D@ %% %   %  ^ 9#Q@33333D%% %  % %  U53V#M@33333D@? -9 X -ӤJ@%% %  t% %  fu3.'QN@ٺژ?[S?  %  2 -  %   %  : -*rOr#\BېR@33333DH=,R@33333D@%% %  % %  H=,R@33333Dغژ心S  % ;   33333T  < unknown -H=,R@33333DH=,R@33333D@ % =  :  > -H=,R@33333DH=,S@33333D@ %% %   %  H=,R@33333D%% %  % %  H=,S@33333D -9 X -ӤJ@%% %  o% %  8 "#$S@u߈]?Z$?  % ?  33333T  @ unknown -ܵ MQz~+F@33333Dܵ MQz~+F@33333D@ % A   B -ܵ MQz~+F@33333DL(Lh5F@33333D@ %% %   %  ܵ MQz~+F@33333D%% %  % %  L(Lh5F@33333D@? -9 X -ӤJ@%% %  b% %  p K׉6B@￀Q4<Φ  % C    D -| -"MQz~+F@33333Dܵ M d/H@33333D@ %% %   % %  | -"M d/H@33333D -9 X -ӤJ@%% %  _% %  Msw]H@;f;f? %% %   S% %  \BېR*rOr#33333D -9 X -ӤJ@%% %   P% %  L>Q3{F""[S?ٺژ? %% %   O% %  ҿzRb' غژ忇S  %  & % E - # -  % F  C 33333T G  % H unknown -9#Q@^ @33333D9#Q@^ @33333D@%% %  ' % %  RiK@s"33333D ٺژ\S  %  - (   % I  0  Mm,#@ J unknown -\BېR@@33333D@H=,R@*rOr#@33333D@%% %  ) 4 % K  E L % %  \BېR@*rOr#@33333D -9 X -ӤJ@%% %  + 4 %  \BېR@*rOr#@33333D%% %  .  % %  H=,S@@33333D@ %% %  0 F %  H=,R@@33333D@ %  8 E   %  A @ 8 - :  % M  G  3q7 _ 8 N unknown -V#M@^ @33333D@9#Q@U53@33333D@%% %  : $ % O  : P % %  fD@&C,33333D@ٺژ?[S? %% %  < J %  / ON@Wr4@33333D@%% %  C 3 %  9#Q@^ @33333D%% %  E 6% %  V#M@U53@33333D@? -9 X -ӤJ@ %  L Q R   %  L -  % S   T @ L U unknown - d/H@| -"M@33333D@ ?I@JwC2N@33333D@%% %  N  % V  W % %  |lޥG@T9vO@33333D@Nid?Kp. %% %  P  %  |lޥG@T9vO@33333D@ %  T X Y   %  T -  % Z  [  3q7 _ T \ unknown -F$o<@yK@33333D@h5F@L(L@33333D@%% %  V  % ]  V ^ % %  =@*2|<@33333D@Q4<Φ? %% %  X ! %  S[<@XŁL@33333D@ %  \ -  % _    ` Mm,#@ \ a unknown -*rOr#\BېR@33333D@H=,R@33333D@%% %  ^  % b  c % %  H=,S@33333D@\3& %% %  `  %  H=,S@33333D@ %  d  -  % d  ` 9  F C7 d e unknown -*rOr#9#Q@33333D@^ \BېR@33333D@%% %  f  % f  f g % %  M*4,;8`W6J@33333D@ٺژWS %% %  h  %  U53V#M@33333D@%% %  m  % h  t i % %  | -"M d/H@33333D@V4<Φ? %% %  o  %  | -"M d/H@33333D@%% %  t % %  3x8@0 -F@33333D@?Q4<Φ? %% %  v  %  L(Lh5F@33333D@%% %  {  %  \BېR*rOr#33333D@ %  X    %  X % j   %  k -Qz~+F@L(L@33333Dh5F@ܵ M@33333D@%% %   % l  m % %  0 -F@3x8@@33333DQ4<Φ?  % n  33333T [   o unknown -h5F@L(L@33333Dh5F@L(L@33333D@ % p   q -F$o<@yK@33333Dh5F@L(L@33333D@ %% %   %  h5F@L(L@33333D%% %  % %  F$o<@yK@33333D@? -9 X -ӤJ@%% %  % %  Aye<@1>L@?Q4<Φ?  %  Q  j - '  %  Q * '  %  r -Qz~+F@ܵ M@33333D d/H@| -"M@33333D@%% %  % %   d/H@| -"M@33333DV4<Φ  % s  T 33333T  & t unknown - d/H@| -"M@33333D d/H@| -"M@33333D@ % u  r  v - d/H@| -"M@33333D ?I@JwC2N@33333D@ %% %   %   d/H@| -"M@33333D%% %  % %   ?I@JwC2N@33333D -9 X -ӤJ@%% %  % %  滥rH@rBN@Kp.Nid?  % w  ` 33333T  x unknown -*rOr#\BېR@33333D*rOr#\BېR@33333D@ % y   z -*rOr#9#Q@33333D^ \BېR@33333D@ %% %   %  *rOr#\BېR@33333D%% %  % %  ^ 9#Q@33333D@? -9 X -ӤJ@%% %  s% %  u(^>+1TP@WSٺژ?  % {  3  | -*rOr#\BېR@33333DH=,R@33333D@ %% %  % %  H=,R@33333D -9 X -ӤJ@%% %  p% %  H=,:S@\3&<? %% %  % %  ܵ MQz~+F@33333D -9 X -ӤJ@%% %  a% %  WĔ"L0F@Q4<Φ?? %% %  `% %  ޵,`;M/?\q-G@V4<Φ  % }  9 G F C7 ~ unknown -9#Q@^ @33333D@\BېR@*rOr#@33333D@%% %  5 %   % %  9#Q@^ @33333D@? -9 X -ӤJ@%% %  !% %  H=,R@@33333D@Sغژ? %% %  G %  \BېR@*rOr#@33333D@%% %  #% %  `W6J@N*4,;8@33333D@WSٺژ? %% %  I %  V#M@U53@33333D@ %  & % R - '  %  T  Mm,#@ unknown -Qz~+F@ܵ M@33333D@ d/H@| -"M@33333D@%% %   %  R % %   ?I@JwC2N@33333D@;f;f %% %   %   ?I@JwC2N@33333D@ %    Y -   %  9 [ F C7 unknown -Qz~+F@L(L@33333D@h5F@ܵ M@33333D@%% %   %  % %  4P5@LvK@33333D@￀Q4<Φ %% %   %  F$o<@yK@33333D@%% %   %   % %  H=,R@33333D@غژ心S %% %    %  H=,R@33333D@%% %   % %  s"@RiK@33333D@\S? ٺژ %% %    %  ^ 9#Q@33333D@%% %   %  ܵ MQz~+F@33333D@ %  33333T    unknown -Qz~+F@ܵ M@33333DQz~+F@ܵ M@33333D@ %     -Qz~+F@L(L@33333Dh5F@ܵ M@33333D@ %% %    %  Qz~+F@ܵ M@33333D%% %   % %  h5F@L(L@33333D@? -9 X -ӤJ@%% %   % %  ׉6B@p K@Q4<Φ?  %  k '  -Qz~+F@ܵ M@33333D d/H@| -"M@33333D@ %% %  * % %   d/H@| -"M@33333D -9 X -ӤJ@%% %  + % %  sw]H@M@;f;f?? %% %  2 % %  *rOr#\BېR@33333D -9 X -ӤJ@%% %  3 r% %  6{F""L>Q@ ٺژ\S? %% %  : q% %  b' ҿzR@Sغژ? %% %  E "% %  RiK@s"33333D@ ٺژ\S %% %  G H %  9#Q@^ @33333D@%% %  R  %  Y % %   d/H@| -"M@33333D@V4<Φ %% %  T  %   d/H@| -"M@33333D@%% %  Y % %  0 -F@3x8@@33333D@Q4<Φ? %% %  [  %  h5F@L(L@33333D@%% %  `  %  *rOr#\BېR@33333D@%% %  j % %  Qz~+F@ܵ M@33333D -9 X -ӤJ@%% %  k % %  0F@WĔ"L@Q4<Φ? %% %  r % %  /?\q-G@޵,`;M@V4<Φ? %% %   %  Qz~+F@ܵ M@33333D@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:43 2022?ư>|= -MDR__CG3B583_XMNK9M6T2J22H96M63RTHA9VE6PV29NUSJQ8UBDCGV6WJCMKM65U2BU3K6QHYD5VK transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 259929 -$end 'sab' -$end 'Design_89.setup/NativeGeometryFiles' -$begin 'Design_92.setup/NativeGeometryFiles' -NumFiles= 12 -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0000006.sab -BIN000000273163 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     -p= -`p= -`GzDb@p= -`@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6 Stator_Yoke lump%   -p= -`p= -`GzDb@p= -`@GzD@ transform% ???? rgb_color% st% - %    ???properties%  ansoft% %    Stator_Yoke -shell%   -p= -`p= -`GzDb@p= -`@GzD@% % %  -   Stator_Yoke%%% %   ATTRIB_XACIS_ID%141135 face%     -p= -`p= -`GzD@b@p= -`@GzD@ -Ch:;S?M{rпo7?%%% %    %141135%%% %    ATTRIB_XSTEP_PRODUCT_ID%16 Stator_Yokeid%% %    %      -p= -`p= -`GzDb@p= -`@GzD -SÿAh:;?M{rпo7? loop%    -\q\\q\GzD@\q\@\q\@GzD@   -plane% surface%  %= ףp=Z@GzD@ar^?@@ %%% %  - %16 Stator_Yoke%%% %  %6 Stator_Yoke%%% %  %141536%% %    %      -?ZHج &T3@GzD-2`@p= -`@GzD@  %  ! -p= -`p= -`GzDb@p= -`@GzD  % %  :ș< ףp=Z@GzDar^<@ %%% %  %14-1 %  " # -`@GzD@a@@GzD@   coedge%  $ % & '  %%% %   %141538%% %  (   % ) * +   -?ZHp= -`GzD-2`@ڬ &T3GzD@  % , -  -?ZHج &T3@GzD-2`@p= -`@GzD@   cone% %  =24W@24W@? ?p= -`@ - %%% %  %14-1 % . / 0 -\q\\q\GzD\q\@\q\@GzD   %  1 2 3 4 -   %  5 6 -_R2\@GzD@P2_@GzD@   %  # # 7 8   %  9  : ;   %   < = >   %  ? @  ' - A  edge% B C D iU?  E unknown -zNA>Y@cAC@GzD@ -w`-Z@{]F@GzD@%%% %   %141584%% %  F  - % G H I   -p= -`j|mZGzD` -Tj|mZ@GzD@  % J K  -?ZHp= -`GzD-2`@ڬ &T3GzD@  %%% %  %14-1 %  L M N O -  %%% %  %14-1 %  P Q -`@GzDa@@GzD   %  R S T U  %  V ! W X -   %  ! Y Z [ -   %  \ ] ! 4 +  % ^ _;Iؿ `iq? ! a unknown -?ZHp= -`GzD-2`@ڬ &T3GzD %  b c -`R2_GzD@ P2\GzD@   %  6 6 d e "  %  7 7 # 8 - f  % g h9 h-DT!@ # i unknown -`@GzD@a@@GzD@ %  j $ k l   %  m n $ ; - o  % p D qf@T@ $ r unknown -v`-Z@~@@GzD@Ed[@C@GzD@ %  % s t u   %  v w % > - x  % y z C@T@ % { unknown -_39X@{]F@GzD@EmAY@n@6J@GzD@ %  T & w | - A  %  & T m } - A  % ~ @  -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@ -%% %  'x vertex%  '  %  '  ellipse% -curve%  GzD@J6sY@s]F@=? - - iU?%%% %  ) %141584%% %  *  %   - -`R2_GzD P2\GzD@  %  * -p= -`j|mZGzD` -Tj|mZ@GzD@  %%% %  +%14-1 %  ] \ - +  %  - -   %  - -   %  - O b  %  60p? +q5+ @ N unknown -?ZHج &T3@GzD@-2`@p= -`@GzD@ %  -_R2\@GzDP2_@GzD   %  Q Q /  %  0  %  0  %  @ ? 0 U - A  %   ViU? 0 unknown -{NA>Y@kAC@GzD -w`-Z@{]F@GzD %  1   %  1 X  %   -9 -p _,9 -p? W unknown -%^вN=%`GzD?ZH8q_GzD %  2   %  2 [  %  `,9 -p 8 -p? Z unknown --2`@۬ &T3GzD'XQa@q%GzD %  K 3 - +  %  3 K - + %% %  4 %  4  %  4 % %  GzD?NM=p= -`?  %  -p= -`p= -`GzD@b@p= -`@GzD@   %  c c 5  %  d d 6 e -  %  H -DT!@ 6 unknown -_R2\@GzD@P2_@GzD@ %  7 -`@GzD@a@@GzD@ -%% %  8 %  8 % %  @a@GzD@ar^<@?  %  9   %  9 l -  %  q iU? 9 unknown ->veHZ@2Zx9@GzD@66@[@~@@GzD@ %  : @ } o  %  : o  %  m -v`-Z@~@@GzDEd[@C@GzD@ -%% %  ;y %  ; % %  EdZ@A@GzD@Rď %  % %  EmAX@n@6H@GzD@hElR<`~ ?삁<yoxG@_9? - -@T@ %   C0/>:u? ? unknown -NA>Y@{]F@GzDNA>Y@{]F@GzD@ %  D 0/>:u? @ unknown - -w`-Z@kAC@GzD -w`-Z@kAC@GzD@%%% %  A%14-1 %  A  - -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  B '%1414299%% %  C -point%  NA>Y@{]F@GzD@%% %  D %   -w`-Z@kAC@GzD@%%% %  G *%141584%% %  H  %   - -_R2\@GzDP2_@GzD@  %  H -`R2_GzD P2\GzD -% %  @Q2]?=VcEJ-? ?@ %%% %  I%14-1 %  - I  %  K b  %  ;Iؿ iq? unknown -?ZHp= -`GzD@-2`@ڬ &T3GzD@ %  M L     %    L   %  GzD GzD@ L  tangent --2`@ڬ &T3@GzD-2`@ܬ &T3@GzD@ %  -  M   %  GzD GzD@ M  tangent -?ZHa4B_@GzD?ZHa4B_@GzD@ %   N   - b  %  N    - b %% %   O %  O  %   % %  GzD@? 1xK=p= -`?  %   -`R2_GzD P2\GzD   %    P  %  Q -   %  9 -DT!@ Q  unknown -`@GzDa@@GzD %   R ! "  %  w v R - x  % #  $f@T@ R % unknown -_39X@{]F@GzDEmAY@n@6J@GzD %  S & ' (  %  n m S - o  % ) * /@T@ S + unknown - w`-Z@~@@GzDEd[@C@GzD%% %  , U % - } . % / | 0% %  GzDQbr< -BL?v`-Z@wAC@=? - -ViU? %  1 V 2 3 -   %  4 5 V - 6  % 7 Q 8Q? V 9 unknown -@TI7ˇ`GzD%^вN֕EN]GzD %  : W ]  %  W : 4 ;  %  : < -%^вN=%`GzD?ZH8q_GzD@ = %% %  X % > ?% %  \0 -J8T`GzDar^<͐BhZ`sT#@?  %  Y   @ -   %  A B Y - C  % D EQ Q? Y F unknown -'XQa@q%GzDb@q%@GzD %  G Z B H  %  Z G \  %  Z I --2`@ܬ &T3GzD'XQa@q%GzD@ J %% %  [ % K L% %  ia@I4GzDar^<,[S6@?  % M GzD `GzD@ \ N tangent --2`@ܬ &T3GzD-2`@ڬ &T3GzD@ % O _GzD GzD@ ] P tangent -?ZHa4B_GzD?ZHa4B_GzD@%%% %  ^ 4%1414394%% %  _2 %  ?ZHa4B_GzD%% %  `1 %  -2`@ڬ &T3GzD%%% %  b%14-1 %  c -  % Q Rh/¼ R-DT!@ c S unknown -`R2_GzD@ P2\GzD@ %  d -_R2\@GzD@P2_@GzD@ -%% %  e % T e U% %  ?Q2]@GzD@ar^<@VcEJ-@?  % V <   - -`@GzDa@@GzD@ % %  @a@?@? ?@ %% %  h" %  a@GzD@ %  W j X Y   %  Z [ j - \  % ]  ^@T@ j _ unknown -66@[@kl$1@GzD@۠U\@2,Ǩ9@GzD@ %  ' k n -  %  k ' Z ` -  % a b -=veHZ@2Zx9@GzD66@[@~@@GzD@ c -%% %  d lz % e ` f% %  GzD@eF|olDUfв<>veHZ@~@@=? - -iU? % g * q0/>:u? h unknown -CveHZ@~@@GzDCveHZ@~@@GzD@%%% %  o%14-1 % i j o  - -v`-Z@~@@GzDEd[@C@GzD@ % %  EdZ@A@o_E;f@;f@? ?@ - %%% %  p ;%1414300%% %  k q %  CveHZ@~@@GzD@ %  s l m n   %  o p s - q  % r s f@T@ s t unknown -; -V@&pM@GzD@r M,X@{P@GzD@ %  ! t p u -  %  t ! v -  % v w -W@JdJ@GzD_39X@&pM@GzD@ x -%% %  y u % z {% %  GzD@?(h`윲<W@&pM@=? - -iU? % | z $0/>:u? } unknown -_39X@LdJ@GzD_39X@LdJ@GzD@%%% %  x%14-1 % ~  x  - -_39X@{]F@GzDEmAY@n@6J@GzD@ % %  EmAX@n@6H@o_E;f@;f@? ?@ - %%% %  y >%1414391%% %   z! %  _39X@LdJ@GzD@%% %   | straight% %  NA>Y@{]F@GzD@@ - -0/>:u?%% %   }% %   -w`-Z@kAC@GzD@@ - -0/>:u?%% %   D %      - -ѹɒ&y[@GzDn X -\q\@GzD@ %%% %  C%1416808%%% %  D%1416809%% %    %   -_R2\@GzDP2_@GzD -% %  ?Q2]@?@VcEJ-@? ?@  %  H -`R2_GzD@ P2\GzD@ - %    -  %     - I  %     - I  %    b  %  DU p] unknown -p= -`j|mZGzD@` -Tj|mZ@GzD@ %   G  - b  %   :  - b %% %    %   %    %    -   %  60p? +q5+ @  a unknown -?ZHڬ &T3@GzD-2`@p= -`@GzD %      %   @   %    --2`@q%@GzD'XQa@ܬ &T3@GzD@  %% %  V %   % %  -2`@ܬ &T3@=? -t=:R -t=:R@ %       %      %  -  -%^вN:q_@GzD?ZH=%`@GzD@  %% %  W %   % %  ?ZHa4B_@= -t=:R -t=:R@ %     b  %  9 -p 49 -p?   unknown -%^вN:q_@GzD@?ZH=%`@GzD@ %    b  %  ,9 -p 8 -p?   unknown --2`@q%@GzD@'XQa@۬ &T3@GzD@%%% %  O%1414298%% %  ) %  -2`@ڬ &T3@GzD@%% %  * %  ?ZHa4B_@GzD@ %      %     -  %  H< -DT!@  unknown -_R2\@GzDP2_@GzD %  f -`@GzDa@@GzD -%% %  S %  % %  @a@GzDar^?@?  %      %  " -  %  $ iU?  unknown -W@LdJ@GzD_39X@&pM@GzD%% %    %  % %  EmAX@n@6H@GzD!;&Yr;zF?^&aI@! -9? - -f@T@ %      %  ( -  %   *iU?  unknown -=veHZ@2Zx9@GzD66@[@~@@GzD%% %   R %  % %  EdZ@A@GzDVFg.?A]@?O? ? - -/@T@%%% %  U%1414395%% %   = %   -w`-Z@kAC@GzD%% %   > %  NA>Y@{]F@GzD %     -   %    3   %  89 -p 88 -p? 2  unknown -g -T֕EN]GzD6Sj|mZGzD %   ; - 6  %     - 6  %  4  -@TI7ˇ`GzD%^вN֕EN]GzD@  %% %   %  % %  Qؓ nO^GzDt #?  %    %  GzD GzD@ 4  tangent -%^вN=%`GzD%^вN=%`GzD@ %    = -%^вN=%`GzD?ZH8q_GzD@ % %  \0 -J8T`=͐BhZ`sT#@? #@ %% %  3 %  %^вN=%`GzD %  E8 -p ,9 -p?   unknown --2`@q%@GzD'XQa@۬ &T3@GzD %     - C  %   H - C  %  B  -'XQa@q%GzDb@q%@GzD@  %% %   %  % %  a@GzD&@?  %    %  GzD GzD@ B  tangent -'XQa@q%GzD'XQa@q%GzD@ %    J --2`@ܬ &T3GzD'XQa@q%GzD@ % %  ia@I4=?,[S6@? $@ %% %  < %  'XQa@q%GzD%% %  Y% %  -2`@ܬ &T3= -t=:R -t=:R@%% %  X% %  ?ZHa4B_=? -t=:R -t=:R@%% %   %  % %  @Q2]GzD@ar^<=VcEJ-? %% %  # %  QZM&^@GzD@%% %   %       %    Y -   %  ^ iU?  unknown -.w[@ѹɒ&@GzD@y[@kl$1@GzD@ %   ` \  %     \  %  Z  -66@[@kl$1@GzD۠U\@2,Ǩ9@GzD@  -%% %   { %   % %  ۠U[@2,Ǩ5@GzD@Yiry:u?  unknown -66@[@2Zx9@GzD66@[@2Zx9@GzD@%%% %  %14-1 %    c - -=veHZ@2Zx9@GzD66@[@~@@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  l%1414301%% %    %  66@[@2Zx9@GzD@%% %   p% %  CveHZ@~@@GzD@@ - -0/>:u?%% %   ` %      - -kl$1@۠U\GzD,Ǩ9@66@[GzD@ %%% %  q%1416811 %       %    n -   % -  sҨiU?  unknown -EU@Fq.S_P@GzD@@ -V@ |.Q@GzD@ %     q  %   u q  %  o  -; -V@&pM@GzDr M,X@{P@GzD@  -%% %    %  % %  r M,W@ -FN@GzD@,v<8!v < ZLm1o @? - -f@T@ %   0/>:u?  unknown -W@&pM@GzDW@&pM@GzD@%%% %  %14-1 %   x - -W@JdJ@GzD_39X@&pM@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  u%1414390%% %     %  W@&pM@GzD@%% %   % %  _39X@LdJ@GzD@@ - -0/>:u?%% %   I %   q   - -; -V@&pM@GzDr M,X@{P@GzD@ %%% %  z%1416988%%% %  |%1414547%%% %  }%1414546%%% %  %141579%% %   E %      - -kl$1@66@[@GzD2,Ǩ9@۠U\@GzD@  %  ! -ѹɒ&y[@GzDn X -\q\@GzD@  -% %  Lz *\q[@o_E;f@;f@? ?@ -  % " #h/< #-DT!@  $ unknown -`R2_GzD P2\GzD %  1  I  %  % &  '  % ( )GzD GzD@ * tangent -b -Tj|mZ@GzD` -Tj|mZ@GzD@ %  2 +    % , GzD GzD@ - tangent -g -Tj|mZGzDf -Tj|mZGzD@ %   + . - b  %   % / - b %% %  0  % 1 2 % 3 . 4 % 5 8 -p ,9 -p? G 6 unknown --2`@۬ &T3GzD@'XQa@q%GzD@ %    7 b  % 8 ,9 -p  -9 -p? : 9 unknown -%^вN=%`GzD@?ZH8q_GzD@%%% %  %1414298%% %  % %  ?ZHa4B_GzD@%% %  & %  -2`@ڬ &T3GzD@ %   : -  -  %% %  ;  %    A    % <     --2`@q%@GzD'XQa@ܬ &T3@GzD@ % %  ia@I4@=,[S6? $@ %% %  : %  -2`@ڬ &T3@GzD %   - = >   % ? 49 -p @9 -p? - A unknown -%^вN:q_@GzD?ZH=%`@GzD % B     -%^вN:q_@GzD?ZH=%`@GzD@ % %  N0 -J8T`@=?BgZ`sT#? $@ %% %  9 %  ?ZHa4B_@GzD %  = C   - D  % E Q FQ?  G unknown -?TڕEN]@GzD@%^вNI7ˇ`@GzD@%% %   % H  I% %  N0 -J8T`@GzD@ar^?BgZ`sT#?  %  B A   - C  % J Q Q?  K unknown -'XQa@q%GzD@b@q%@GzD@%% %   % L  M% %  ia@I4@GzD@ar^?,[S6? %% %  T % N  O% %  ?Q2]@GzDar^?@VcEJ-@? %% %   %  a@GzD %  P  Q R  %  p o   - q  % S  TK@T@  U unknown -? -V@&pM@GzDr M,X@{P@GzD%% %  V " % W  X% %  GzD/d' 7 ?_39X@RdJ@=? - -iU?%%% %  # %1414396%% %  Y $? %  _39X@LdJ@GzD %  & Z [ \  %  [ Z &  - \  % ] ^ @T@ & _ unknown -66@[@kl$1@GzD۠U\@2,Ǩ9@GzD%% %  ` (Q % a  b% %  GzDK[YGjؽd?66@[@=Zx9@=? - -iU?%%% %  ) %1414486%% %  c * %  CveHZ@~@@GzD%%% %  - %1416996%%% %  / %1416997 %  : 1 & d -   % e )DU r] 1 a unknown -p= -`j|mZGzD` -Tj|mZ@GzD %  + 2 5    %  2  -g -T֕EN]GzD6Sj|mZGzD@ f %% %  3 % g  h% %  6bV:8 d\GzDar^<q&N#@P@?  %  5 4  7 - 6  % i 8GzD jGzD@ 5 k tangent -5=AS:T֕EN]GzD5=AS:T֕EN]GzD@ % l m 6   -@TI7ˇ`GzD%^вN֕EN]GzD@ % %  Qؓ nO^?t #? ?&@ %% %  84 %  5=AS:T֕EN]GzD%% %  ;\ % n 7 o% %  %^вN=%`= -t=:R -t=:R@%% %  < % p q   f -g -T֕EN]GzD6Sj|mZGzD@ %% %  @% %  ia@I4@GzDar^<,[S6?  % r GzD EGzD@ A s tangent -'XQa@q%@GzD'XQa@q%@GzD@ % t u C   -'XQa@q%GzDb@q%@GzD@ % %  a@?&@? ?&@ %% %  E; %  'XQa@q%@GzD%% %  H` % v  w% %  'XQa@q%=? -t=:R -t=:R@%% %  I%% %  R$ %  QWM&^GzD@ %  x W y z   %  { | W  - }  % ~  9@T@ W  unknown -y[@ X -@GzD@\q\@ѹɒ&@GzD@ %  [ X [  -   %  X [ {  -   %    -.w[@ѹɒ&@GzDy[@kl$1@GzD@  -%% %   Y| %   % %  GzD@P0w:u? [  unknown -.w[@kl$1@GzD.w[@kl$1@GzD@%%% %  \%14-1 %   \   - -66@[@kl$1@GzD۠U\@2,Ǩ9@GzD@ % %  ۠U[@2,Ǩ5@o_E;f@;f@? ?@ - %%% %  ] %1414302%% %   ^ %  .w[@kl$1@GzD@%% %   `q% %  66@[@2Zx9@GzD@@ - -0/>:u?%% %   b"%%% %  e %1416813%%% %  g %1414494%%% %  i %141608%% %   ja %      - -r M,X&pM@GzD; -V{P@GzD@  %   j -kl$1@۠U\GzD,Ǩ9@66@[GzD@  -% %  ,Ǩ5@۠U[o_E;f@;f@? ?@ -  %  l      %    l  -   %   g@T@ l  unknown -_bT@ |.Q@GzD@z*U@kn?`S@GzD@ %  Q m   -   %  m Q o  -   %    -EU@Fq.S_P@GzD@ -V@ |.Q@GzD@  -%% %   n %   % %  GzD@7#G$xt:u?   unknown -@ -V@Gq.S_P@GzD@ -V@Gq.S_P@GzD@%%% %  q%14-1% %  r M,W@ -FN@o_E;f@;f@? ?@ - %%% %  r %1414389%% %   s %  @ -V@Gq.S_P@GzD@%% %   u% %  W@&pM@GzD@@ - -0/>:u?%% %   wH%%% %  z %1416986%%% %  | %1414551%%% %  ~ %141585%% %   J %      - -EmAYa@6JGzD_39Xm]FGzD@ %%% %   %141580%% %   F %  w    - -Cv`-Z@GzD~@Ed[@GzD@  %    -kl$1@66@[@GzD2,Ǩ9@۠U\@GzD@  -% %  2,Ǩ5@۠U[@o_E;f@;f@? ?@ - %%% %  %14-1 %       %% %  U %   % %  @Q2]GzDar^?=VcEJ-?  %     / '  %     d '  %  % q -b -Tj|mZ@GzD6SڕEN]@GzD@  %% %  Z %   % %  b -Tj|mZ@=? -t=:R -t=:R@ %     .  %% %  [% %  g -Tj|mZ= -t=:R -t=:R@ %  j8 -p 89 -p? +  unknown -g -T֕EN]GzD@6Sj|mZGzD@ %  N9 -p F8 -p? %  unknown -a -Tj|mZ@GzD@6SڕEN]@GzD@%%% %   %1414298%% %  - %  ` -Tj|mZ@GzD@%% %  . %  f -Tj|mZGzD@%% %  % %  ia@I4GzD@ar^?,[S6@?  %  jQ Q?   unknown -@TI7ˇ`GzD@%^вN֕EN]GzD@%% %  % %  \0 -J8T`GzD@ar^?͐BhZ`sT#@?  %       %%% %   %1414394%% %   %     > - D  %  @GzD GzD@ =  tangent -%^вN=%`@GzD%^вN=%`@GzD@%% %   %   % %  N0 -J8T`@GzDar^<BgZ`sT#? %% %   %      - D  %  C m -?TڕEN]@GzD%^вNI7ˇ`@GzD@  %% %   %  / % %  Qۓ nO^@GzD@?t #@? %% %  + %  %^вN=%`@GzD@%% %  % %  a@GzD@?&@? %% %  ( %  'XQa@q%@GzD@%% %   %  QZM&^@GzD %       %     R -   %  T iU?   unknown -EU@Gq.S_P@GzD@ -V@ |.Q@GzD%% %    %   % %  r M,W@ -FN@GzDEТ޳!̟?f@}5p? - -K@T@%%% %   "%1414397%% %   @ %  W@&pM@GzD%%% %   $%1416999 %       %     \ -   %   ^&iU?   unknown -.w[@ѹɒ&@GzDy[@kl$1@GzD%% %   P %  \ % %  ۠U[@2,Ǩ5@GzDhE|9|?.5u? -"|g? - -@T@%%% %   (%1414485%% %    %  66@[@2Zx9@GzD%%% %   *%1417174 %  8 -p )N9 -p? &  unknown -a -Tj|mZ@GzD6SڕEN]@GzD%% %   % %  6bV:8 d\=?q&N#@P@? $@ %% %  5 %  f -Tj|mZGzD%% %  ] %  7 % %  5=AS:T֕EN]=? -t=:R -t=:R@%% %   %  I D   -?TڕEN]@GzD%^вNI7ˇ`@GzD@ %% %  0 %  %^вN=%`GzD@%% %   %   '   -b -Tj|mZ@GzD6SڕEN]@GzD@ %% %  a% %  'XQa@q%@= -t=:R -t=:R@%% %   %      - -整[@X -GzD\@X -@GzD@ %% %  ' %  'XQa@q%GzD@ %        %     z -   %   eiU? y  unknown -整[@X -GzD@\@X -@GzD@ %      }  %      }  %  {  -y[@ X -@GzD\q\@ѹɒ&@GzD@  -%% %   } %   % %  \q[@Lz *@GzD@mcܚl;G%<!?*?@? - -9@T@ %   0/>:u?   unknown -y[@ѹɒ&@GzDy[@ѹɒ&@GzD@%%% %  %14-1 %      - -.w[@ѹɒ&@GzDy[@kl$1@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   Y%1414303%% %    %  y[@ѹɒ&@GzD@%% %   r% %  .w[@kl$1@GzD@@ - -0/>:u?%% %   # %      - -ҹɒ&\q\GzDfX -y[GzD@ %%% %   ^%1416815%%% %   `%1414495%%% %   b%141545%%% %   j%141609%% %  - b %      - -V X -@\q\GzDѹɒ&@y[GzD@  %    -r M,X&pM@GzD; -V{P@GzD@  -% %  r M,W -FN@o_E;f@;f@? ?@ - %%% %  %14-1 %        %        %      -   %   ިiU?   unknown -t,uDw2S@u,uDw2S@GzD@_bT@_bT@GzD@ %        %        %    -_bT@ |.Q@GzDz*U@kn?`S@GzD@ ! -%% %  "  % #  $% %  z*T@kn?`R@GzD@T^*6<"ۘ<hCF -@o? - -g@T@ % %  0/>:u?  & unknown -EU@ |.Q@GzDEU@ |.Q@GzD@%%% %  %14-1 % ' (    - -EU@Fq.S_P@GzD@ -V@ |.Q@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  - n%1414388%% %  )  %  EU@ |.Q@GzD@%% %  * ~% %  @ -V@Gq.S_P@GzD@@ - -0/>:u?%%% %   s%1416984%%% %   u%1414550%%% %   w%141583%%% %   %141586%% %  + K % , - .  / - -۠U\2,Ǩ9GzD66@[kl$1GzD@  % 0 1  -EmAYa@6JGzD_39Xm]FGzD@  -% %  EmAXa@6Ho_E;f@;f@? ?@ - %%% %   %141581%% %  2 G % 3 4  -Cv`-Z@GzD~@Ed[@GzD@  -% %  AEdZ@o_E;f@;f@? ?@ - %%% %  %14-1 %  5 6 7 8   %  9 ! : ; -   %  ! 9 < = -   %  > ? !  - @  % A B C0/>:u?  D unknown -ѹɒ&y[@GzDѹɒ&y[@GzD@%% %  # %  QWM&^GzD %  & % C  ' % %  6bV:8 d\@=q&N#@dP? $@ %% %  )6 %  ` -Tj|mZ@GzD%% %  .% %  6bV:8 d\GzD@ar^?q&N#@P@? %% %  /% %  6bV:8 d\@GzD@ar^?q&N#@dP? %% %  7% %  Qؓ nO^GzD@?t #?  %  C = :  - D  % E Q @Q? : F unknown -?TڕEN]@GzD%^вNI7ˇ`@GzD%% %  >_% %  %^вN=%`@=? -t=:R -t=:R@%% %  @8 %  %^вN=%`@GzD % G FGzD GzD@ C H tangent -/=AS:TڕEN]@GzD/=AS:TڕEN]@GzD@% %  Qۓ nO^@?t #@? ?&@ %% %  F, %  /=AS:TڕEN]@GzD@ %  I P J K  %    P  -   % L  My@T@ P N unknown -_bT@ |.Q@GzDz*U@kn?`S@GzD%% %  O R % P  Q% %  GzD_5i"zY@]FGzD -w`-Z@pACGzD@  % d  u -整[@X -GzD\@X -@GzD@  -% %  ITTS@TTS@? ?\@ -  %  e x f g   %  h i x  - j  % k  l@T@ x m unknown -y[@ҹɒ&GzD@\q\@X -GzD@ %  T y |  -   %  y T h n -  %% %  o z~ % p n q% %  GzD@m Gbw_w<[@X -@ ? - -eiU? % r W 0/>:u?  s unknown -整[@X -@GzD整[@X -@GzD@%%% %  }%14-1 % t u }   - -y[@ X -@GzD\q\@ѹɒ&@GzD@ % %  \q[@Lz *@o_E;f@;f@? ?@ - %%% %  ~ %1414304%% %  v  %  整[@X -@GzD@%% %  w % %  y[@ѹɒ&@GzD@@ - -0/>:u?%% %  x O % y z {  | - -۠U\kl$1@GzD66@[2,Ǩ9@GzD@ %%% %   %1416817%%% %   %1414496%%% %   %141546%% %  } $ % ~     - -X -\GzDX -@整[GzD@  %    -ҹɒ&\q\GzDfX -y[GzD@  -% %  lMz *\q[o_E;f@;f@? ?@ - %%% %   %141610%% %   c %      - -N,Ǩ9۠U\GzDǟkl$166@[GzD@  %    -V X -@\q\GzDѹɒ&@y[GzD@  -% %  Lz *@\q[o_E;f@;f@? ?@ - %%% %  %14-1 %        %      -   %      -   %      -   %   0/>:u?   unknown -kl$1@.w[GzDkl$1@.w[GzD@ %        %      -   %   r@T@   unknown - |.Q@_bT@GzD@kn?`S@z*U@GzD@ %  J    -   %   J   -   %    -t,uDw2S@t,uDw2S@GzD_bT@_bT@GzD@  -%% %    %   % %  GzD@e<><t,uDw2S@_bT@=? - -ިiU? %   M0/>:u?   unknown -_bT@u,uDw2S@GzD_bT@u,uDw2S@GzD@%%% %  %14-1 %     ! - -_bT@ |.Q@GzDz*U@kn?`S@GzD@ % %  z*T@kn?`R@o_E;f@;f@? ?@ - %%% %   %1414387%% %    %  _bT@u,uDw2S@GzD@%% %   }% %  EU@ |.Q@GzD@@ - -0/>:u?%% %   - %   @   - -kl$1.w[@GzDѹɒ&y[@GzD@ %%% %   %1416982%%% %   %1414508%%% %   %141587%% %   L %      - -z*Ukn?`SGzD_bT |.QGzD@  %    -۠U\2,Ǩ9GzD66@[kl$1GzD@ / -% %  ۠U[2,Ǩ5o_E;f@;f@? ?@ - %%% %  %14-1 %       %%% %   %141582%%% %  %14-1 %        %      -   %      -   %     8 -   %   0/>:u? 7  unknown -kl$1@.w[@GzDkl$1@.w[@GzD@ %        %     ;  %   C@T@ :  unknown -ѹɒ&y[@GzDX -\q\@GzD %     =   %  B 9@T@ <  unknown -ѹɒ&y[@GzD@n X -\q\@GzD@ %      - @  %      - @  %   ( -kl$1.w[@GzDѹɒ&y[@GzD@  -%% %    %    %  ; % %  ѹɒ&y[@GzD@@ - -0/>:u?%% %  % %  Qۓ nO^@GzDt #@? %% %  ^% %  /=AS:TڕEN]@= -t=:R -t=:R@ %       %     K -   %  M ިiU?   unknown -u,uDw2S@t,uDw2S@GzD_bT@_bT@GzD%% %    %   % %  z*T@kn?`R@GzD6p8I़?qE=4@ '? - -y@T@%%% %   R%1414399%% %   B %  EU@ |.Q@GzD%%% %   T%1417003 %       %     U -   %   WhiU? T  unknown -整[@X -GzD\@X -@GzD%% %   N %   % %  \q[@Lz *@GzD2AA&c?cVϓ?%}~P? - -@T@%%% %   \%1414483%% %    %  y[@ѹɒ&@GzD%%% %   ^%1417170%% %  7 %  /=AS:TڕEN]@GzD%%% %   u%141533%% %    %      - -Ed[~@@GzDv`-ZC@GzD@  %    -wNA>Y@]FGzD -w`-Z@pACGzD@ c -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %        %     g -   %  l iU?   unknown -.w[@ڟkl$1GzD@y[@ѹɒ&GzD@ %     n j  %      j  %  i - -y[@ҹɒ&GzD\q\@|X -GzD@  -%% %    %   % %  \q[@wMz *GzD@ 2DCA&c<cVϓ?}~@P? - -@T@ %   0/>:u?   unknown -整[@X -GzD整[@X -GzD@%%% %   z%1414289%% %    %  整[@X -GzD@%% %   b% %  整[@X -@GzD@@ - -0/>:u?%% %   \ %      - -66@[@N,Ǩ9GzD۠U\@ǟkl$1GzD@ %%% %   %1416783%%% %   %1414556%%% %   %141591%% %   P %      - -\q\ѹɒ&GzDy[V X -GzD@  %    -۠U\kl$1@GzD66@[2,Ǩ9@GzD@ | -% %  ۠U[2,Ǩ5@o_E;f@;f@? ?@ - %%% %   %141547%% %   % %  ! "  # - -JdJ@W@GzD&pM@_39X@GzD@  % $ %  -X -\GzDX -@整[GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %  & ' ( )  %%% %   %141611%% %  * d % + , -  . - -~@@Ed[GzDC@v`-ZGzD@  % / 0  -N,Ǩ9۠U\GzDǟkl$166@[GzD@  -% %  N,Ǩ5۠U[o_E;f@;f@? ?@ - %%% %  %14-1 %  1 2 3 4   %  5  6 7 -   %   5 8 9 -   %  : ;   - <  % = > ?0/>:u?  @ unknown -@ -VGq.S_P@GzD@ -VGq.S_P@GzD@ %    A B   %  C D     % E F @T@  G unknown -kl$1@۠U\GzD@,Ǩ9@66@[GzD@ %  H I    % J  Kq@T@  L unknown -kl$1@۠U\GzD,Ǩ9@66@[GzD %  3  I M -   %   3 C N -   % O 3 P -ѹɒ&@y[GzDkl$1@.w[GzD@ Q -%% %  R  % S  T % U  V% %  kl$1@.w[GzD@@ - -0/>:u? %   W X Y   %  Z [   - \  % ] ^ iU?  _ unknown -Gq.S_P@EU@GzD@ |.Q@@ -V@GzD@ %    [ `   %        % a  b - |.Q@_bT@GzDkn?`S@z*U@GzD@ c -%% %  d  % e ` f% %  kn?`R@z*T@GzD@6p<@vrH< 'E=4@¹? - -r@T@ % g  0/>:u?  h unknown -u,uDw2S@_bT@GzDu,uDw2S@_bT@GzD@%%% %  %14-1 % i     - -t,uDw2S@t,uDw2S@GzD_bT@_bT@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414386%% %  j  %  u,uDw2S@_bT@GzD@%% %  k |% %  _bT@u,uDw2S@GzD@@ - -0/>:u?%% %  l ,%%% %  # %1416980%%% %  % %1414507%%% %  ' %141556%% %  m (. % n o p  q - -2Zx9@=veHZ@GzD~@@66@[@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  , %141588%% %  r -M % s  t  u - -=veHZ@~@GzD66@[@NZx9GzD@  % v w - -z*Ukn?`SGzD_bT |.QGzD@  -% %  z*Tkn?`Ro_E;f@;f@? ?@ - %%% %  .%14-1 %  x y z { .  %  | 1 } ~ -   %  1 |   -   %    1  -   %   0/>:u?   unknown -NA>Ym]FGzDNA>Ym]FGzD@ %   4   -   %  4    -   %    4  -   %   0/>:u? 4  unknown -kAC -w`-Z@GzDkAC -w`-Z@GzD@ %  6 5     %    5   %   ɦ@T@   unknown -kl$1@66@[@GzD2,Ǩ9@۠U\@GzD %    6    %   o@T@   unknown -kl$1@66@[@GzD@2,Ǩ9@۠U\@GzD@ %   7   -   %  7    -   %  7  -ѹɒ&@.w[@GzDkl$1@y[@GzD@  -%% %   8o %    %   % %  kl$1@.w[@GzD@@ - -0/>:u? %    9  -   %   0/>:u?   unknown -X -整[@GzDX -整[@GzD@ %   : ?   %  :    %% %   ; %   % %  Lz *\q[@GzD2   %% %   = %  = % %  Lz *\q[@GzD@ucܚl   - @  %   BiU?   unknown -kl$1.w[@GzD@ѹɒ&y[@GzD@ %  C &iU?   unknown -kl$1.w[@GzDѹɒ&y[@GzD%%% %  @%14-1%%% %  A %1414509%% %   B %  ѹɒ&y[@GzD@%% %   CQ %  ѹɒ&y[@GzD %   I    %    I  -   %   \@T@ I  unknown - |.Q@_bT@GzDkn?`S@z*U@GzD%% %   K %   % %  GzD2%]?}?_bT@t,uDw2S@=? - -ިiU?%%% %  L %1414400%% %   MC %  _bT@u,uDw2S@GzD%%% %  P %1417005 %  S     %  i h S  - j  %   A@T@ S  unknown -y[@ҹɒ&GzD\q\@|X -GzD%% %   UM %  n % %  GzD~n Gbv_w?[@X - 9? - -hiU?%%% %  V %1414482%% %   W %  整[@X -@GzD%%% %  Z %1417168%%% %  ` %141534%% %   a %      - -66@[2Zx9@GzD=veHZ~@@GzD@  %   a -Ed[~@@GzDv`-ZC@GzD@  -% %  EdZA@o_E;f@;f@? ?@ - %%% %  b%14-1 %      - b  %   e     %    e  -   %   o@T@ e  unknown -66@[@N,Ǩ9GzD@۠U\@͟kl$1GzD@ %   f i  -   %  f    -   %    -.w[@۟kl$1GzDy[@ѹɒ&GzD@  -%% %   g %   % %  GzD@?:u?   unknown -y[@ҹɒ&GzDy[@ҹɒ&GzD@%%% %  j%14-1 %   j   - -y[@ҹɒ&GzD\q\@|X -GzD@ % %  \q[@wMz *o_E;f@;f@? ?@ - %%% %  k %1414305%% %   l %  y[@ҹɒ&GzD@%% %   nc% %  整[@X -GzD@@ - -0/>:u?%%% %  p %1416787%%% %  r %1414286%%% %  t %141604%% %   u] %      - -^39X@n@6JGzDEmAY@{]FGzD@  %   u -66@[@N,Ǩ9GzD۠U\@ǟkl$1GzD@  -% %  ۠U[@N,Ǩ5o_E;f@;f@? ?@ - %%% %  y %141592%% %   zQ %      - -Ed[CGzDv`-Z~@GzD@  %   z -\q\ѹɒ&GzDy[V X -GzD@  -% %  \q[Lz *o_E;f@;f@? ?@ - %%% %  {%14-1 %     - { %%% %  ~ %141548%% %   & %      - -{]F@^39X@GzDn@6J@EmAY@GzD@  %    -JdJ@W@GzD&pM@_39X@GzD@ # -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %      -   %      -   %      -   %     ) -   %   0/>:u?  ! unknown -ҹɒ&y[GzDҹɒ&y[GzD@%%% %   %141612%% %  " e % # $ %  & - -2,Ǩ966@[@GzDkl$1۠U\@GzD@  % ' (  -~@@Ed[GzDC@v`-ZGzD@ . -% %  A@EdZo_E;f@;f@? ?@ - %%% %  %14-1 %  ) * + ,   %    - . -   %    / 0 -   %     4 -   % 1 2 30/>:u? 3 4 unknown -ѹɒ&@y[GzDѹɒ&@y[GzD@ %    5 6   %  7 8  7   % 9 : ?A@T@ 6 ; unknown -r M,X&pM@GzD@> -V{P@GzD@ %  < =  9  % > > ?f@T@ 8 @ unknown -r M,X&pM@GzD; -V{P@GzD %  A  = B - <  %   A 7 C - <  % D A E -@ -VFq.S_P@GzDEU |.Q@GzD@ F -%% %  G  % H 9 I % J  K% %  @ -VGq.S_P@GzD@@ - -0/>:u? %  L M  B - N  % O F K0/>:u? A P unknown -2Zx9@66@[GzD2Zx9@66@[GzD@ %  /   N   %   Q L R  %% %  S  % T  U% %  ,Ǩ5@۠U[GzD@ZiryHc0<&[I@* )j?P9? - -@T@ %  V  M W  %   -  M %% %  X 8 % Y  Z% %  ,Ǩ5@۠U[GzDhE<,P? -"| -.5u? - -q@T@ % [ 3 &iU? I \ unknown -ѹɒ&@y[GzDkl$1@.w[GzD % ]  2+iU? C ^ unknown -ѹɒ&@y[GzD@kl$1@.w[GzD@%%% %  %14-1 % _ `   Q - -ѹɒ&@y[GzDkl$1@.w[GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414564%% %  a  %  kl$1@.w[GzD%% %  b  %  kl$1@.w[GzD@ %   c d e   %  f g  Y - h  % i j ^E@T@  k unknown -&pM@> -V@GzD@{P@r M,X@GzD@ %    g l - \  %     ` - \  % m [ n -Fq.S_P@EU@GzD |.Q@@ -V@GzD@ o -%% %  p  % q Y r% %  GzD@QgpI<Kq.S_P@> -V@=? - -iU? % s  0/>:u? [ t unknown - |.Q@EU@GzD |.Q@EU@GzD@%%% %  %14-1 % u    c - - |.Q@_bT@GzDkn?`S@z*U@GzD@ % %  kn?`R@z*T@o_E;f@;f@? ?@ - %%% %   %1414385%% %  v  %   |.Q@EU@GzD@%% %  w {% %  u,uDw2S@_bT@GzD@@ - -0/>:u?%% %  x +%%% %   %1416978%%% %   %1414506%%% %   %141555%%% %   (%141557%% %  y / % z { |  } - -W@&pMGzD_39X@RdJGzD@  % ~   -2Zx9@=veHZ@GzD~@@66@[@GzD@ q -% %  ITTS@TTS@? ?\@ - %%% %   -%141589%% %   N %    -=veHZ@~@GzD66@[@NZx9GzD@ u -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %        %      - .  %      - .  %     { -   %   0/>:u? z  unknown -.w[kl$1GzD.w[kl$1GzD@ %        %     ~   %   @T@ }  unknown -EmAYa@6JGzD@_39Xm]FGzD@ %       %   \@T@   unknown -EmAYa@6JGzD_39Xm]FGzD %      -   %      -   %    - -w`-Zs]FGzDzNA>YcACGzD@  -%% %    %    %  ~ % %  NA>Ym]FGzD@@ - -0/>:u? %        %       %   /@T@   unknown -C w`-Z@GzD~@Ed[@GzD %        %   @T@   unknown -Cv`-Z@GzD@~@Ed[@GzD@ %      -   %      -   %    -{]FyNA>Y@GzDcAC -w`-Z@GzD@  -%% %    %    %   % %  kAC -w`-Z@GzD@@ - -0/>:u? %      - p  %   0/>:u?   unknown -2Zx9@66@[@GzD2Zx9@66@[@GzD@ %       %      %% %    %   % %  2,Ǩ5@۠U[@GzD \iryHc0?$[I@+ )jտ? - -ɦ@T@ %        %       %% %    %   % %  2,Ǩ5@۠U[@GzD@hE<,P< -"|@.5u?? - -o@T@ %      -   %   iU?   unknown -ѹɒ&@.w[@GzD@kl$1@y[@GzD@ %   iU?   unknown -ѹɒ&@.w[@GzDkl$1@y[@GzD%%% %  %14-1 %  b    - -ѹɒ&@.w[@GzDkl$1@y[@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   8%1414493%% %    %  kl$1@.w[@GzD@%% %   M %  kl$1@.w[@GzD %      -   %      -   %    -X -整[@GzD#X -@\@GzD@  -%% %   l% %  X -整[@GzD@@ - -0/>:u? %       %       %   iU?   unknown -X -整[@GzD#X -@[@GzD%%% %   ;%1414414%% %   P %  X -整[@GzD %        %   iU?   unknown -X -整[@GzD@ X -@\@GzD@ %       %%% %   =%1414373%% %    %  X -整[@GzD@ %      %  %   0/>:u?   unknown -kl$1.w[@GzDkl$1.w[@GzD@%% %    %   % %  GzD@qp7s6Y]F@GzD@  %    -66@[2Zx9@GzD=veHZ~@@GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %        %      - b  %      - b  %        %   0/>:u?   unknown -NA>Y@{]FGzDNA>Y@{]FGzD@ %     !   %   "   - t  % #  $"iU?  % unknown ->veHZ@~@GzD@66@[@NZx9GzD@ %        %     &  %% %  '  % ( & )% %  ۠U[@N,Ǩ5GzD@hE|9|<@.5u? -"|@P9? - -o@T@ % *  0/>:u?  + unknown -.w[@͟kl$1GzD.w[@͟kl$1GzD@%%% %  %14-1 % , E    - -.w[@۟kl$1GzDy[@ѹɒ&GzD@ % %  ITTS@TTS@? ?\@ - %%% %   g%1414306%% %  -  %  .w[@͟kl$1GzD@%% %  . % %  y[@ҹɒ&GzD@@ - -0/>:u?%% %  / -: % 0 1 2  3 - -[#X -GzD整[NX -@GzD@ %%% %   l%1416820%%% %   n%1414288%%% %   u%141605%% %  4 ^ % 5 6  7 - -{P> -V@GzD&pMr M,X@GzD@  % 8   -^39X@n@6JGzDEmAY@{]FGzD@  -% %  EmAX@n@6Ho_E;f@;f@? ?@ - %%% %  %14-1%%% %   z%141593%% %  9 R % : ; <  = - -y M,X{PGzD@ -V&pMGzD@  % > ?  -Ed[CGzDv`-Z~@GzD@  -% %  EdZAo_E;f@;f@? ?@ - %%% %  %14-1 %  @ A B C   %  D  E F - {  %   D G H - {  %  I J  - - K  % L M N0/>:u?  O unknown -.w[kl$1@GzD.w[kl$1@GzD@%%% %   %141549%% %  P !' % Q n h  R - -&pM@; -V@GzD{P@r M,X@GzD@  % S T ! -{]F@^39X@GzDn@6J@EmAY@GzD@  -% %  n@6H@EmAX@o_E;f@;f@? ?@ - %%% %  "%14-1 %  U d V W - "  %  X % Y Z -   %  % X [ \ -   %  2 1 %    % ] ^ _0/>:u? % ` unknown -X -@整[GzDX -@整[GzD@ %  ' & X a   %  b [ &    % c d @T@  e unknown -ҹɒ&\q\GzD@X -y[GzD@ %  Y f '   % g  hA@T@  i unknown -ҹɒ&\q\GzDfX -y[GzD %  + ( f j -   %  ( + b k -   % l + m -ڟkl$1y[GzDѹɒ&.w[GzD@ n -%% %  o )s % p j q % r  s% %  ҹɒ&y[GzD@@ - -0/>:u?%%% %  + %141613%% %  t ,f % u v w  x - -a@6J_39X@GzDp]FEmAY@GzD@  % y  , -2,Ǩ966@[@GzDkl$1۠U\@GzD@ & -% %  2,Ǩ5۠U[@o_E;f@;f@? ?@ - %%% %  -%14-1 %  z { | } -  %  ~ 0   -   %  0 ~   -   %    0 , -   %   0/>:u? +  unknown -͟kl$1.w[GzD͟kl$1.w[GzD@ %  I Y 1 .  %  ^ 3@T@ -  unknown -X -@\q\GzDѹɒ&@y[GzD %  [ C 2 0   %  2 _9@T@ /  unknown -V X -@\q\GzD@ѹɒ&@y[GzD@%% %   4 %  4  %  4 % %  ѹɒ&@y[GzD@@ - -0/>:u? %    5 6 -   %  : ?0/>:u? 5  unknown -W&pM@GzDW&pM@GzD@ %   6 ; C   %  6     %% %   7 %   % %  r M,W -FN@GzD@EТ޳!̟<c5p9? - -A@T@ %   8    %  8  : B %% %   9 %  9 % %  r M,W -FN@GzD,v<8!v ? Z?Lm1o @? - -f@T@ %  ; :   - <  %   >ҨiU? =  unknown -@ -VFq.S_P@GzDEU |.Q@GzD %  ? 2iU? 7  unknown -@ -VGq.S_P@GzD@EU |.Q@GzD@%%% %  <%14-1 %   <  F - -@ -VFq.S_P@GzDEU |.Q@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  = %1414523%% %   >^ %  @ -VGq.S_P@GzD%% %   ? %  @ -VGq.S_P@GzD@ %   A D R - N  %  A  H W - N  %    -Zx9@66@[GzD~@@@veHZGzD@  -%% %   B% %  2Zx9@66@[GzD@@ - -0/>:u? %  D  {    %   FiU? D  unknown -2Zx9@66@[GzD@~@@AveHZGzD@%%% %  E %1414324%% %   F %  2Zx9@66@[GzD@ %   H z   %  K ݨiU? H  unknown -Zx9@66@[GzD~@@@veHZGzD%%% %  J %1414462%% %   K %  2Zx9@66@[GzD%% %   M7% %  GzDB[1m^b?ѹɒ&@y[? - -&iU?%% %   N% %  GzD@qp7s6:u? g  unknown -Gq.S_P@@ -V@GzDGq.S_P@@ -V@GzD@%%% %  \%14-1 %  b \  o - -Fq.S_P@EU@GzD |.Q@@ -V@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  ] %1414384%% %   ^ %  Gq.S_P@@ -V@GzD@%% %   `z% %   |.Q@EU@GzD@@ - -0/>:u?%% %   b*%%% %  e %1416976%%% %  g %1414505%%% %  i %141554%%% %  n %141558%% %   o0 %      - - |.Q@z*UGzDkn?`S@_bTGzD@  %   o -W@&pMGzD_39X@RdJGzD@ } -% %  ITTS@TTS@? ?\@ - %%% %  p%14-1%%% %  s %141590%%% %  t%14-1 %     & - t  %   w   -   %  w    -   %    w  -   %   0/>:u? w  unknown -EU |.QGzDEU |.QGzD@ %  y x   .  %    x    %   @T@   unknown -۠U\2,Ǩ9GzD@66@[kl$1GzD@ %    y   %   v@T@   unknown -۠U\2,Ǩ9GzD66@[kl$1GzD %  B z   -   %  z B   -   %  B  -y[kl$1GzD.w[ѹɒ&GzD@  -%% %   { %    %  { % %  .w[kl$1GzD@@ - -0/>:u? %    |  -   %   0/>:u? |  unknown -_39XLdJGzD_39XLdJGzD@ %   }     %  }     %% %   ~ % - ~ % %  EmAXa@6HGzD@hElR<`~ ?삁<yox?G_? - -@T@ %       %      %% %   $ %   % %  EmAXa@6HGzD ;&YY;zF?C&aI3 -@9? - -\@T@ %    ?  -   %   fiU?   unknown - -w`-Zm]FGzD}NA>YiACGzD %    iU?   unknown - -w`-Zs]FGzD@zNA>YcACGzD@%%% %  %14-1 %      - - -w`-Zs]FGzDzNA>YcACGzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414543%% %   n %  NA>Ym]FGzD%% %    %  NA>Ym]FGzD@ %      -   %   0/>:u?  ! unknown -~@CveHZ@GzD~@CveHZ@GzD@ %  "     %     # %% %  $  - % % # &% %  AEdZ@GzDVFg<&6=?O? @A]@?9? - -/@T@ %     '   %   (    %% %  )  % *  +% %  AEdZ@GzD@Rď6<D6C? - -@T@ %    , - -   % . /  iU?  0 unknown -{]FzNA>Y@GzD@cAC -w`-Z@GzD@ % 1  2٨iU?  3 unknown -{]FyNA>Y@GzDiAC -w`-Z@GzD%%% %  %14-1 % 4 5    - -{]FyNA>Y@GzDcAC -w`-Z@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414548%% %  6   %  kAC -w`-Z@GzD@%% %  7 U %  kAC -w`-Z@GzD %  8    - p  %   8   - p %% %  9 % %  2Zx9@66@[@GzD@@ - -0/>:u? %   : ; <  % = > iU?  ? unknown -2Zx9@>veHZ@GzD~@@66@[@GzD%%% %   %1414410%% %  @ L %  2Zx9@66@[@GzD %    A B   % C  DiU?  E unknown -2Zx9@=veHZ@GzD@~@@66@[@GzD@%%% %   %1414377%% %  F  %  2Zx9@66@[@GzD@ %      G  % H  0/>:u?  I unknown -ѹɒ&@y[@GzDѹɒ&@y[@GzD@%% %  J  % K  L% %  GzD@B[1n^b<ѹɒ&@y[@=? - -iU?%% %  M  % N  O% %  GzDqp7s6:u?%%% %   %1414372%% %  g  %  kl$1.w[@GzD@%%% %   %1414415%% %  h R %  kl$1.w[@GzD %  i  U j  %  g f   - h  % k  lf@T@  m unknown -&pM@; -V@GzD{P@r M,X@GzD%% %  n  % o  p% %  GzD=eY]F@GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %    D  -   %      -   %      -   %      -   %   0/>:u?   unknown - -w`-ZzAC@GzD -w`-ZzAC@GzD@ %      - b  %        %   ViU?   unknown -{NA>Y@{]FGzD@ -w`-Z@wACGzD@ %  r     %   iU?   unknown -wNA>Y@]FGzD -w`-Z@pACGzD %      -   %      -  %% %   d %    %   % %  NA>Y@{]FGzD@@ - -0/>:u? %     ! -   %  $ /@T@   unknown - w`-Z@CGzD@Ed[@~@GzD@ %      - t %% %    %   % %  GzD@XYGlؽd<66@[@ZZx9? - -"iU? %  u 0/>:u?   unknown -66@[@NZx9GzD66@[@NZx9GzD@%%% %   %1414307%% %    %  66@[@NZx9GzD@%% %   % %  .w[@͟kl$1GzD@@ - -0/>:u?%% %   4%%% %   %1416822%%% %   %1414521%%% %   -%141569%% %   ; %      - -Aq.S_P@D -VGzD |.Q@EUGzD@  %    -[#X -GzD整[NX -@GzD@ 3 -% %  ITTS@TTS@? ?\@ - %%% %   %141606%% %   _ %    -{P> -V@GzD&pMr M,X@GzD@ 7 -% %   -FNr M,W@o_E;f@;f@? ?@ - %%% %  %14-1%%% %   %141594%% %   S %      - -kn?`Sz*UGzD |.Q_bTGzD@  %    -y M,X{PGzD@ -V&pMGzD@ = -% %  y M,W -FNo_E;f@;f@? ?@ - %%% %  %14-1 %        %      -   %      -   %     C -   %   0/>:u? B  unknown -y[ѹɒ&GzDy[ѹɒ&GzD@ %      {  %     F  %   Nɦ@T@ E  unknown -۠U\kl$1@GzD66@[2,Ǩ9@GzD %     H   %  M o@T@ G  unknown -۠U\kl$1@GzD@66@[2,Ǩ9@GzD@ %      - K  %      - K  %   5 -y[ѹɒ&@GzD.w[kl$1@GzD@  -%% %   - %  H  %  - % %  .w[kl$1@GzD@@ - -0/>:u?%%% %   !%141550%% %   (% %   -FN@r M,W@o_E;f@;f@? ?@ - %%% %  %14-1 %        %     j - "  %     W   %   0/>:u?   unknown -LdJ@_39X@GzDLdJ@_39X@GzD@ %     a -   %  -   Z  %  h ^iU? Y  unknown -X -\GzDX -@整[GzD %   /  \   %  _ d:u? %  d h0/>:u?   unknown -X -整[GzDX -整[GzD@ %     k  %% %    %   % %  lMz *\q[GzD@$ 2Y@GzD]F@ -w`-Z@GzD@  %  , $ -a@6J_39X@GzDp]FEmAY@GzD@ x -% %  a@6HEmAX@o_E;f@;f@? ?@ - %%% %  %%14-1 %   ( V  - -  %  (  Q  - -  %    ( } -   %  - 0/>:u? (  unknown -kAC@ -w`-ZGzDkAC@ -w`-ZGzD@ %  * )     %  f  )   %   ɦ@T@   unknown -N,Ǩ9۠U\GzDǟkl$166@[GzD %   b *    %   o@T@   unknown -N,Ǩ9۠U\GzD@͟kl$166@[GzD@%% %   , %    %  j % %  ͟kl$1.w[GzD@@ - -0/>:u?%% %   .6% %  Lz *@\q[GzD2:u? %  $ 7 % &   %  8 ' ( )   % * + :yiU? 8 , unknown -_39XLdJ@GzD@W&pM@GzD@%%% %  9 7%1414359%% %  - : %  W&pM@GzD@ %  . < / 0  % 1 ? 2RiU? < 3 unknown -_39XJdJ@GzDW&pM@GzD %  = 4 5 6 %%% %  > 9%1414428%% %  7 ?_ %  W&pM@GzD %  5 % A  8  % 9  0/>:u? A : unknown -EU |.Q@GzDEU |.Q@GzD@%% %  ; B % < B =% %  GzD7#G$xt C % ?  @% %  GzD@5i"z%1417061%%% %  J ?%1416926 %  M L  F - N %%% %  N%14-1 % G m N   - -Zx9@66@[GzD~@@@veHZGzD@ % %  ITTS@TTS@? ?\@ - %%% %  O B%1414536 %  Q H  I   % J - x@T@ Q K unknown -~@@Ed[GzD@C@v`-ZGzD@%% %  L R % M R N% %  GzD@Nj<~@@AveHZ? - -iU?%%% %  T F%1416855 %  O V  P  % Q  8@T@ V R unknown -~@@Ed[GzDC@ w`-ZGzD%% %  S W9 % T  U% %  GzDX0?Ͳ?Zx9@66@[? - -ݨiU?%%% %  Y K%1417130%%% %  [ M%1414461%%% %  ] N%1414325%%% %  _ P%141598%% %  V `W % W X Y  Z - -{Pr M,XGzD&pM; -VGzD@  % [ \ ` -\q\ X -@GzDy[ѹɒ&@GzD@  -% %  \q[3Mz *@o_E;f@;f@? ?@ -  %  c  ] ^   %  T V c  -   % _ ` f@T@ c a unknown -{]F@_39X@GzD@n@6J@EmAY@GzD@ %  d U f  - " %% %  b e % c e d% %  GzD@pf:u?  f unknown -&pM@W@GzD&pM@W@GzD@%%% %  h%14-1%%% %  i Y%1414383%% %  g j %  &pM@W@GzD@%% %  h ly% %  Gq.S_P@@ -V@GzD@@ - -0/>:u?%% %  i n)%%% %  q ^%1416974%%% %  s `%1414504%%% %  u b%141553%%% %  z o%141559%% %  j {1 % k l m  n - -m]F@EmAYGzDa@6J@^39XGzD@  % o p { - |.Q@z*UGzDkn?`S@_bTGzD@  -% %  kn?`R@z*To_E;f@;f@? ?@ - %%% %  |%14-1 %  q r  s - |  %  "   s - t  %    t u   %  v w     % x y e@T@  z unknown -z*Ukn?`SGzD@_bT |.QGzD@ %  { |    % }  ~L@T@   unknown -z*Ukn?`SGzD_bT |.QGzD %    |  -   %    v  -   %    -@ -V |.QGzDEUFq.S_PGzD@  -%% %    %    %   % %  EU |.QGzD@@ - -0/>:u? %      -   %   0/>:u?   unknown -66@[2Zx9GzD66@[2Zx9GzD@ %        %       %% %    %   % %  ۠U[2,Ǩ5GzD@Yiry<_&RA<) )j?*[I/? - -@T@ %       %      %% %     %   % %  ۠U[2,Ǩ5GzDhEO|9|? -.5u -"|@? - -v@T@ %   &iU?   unknown -y[kl$1GzD.w[ѹɒ&GzD %   +iU?   unknown -y[kl$1GzD@.w[ѹɒ&GzD@%%% %  %14-1 %      - -y[kl$1GzD.w[ѹɒ&GzD@ % %  ITTS@TTS@? ?\@ - %%% %   {%1414529%% %   j %  .w[kl$1GzD%% %    %  .w[kl$1GzD@ %      -   %      -   %    -c39X&pMGzDW>dJGzD@  -%% %   % %  _39XLdJGzD@@ - -0/>:u? %        %   v     %   iU?   unknown -_39X&pMGzD@WJdJGzD@%%% %   ~%1414344%% %    %  _39XLdJGzD@ %  |     %   DiU?   unknown -c39X&pMGzDW>dJGzD %      %%% %   %1414442%% %   o %  _39XLdJGzD %   0/>:u?   unknown - -w`-ZkACGzD -w`-ZkACGzD@%% %   # %   % %  GzDQbr< -BL?w`-ZiAC? - -fiU?%% %    %   % %  GzD@J6sYs]F? - - iU?%% %   B %      - -66@[~@GzD>veHZZx9GzD@ %%% %   %1417088%%% %   %1416897 %     # -   %     ' -   %    -~@>veHZ@GzD2Zx966@[@GzD@  -%% %   % %  ~@CveHZ@GzD@@ - -0/>:u? %       %  W -iU?   unknown -~@@veHZ@GzD2Zx966@[@GzD%%% %   %1414418%% %   T %  ~@CveHZ@GzD %   diU?   unknown -~@>veHZ@GzD@2Zx966@[@GzD@ %       %%% %   %1414369%% %     %  ~@CveHZ@GzD@ %     - w  %  2 /0/>:u?   unknown -{]FNA>Y@GzD{]FNA>Y@GzD@%% %    %   % %  GzD@F` Y@=? - - iU?%% %     %   % %  GzDEdFUD<?iACw`-Z@=? - -٨iU?%% %   Z %   K   - -y[ѹɒ&@GzD.w[kl$1@GzD@ %%% %   %1416944%%% %   %1417043 %      - p %%% %   %1414511 %   i    %     < -   %   >@T@   unknown -~@@v`-Z@GzDC@Ed[@GzD%% %    %  < % %  GzDsNj?~@@>veHZ@=? - -iU?%%% %   %1417025 %     B -   %  D ;@T@   unknown -~@@w`-Z@GzD@C@Ed[@GzD@%% %    %   % %  GzD@AX0CͲ<=Zx9@66@[@=? - -iU?%%% %   %1416962 %   T - X -@y[@GzDѹɒ&@\q\@GzD@  -%% %   n% %  ѹɒ&@y[@GzD@@ - -0/>:u?%%% %   %1414376%% %    %  ѹɒ&@y[@GzD@%%% %   %1414411%% %   N %  ѹɒ&@y[@GzD%%% %   %141544 %     R G  %   0/>:u?   unknown -X -@整[@GzDX -@整[@GzD@%% %    %   G   - - X -@y[@GzDѹɒ&@\q\@GzD@  %      % %% %    %  # % %  2,Ǩ5۠U[@GzDhE<,P? -"|@ -.5u?? - -v@T@%% %   % %  Mz *@\q[@GzDucܚl:u?   unknown -66@[2Zx9@GzD66@[2Zx9@GzD@ %        %  '      %     /@T@   unknown -Ed[~@@GzD@ w`-ZC@GzD@ %   .    %     @T@   unknown -Ed[~@@GzDv`-ZC@GzD %    . -   %    ' ! -  %% %  " f % #   $  % %   & % %   -w`-ZzAC@GzD@@ - -0/>:u? %        % '   0/>:u?  ( unknown - -w`-Z@zACGzD -w`-Z@zACGzD@ %  )     %% %  *  % +   , % %  GzD@Qbr< -BL<v`-Z@wAC? - -ViU? %   -   %% %  . G % /   0 % %  GzDߣ6sY@]F? - -iU? %     s   % 1  2   @T@  3 unknown -^39X@n@6JGzDEmAY@{]FGzD % 4   5 R@T@  6 unknown -_39X@n@6JGzD@EmAY@{]FGzD@%%% %   %1414290%% %  7  %  NA>Y@{]FGzD@%% %  8  %  NA>Y@{]FGzD %    "    % 9    -v`-Z@CGzDEd[@~@GzD@ : -%% %  ; !% %  EdZ@AGzD@VFgѺ.<A]@?O? @9? - -/@T@ % <  $ 0/>:u?  = unknown -CveHZ@~@GzDCveHZ@~@GzD@%%% %  # %1414308%% %  > $ %  CveHZ@~@GzD@%% %  ? &% %  66@[@NZx9GzD@@ - -0/>:u?%%% %  ( %1416824%%% %  * %1414520%%% %  , %141563%%% %  0 %141570%% %  @ 1< % A   B  C - ->dJ@c39XGzD&pM@WGzD@  % D  E 1 -Aq.S_P@D -VGzD |.Q@EUGzD@  -% %  ITTS@TTS@? ?\@ - %%% %  2%14-1 %  F G  H - 2 %%% %  5 %141607%%% %  6%14-1 %  I J K L 6 %%% %  : %141595%% %  M ;T % N  P O  P - -n@6JEmAYGzD{]F^39XGzD@  % Q  R ; -kn?`Sz*UGzD |.Q_bTGzD@  -% %  kn?`Rz*To_E;f@;f@? ?@ - %%% %  <%14-1 %     S <  %  T ?   -   %  ? T   -   %  A @  H   %   U @   % V  W  @T@  X unknown -\q\ѹɒ&GzDy[X -GzD %  Y  A    % Z   [ 9@T@  \ unknown -\q\ѹɒ&GzD@y[V X -GzD@%% %  ] C % ^  C _  % `   a % %  y[ѹɒ&GzD@@ - -0/>:u? %  b E J   %  E    %% %  c F % d   e % %  ۠U[2,Ǩ5@GzD \iry<)RA?+ )j?$[I@? - -ɦ@T@ %   G     %  G f I   %% %  g H % h  H i % %  ۠U[2,Ǩ5@GzD@hE|9|<@.5u -"|P? - -o@T@ %  J I \ j - K  % k  l  MiU?  m unknown -y[ѹɒ&@GzD@.w[kl$1@GzD@ % n  N o iU?  p unknown -y[ѹɒ&@GzD.w[kl$1@GzD%%% %  K%14-1% %  ITTS@TTS@? ?\@ - %%% %  L -%1414557%% %  q M %  .w[kl$1@GzD@%% %  r Ne %  .w[kl$1@GzD%%% %  Q %141551 %  V T i  -   %  ]  T  -   % s  ` t 0/>:u? T u unknown -{]F@NA>Y@GzD{]F@NA>Y@GzD@%% %  v Wv % w  j x % %  LdJ@_39X@GzD@@ - -0/>:u?%% %  y Z5% %  GzD4+i:u?%%% %  c %1414328%% %  ~ d %  X -整[GzD@%%% %  g %1414458%% %   h %  X -整[GzD%% %  j3% %  GzDqp7s6Y@GzD]F@ -w`-Z@GzD@  -% %  ITTS@TTS@? ?\@ - %%% %  w%14-1 %  { z  F -  %  |  I -   %  |  P -   %  | -cAC@ -w`-ZGzDs]F@zNA>YGzD@ -%% %  } %  I  %   % %  kAC@ -w`-ZGzD@@ - -0/>:u? %  ~  -  %   0/>:u?  unknown -NZx966@[GzDNZx966@[GzD@ %   %% %  2 %   % %  N,Ǩ5۠U[GzD \iryHc0?$[I+ )j?? - -ɦ@T@ %    %% %   %   % %  N,Ǩ5۠U[GzD@hE<,P< -"|@@.5u9? - -o@T@%%% %   ,%1414537%% %   %  ͟kl$1.w[GzD@%% %  } %  ͟kl$1.w[GzD%%% %   .%1414460%%% %   0%1414326%%% %   2%1416859%%% %   3%1417126 %    -  %%% %  %14-1% %  ITTS@TTS@? ?\@ - %%% %   6%1414489 %     %    & - 8  %   r@T@  unknown -z*U |.Q@GzD@_bTkn?`S@GzD@ %     !   %    ) - ~  %   +f@T@  unknown -EmAY{]F@GzD@_39Xn@6J@GzD@%% %   %   % %  GzD@_' 7 <\39X]dJ@=? - -yiU?%%% %   :%1416924 %      %    0 - ~  %  2  @T@  unknown -EmAY{]F@GzD^39Xn@6J@GzD%% %   %  0 % %  GzD?(h`윲?W&pM@=? - -RiU? %    %    6 - 8  %   \@T@  unknown -z*U |.Q@GzD_bTkn?`S@GzD%%% %   ?%1417063 %   -z*U |.Q@GzD_bTkn?`S@GzD@ -%% %  % %  EU |.Q@GzD@@ - -0/>:u?%%% %   B%1414427%% %  ] %  EU |.Q@GzD%%% %   C%1414360%% %   %  EU |.Q@GzD@%%% %   E%141564%% %  6 %    - -&pMW@GzD>dJc39X@GzD@  %   -_bTt,uDw2S@GzDs,uDw2S_bT@GzD@ E -% %  ITTS@TTS@? ?\@ -  %   0/>:u?  unknown -~@@CveHZGzD~@@CveHZGzD@%% %  > %     %   - iU?  unknown -cAC@ -w`-ZGzD@s]F@zNA>YGzD@%% %  % %  A@EdZGzD@eRď6<D@6C?9? - -x@T@%%% %   R%1414323%% %   %  ~@@CveHZGzD@ %    %   fiU?  unknown -iAC@ -w`-ZGzDm]F@}NA>YGzD%% %  :% %  A@EdZGzDQVFg<&6=?O? ]@o? - -8@T@%%% %   W%1414463%% %   %  ~@@CveHZGzD%%% %   `%141599%% %  X %    - -CEd[GzD~@v`-ZGzD@  %   -{Pr M,XGzD&pM; -VGzD@ Z -% %   -FNr M,Wo_E;f@;f@? ?@ - %%% %  %14-1 %   j   %    ^ -   %   `ViU?  unknown -kAC@{NA>Y@GzD@{]F@ -w`-Z@GzD@%% %   %  ^ % %  n@6H@EmAX@GzD@(;&Y<e<! -^&aI@? - -f@T@%%% %   e%1414382%% %   %  LdJ@_39X@GzD@%% %  w% %  &pM@W@GzD@@ - -0/>:u?%%% %   j%1416972%%% %   l%1414503%%% %   n%141552%%% %   {%141560%% %  2 %    - -; -V@{PGzDr M,X@&pMGzD@  %   -m]F@EmAYGzDa@6J@^39XGzD@ n -% %  a@6H@EmAXo_E;f@;f@? ?@ - %%% %  %14-1 %    %   - - |  %   ) - |  %  2  5 0/>:u?  unknown -_39X@[dJGzD_39X@[dJGzD@ %   u - -  %  - y ~0/>:u?   - unknown -_bTu,uDw2SGzD_bTu,uDw2SGzD@ %        %    -  -  %% %   -  %  - u  -% %  z*Tkn?`RGzD@T^*6<"ۘ<hC@F -o9? - -e@T@ %   -  -  %      %% %  - - ( % - - -% %  z*Tkn?`RGzD6p8I़?qE=4 '@? - -L@T@ %     S -   % -  - /iU? |  - unknown -@ -V |.QGzDEUGq.S_PGzD %  -   -ҨiU? v  - unknown -@ -V |.QGzD@EUFq.S_PGzD@%%% %  %14-1 %  -    - -@ -V |.QGzDEUFq.S_PGzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414553%% %   - r %  EU |.QGzD%% %   -  %  EU |.QGzD@ %   -    -   %    -   -   %  -  -  -66@[~@GzD>veHZZx9GzD@  -%% %   - % %  66@[2Zx9GzD@@ - -0/>:u? %  -  - iU?   - unknown -66@[~@GzD@>veHZ2Zx9GzD@%%% %   %1414348%% %   -  %  66@[2Zx9GzD@ %  -   -ݨiU?   - unknown -66@[~@GzD@veHZZx9GzD%%% %   %1414438%% %  - k %  66@[2Zx9GzD%% %  ! - % %  GzDdJGzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414552 % ) -   -x@T@  * - unknown -Ed[CGzD@v`-Z~@GzD@ %   % -   - <  % + -  - @T@  , - unknown -y M,X{PGzD@@ -V&pMGzD@%% %  - -  % . - & - / -% %  GzD@?(h`윲<W&pM? - -iU?%%% %  - %1416895 %  % -    - <  % 0 -   -b@T@  1 - unknown -y M,X{PGzD@ -V&pMGzD%% %  2 - % % 3 - & - 4 -% %  GzD -k' 7 ?c39X>dJ? - -DiU? % 5 -  - 8@T@  6 - unknown -Ed[CGzD w`-Z~@GzD%%% %   %1417090%% %  7 - % %   -w`-ZkACGzD@@ - -0/>:u?%%% %   %1414441%% %  8 - m %   -w`-ZkACGzD%%% %   %1414345%% %  9 -  %   -w`-ZkACGzD@%%% %   %141577%% %  : - C% %  ITTS@TTS@? ?\@ -  %    U  -  %%% %  %14-1 % ; - < -    - -~@>veHZ@GzD2Zx966@[@GzD@ % %  ITTS@TTS@? ?\@ - %%% %   %1414549 %  = - " > - ? -  %  , @ - "  - w  % A - 2 B -J@T@ " C - unknown -`@6J_39X@GzDp]FEmAY@GzD%% %  D - # % %  GzDAX0CͲ?=Zx966@[@=? - --iU?%%% %  % %1417041%% %  E - '% %  GzD@Nj<~@>veHZ@=? - -iU? %  ( F - G - H -   %  @ - , (  - w  % I - J - /@T@ ( K - unknown -a@6J_39X@GzD@{]FEmAY@GzD@%%% %  * %1416946%% %  L - -% %  {]FNA>Y@GzD@@ - -0/>:u?%%% %  . %1414368%% %  M - / - %  {]FNA>Y@GzD@%%% %  1 %1414419%% %  N - 2V %  {]FNA>Y@GzD%%% %  4 %141602%% %  O - 5[ %  ; A 8    % P - D >0/>:u? 8 Q - unknown -~@@CveHZ@GzD~@@CveHZ@GzD@ %   :  -   % R - t  iU? : S - unknown -dAC@wNA>Y@GzD]F@ -w`-Z@GzD %  A ; T -   % U -  V - -~@@v`-Z@GzDC@Ed[@GzD@ W - -%% %  X - < % Y - < Z -% %  A@EdZ@GzDRď6?D@6C? - -@T@%%% %  = %1414409%% %  [ - >K %  ~@@CveHZ@GzD%% %  \ - B % ] - ^ ^ -% %  A@EdZ@GzD@VFg<$6=<O? A]@?o9? - -;@T@%%% %  C %1414378%% %  _ - D %  ~@@CveHZ@GzD@%%% %  G%14-1% %  Mz *@\q[@o_E;f@;f@? ?@ - %%% %  H %1414492%%% %  K %1416958%%% %  N %1417029%% %  ` - Rm% %  X -@整[@GzD@@ - -0/>:u?%%% %  S %141542%% %  a - T  % b - d W0/>:u? U c - unknown -2Zx966@[@GzD2Zx966@[@GzD@%%% %  V %1414416%% %  d - WS %  2Zx966@[@GzD%%% %  Y %1414412%%% %  \ %1417031%%% %  ^ %1414375%%% %  a %1416956%%% %  c %1414371%% %  e - d  %  2Zx966@[@GzD@ % f -  t  @T@ i g - unknown -{]F@^39X@GzDn@6J@EmAY@GzD%% %  h - j% %  GzDbJqEOӴ?&pM@W@=? - -iU?%%% %  k %1414404%% %  i - lG %  &pM@W@GzD%%% %  o %1417013 %    r  -   % j -  @T@ r k - unknown -v`-Z@CGzDEd[@~@GzD%% %  l - sI % m -  n -% %  GzDeF|ol0Ufв?=veHZ@~@? - -iU?%%% %  t %1414479%% %  o - u %  66@[@NZx9GzD%%% %  x %1417163%%% %  | %141540%% %  p - }%%% %  ~%14-1 %  / (   ~  % q -  0/>:u?  r - unknown -NA>Y{]F@GzDNA>Y{]F@GzD@ %      -   % s -   iU?  t - unknown -66@[2Zx9@GzD>veHZ~@@GzD % u -   iU?  v - unknown -66@[2Zx9@GzD@=veHZ~@@GzD@%% %  w - h% %  66@[2Zx9@GzD@@ - -0/>:u? % x -    0/>:u?  y - unknown -CveHZ~@@GzDCveHZ~@@GzD@%% %  z -  % { -  | -% %  EdZA@GzD@VFg.<A]@O? ? - -/@T@%% %  } -  % ~ -   -% %  EdZA@GzDRďY]F@GzD % -  ViU? ' - unknown - -w`-ZwAC@GzD@{NA>Y{]F@GzD@%%% %   %1414294%% %  - b %   -w`-ZzAC@GzD%% %  -  %   -w`-ZzAC@GzD@%% %  - e% %   -w`-Z@zACGzD@@ - -0/>:u? %  -  r  %%% %   %1414291%% %  -  %   -w`-Z@zACGzD@ %   - q %%% %   %1414293%% %  -  %   -w`-Z@zACGzD%% %  - F % - s -% %  EmAX@n@6HGzDElR<~ ?삁?yox>? - - @T@%% %  -  % - s -% %  EmAX@n@6HGzD@";&Y;zF<^&aI@! -@? - -R@T@%%% %   %1416790%%% %   %1416791%%% %  %14-1% %  EdZ@Ao_E;f@;f@? ?@ - %%% %   !%1414309%% %  - % %  CveHZ@~@GzD@@ - -0/>:u?%%% %   $%1416826%%% %   &%1414555%%% %   1%141571%% %  - = % - -  ->dJ@c39XGzD&pM@WGzD@ C -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %  - - - - -   %  -  U - - 2  %   - Y - - 2  % - W  [ 0/>:u?  - unknown -整[X -GzD整[X -GzD@ %  -  = - - - 6  %   - F - - - 6  %  - -  L -  % - - -0/>:u?  - unknown -Gq.S_P@ -V@GzDGq.S_P@ -V@GzD@%%% %   ;%141596%% %  - U % - -  -n@6JEmAYGzD{]F^39XGzD@ P -% %  n@6HEmAXo_E;f@;f@? ?@ - %%% %  %14-1 %  - - - -   % -  -  -0/>:u?  - unknown -@ -VGq.S_PGzD@ -VGq.S_PGzD@ %     - -   %   b F - %% %  -  % - H -% %  \q[Lz *GzD2AA&c?cVϓ%}~@P9? - -@T@ %  f  G -  %% %  -  % - H -% %  \q[Lz *GzD@mcܚl;G%<!ȿ*?9? - -9@T@%%% %   C%1414528%% %  -  %  y[ѹɒ&GzD@%% %  - i %  y[ѹɒ&GzD %  U  - %%% %   F%1414432%% %  - d %  66@[2Zx9@GzD %   Y -  %%% %   H%1414354%% %  -  %  66@[2Zx9@GzD@ % - o  l 0/>:u? \ - unknown -y[ѹɒ&@GzDy[ѹɒ&@GzD@%% %  -  % - - -% %  GzD@aY@GzD@@ - -0/>:u?%%% %   W%1414500%% %  - H %  LdJ@_39X@GzD%%% %   Z%1414459%%% %   \%1414327%%% %   ^%1417124%%% %   _%1416861%%% %   a%1414498%%% %   d%1416863%%% %   h%1417122%%% %   j%1414457%%% %   k%1414329%%% %   m%141574%% %  - @ % -  -  - - -&pM_39XGzDRdJWGzD@  % -   -~@66@[GzDNZx9=veHZGzD@ -% %  ITTS@TTS@? ?\@ - %%% %   v%141616%% %  - i % - K  - |.QEU@GzDFq.S_P@ -V@GzD@ -% %  ITTS@TTS@? ?\@ - %%% %  %14-1 %    - -  %%% %  %14-1 % - -   - -cAC@ -w`-ZGzDs]F@zNA>YGzD@ % %  ITTS@TTS@? ?\@ - %%% %   }%1414570%% %  - - %  kAC@ -w`-ZGzD@%% %  -  %  kAC@ -w`-ZGzD %  -   -  %   -  - %% %  - % %  NZx966@[GzD@@ - -0/>:u? %   - - -  % - - iU?  - unknown -~@66@[GzDNZx9=veHZGzD%%% %   %1414456%% %  - | %  NZx966@[GzD %  -  - -   % -  -"iU?  - unknown -~@66@[GzD@NZx9>veHZGzD@%%% %   %1414330%% %  -  %  NZx966@[GzD@%%% %   %1416867%%% %   %1417118 %  ( /  ~  % - 2 +0/>:u? - unknown -_39XLdJ@GzD_39XLdJ@GzD@ %  - $ - -   %  - $ - D  % -  -2iU? $ - unknown -_bTt,uDw2S@GzD@s,uDw2S_bT@GzD@ %  % 5 - 8 %% %  - & % - -% %  z*Tkn?`R@GzD@6p8I<E=4 'ù? - -r@T@%% %  - ) % -  -% %  EmAXn@6H@GzD@";&Y;zF<^&aI! -? - -f@T@%%% %  * %1414358%% %  - + %  _39XLdJ@GzD@%% %  - 0 % -  -% %  EmAXn@6H@GzDElR<~ ?삁?yox?>@? - - @T@%%% %  1 %1414429%% %  - 2` %  _39XLdJ@GzD %  4 - - -  %  - 4 - D  % - - ިiU? 4 - unknown -_bTu,uDw2S@GzDt,uDw2S_bT@GzD%% %  6 %    % %  z*Tkn?`R@GzD/^*6dJc39X@GzD@ -% %  ITTS@TTS@? ?\@ - %%% %  D%14-1 %  - - D %% %   F% %  ~@@CveHZGzD@@ - -0/>:u?%%% %  G %141573 %  H -   %  H - m  %    @T@ H  unknown -m]F@EmAYGzD@a@6J@_39XGzD@%% %   I %    % %  GzD@zF` Y? - - iU?%%% %  J %1414322%%% %  M %1416853 %   O    %  O - m  %     o@T@ O  unknown -m]F@EmAYGzDa@6J@^39XGzD%% %   P; %   -  % %  GzDdFUD<?iAC@w`-Z? - -fiU?%%% %  Q %1414464%%% %  T %1417132%%% %  W %141600%% %   XY %    X -CEd[GzD~@v`-ZGzD@ -% %  AEdZo_E;f@;f@? ?@ - %%% %  Y%14-1 %   ! " Y  %  # \ f - -   %  \ # b - -   %   ]  T - -  %% %  $ ^% %  GzD@dFUD<<wAC@v`-Z@=? - -ViU?%%% %  _ %1414381%% %  % ` %  {]F@NA>Y@GzD@%%% %  c %1416970%%% %  e %1414501%%% %  k %141561%% %  & l3 % '  ( l -; -V@{PGzDr M,X@&pMGzD@ -% %  r M,W@ -FNo_E;f@;f@? ?@ - %%% %  m%14-1 %  - m  %  ) p * + -   %  p ) , - -   %  - - p -   % .  /  0 0/>:u? p 1 unknown - |.Q@EUGzD |.Q@EUGzD@ %  r q 2 3 - |  % 4  5  2 iU? - 6 unknown -W@&pMGzD_39X@UdJGzD % 7  5  8 iU? ) 9 unknown -W@&pMGzD@_39X@RdJGzD@%% %  : s% %  _39X@[dJGzD@@ - -0/>:u? %  ; t w  - - -  %  t ; { - - -  % <  ; = -_bT_bTGzDy,uDw2Sr,uDw2SGzD@ > -%% %  ? u% %  _bTu,uDw2SGzD@@ - -0/>:u? %  w @ - A   % B  C  yĨiU? w D unknown -_bT_bTGzD@y,uDw2Sr,uDw2SGzD@%%% %  x %1414340%% %  E y %  _bTu,uDw2SGzD@ %  F { - G  % H  ~ I iU? { J unknown -_bT_bTGzDy,uDw2St,uDw2SGzD%%% %  } %1414446%% %  K ~s %  _bTu,uDw2SGzD%% %  L ' % M   N % %  GzD_5i"zveHZ~@? - -iU?%%% %   %1416903%% %  V ! % W   X % %  GzD^YGlؽd?66@[Zx9? - -ݨiU?%%% %   %1417082%%% %   %1414437%%% %   %1414349%%% %   %141567%% %  Y 9 %     & - <  % Z   0/>:u? % - [ unknown -W&pMGzDW&pMGzD@%% %  \ u % ]  ^ _  ` - -EU@ |.QGzD@ -V@Fq.S_PGzD@ %% %  a % %  EdZAGzD@MRďdJc39X@GzD %    k o w %% %  p   % q  ? - r % %  a@6HEmAX@GzD6;&Y<e? -@&aI@? - -J@T@%%% %   #%1414417%%% %   '%1414370 %   - J -   %   k  H - -  % s  t  J -iU?  u unknown -&pMW@GzD@JdJ_39X@GzD@%% %  v  % w  H - x % %  a@6HEmAX@GzD@ElR <ayoxo? - -@T@%%% %   -%1414568%%% %   /%1416942%%% %   2%1417045%%% %   5%141603%% %  y % %  ~@@CveHZ@GzD@@ - -0/>:u?%% %  z % %  GzDF` Y@=? - -iU? % {   0/>:u? | unknown -kAC@ -w`-Z@GzDkAC@ -w`-Z@GzD@%%% %  %14-1 % }  ~   W - - -~@@v`-Z@GzDC@Ed[@GzD@ % %  A@EdZ@o_E;f@;f@? ?@ - %%% %   <%1414408%% %   J %  kAC@ -w`-Z@GzD%%% %   >%1417023%%% %   B%1414379%% %   %  kAC@ -w`-Z@GzD@%%% %   D%1416964%%% %   R%1414491%%% %   T%141543%% %  % %  2Zx966@[@GzD@@ - -0/>:u?%%% %   W%1417039%%% %   d%1416948%% %  % %  n@6H@EmAX@GzDElR 䰼?>@yox 9? - - @T@%%% %  j%1414405%%% %   l%1417015%% %   H% %  EdZ@AGzDRďY{]F@GzD@@ - -0/>:u?%% %   % %  GzDeF|olDUfв?>veHZ~@@=? - -iU?%% %   % %  GzD@K[YGjؽd<66@[=Zx9@=? - -iU?%%% %   %1414392%% %   g% %  CveHZ~@@GzD@@ - -0/>:u?%%% %   %1414295%% %    %  CveHZ~@@GzD@%%% %   %1414297%% %   c %  CveHZ~@@GzD%% %  % %  GzDߣ6sY]F@=? - -iU?%% %  ! % %  GzD@Qbr< -BL<v`-ZwAC@=? - -ViU?%%% %  # %1416798%%% %  % %1416799%%% %  ' %1414292 %  )  %%% %  + %1416793 %  - %%% %  / %1416795%%% %  1 %1414476%% %  2  %  _39X@[dJGzD%%% %  4 %1414310%% %  5  %  _39X@[dJGzD@%%% %  < %1414530%%% %  A %141572%%% %  B %14-1 %   - - B  %  E -   %  E -   %  E -  %   0/>:u? E unknown -Aq.S_P@@ -VGzDAq.S_P@@ -VGzD@ %  G F # - 2  %   W iU? U unknown -[X -GzD整[5X -@GzD %  [  7iU? Y unknown -[#X -GzD@整[NX -@GzD@%% %  H % %  整[X -GzD@@ - -0/>:u? %  J I  6  %  m  -&@T@ = - unknown -{P@ -V@GzD&pMr M,X@GzD %  - t @T@ F - unknown -{P> -V@GzD@&pMr M,X@GzD@ %  K - -  %  K - - %% %  L  %  L  %  L % %  Gq.S_P@ -V@GzD@@ - -0/>:u?%%% %  N %141597%%% %  O %14-1 %  O  %  R  - G -   %  R  - A -   %  R - -  %   0/>:u? R unknown - |.QEUGzD |.QEUGzD@%% %  S % %  @ -VGq.S_PGzD@@ - -0/>:u? %   -  -0/>:u?  - unknown -CveHZ~@GzDCveHZ~@GzD@%%% %  V %1414436%% %  W h %  整[X -GzD%%% %  Z %1414350%% %  [  %  整[X -GzD@%%% %  ^ %1416907%%% %  ` %1417078 %  o  :@T@ b unknown -\q\ X -@GzDy[ѹɒ&@GzD%%% %  d %1416991 %   l @T@ f unknown -\q\5X -@GzD@y[ѹɒ&@GzD@%%% %  h %1416917%% %  j % %  y[ѹɒ&@GzD@@ - -0/>:u?%%% %  k %1414353%% %  l  %  y[ѹɒ&@GzD@%%% %  n %1414433%% %  o f %  y[ѹɒ&@GzD%%% %  s %1414502%% %  t I %  {]F@NA>Y@GzD%%% %  w %1417017%%% %  %141575%% %  A %  -&pM_39XGzDRdJWGzD@ - -% %  ITTS@TTS@? ?\@ - %%% %  %14-1%%% %  %141617%%% %  %14-1 %   0/>:u? unknown -m]F@NA>YGzDm]F@NA>YGzD@%% %  q %  V -  - -&pM@y M,XGzD{P@@ -VGzD@ %%% %  -%1416851%%% %  %1417134 %  - %%% %  %1414538 %   %   - -  %   -@T@ unknown -CEd[GzD~@v`-ZGzD%% %  1 %  % %  GzDiNj?~@=veHZ? - -iU?%%% %  %1417116 %    %   - -  %  - /@T@ unknown -CEd[GzD@~@ w`-ZGzD@%% %   %  % %  GzD@eX0EͲ<ZZx966@[? - -"iU?%%% %  %1416869%% %  j% %  _39XLdJ@GzD@@ - -0/>:u? %  F - -   %  - - i  %  - e@T@ unknown -kn?`S_bT@GzD@ |.Qz*U@GzD@ %  - D %% %   %  % %  GzD@2%]?}<_bTt,uDw2S@=? - -2iU? %   0/>:u? unknown -_bTu,uDw2S@GzD_bTu,uDw2S@GzD@%%% %  &%1414361%% %   %  _bTu,uDw2S@GzD@%%% %  )%1414357%% %   %  NA>Y{]F@GzD@%%% %  +%1416922%%% %  0%1414430%% %  a %  NA>Y{]F@GzD%%% %  2%1417065 %  = - -  %  - - i  %   -L@T@ unknown -kn?`S_bT@GzD |.Qz*U@GzD%% %   %  - % %  GzD.f<>?t,uDw2S_bT@=? - -ިiU?%%% %  6%1414426%% %   \ %  _bTu,uDw2S@GzD%% %   m %       - -]F -w`-ZGzDpACwNA>YGzD@ %%% %  C%141566%%% %  %14-1 %  > - G - - - %%% %  F%1414535 %     %  -  - B  %  -   iU? unknown ->dJ@a39XGzD@&pM@WGzD@ %   m %% %   %    % %  a@6H@EmAXGzD@hElR <G@yox?? - -@T@%%% %  I%1414321%% %    %  m]F@NA>YGzD@ %    %   -  - B  %      iU?  unknown ->dJ@c39XGzD&pM@WGzD%% %   < %     % %  a@6H@EmAXGzD;&Y<e?3 -C&aI9? - -o@T@%%% %  P%1414465%% %    %  m]F@NA>YGzD%%% %  X%141601%%% %  %14-1 %  - -    %     - Y  %     - Y  %  " -  %  !  " 0/>:u? # unknown -Gq.S_P@ -VGzDGq.S_P@ -VGzD@ %  -  %%% %  ^%1414380%%% %  `%1416968%%% %  l%141562%%% %  %14-1 %  $ %  %  & '   %  ( +   % )  *  0 a@T@ * + unknown - |.Q@z*UGzD@kn?`S@_bTGzD@ %  , -  % -  /  . @T@ , / unknown - |.Q@z*UGzDkn?`S@_bTGzD%% %  0  % 1  2  % 3  4 % %   |.Q@EUGzD@@ - -0/>:u? %  3  % 5  8  5 0/>:u? 6 unknown -W@&pMGzDW@&pMGzD@%% %  7 E % 8  3 9 % %  GzD?(h`윲?W@&pM? - -iU?%% %  :  % ;  3 < % %  GzD@/d' 7 <_39X@RdJ? - -iU?%%% %  s%1414513 %  = - - %%% %  -%14-1 % >  -  > - -_bT_bTGzDy,uDw2Sr,uDw2SGzD@ % %  ITTS@TTS@? ?\@ - %%% %   - u%1414554 %   -  ?   % @   C `@T@  - A unknown -kn?`Sz*UGzD@ |.Q_bTGzD@%% %  B  - % C   - D % %  GzD@Pd<><y,uDw2S_bT? - -ĨiU?%%% %   - y%1416887 %    - E  % F  I  d@T@  - G unknown -kn?`Sz*UGzD |.Q_bTGzD%% %  H -) % I  - J % %  GzD2%]?}?_bTt,uDw2S? - -iU?%%% %  - ~%1417098%%% %  - %1414445%% %  K  -q %  @ -VGq.S_PGzD%%% %   - %1414341%% %  L  - %  @ -VGq.S_PGzD@%%% %   - %141624%%% %   - %1414347%% %  M  - %  CveHZ~@GzD@%%% %   - %1414439%% %  N  -l %  CveHZ~@GzD%%% %  $ - %141568%% %  O & -% %  W&pMGzD@@ - -0/>:u?%%% %  ' - %141629%% %  P ( -v % Q  R  S - -n,uDw2S@_bTGzD_bT@t,uDw2SGzD@  % T  U ( - -EU@ |.QGzD@ -V@Fq.S_PGzD@ ` -% %  ITTS@TTS@? ?\@ - %%% %  ) - %1414346%%% %  + - %1414342%%% %  . - %1416893%%% %  0 - %1414444%%% %  3 - %1417092%%% %  5 - %1414440%%% %  ; - %141618%% %  V < -k % W  < - -kn?`S_bT@GzD |.Qz*U@GzD@ j -% %  kn?`Rz*T@o_E;f@;f@? ?@ -  %  G - > - @ - o - %% %  X ? -  % Y  ? - Z % %  GzDpfdJc39X@=? - -wiU? % [  J - B -0/>:u? k \ unknown -LdJ_39X@GzDLdJ_39X@GzD@%%% %  A - %1414420%% %  ] B -W %  LdJ_39X@GzD%% %  ^ H - % _  H - ` % %  GzD@bJqFOӴ<&pMW@=? - -iU?%%% %  I - %1414367%% %  a J -  %  LdJ_39X@GzD@%%% %  P - %1414512%%% %  R - %1414407%% %  b T -% %  kAC@ -w`-Z@GzD@@ - -0/>:u?%% %  c V -s % d   e  f - -_bT@kn?`SGzDz*U@ |.QGzD@ %%% %  Y - %1417021%%% %  ] - %1416966%%% %  b - %1414571%%% %  f - %1414406%%% %  j -  %1414477%%% %  m - %1417159%%% %  q -  %1414487%%% %  s -  %1414393%%% %  u -  %1414355%%% %  x -  %1414296%%% %  { -  %1416801%%% %  ~ -  %1416803%%% %  - %1414431%%% %  - ! %1414356 %  g - h i   %  2 ( - -  % j  8  k A@T@ - l unknown -> -V@{PGzD@r M,X@&pMGzD@ %  - m n o  %  ( 2 - -  % p  q  5 i@T@ - r unknown -; -V@{PGzDr M,X@&pMGzD%%% %  - 2 %1417156%%% %  - 5 %1416829 %  -  % s    - 0/>:u? - t unknown -&pM@WGzD&pM@WGzD@ %  * -   % u  0  giU? v unknown -Aq.S_P@D -VGzD@ |.Q@EUGzD@ %  ,  -  % w   / iU? x unknown -Aq.S_P@C -VGzD |.Q@EUGzD %  -   -  %  -  -  % y  - - -&pM@y M,XGzD{P@@ -VGzD@ -%% %  z - % {  |  % }  ~ % %  Aq.S_P@@ -VGzD@@ - -0/>:u? %    0/>:u? - unknown -整[5X -@GzD整[5X -@GzD@%% %  - %  - % %  GzDn Gbv_w?[#X -@ 9? - -iU?%% %  - %  - % %  GzD@n Gbv_w<[#X - ? - -7iU?%%% %  - H %1414531 %  m  t 0/>:u?  unknown -&pMW@GzD&pMW@GzD@%% %  -% %   -FNr M,W@GzDEТ<}EB?c5p@@? - -&@T@%% %  -% %   -FNr M,W@GzD@bvTd"<|m1o Z? - -@T@ %  - - -  %   -ҨiU? - unknown - |.QEU@GzD@Fq.S_P@ -V@GzD@ %  - /iU? - unknown - |.QEU@GzDGq.S_P@ -V@GzD%%% %  - L %1414569%% %  - %  Gq.S_P@ -V@GzD@%% %  -Y %  Gq.S_P@ -V@GzD %  - - O  %  - - O  %  - -   %   0/>:u? - unknown -{]FNA>YGzD{]FNA>YGzD@ %  - - ; =   %  ! - @ ? -  %  - ! F E -  %  -  - |.Q@ -VGzDFq.S_PEUGzD@ -%% %  - %  ?  %  - % %   |.QEUGzD@@ - -0/>:u?%%% %  - S %1414558%% %  -% %  CveHZ~@GzD@@ - -0/>:u?%%% %  - W %1417076%%% %  - [ %1416909%% %  -% %  \q[3Mz *@GzDmcܚl;G%?!ȿ*?@ -9? - -:@T@%% %  -% %  \q[3Mz *@GzD@2AA&c<cVϓ%}~P? - -@T@%%% %  - j %1414565%%% %  - l %1416913%%% %  - o %1417072%%% %  - t %1417019%%% %  - %141576%%% %  -%14-1 %  - - %% %  -% %  m]F@NA>YGzD@@ - -0/>:u?%%% %  - %141625%% %  -r% %   -FN@y M,Wo_E;f@;f@? ?@ -  %  - - -  %  - -0/>:u? - unknown -~@CveHZGzD~@CveHZGzD@ %  -  %   - -   %   iU? - unknown -]F -w`-ZGzDpACwNA>YGzD%% %  -0 %  - % %  AEdZGzDRď6?D6C?? - -@T@%%% %  - %1414455%% %  -{ %  ~@CveHZGzD %  -   %   - -   %   ViU? - unknown -{]F -w`-ZGzD@wAC{NA>YGzD@%% %  - %  % %  AEdZGzD@VFg<"6=<O? @A]@ -9? - -/@T@%%% %  - %1414331%% %  - %  ~@CveHZGzD@%%% %  - %1414488 %  - - - i  %  - - i %% %  - %  % %  kn?`Rz*T@GzD@S^*6᡼*<F -hC? - -e@T@ %  - -0/>:u? - unknown -u,uDw2S_bT@GzDu,uDw2S_bT@GzD@%%% %  - %1414362%% %  - %  u,uDw2S_bT@GzD@%% %  -% %  _bTu,uDw2S@GzD@@ - -0/>:u?%%% %  - %1416930%%% %  - %1416920%%% %  - %1417067%% %  - %  % %  kn?`Rz*T@GzD6pYGzD@  -% %  ITTS@TTS@? ?\@ -  %   - ^@T@ unknown -&pM@y M,XGzD@{P@@ -VGzD@ %  -  - B %% %   %  % %  GzD@bJqFOӴ<&pM@W? - -iU? %     0/>:u? unknown ->dJ@_39XGzD>dJ@_39XGzD@%%% %  %1414320%% %    %  >dJ@_39XGzD@%%% %   %1416849 %    @T@  unknown -&pM@y M,XGzD{P@@ -VGzD%% %   = %  % %  GzDpfdJ@c39X? - -iU?%%% %   %1414466%% %    %  >dJ@_39XGzD%%% %   %1417136 %    -   %   0/>:u?  unknown -zAC -w`-ZGzDzAC -w`-ZGzD@ %   Y  %  @     %   " A@T@  unknown -{Pr M,XGzD@&pM> -VGzD@ %  F   %  !  i@T@  unknown -{Pr M,XGzD&pM; -VGzD%% %  "  %  "  %   % %  Gq.S_P@ -VGzD@@ - -0/>:u? %  n h ( % - _  %  q  k 0/>:u? ( unknown -@ -V@Gq.S_PGzD@ -V@Gq.S_PGzD@ %  ) ' - R  %  *  . 0/>:u? ) unknown -n,uDw2S@_bTGzDn,uDw2S@_bTGzD@ %  * g  %% %  +  %  % %  kn?`R@z*TGzD@S^*6᡼*<F -@hC@? - -a@T@ %  m , %% %  - @ %  % %  kn?`R@z*TGzD6p:u?%%% %  4 %1414475%% %  5  %  W@&pMGzD%%% %  7 %1414311%% %  8  %  W@&pMGzD@ %  I  C 0/>:u? unknown -{,uDw2S_bTGzD{,uDw2S_bTGzD@%% %  = l %  "  iU? @ unknown - |.Q@ -VGzD@Gq.S_PEUGzD@%% %  A % %  kn?`Rz*TGzD@6p:u?%%% %  q B -%1417047%%% %  s H -%1414366%% %   t  %  &pMW@GzD@%%% %  w J -%1416940%%% %  { T -%1414572%%% %  } V -%141627%% %  ~ t % -   ~ -_bT@kn?`SGzDz*U@ |.QGzD@ f -% %  z*T@kn?`Ro_E;f@;f@? ?@ -  %  (   %  $ U i - _  %  k   iU?  unknown -EU@ |.QGzD@@ -V@Gq.S_PGzD@%% %    %   i  % %  r M,W@ -FNGzD@EТ޳!̟<@c5p@? - -A@T@ %  ,    %  U $ o - _  %     q ҨiU?  unknown -EU@ |.QGzD@ -V@Fq.S_PGzD%% %   D %   o  % %  r M,W@ -FNGzD.v:u?%% %   % %  GzD@9=e:u?%%% %  -%1414435%% %  ! g %  整[5X -@GzD%%% %  -%1414351%% %  "  %  整[5X -@GzD@%% %  # % %  &pMW@GzD@@ - -0/>:u?%%% %  -%1414422%%% %  -%1414365 % $   0/>:u? % unknown - |.QEU@GzD |.QEU@GzD@%% %  & % %  GzD@ש=eYGzD@@ - -0/>:u?%%% %  %14-1% %  ITTS@TTS@? ?\@ - %%% %  -%1414560%% %  3  %   |.QEUGzD@%% %  4 u %   |.QEUGzD%%% %  -%1414544%%% %  -%1414434%%% %  -%1414352 %  5 - -  %  6 - -  % 7  )  , 0/>:u? 8 unknown -[dJ_39XGzD[dJ_39XGzD@%%% %  -%1414517%%% %  -%141626%% %  9 % %  ~@CveHZGzD@@ - -0/>:u? %   5 %% %  : /% %  GzDF` Y? - -iU?%%% %  -%1414454%% %  ; z %  zAC -w`-ZGzD%%% %  -%1417114 %   6  %% %  < % %  GzD@dFUD<<wACv`-Z? - -ViU?%%% %  -%1414332%% %  =  %  zAC -w`-ZGzD@%%% %  -%1416871%%% %  -%1414363%% %  >  %   |.QEU@GzD@%% %  ? % %  u,uDw2S_bT@GzD@@ - -0/>:u?%%% %  -%1416932%%% %  -%1414524%%% %  -%1414424%% %  @ Z %   |.QEU@GzD%%% %  -%1417055%%% %    %141622%% %  A  o%%% %   %14-1%% %  B  % %   -FN@y M,WGzD@v=Td"<[m1o @ Z?? - -^@T@%%% %  %1414319%% %  C -  %  &pM@WGzD@%% %  D % %  >dJ@_39XGzD@@ - -0/>:u?%%% %    %1416847%% %  E  >% %   -FN@y M,WGzDEТ<~EB?5pBo9? - -@T@%%% %    %1414467%% %  F   %  &pM@WGzD%%% %    %1417138%% %  G  % %  zAC -w`-ZGzD@@ - -0/>:u? %   - -  % H   0/>:u? I unknown -&pMWGzD&pMWGzD@%% %  J   % K  L % %   -FNr M,WGzD@EТ<}EB<c5p@ -? - -A@T@%% %  M  , % N  5 O % %   -FNr M,WGzDv"Td"?Hm1o Z?? - -i@T@%%% %  " %1414566%% %  P ! v %  Gq.S_P@ -VGzD%% %  Q "  %  Gq.S_P@ -VGzD@%% %  R % % %  @ -V@Gq.S_PGzD@@ - -0/>:u? %   & ( - R  %  &  , - R %% %  S ' % %  n,uDw2S@_bTGzD@@ - -0/>:u? % T  U  * iU? ( V unknown -n,uDw2S@_bTGzD@_bT@t,uDw2SGzD@%%% %  ) + %1414316%% %  W *  %  n,uDw2S@_bTGzD@ % X  .  Y 7iU? , Z unknown -n,uDw2S@_bTGzD_bT@u,uDw2SGzD%%% %  - - %1414470%% %  [ .  %  n,uDw2S@_bTGzD%%% %  1 / %1417144%%% %  3 0 %1416841%%% %  5 3 %1414514%%% %  8 5 %1417154%%% %  ; 8 %1416831%% %  \ = % %  {,uDw2S_bTGzD@@ - -0/>:u?%%% %  > = %141620%% %  ] ? % %  GzD@9QgpI<Hq.S_P@ -V? - -iU?%%% %  @ A %1414338%%% %  C C %1416885%% %  ^ E +% %  GzD=e:u?  b unknown -EU@ |.QGzDEU@ |.QGzD@%%% %  Y m %1417049%%% %  [ o %1414527%%% %  _ t %1416938%%% %  d ~ %141628%%% %  e %14-1 %   _ g - e  % c    U @T@ g d unknown -_bT@kn?`SGzD@z*U@ |.QGzD@%% %  e i  % f  i g % %  GzD@N5i"z -V@Kq.S_P? - -iU?%%% %  j %1414312%% %  h k  %  @ -V@Gq.S_PGzD@ %  _  m  - e  % i  Y   g@T@ m j unknown -_bT@kn?`SGzDz*U@ |.QGzD%% %  k o C % l   m % %  GzD7#G$xt:u?%%% %  %1414364%%% %  %1414423%% %  p . % q  5 r % %  n@6HEmAXGzDElR 䰼?>yox?? - - @T@%% %  s  % t  u % %  n@6HEmAXGzD@(;&Y<e<! -@^&aI? - -R@T@%%% %  %1414562%% %  v  %  {]FNA>YGzD@%% %  w y %  {]FNA>YGzD%%% %  %1416883%%% %  %1417102 % x   ) iU? y unknown -&pM_39XGzDUdJWGzD % z  ,  iU? { unknown -&pM_39XGzD@RdJWGzD@%% %  | % %  [dJ_39XGzD@@ - -0/>:u?%%% %  %1414539%%% %  %1414453%%% %  %1417112%%% %  %1414333%%% %  %1416873%%% %  %1416934%%% %  %1414525%%% %  %1417053%%% %   %141623%%% %   %1414318%%% %  - %1416845%%% %  %1414518%%% %   %1414468%%% %   %1417140%%% %   %1414567%% %  } % %  &pMWGzD@@ - -0/>:u?%%% %   %1414336%% %  ~  %  &pMWGzD@%%% %   %1414450%% %   w %  &pMWGzD%%% %  ! %1417104%%% %  " %1416881%%% %  % %1414519%%% %  ' %1414516%% %   %  % %  GzD@2%]?}<_bT@t,uDw2S? - -iU?%%% %  * %1416839%% %  A %  % %  GzD:\<>?q,uDw2S@_bT? - -7iU?%%% %  . %1417146%%% %  = %1414561%%% %  ? %1414337%%% %  E %1414449 %    ` e  %  Y  U 0/>:u? _ unknown -_bT@u,uDw2SGzD_bT@u,uDw2SGzD@%% %   % %  EU@ |.QGzD@@ - -0/>:u?%% %  % %  z*T@kn?`RGzD@6p8I<`E=4@ '@9? - -@T@%%% %  i %1414313%% %    %  EU@ |.QGzD@%%% %   k %1416833%% %   B% %  z*T@kn?`RGzDT^*6<"ۘ?hCF -o? - -g@T@%%% %   o %1414473%% %    %  EU@ |.QGzD%%% %   q %1417152%%% %  $ %1414573%%% %  ( %1414452%% %  ) x %  [dJ_39XGzD%%% %  + %1414334%% %  ,  %  [dJ_39XGzD@%%% %  / %1416875%%% %  1 %1417110%% %  5 -% %  GzDcJqGOӴ?&pMW? - -iU?%% %  6 % %  GzD@✻pf:u?%%% %  a  %1414574%%% %  c %1414314%%% %  f  %1416835%%% %  i  %1414472%%% %  l  %1417150%%% %  q ) %1417108%%% %  t , %1416877%%% %  x 5 %1414451%%% %  z 6 %1414335%%% %  U %1416837%%% %  Y %1417148%%% %  ` %1414575 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 272336 -$end 'sab' -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0002465.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     -dJFUB@֝P@GzD&pM@_39X@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth30 lump%   -dJFUB@֝P@GzD&pM@_39X@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111231 -shell%   -dJFUB@֝P@GzD&pM@_39X@GzD@properties%  ansoft% %  -  Stator_Teeth30 %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[30] face%     - -dJFUB@֝P@GzD/Ξ{F@δvT -R@GzD@ %%% %    %111231%%% %   %6Stator_Teeth[30]id%% %     %      - -iŻE@Aѳ%acQ@GzDMM@;bW@GzD@  loop%   -dJFUB@֝P@GzD/Ξ{F@δvT -R@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -'Ξ{F@֝P@GzD(Ξ{F@֝P@GzD@%%% %   %112242%% %  :   % ; < =  > - -MM@;bW@GzD&pM@W@GzD@  % ? @  -dJFUB@̴vT -R@GzD,[B@ܿ SFR@GzD@ ' -% %  ,[B@ۿ SFR@o_Eбv.?f8uNܿ<511@ %%% %  %11-1 %  A B C D   %  E  F G   %   E H I -   %  J A  -   % K L MgT=??  N unknown -iŻE@Aѳ%acQ@GzDMM@;bW@GzD %   O P   %  Q R  0 - S  % T 8 UHAޡh?  V unknown -dJFUB@֝P@GzD@/Ξ{F@ʹvT -R@GzD@ %  W X 2   % Y 7 ZHAޡh? [ unknown -dJFUB@֝P@GzD/Ξ{F@ʹvT -R@GzD %  \ ! X ] - 5  %  ! \ Q ^ - 5  % _ 3 ` -%Ξ{F@֝P@GzDkI#_F@,Q@GzD@ a -%% %  b "  vertex% c 2 d % e ^ f straight% -curve%  (Ξ{F@֝P@GzDifS7@@ - -0/>:u?%%% %  $ %112243%% %  g %  % h i j  k -JdJ@W@GzD&pM@_39X@GzD@  % l m % -MM@;bW@GzD&pM@W@GzD@ > -% %   -FN@r M,W@o_E;f@;f@? ?@ - %%% %  &%11-1 %  O n W o - &  %  , ) p q   %  ) r s t   %  u v ) D - j  % w x yiU? ) z unknown -LdJ@W@GzD&pM@_39X@GzD %  + * { | -   %  p } * G - =  % ~ L 0/>:u? * unknown -MM@;bW@GzDMM@;bW@GzD@ %  + I  %  M 0/>:u? + unknown -iŻE@Bѳ%acQ@GzDiŻE@Bѳ%acQ@GzD@ %  X ,  %% %  -  %  q  %  % %  MM@;bW@GzD  Ԋ%bP - -gT=?? %  @ . P - &  %  U Z0/>:u? . unknown -dJFUB@ʹvT -R@GzDdJFUB@δvT -R@GzD@ %  / 4 ^ S  %  / S  %  i -dJFUB@֝P@GzD@&pM@_39X@GzD@%% %  0  %  0  ellipse% %  GzD@?/Ξ{F@֝P@? - -HAޡh? %  1 @ o   %  1 J 3 ]  %% %  2  %  2 % %  GzD?/Ξ{F@֝P@? - -HAޡh? %  4 3 5  %   7cMBP? X unknown -%Ξ{F@֝P@GzDgI#_F@,Q@GzD %  8 cMBP? Q unknown -(Ξ{F@֝P@GzD@kI#_F@,Q@GzD@%%% %  5%11-1 %  5  a - -%Ξ{F@֝P@GzDkI#_F@,Q@GzD@ % %  CDE@2bP@o_E)fh9;?T"@@ %%% %  6 "%1116176%% %  7  -point%  (Ξ{F@֝P@GzD%% %  8  %  (Ξ{F@֝P@GzD@%%% %  ; %%112244%% %  <  %  S  -dJFUB@֝P@GzD@&pM@_39X@GzD@ -Ţ?'%?zs_0 %  u < -JdJ@W@GzD&pM@_39X@GzD@ k % %  ITTS@TTS@? ?\@ - %%% %  =%11-1 %  } p v =  %  @ - &  %  Z HMBP? W unknown -dJFUB@ʹvT -R@GzD,[B@ܿ SFR@GzD %  m F A q - =  %  y Lkh8cӼ? A unknown -MM@;bW@GzD&pM@W@GzD %  B   %  B t -  %   xi8cӼ? B unknown -vP(irJ@]X@GzDRdJ@_39X@GzD %  C - j  %  C m - j %% %  D  %   %  % %  GzDpf:u? %  H -  %  H J -  %  -hŻE@,Q@GzDhI#_F@Bѳ%acQ@GzD@ -%% %  I  %  % %  iŻE@Bѳ%acQ@GzD@@ - -0/>:u? %  M ж(A&Y? J unknown -iŻE@,Q@GzDhI#_F@Bѳ%acQ@GzD%%% %  K -%1116180%% %  L  %  MM@;bW@GzD%% %  M  %  iŻE@Bѳ%acQ@GzD %  n O R - & %% %  P % %  dJFUB@ʹvT -R@GzD@ifS7=pfSG=@ - -0/>:u? %  { Q S  %  R S  %   UHMBP? unknown -dJFUB@̴vT -R@GzD@,[B@ۿ SFR@GzD@%%% %  S%11-1 %  S %%% %  T 0%1116177%% %  U  %  dJFUB@ʹvT -R@GzD@ %  r W  %%% %  Y 2%1116179%% %  Z  %  dJFUB@ʹvT -R@GzD %  \ -  %   0/>:u? \ unknown -gI#_F@,Q@GzDgI#_F@,Q@GzD@%% %  ]  %  % %  gI#_F@,Q@GzD/RT֏\I - -cMBP?%% %  ^  %  % %  (Ξ{F@֝P@GzD@YRT֏\@I@,$3+ - -cMBP?%% %  `  %   - -hŻE@,Q@GzDhI#_F@Bѳ%acQ@GzD@ %%% %  c 7%1119946%%% %  e 8%1119947%%% %  h <%112245%% %  i  %   - -vP(irJ@]X@GzDRdJ@_39X@GzD@ % %  %= ףp=Z@GzD@ar^?@@ %%% %  j%11-1 %  y 0/>:u? m unknown -&pM@W@GzD&pM@W@GzD@ %  n  %   0/>:u? n unknown -,[B@ۿ SFR@GzD,[B@ۿ SFR@GzD@%% %  o  %  o % %  dJFUB@ʹvT -R@GzDXy{@_@ - -HMBP?%% %  q % %   -FN@r M,W@GzDEТ}EB?k5px@9? - -kh8cӼ? %  r -  %   ST=?? r unknown -zg !@C@ػR@GzD~P(irJ@]X@GzD %   s   %  s  u  %  -vP(irJ@]X@GzDRdJ@_39X@GzD@ -%% %   t  %  % %  n@6H@EmAX@GzDWgoFie,ȱ?ѱv. @f8uNo9? - -i8cӼ? %  v u - j  %   x0/>:u? u  unknown -LdJ@_39X@GzDLdJ@_39X@GzD@%%% %  w D%1116184%% %   x  %  LdJ@_39X@GzD%% %  - y  %  &pM@W@GzD %  { } S %% %   | % %  iŻE@Bѳ%acQ@GzD@ @ Ԋ@b`= - -gT=?? %   j8cӼ? }  unknown -MM@;bW@GzD@&pM@W@GzD@%%% %  ~ G%1116181%% %     %  MM@;bW@GzD@ %   ж(A&Y?  unknown -hŻE@,Q@GzD@gI#_F@Bѳ%acQ@GzD@%%% %  %11-1% %  gI#_F@,Q@o_Eh9;ῤ)f<ISRT֏\@ %%% %  I%1116183%% %     %  iŻE@Bѳ%acQ@GzD@%% %    % %  iŻE@Bѳ%acQ@GzDI@JRT֏\ - -ж(A&Y?%%% %  L%1119954%%% %  M%1119955%%% %  P%1116178 %    S  %   -  %   x(A&Y?  unknown -,[B@ػR@GzD@zg !@C@ۿ SFR@GzD@%% %     %  % %  ,[B@ۿ SFR@GzD@Xy{_#3+= - -HMBP? %    S  %   iU?  unknown -JdJ@W@GzD@&pM@_39X@GzD@%%% %  U%1119949 %   -  %   x(A&Y?  unknown -,[B@ػR@GzDzg !@C@ۿ SFR@GzD%%% %  Z%1119951%% %  !  % %  gI#_F@,Q@GzD@@ - -0/>:u?%%% %  ]%1116187%% %  "   %  gI#_F@,Q@GzD%%% %  ^%1116201%% %  #   %  gI#_F@,Q@GzD@%%% %  `%112250%% %  $  %%% %  i%112246%% %  %   % & '  ( - -zg !@C@ػR@GzD~P(irJ@]X@GzD@ % %  n@6H@EmAX@o_E;f@;f@? ?@ - %% %  )   % * +% %  &pM@W@GzD@@ - -0/>:u? % , ' -,[B@ػR@GzDzg !@C@ۿ SFR@GzD@ - -%% %  .  % %  ,[B@ۿ SFR@GzD@@ - -0/>:u?%%% %  o%1116188%% %  /   %  ,[B@ۿ SFR@GzD%%% %  q%1116185 %    0  %    -  % 1 -zg !@C@ػR@GzD~P(irJ@]X@GzD@ ( -%% %  2   % 3 4% %  zg !@C@ػR@GzDp4t~@R -J@$bP= - -ST=?? %   -  % 5  60/>:u? 7 unknown -vP(irJ@]X@GzDvP(irJ@]X@GzD@%%% %  %11-1%%% %  t%1116191%% %  8   %  vP(irJ@]X@GzD%% %  9   % :  ;% %  LdJ@_39X@GzD@@ - -0/>:u?%%% %  x%1119962%%% %  y%1119963%%% %  |%1116182%% %  <  % %   -FN@r M,W@GzD@2\-< 6 ST=?? ? unknown -zg !@C@ػR@GzD@vP(irJ@]X@GzD@ %  0 - %% %  @   % A 0 B% %  zg !@C@ػR@GzD@/_y{@ - -x(A&Y?%%% %  %1116192%% %  C   %  ,[B@ۿ SFR@GzD@ % D  6\k8cӼ? E unknown -vP(irJ@]X@GzD@RdJ@_39X@GzD@%% %  F  % %  GzD@bJqEOӴ?&pM@W@=? - -iU?%% %  G  % %  ,[B@ۿ SFR@GzD/_@y{ - -x(A&Y?%%% %  %1116205%%% %  %1119966%%% %  %1119990%%% %  %112251%%% %  %112247%% %  H   % I `  - - -,[B@ػR@GzDzg !@C@ۿ SFR@GzD@ % %  vP(irJ@]X@o_EI)?XP/߿<x0@ %%% %  %1116194%% %  J   %  &pM@W@GzD@%%% %  %11-1% %  zg !@C@ػR@o_Ef8uNܿбv.<_y{@ %%% %  %1116193%%% %  %1119969 % K  0/>:u? L unknown -zg !@C@ػR@GzDzg !@C@ػR@GzD@%%% %  %11-1%%% %  %1116190%% %  M   %  zg !@C@ػR@GzD%% %  N   % O  P% %  vP(irJ@]X@GzD@@ - -0/>:u?%%% %   %1119973%%% %   %1116196%% %  Q   %  LdJ@_39X@GzD@%%% %   %1116195%%% %   %1116202%% %  R  % %  vP(irJ@]X@GzD@p4t~R -Jb` - -ST=??%%% %   %1116200%% %  S   %  zg !@C@ػR@GzD@%%% %   %1119976%% %  T  % %  n@6H@EmAX@GzD@ElR< <>@yox 9? - -\k8cӼ?%%% %   %1116197%%% %   %1116189%%% %  & %112248%% %  U ' %%% %  * %1119979%% %  V 0 % %  zg !@C@ػR@GzD@@ - -0/>:u?%%% %  3 %1119971%%% %  5 %1116203%% %  W 6  %  vP(irJ@]X@GzD@%%% %  : %1119982%%% %  > %1116199%%% %  A %1119987%%% %  D %1116198%%% %  I '%112249%%% %  K 0%1116204%%% %  O 6%1119985 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0002593.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     -ʆF@&N@GzD |.Q@@ -V@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth32 lump%   -ʆF@&N@GzD |.Q@@ -V@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111237 -shell%   -ʆF@&N@GzD |.Q@@ -V@GzD@properties%  ansoft% %  -  Stator_Teeth32! -%%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[32] face%     - -ՆF@&N@GzD[_RJ@EP@GzD@ %%% %    %111237%%% %   %6Stator_Teeth[32]id%% %   " - %      - -ȋ,G@)s՘P@GzD8JG@0-P@GzD@  loop%   -ՆF@&N@GzD[_RJ@EP@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -ֆF@EP@GzD׆F@EP@GzD@%%% %   %112266%% %  : % - % ; < =  > -ՆF@&N@GzD |.Q@@ -V@GzD -΍ !o"@aU % ? @  -[_RJ@&N@GzDVAJ@6 "O@GzD@ ' -% %  0%eJ@\bN@o_E&[e\?ACH$@@ %%% %  %11-1 %  A B C D   %  E  F G   %   E H I -   %  J K  - =  % L M N`(A&Y?  O unknown -ȋ,G@)s՘P@GzD8JG@0-P@GzD %   P Q   %  K R  0 =  % S T 8Aޡh?  U unknown -ՆF@&N@GzD[_RJ@EP@GzD %  V W 2 -   % X Y 7Aޡh? Z unknown -ՆF@&N@GzD@[_RJ@EP@GzD@ %  F ! W [ - 5  %  ! F K \ - 5  % ] 4 ^ -ʆF@EP@GzDȋ,G@0-P@GzD@ _ -%% %  ` ". - vertex% a " b % c " d straight% -curve%  ֆF@EP@GzD@ifS7=pfSG=@ - -0/>:u?%%% %  $ %112267%% %  e %& - % f g h  i - -|7J@3 "O@GzDVAJ@f`O@GzD@  % j k % -ՆF@&N@GzD |.Q@@ -V@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  &%11-1 %  l P R m - &  %  n ) o p   %  ) q r s   %  t u ) D - v  % w x yҨiU? ) z unknown -Fq.S_P@EU@GzD@ |.Q@@ -V@GzD@ %  + * { | -   %  4 3 * G - 5  % } M ~0/>:u? *  unknown -ȋ,G@0-P@GzDȋ,G@0-P@GzD@ %  + I  %  N 0/>:u? + unknown -8JG@+s՘P@GzD8JG@+s՘P@GzD@ %  , =  %  , / 4 \ = %% %  -2 - %  -  %  - % %  ȋ,G@0-P@GzDI@$RT֏\cS[ - -`(A&Y? %  @ . Q - &  %  T Y0/>:u? . unknown -[_RJ@&N@GzD[_RJ@&N@GzD@ %  / @ m = %% %  0/ - %  m  ellipse% %  GzD?[_RJ@&N@? - -Aޡh? %  1   %  1 { 3 [  %% %  21 - %  % %  GzD@?[_RJ@&N@? - -Aޡh? %  ~ 7jMBP? W unknown -ʆF@EP@GzD@ȋ,G@0-P@GzD@ %  8 MjMBP? K unknown -ֆF@EP@GzDȋ,G@0-P@GzD%%% %  5%11-1 %  5  _ - -ʆF@EP@GzDȋ,G@0-P@GzD@ % %  ȋ,G@0-P@o_E)f?h9;<dN,@ %%% %  6 "%1116236%% %  7L - -point%  ֆF@EP@GzD@%% %  8M - %  ֆF@EP@GzD%%% %  ; %%112268%% %  <' - %   - -}7J@f`O@GzDwCƟQ@@U@GzD@  %  < -|7J@3 "O@GzDVAJ@f`O@GzD@ i -% %  VAJ@3 "O@o_Ee\&[<&~ -:Ě@ %%% %  =%11-1 %  =  %  @ &  %   TMBP? @ unknown -[_RJ@&N@GzDVAJ@3 "O@GzD %  { A   %  A p -  %  y j8cӼ? A unknown -z뻱PP@,U<V@GzD@Jq.S_P@@ -V@GzD@ %  B   %  B s -  %   x|i8cӼ? B unknown -wCƟQ@@U@GzD@ |.Q@EU@GzD@ %  C - v  %  C - v  %  t -Fq.S_P@EU@GzD |.Q@@ -V@GzD@ %% %  D6 - %  s  %  p % %  GzD@=e:u? %  H n -  %  H J -  %  -8JG@*s՘P@GzDz뻱PP@-U<V@GzD@ -%% %  I5 - %  % %  8JG@+s՘P@GzD@@ - -0/>:u? %  k J =  %  N NT=?? J unknown -8JG@+s՘P@GzDz뻱PP@-U<V@GzD%%% %  L -%1116240%% %  MQ - %  ȋ,G@0-P@GzD%% %  NP - %  8JG@+s՘P@GzD %  P l V - & %% %  Q0 -% %  [_RJ@&N@GzDifS7pfSG@@ - -0/>:u? %  R = %%% %  S 0%1116237%% %  TN - %  [_RJ@&N@GzD %  q V   %  Y MBP? V unknown -[_RJ@&N@GzD@VAJ@6 "O@GzD@%%% %  X 2%1116239%% %  YO - %  [_RJ@&N@GzD@%% %  [9 -% %  ȋ,G@0-P@GzD@$RT֏\I#3+= - -jMBP?%% %  \D -% %  ֆF@EP@GzD/RT֏\@I@ - -jMBP?%% %  ^, - %   - -8JG@*s՘P@GzDz뻱PP@-U<V@GzD@ %%% %  a 7%1120046%%% %  c 8%1120047%%% %  f <%112269%% %  g( - %  v  -Fq.S_P@EU@GzD |.Q@@ -V@GzD@  %  g -}7J@f`O@GzDwCƟQ@@U@GzD@ -% %  ~7J@f`O@o_Ewj鿊Զr?@@ %%% %  h%11-1 %  - h  %  k =  %  u t k - v  %   iU? k unknown -Gq.S_P@EU@GzD |.Q@@ -V@GzD %  l - h  %   0/>:u? l unknown -VAJ@3 "O@GzDVAJ@3 "O@GzD@%% %  m> - %  m % %  VAJ@3 "O@GzD -:Ě.~y$3+= - -MBP? %   NT=?? n unknown -8JG@*s՘P@GzD@z뻱PP@,U<V@GzD@ %  o u  %  o  %  -z뻱PP@,U<V@GzDLq.S_P@@ -V@GzD@ -%% %  p7 - %  p % %   -FN@r M,W@GzD@!v:u? t  unknown - |.Q@EU@GzD |.Q@EU@GzD@ %  y 0/>:u? u  unknown -Gq.S_P@@ -V@GzDGq.S_P@@ -V@GzD@%%% %  v%11-1% %  ITTS@TTS@? ?\@ - %%% %  w D%1116244%% %   xT - %   |.Q@EU@GzD@%% %   yU - %  Gq.S_P@@ -V@GzD@%% %   |4 -% %  8JG@+s՘P@GzD@I$RT֏\@ - -`(A&Y?%%% %  } G%1116241%% %   ~R - %  ȋ,G@0-P@GzD@ %  - %%% %  %11-1% %  z뻱PP@,U<V@o_EJ\}?0[2A{M+*=@ %%% %  I%1116243%% %   S - %  8JG@+s՘P@GzD@ %  -  %   Fl8cӼ?  unknown -z뻱PP@,U<V@GzDLq.S_P@@ -V@GzD%% %   E - %  % %  8JG@+s՘P@GzD -@ x@$bP= - -NT=??%%% %  M%1120054%%% %  N%1120055%%% %  Q%1116238 %   =  %   P(A&Y?  unknown -~7J@3 "O@GzDVAJ@f`O@GzD%%% %  T%1120049 %  - h  %   P(A&Y?  unknown -|7J@3 "O@GzD@VAJ@f`O@GzD@%% %  ! : - % " #% %  [_RJ@&N@GzD@ :Ě@B~@#3+ - -MBP?%%% %  Y%1120051%%% %  [%1116247%%% %  \%1116258%%% %  ^%112274%% %  $ - -%%% %  g%112270%% %  % ) - % &   - -z뻱PP@,U<V@GzDLq.S_P@@ -V@GzD@ %%% %  %11-1 %     -  %   ' h  %  -  % (  )i8cӼ? * unknown -wCƟQ@@U@GzD |.Q@EU@GzD%% %  + @ - % , - % . /% %  GzDQgpI<Kq.S_P@> -V@=? - -iU?%% %  0 ? -% %  VAJ@3 "O@GzD@@ - -0/>:u?%%% %  m%1116252%% %  1 Z - %  VAJ@3 "O@GzD%% %  2 8 -% %  z뻱PP@,U<V@GzD@ - xb` - -NT=?? % 3  0/>:u? 4 unknown -z뻱PP@,U<V@GzDz뻱PP@,U<V@GzD@%%% %  %11-1% %   -FN@r M,W@o_E;f@;f@? ?@ - %%% %  p%1116245%% %  5 V - %  z뻱PP@,U<V@GzD@ %  ' -  %   %% %  6 < - % 7 8% %  ~7J@f`O@GzD@b@6o ҂@b`= - -tT=?? % 9 ) 0/>:u?  : unknown -wCƟQ@@U@GzDwCƟQ@@U@GzD@%%% %  %11-1 % ; ^   - -wCƟQ@@U@GzD |.Q@EU@GzD@ % %  kn?`R@z*T@o_E;f@;f@? ?@ - %%% %  s%1116251%% %  < Y - %  wCƟQ@@U@GzD@%% %  = I -% %   |.Q@EU@GzD@@ - -0/>:u?%% %  > J -% %  Gq.S_P@@ -V@GzD@@ - -0/>:u?%%% %  x%1120062%%% %  y%1120063%%% %  |%1116242%%% %  ~%1120057%%% %  %1120059%% %  ? F -% %   -FN@r M,W@GzDO2\-D :u? J unknown -~7J@f`O@GzD~7J@f`O@GzD@%% %  K A - % L M% %  kn?`R@z*T@GzD6p@vrH? 'E=4@? - -i8cӼ?%%% %  %1116254%% %  N [ - %  Gq.S_P@@ -V@GzD%% %  O \ - %   |.Q@EU@GzD%%% %  %1116253%%% %  %1120076%%% %  %1116246%% %  P K -% %  z뻱PP@,U<V@GzD@@ - -0/>:u?%%% %  %1120065%%% %   %1116250%% %  Q X - %  ~7J@f`O@GzD@%% %  R H -% %  wCƟQ@@U@GzD@@ - -0/>:u?%% %  S + -%%% %   %1120073%%% %   %1116263%%% %   %1116264%%% %   %1116260%%% %   %1120088%% %  T B -% %  wCƟQ@@U@GzDb6o ҂%bP - -tT=??%%% %   %1116257%% %  U ^ - %  ~7J@f`O@GzD%%% %   %1116249%%% %  " %1120069%%% %  & %112272%% %  V 'G -% %  ~7J@f`O@GzD@@ - -0/>:u?%%% %  ( %1116255%% %  W )] - %  wCƟQ@@U@GzD%%% %  , %1120079%%% %  . %1120080%%% %  3 %1116265%%% %  7 %1120071%%% %  9 %1116262%%% %  ; %112273%%% %  A %1116256%%% %  D %1120084%%% %  I '%1116261%%% %  L )%1120082 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0002721.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     -wgB K@wgB K@GzD_bT@_bT@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth34 lump%   -wgB K@wgB K@GzD_bT@_bT@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111243 -shell%   -wgB K@wgB K@GzD_bT@_bT@GzD@properties%  ansoft% %  -  Stator_Teeth34 -%%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[34] face%     - -wgB K@wgB K@GzD-utDN@-utDN@GzD@ %%% %    %111243%%% %   %6Stator_Teeth[34]id%% %    - %      -wgB K@wgB K@GzD@_bT@_bT@GzD@ -(Hq?xKMߴ?pe'}`*b}ᚿ loop%   -wgB K@wgB K@GzD-utDN@-utDN@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown --utDN@wgB K@GzD-utDN@wgB K@GzD@%%% %   %112290%% %  :  - % ; < =  > - - 1dK@w/eM@GzD_ S@R_KT@GzD@  % ? @  -IcK@w/eM@GzD 1dK@9e'N@GzD@ ' -% %   1dK@w/eM@o_Ee\&[<&~ -:Ě@ %%% %  %11-1 %  A B C D   %  E  F G   %   H I J   %  K L  - - M  % N O PިiU?  Q unknown -u,uDw2S@t,uDw2S@GzD@_bT@_bT@GzD@ %   R S   %  T U  0 -   % V 8 W4Aޡh?  X unknown -wgB K@wgB K@GzD@-utDN@-utDN@GzD@ %  Y Z 2   % [ 7 \CAޡh? ] unknown -wgB K@wgB K@GzD-utDN@-utDN@GzD %  ^ ! Z _ - 5  %  ! ^ T ` - 5  % a 3 < --utDN@wgB K@GzD>e'N@IcK@GzD@ b -%% %  c " - vertex% d " e % f " g straight% -curve%  -utDN@wgB K@GzDifS7pfSG@@ - -0/>:u?%%% %  $ %112291%% %  h % - % i j 5  b - --utDN@wgB K@GzD>e'N@IcK@GzD@  % k l % - 1dK@w/eM@GzD_ S@R_KT@GzD@ > -% %  _ S@R_KT@o_E~?C6)Kr> m&=@ %%% %  &%11-1 %  m n o p - &  %  q ) r s   %  ) t u v   %  L K ) D - M  % w x yިiU? ) z unknown -t,uDw2S@u,uDw2S@GzD_bT@_bT@GzD %  { * | }   %  ~  * G -  %  P n8cӼ? * unknown -_ S@R_KT@GzD@w,uDw2S@_bT@GzD@ %  +   %  + J -  %   O:u? . unknown -wgB K@-utDN@GzDwgB K@-utDN@GzD@ %  / 4 `   %  / {  %% %  0 - %  S % %  GzD@?-utDN@wgB K@? - -4Aޡh? %  o 1   %  1 3 _  %% %  2 - %  S % %  GzD?-utDN@wgB K@? - -CAޡh? %  4 3 5  %   7MBP? Z unknown --utDN@wgB K@GzD9e'N@IcK@GzD %  8 %MBP? T unknown --utDN@wgB K@GzD@>e'N@IcK@GzD@%%% %  5%11-1% %  %M@DmMJ@o_E -e\*[?@@ %%% %  6 "%1116296%% %  7 - -point%  -utDN@wgB K@GzD%% %  8 - %  -utDN@wgB K@GzD@%%% %  ; %%112292%% %  < - %   - -w/eM@IcK@GzD:e'N@ 1dK@GzD@ %%% %  =%11-1 %  t - =  %  @ &  %  @ - &  %  t Y @ p   %   O(A&Y? o unknown -IcK@w/eM@GzD 1dK@9e'N@GzD %  A   %  A s -  %  y (m8cӼ? A unknown -R_KT@_ S@GzD_bT@v,uDw2S@GzD %  B o l   %   ~ B v -  %   x<t,uDw2S@_bT@=? - -ިiU? %  U E   %  E } - =  %   WT=?? E unknown - 1dK@w/eM@GzD@_ S@R_KT@GzD@ %  u F L  %  F u  %  ~ -_ S@R_KT@GzDw,uDw2S@_bT@GzD@ -%% %  G - %  G % %  kn?`R@z*T@GzD@4^*6<*<F -@`hCo9? - -n8cӼ? %  H T   %  H -  %   WT=?? H unknown -w/eM@ 1dK@GzD@R_KT@_ S@GzD@ %  r I -  %  I r K  %  -R_KT@_ S@GzD_bT@v,uDw2S@GzD@ -%% %  J - %  % %  z*T@kn?`R@GzD@Ļ:u? K unknown -_bT@u,uDw2S@GzD_bT@u,uDw2S@GzD@ %  P x0/>:u? ~ unknown -u,uDw2S@_bT@GzDu,uDw2S@_bT@GzD@%%% %  M%11-1 %  M  -t,uDw2S@t,uDw2S@GzD_bT@_bT@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  N -%1116300%% %  O - %  _bT@u,uDw2S@GzD@%% %  P - %  u,uDw2S@_bT@GzD@ %  R U -  %  R Y -  %  -wgB K@-utDN@GzDIcK@:u? %   WMBP? U unknown -wgB K@-utDN@GzD@IcK@9e'N@GzD@%%% %  V 0%1116297%% %  W - %  wgB K@-utDN@GzD@ %  \ MBP? Y unknown -wgB K@-utDN@GzDIcK@:u? ^ unknown -9e'N@IcK@GzD9e'N@IcK@GzD@%% %  _ - %  % %  9e'N@IcK@GzDB~ :Ě#3+= - -MBP?%% %  ` - %  % %  -utDN@wgB K@GzD@!~@ -:Ě@|#3+ - -%MBP?%%% %  d 7%1120146%%% %  f 8%1120147%%% %  i <%112293%% %   j - %   - -_ S@R_KT@GzDw,uDw2S@_bT@GzD@  %  j -w/eM@IcK@GzD:e'N@ 1dK@GzD@ -% %  9e'N@IcK@o_E*[ -e\ -:Ě*~@  %  | l n =  %  l |  - =  %   WT=?? t  unknown - 1dK@w/eM@GzD_ S@R_KT@GzD %  n m { - &  %  m -  %   0/>:u? m  unknown -IcK@9e'N@GzDIcK@9e'N@GzD@ %   0/>:u? n - unknown - 1dK@w/eM@GzD 1dK@w/eM@GzD@%% %   p - %  p  %  % %  IcK@9e'N@GzDF~@ :Ě - -O(A&Y? %  q -  %   WT=?? q  unknown -w/eM@ 1dK@GzDR_KT@_ S@GzD%% %   s - %  % %  z*T@kn?`R@GzDT^*6᡼"ۘ?hCF -@o9? - -(m8cӼ?%% %   v - %  % %  kn?`R@z*T@GzDĻꢼ_瑥?G[@~e\? - -:u? ! unknown -_ S@R_KT@GzD_ S@R_KT@GzD@%%% %  %11-1% %  kn?`R@z*T@o_E;f@;f@? ?@ - %%% %  G%1116301%% %  "  - %  _ S@R_KT@GzD@ %  # -  % $  Q(A&Y? % unknown -w/eM@IcK@GzD@9e'N@ 1dK@GzD@ %  # & -  %   % ' -w/eM@ 1dK@GzDR_KT@_ S@GzD@ ( -%% %  )  - % * +% %  w/eM@ 1dK@GzD@zm}k@wA9?fŅ@ - -WT=?? % ,  0/>:u? - unknown -R_KT@_ S@GzDR_KT@_ S@GzD@%%% %  %11-1 % .  - -R_KT@_ S@GzD_bT@v,uDw2S@GzD@ % %  z*T@kn?`R@o_E;f@;f@? ?@ - %%% %  J%1116308%% %  /  - %  R_KT@_ S@GzD@%% %  0  -% %  _bT@u,uDw2S@GzD@@ - -0/>:u?%% %  1  -% %  u,uDw2S@_bT@GzD@@ - -0/>:u?%% %  2  - % 3  ( - -w/eM@ 1dK@GzDR_KT@_ S@GzD@ %%% %  O%1120154%%% %  P%1120155%%% %  %11-1 % 4  - -wgB K@-utDN@GzDIcK@:u?%%% %  _%1116313%% %  <  - %  9e'N@IcK@GzD%%% %  `%1116305%% %  =  - %  9e'N@IcK@GzD@%%% %  j%112294%% %  >  -%%% %  %11-1%% %  ?  -% %   1dK@w/eM@GzDwA9?fŅ@zm}k@%bP= - -WT=??%% %  @  -% %  IcK@9e'N@GzD@@ - -0/>:u?%% %  A  -% %   1dK@w/eM@GzD@@ - -0/>:u?%%% %  p%1116315%% %  B  - %  IcK@9e'N@GzD%% %  C  - %   1dK@w/eM@GzD%% %  D  - % E F% %  R_KT@_ S@GzDzm}kwA9?fŅbP - -WT=??%%% %  s%1116310%% %  G  - %  R_KT@_ S@GzD%%% %  v%1116317%% %  H  - %  _ S@R_KT@GzD%%% %  x%1120171%%% %  y%1120172%% %  I  -% %   1dK@w/eM@GzD@F~ :Ě@ - -O(A&Y?%%% %  }%1116302%% %  J  - %   1dK@w/eM@GzD@%% %  K  -% %  _ S@R_KT@GzD@@ - -0/>:u?%%% %  %1120157 %  & %% %  L  -% %  9e'N@IcK@GzD@[ -:Ě~@ - -Q(A&Y? % M  0/>:u? # N unknown -w/eM@ 1dK@GzDw/eM@ 1dK@GzD@%%% %  %11-1% %  w/eM@ 1dK@o_E C6)K濜~?z> m&@@ %%% %  %1116307%% %  O  - %  w/eM@ 1dK@GzD@%% %  P  -% %  R_KT@_ S@GzD@@ - -0/>:u?%% %  Q  -%%% %  %1120168%%% %  %1116324%%% %  %1116323%%% %  %112297%% %  R  -%% %  S  -%%% %  %1116304%% %  T  - %  IcK@9e'N@GzD@%%% %  %1116314%% %  U  -% %  w/eM@ 1dK@GzD[ -:Ě@~ - -Q(A&Y?%%% %  %1116321%%% %  %1120178%%% %   %1120164%%% %   %112295%%% %   %1116316%%% %   %1116318%%% %   %1116319%%% %   %1120181%%% %   %1120183%%% %   %1116311%% %  V  - %  w/eM@ 1dK@GzD%%% %   %1120174%%% %   %1120185%%% %   %1116303%%% %   %1120159%%% %   %1116320%%% %  $ %1116306%% %  W & -% %  w/eM@ 1dK@GzD@@ - -0/>:u?%%% %  * %1120166%%% %  , %1116325%%% %  . %112299%%% %  3 %112298%%% %  4 %112296%%% %  6 %1120161%%% %  9 %1116312%%% %  E %1120176%%% %  M &%1116322 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0002849.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     -&N@ĆF@GzD@ -V@ |.Q@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth36 lump%   -&N@ĆF@GzD@ -V@ |.Q@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111249 -shell%   -&N@ĆF@GzD@ -V@ |.Q@GzD@properties%  ansoft% %  -  Stator_Teeth36! %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[36] face%     - -&N@džF@GzDEP@[_RJ@GzD@ %%% %    %111249%%% %   %6Stator_Teeth[36]id%% %   "  %      -&N@ɆF@GzD@@ -V@ |.Q@GzD@ -;Q|?jsB?o:u?  9 unknown -&N@[_RJ@GzD&N@[_RJ@GzD@%%% %   %112314%% %  : %  % ; < =  > -&N@ĆF@GzD@ -V@ |.Q@GzD -jsB?Q|o>aX# % ? @  -@U@wCƟQ@GzDEU@ |.Q@GzD@ ' -% %  z*T@kn?`R@o_E;f@;f@? ?@ - %%% %  %11-1 %  A , B C -   %  D  E F   %   G H I   %  ) J  - -   % K L MiU?  N unknown -EU@Gq.S_P@GzD@@ -V@ |.Q@GzD@ %   O P   %  Q R  0 =  % S T 8TAޡh?  U unknown -&N@džF@GzDEP@[_RJ@GzD %  V W 2 -   % X Y 7@ޡh? Z unknown -&N@ɆF@GzD@EP@[_RJ@GzD@ %  [ ! W \ - 5  %  ! [ Q ] - 5  % ^ 4 _ -&N@[_RJ@GzD6 "O@VAJ@GzD@ ` -%% %  a ".  vertex% b 2 c % d 0 e straight% -curve%  &N@[_RJ@GzD@ifS7=pfSG=@ - -0/>:u?%%% %  $ %112315%% %  f %&  % g h i  j - -EP@ĆF@GzD0-P@ ȋ,G@GzD@  % k l % -&N@ĆF@GzD@ -V@ |.Q@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  &%11-1 %  m E J n &  %  J ) l o -   %  H p ) C q  % r s L0/>:u? ) t unknown -@ -V@Gq.S_P@GzD@ -V@Gq.S_P@GzD@ %  u * v w   %  @ x * F - &  % y M zh8cӼ? * { unknown -@U@wCƟQ@GzD@EU@ |.Q@GzD@ %  + | } ~   %   B + I - q  %   Lm8cӼ? + unknown -,U<V@z뻱PP@GzD@@ -V@Lq.S_P@GzD@ %  , A @ n -  %% %  -2  %  I  %  n  ellipse% %  GzD@_5i"z:u? . unknown -EP@ȆF@GzDEP@ɆF@GzD@ %  / 4 ] =  %  / = %% %  0/  %  0 % %  GzD?EP@džF@? - -TAޡh? %  | 1   %  1 u 3 \  %% %  21  %  2 % %  GzD@?EP@ԆF@? - -@ޡh? %  4 3 - 5  %   7MBP? W unknown -&N@[_RJ@GzD@3 "O@VAJ@GzD@ %  8 MBP? Q unknown -&N@[_RJ@GzD6 "O@VAJ@GzD%%% %  5%11-1 %  5  ` - -&N@[_RJ@GzD6 "O@VAJ@GzD@ % %  3 "O@VAJ@o_E -e\?*[@ %%% %  6 "%1116356%% %  7L  -point%  &N@[_RJ@GzD@%% %  8M  %  &N@[_RJ@GzD%%% %  ; %%112316%% %  <'  %  _  - -+s՘P@ȋ,G@GzD0-P@8JG@GzD@  %  < -EP@ĆF@GzD0-P@ ȋ,G@GzD@ j -% %  %~P@IF@o_Eh9;ῤ)f?@@ %%% %  =%11-1 %  A o =  %  x @ - &  %  M 0/>:u? J unknown -EU@ |.Q@GzDEU@ |.Q@GzD@ %   sҨiU? A unknown -EU@Fq.S_P@GzD@ -V@ |.Q@GzD %  B  - q  %  B -*U<V@z뻱PP@GzD@ -V@Lq.S_P@GzD@ -%% %  C;  %  o % %  @ -V@Gq.S_P@GzD@@ - -0/>:u? %  W D   %  D w -  %  z ZT=?? D unknown -f`O@~7J@GzD@@U@wCƟQ@GzD@ %  E m & %% %  F3  %  F % %  z*T@kn?`R@GzD@6p<8I<qE=4@ '? - -h8cӼ? %  G V   %  G ~ -  %   MT=?? G unknown -+s՘P@8JG@GzD@/U<V@z뻱PP@GzD@ %  p H - q %% %  I:  %  I % %  r M,W@ -FN@GzD@t2\-<:Af<h9;)f -@? - -m8cӼ?%%% %  K -%1116360%% %  LP  %  @ -V@Gq.S_P@GzD@%% %  MQ  %  EU@ |.Q@GzD@ %  O R - i  %  O V - i %% %  P0 % %  EP@ɆF@GzDpfSWifS7@@ - -0/>:u? %  Q =  %  R =  %   TcMBP? R unknown -EP@ĆF@GzD0-P@ȋ,G@GzD%%% %  S 0%1116357%% %  TN  %  EP@ɆF@GzD %  Y cMBP? V unknown -EP@ɆF@GzD@0-P@ ȋ,G@GzD@%%% %  X 2%1116359%% %  YO  %  EP@ɆF@GzD@ %  [  %   0/>:u? [ unknown -3 "O@VAJ@GzD3 "O@VAJ@GzD@%% %  \6  %  % %  3 "O@VAJ@GzD@&~ -:Ě#$3+= - -MBP?%% %  ]D  %  % %  &N@[_RJ@GzDF~@ :Ě@$3+ - -MBP?%% %  _)  %   - -f`O@~7J@GzD@U@wCƟQ@GzD@ %%% %  b 7%1120246%%% %  d 8%1120247%%% %  g <%112317%% %  h(  %  h -+s՘P@ȋ,G@GzD0-P@8JG@GzD@ -% %  0-P@ȋ,G@o_E)fh9;SRT֏\I@ %%% %  i%11-1 %  l p =  %  l m =  %   |i8cӼ? m unknown -@U@wCƟQ@GzDEU@ |.Q@GzD%% %  n=  %  o % %  EU@ |.Q@GzD@@ - -0/>:u?%% %  o< % %  GzD7#G$xt:u? x  unknown -@U@wCƟQ@GzD@U@wCƟQ@GzD@%%% %  y F%1116361%% %   zR  %  @U@wCƟQ@GzD@ %    | -  %   ж(A&Y? | - unknown -+s՘P@ȋ,G@GzD@0-P@8JG@GzD@ %   }   -  %  }    %    -(s՘P@8JG@GzD/U<V@z뻱PP@GzD@  -%% %   ~9  %  % %  +s՘P@8JG@GzD@(x@ -@ - -MT=?? %   0/>:u?   unknown -,U<V@z뻱PP@GzD,U<V@z뻱PP@GzD@%%% %  I%1116368%% %   W  %  ,U<V@z뻱PP@GzD@%%% %  L%1120254%%% %  M%1120255 %    i %%% %  P%1116358 %   =  %  -  %   (A&Y?  unknown -3 "O@v7J@GzDf`O@VAJ@GzD %    =  %    -  %   ж(A&Y?  unknown -+s՘P@ȋ,G@GzD0-P@8JG@GzD%% %   C  %   !% %  0-P@ȋ,G@GzDIRT֏\$3+= - -cMBP?%%% %  T%1120249%% %  " 7  % #  $% %  EP@ɆF@GzD@I@JRT֏\@#3+ - -cMBP?%%% %  Y%1120251 % % -3 "O@v7J@GzDf`O@VAJ@GzD@ & -%% %  ' I % %  3 "O@VAJ@GzD@@ - -0/>:u?%%% %  \%1116364%% %  ( T  %  3 "O@VAJ@GzD@%%% %  ]%1116378%% %  ) ^  %  3 "O@VAJ@GzD%%% %  _%112319%% %  * * % %  @U@wCƟQ@o_EԶr?wj@ %%% %  h%112318%%% %  %11-1%% %  + >  % ,  -% %  z*T@kn?`R@GzDĻꢼI]Ԗ?+e\@ [o9? - -|i8cӼ?%%% %  n%1116371%% %  . Y  %  EU@ |.Q@GzD%%% %  o%1116370%% %  / @  % 0  1% %  r M,W@ -FN@GzD,v8!v ? ZLm1o @? - -m8cӼ?%% %  2 +  % 3   & - -3 "O@v7J@GzDf`O@VAJ@GzD@ %%% %  s%1120271 %  - %% %  4 5 % %  f`O@~7J@GzD@6 -:Ě ~@ - -(A&Y? %   -  % 5  0/>:u? 6 unknown -f`O@~7J@GzDf`O@~7J@GzD@%%% %  %11-1%%% %  w%1116362%% %  7 S  %  f`O@~7J@GzD@%% %  8 ? % %  @U@wCƟQ@GzD@@ - -0/>:u?%%% %  z%1120257 %   -  %   %% %  9 8 % %  0-P@ȋ,G@GzD@RT֏\I@ - -ж(A&Y? %   -  % :  0/>:u?  ; unknown -+s՘P@8JG@GzD+s՘P@8JG@GzD@%%% %  %11-1 % <   - -(s՘P@8JG@GzD/U<V@z뻱PP@GzD@ % %  +s՘P@8JG@o_E0[2AQ\}?@@ %%% %  ~%1116367%% %  = V  %  +s՘P@8JG@GzD@%% %  > K % %  ,U<V@z뻱PP@GzD@@ - -0/>:u?%%% %  %1120268 % ?  0/>:u? @ unknown -0-P@ȋ,G@GzD0-P@ȋ,G@GzD@ % A  ZT=?? B unknown -f`O@~7J@GzD@U@wCƟQ@GzD%% %  C E  % D  E% %  3 "O@VAJ@GzD6 -:Ě@ ~ - -(A&Y? % F  MT=?? G unknown -(s՘P@8JG@GzD,U<V@z뻱PP@GzD%% %  H B  % I  J% %  +s՘P@8JG@GzDRT֏\@I - -ж(A&Y?%%% %  %1116377%% %  K ]  %  0-P@ȋ,G@GzD%%% %  %1116365%% %  L U  %  0-P@ȋ,G@GzD@%%% %  %11-1% %  f`O@~7J@o_E*[ -e\ -:Ě*~@ %%% %  %1116383%%% %  %1120261%%% %  %1120286%%% %  %112320%%% %  %1116372%% %  M Z  %  @U@wCƟQ@GzD%%% %  %1120273%%% %  %1116374%% %  N [  %  ,U<V@z뻱PP@GzD%%% %  %112321%% %  O , %%% %  %1116363%% %  P J % %  f`O@~7J@GzD@@ - -0/>:u?%%% %   %1120259%%% %   %1116373%%% %   %1116366%% %  Q H % %  +s՘P@8JG@GzD@@ - -0/>:u?%% %  R - %%% %   %1120266%%% %   %1116385%% %  S G % %  0-P@ȋ,G@GzD@@ - -0/>:u?%% %  T F % %  f`O@~7J@GzD6o ҂@b@"bP= - -ZT=??%%% %   %1116379%% %  U _  %  f`O@~7J@GzD%% %  V A % %  ,U<V@z뻱PP@GzD(x - - -MT=??%%% %   %1116376%% %  W \  %  +s՘P@8JG@GzD%%% %   %1120283%%% %  # %1120264%%% %  , %1120276%%% %  0 %1120279%%% %  3 %112322%%% %  5 %1116384%%% %  : %1116382%%% %  < %112323%%% %  ? %1116381%%% %  A %1116380%%% %  D %1120288%%% %  F %1116375%%% %  I %1120281 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0002977.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     -֝P@dJFUB@GzD_39X@&pM@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth38 lump%   -֝P@dJFUB@GzD_39X@&pM@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111255 -shell%   -֝P@dJFUB@GzD_39X@&pM@GzD@properties%  ansoft% %  -  Stator_Teeth38 %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[38] face%     - -֝P@dJFUB@GzDʹvT -R@-Ξ{F@GzD@ %%% %    %111255%%% %   %6Stator_Teeth[38]id%% %     %      - -Aѳ%acQ@iŻE@GzD;bW@MM@GzD@  loop%   -֝P@dJFUB@GzDʹvT -R@-Ξ{F@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -˴vT -R@dJFUB@GzDʹvT -R@dJFUB@GzD@%%% %   %112338%% %  :   % ; < =  > -֝P@dJFUB@GzD_39X@&pM@GzD -Y?XoT]g~W4x_ - % ? @  -֝P@$Ξ{F@GzD,Q@gI#_F@GzD@ ' -% %  ,Q@gI#_F@o_Eh9;?)f@ %%% %  %11-1 %  A B C D -   %  E  B F   %   E G H -   %  I C  - =  % J K LgT=??  M unknown -Bѳ%acQ@iŻE@GzD;bW@MM@GzD %   N O   %  P Q  0 - R  % S 8 T$Aޡh?  U unknown -֝P@dJFUB@GzD@ʹvT -R@-Ξ{F@GzD@ %  V W 2 =  % X 7 Y@ޡh? Z unknown -֝P@dJFUB@GzDʹvT -R@(Ξ{F@GzD %  [ ! W \ - 5  %  ! [ P ] - 5  % ^ 3 _ -˴vT -R@dJFUB@GzDݿ SFR@,[B@GzD@ ` -%% %  a "  vertex% b \ c % d ] e straight% -curve%  ʹvT -R@dJFUB@GzDpfSWifS7@@ - -0/>:u?%%% %  $ %112339%% %  f %  % g h i  j - -]X@vP(irJ@GzD_39X@RdJ@GzD@  % k l % -֝P@dJFUB@GzD_39X@&pM@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  &%11-1 %  N m V n - &  %  o ) m p   %  ) o * F -   %  , V ) D =  % q r Kж(A&Y? ) s unknown -,Q@hŻE@GzDBѳ%acQ@gI#_F@GzD %  + * t u -   % v K w0/>:u? * x unknown -Bѳ%acQ@iŻE@GzDBѳ%acQ@iŻE@GzD@ %  y z + H {  % | L }0/>:u? + ~ unknown -;bW@MM@GzD;bW@MM@GzD@ %  l , z  = %% %  -  %  D  %  H % %  Bѳ%acQ@iŻE@GzD Ԋ@ @ - -gT=?? %  @ . O - &  %  T Y0/>:u? . unknown -֝P@(Ξ{F@GzD֝P@)Ξ{F@GzD@ %  / 4 ] R  %  / R  %  -֝P@dJFUB@GzD@_39X@&pM@GzD@%% %  0  %  O  ellipse% %  GzD@?˴vT -R@dJFUB@? - -$Aޡh? %  C 1 @ n =  %  1 3 \ = %% %  2  %  O % %  GzD?˴vT -R@dJFUB@? - -@ޡh? %  4 3 5  %   7HMBP? W unknown -̴vT -R@dJFUB@GzDۿ SFR@,[B@GzD %  8 HMBP? 4 unknown -ʹvT -R@dJFUB@GzD@ݿ SFR@,[B@GzD@%%% %  5%11-1 %  5  ` - -˴vT -R@dJFUB@GzDݿ SFR@,[B@GzD@ % %  Q@B@o_Ef8uNܿбv.?<511=@@ %%% %  6 "%1116416%% %  7  -point%  ʹvT -R@dJFUB@GzD%% %  8  %  ʹvT -R@dJFUB@GzD@%%% %  ; %%112340%% %  <  %   - -ػR@zg !@C@GzD]X@vP(irJ@GzD@  %  < -]X@vP(irJ@GzD_39X@RdJ@GzD@ j -% %  EmAX@n@6H@o_E;f@;f@? ?@ - %%% %  =%11-1 %  I =  %  @ A p - &  %  Y rMBP? @ unknown -֝P@(Ξ{F@GzD,Q@gI#_F@GzD %  B A -   %  r 0/>:u? A unknown -,Q@gI#_F@GzD,Q@gI#_F@GzD@%% %  D  %  D % %  ,Q@gI#_F@GzDJRT֏\@I - -ж(A&Y? %  E u R  %  } wgT=?? E unknown -Aѳ%acQ@iŻE@GzD@;bW@MM@GzD@%% %  F  %  F % %  Bѳ%acQ@iŻE@GzD@@ - -0/>:u? %  G - {  %  G I  - {  %  -;bW@MM@GzDW@&pM@GzD@ -%% %  H  %  H % %  ;bW@MM@GzD@@ - -0/>:u? %  L j8cӼ? I unknown -;bW@MM@GzDW@&pM@GzD%%% %  J -%1116420%% %  K  %  Bѳ%acQ@iŻE@GzD%% %  L  %  ;bW@MM@GzD %  m N Q - & %% %  O % %  ֝P@(Ξ{F@GzD@pfSG=ifS7=@ - -0/>:u? %  P R  %  Q t o R  %   TcMBP? unknown -֝P@$Ξ{F@GzD@,Q@gI#_F@GzD@%%% %  R%11-1 %  R  %  R  -֝P@dJFUB@GzD@_39X@&pM@GzD@ -SoT]?Y??g~W4x_ -%%% %  S 0%1116417%% %  T  %  ֝P@(Ξ{F@GzD@ %  W = %%% %  X 2%1116419%% %  Y  %  ֝P@(Ξ{F@GzD %  [ -  %   0/>:u? [ unknown -ۿ SFR@,[B@GzDۿ SFR@,[B@GzD@%% %  \  %  \ % %  ۿ SFR@,[B@GzD_Xy{^$3+= - -HMBP?%% %  ]  %  ] % %  ʹvT -R@dJFUB@GzD@2_@y{@#3+ - -HMBP?%% %  _  %  {  - -;bW@MM@GzDW@&pM@GzD@ %%% %  b 7%1120346%%% %  d 8%1120347%%% %  g <%112341%% %  h  %  _  -W@JdJ@GzD_39X@&pM@GzD@  %  h -ػR@zg !@C@GzD]X@vP(irJ@GzD@ -% %  ػR@zg !@C@o_EXP/߿I)?@@ %%% %  i%11-1 %  i  %  l =  %  l -  %   iU? l unknown -W@JdJ@GzD_39X@&pM@GzD%% %  n % %  ֝P@(Ξ{F@GzDI@YRT֏\@,$3+ - -MBP? %  w ж(A&Y? o unknown -,Q@iŻE@GzD@Bѳ%acQ@hI#_F@GzD@%% %  p  %  % %  ,Q@gI#_F@GzD@@ - -0/>:u?%%% %  q D%1116424%% %  r  %  ,Q@gI#_F@GzD %  t y R %% %  u % %  ;bW@MM@GzD@ Ԋ  - -gT=??%%% %  v F%1116421%% %  w  %  Bѳ%acQ@iŻE@GzD@ %  z y {  %   }g8cӼ? y unknown -;bW@MM@GzD@W@&pM@GzD@%%% %  {%11-1% %  r M,W@ -FN@o_E;f@;f@? ?@ - %%% %  | H%1116423%% %  }  %  ;bW@MM@GzD@%% %    %   % %  r M,W@ -FN@GzDr2\-Af?h9;@)f -o9? - -j8cӼ?%%% %  K%1120354%%% %  L%1120355%%% %  O%1116418 %    R  %   -  %   (A&Y?  unknown -ػR@,[B@GzD@ۿ SFR@zg !@C@GzD@%% %    % %  ,Q@gI#_F@GzD@IJRT֏\#3+= - -cMBP? %   R  %  -  % -  iU?  unknown -W@LdJ@GzD@_39X@&pM@GzD@%% %     %    - -ػR@,[B@GzDۿ SFR@zg !@C@GzD@ % %  %= ףp=Z@GzD@ar^?@@ %%% %  T%1120349 %   =  %   -  %   (A&Y?  unknown -ػR@,[B@GzDۿ SFR@zg !@C@GzD%%% %  Y%1120351 %  -ػR@,[B@GzDۿ SFR@zg !@C@GzD@  -%% %    % %  ۿ SFR@,[B@GzD@@ - -0/>:u?%%% %  \%1116433%% %     %  ۿ SFR@,[B@GzD%%% %  ]%1116443%% %     %  ۿ SFR@,[B@GzD@%%% %  _%112344%% %    %%% %  h%112342%% %     %  -W@JdJ@GzD_39X@&pM@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  %11-1 %     -  %    - i  %   - i  %  -  %   0/>:u?  unknown -_39X@LdJ@GzD_39X@LdJ@GzD@ %   !Bl8cӼ? " unknown -]X@vP(irJ@GzD_39X@RdJ@GzD %  - %% %  #   % $ %% %  GzD?(h`윲<W@&pM@=? - -iU?%%% %  n%1116427%% %  &  % %  Bѳ%acQ@iŻE@GzD@JRT֏\I@ - -ж(A&Y?%%% %  p%1116425%% %  '   %  ,Q@gI#_F@GzD@%%% %  r%1120362%%% %  u%1116422%%% %  w%1120357 % (  0/>:u? ) unknown -W@&pM@GzDW@&pM@GzD@%% %  *   % + ,% %  r M,W@ -FN@GzD@EТ< ޳!̟<f@}5p? - -g8cӼ?%%% %  }%1120359%%% %  %1116434%% %  -   %  W@&pM@GzD %     -  % .  /aT=??  0 unknown -ػR@zg !@C@GzD@]X@vP(irJ@GzD@ %   1 %% %  2   % 3 1 4% %  ۿ SFR@,[B@GzD@Oy{_@ - -(A&Y?%%% %  %1116428 % 5 / +l8cӼ? 6 unknown -]X@vP(irJ@GzD@_39X@RdJ@GzD@%% %  7   % 8 9% %  GzD@/d' 7 ?_39X@RdJ@=? - -iU?%%% %  %112346%% %  :  % %  ۿ SFR@,[B@o_Eбv.f8uNܿ<y{_@  % ; ! aT=?? < unknown -ػR@zg !@C@GzD]X@vP(irJ@GzD%% %  =   % >  ?% %  ػR@zg !@C@GzDOy{@_ - -(A&Y?%%% %  %11-1%%% %  %1116442%%% %  %1120376%%% %  %1120391%%% %  %112345%%% %  %112343%%% %  %11-1 %    @  %    1 -  %   @ - i %% %  A  % %  _39X@LdJ@GzD@@ - -0/>:u?%% %  B   % C @ D% %  EmAX@n@6H@GzDhElR`~ ?삁?yoxG@? - -Bl8cӼ?%%% %  %1116429%% %  E   %  _39X@LdJ@GzD%%% %  %1116426%%% %  %1120364%% %  F  % %  W@&pM@GzD@@ - -0/>:u?%%% %  %1116444%% %  G   %  W@&pM@GzD@%%% %   %1120369%% %  H   % I @ J% %  ػR@zg !@C@GzD@R -J@p4t~@ - -aT=?? % K  0/>:u?  L unknown -ػR@zg !@C@GzDػR@zg !@C@GzD@%%% %   %1116445%% %  M   %  ػR@zg !@C@GzD@%% %  N  % %  EmAX@n@6H@GzD@goF<ۍ<Bg8uNбv. @? - -+l8cӼ?%%% %  - %1116441%% %  O   %  _39X@LdJ@GzD@%%% %   %112347%% %  P  % %  ]X@vP(irJ@GzDR -Jp4t~$bP - -aT=??%%% %   %1116432%% %  Q   %  ػR@zg !@C@GzD % R ! /0/>:u?  S unknown -]X@vP(irJ@GzD]X@vP(irJ@GzD@%%% %   %1116435%%% %   %1116430%% %  T !  %  ]X@vP(irJ@GzD%%% %  $ %1120370%%% %  ( %1116440%%% %  + %1120388%%% %  . %1116438%% %  U /  %  ]X@vP(irJ@GzD@%% %  V 1 % %  ػR@zg !@C@GzD@@ - -0/>:u?%%% %  3 %1120385%%% %  5 %1116436%%% %  8 %1120380%%% %  ; %1116431%%% %  > %1120374%% %  W @ % %  ]X@vP(irJ@GzD@@ - -0/>:u?%%% %  C !%1120372%%% %  I /%1120382%%% %  K 1%1116439%%% %  R @%1116437 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0003105.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     -PbAR@:@GzD -w`-Z@]F@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth40 lump%   -PbAR@:@GzD -w`-Z@]F@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111261 -shell%   -PbAR@:@GzD -w`-Z@]F@GzD@properties%  ansoft% %  -  Stator_Teeth40! %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[40] face%     - -QbAR@:@GzDWнS@C wA@GzD@ %%% %    %111261%%% %   %6Stator_Teeth[40]id%% %   "  %      -PbAR@:@GzD@ -w`-Z@|]F@GzD@ -td?:cκ?TxV loop%   -QbAR@:@GzDWнS@C wA@GzD@  - cone% surface%  ևL@ևL@? ?C;@GzDylTS@ <@GzD@  % ( )  -VbAR@:@GzD -w`-Z@]F@GzD% %  :ș< ףp=Z@GzDar^<@ %%% %  %11-1 %  * + , -   %  .  / 0 -   %   . 1 2   %  3 4  " - 5  edge% 6 7 80/>:u?  9 unknown -QbAR@? wA@GzDXbAR@@ wA@GzD@%%% %   %112362%% %  : %  % ; < =  > - -RнS@:@GzDylTS@C ->C;@GzD@  % ? @  -R4S@C ->C;@GzDylTS@ <@GzD@ ' -% %  ylTS@C ->C;@o_E8j@MLvԿ< t0p@ %%% %  %11-1 %  A B C D   %  E  F G   %   H I J   %  K L  - - M  % N O PViU?  Q unknown -{NA>Y@kAC@GzD@ -w`-Z@{]F@GzD@ %   R S   %  T U  0   % V W 8&Aޡh?  X unknown -VbAR@:@GzDWнS@? wA@GzD %  Y Z 2 -   % [ \ 7LAޡh? ] unknown -QbAR@:@GzD@WнS@C wA@GzD@ %  ^ ! Z _ - 5  %  ! ^ T ` - 5  % a 4 b -PbAR@? wA@GzDb$ܵ|R@YA@GzD@ c -%% %  d ".  vertex% e _ f % g " h straight% -curve%  QbAR@? wA@GzD@pfSG=ifS7=@ - -0/>:u?%%% %  $ %112363%% %  i %&  % j k M  l -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@  % m n % -RнS@:@GzDylTS@C ->C;@GzD@ > -% %  )ragR@ ۉƟ:@o_ELvԿ8j@M?<2N8=@@ %%% %  &%11-1 %  o p q r - &  %  s ) t u   %  ) v w x   %  L K ) D - M  % y z { iU? ) | unknown -zNA>Y@cAC@GzD -w`-Z@{]F@GzD %  } * ~    %  * G -  %  P os8cӼ? * unknown -N%k)pY@XzYF@GzD@NA>Y@|]F@GzD@ %  +   %  + J -  %   O8cӼ? + unknown -(Z@qDC@GzD@ -w`-Z@yAC@GzD@ %  C , - M  %  , C - M  %  K < -zNA>Y@cAC@GzD -w`-Z@{]F@GzD@ l %% %  -2  %  -  %  -  ellipse% %  GzD@Qbr< -BL?v`-Z@wAC@=? - -ViU? %  n . S - =  %  W \0/>:u? . unknown -TнS@:@GzDTнS@:@GzD@ %  / 4 `   %  / q n  %% %  0/  %  % %  GzD?WнS@:@? - -&Aޡh? %  1   %  1 } 3 _  %% %  21  %  S % %  GzD@?WнS@:@? - -LAޡh? %  4 3 - 5  %   7HMBP? Z unknown -PbAR@? wA@GzD@_$ܵ|R@YA@GzD@ %  8 MBP? T unknown -XbAR@? wA@GzDb$ܵ|R@YA@GzD%%% %  5%11-1 %  5  c - -PbAR@? wA@GzDb$ܵ|R@YA@GzD@ % %  _$ܵ|R@YA@o_Ef8uN?бv.B k!=@ %%% %  6 "%1116476%% %  7L  -point%  QbAR@? wA@GzD@%% %  8M  %  XbAR@? wA@GzD%%% %  ; %%112364%% %  <'  %   - -N%k)pY@XzYF@GzDNA>Y@]F@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  =%11-1 %  R U - =  %  @ &  %  @ - &  %  U s @ r   %   (A&Y? q unknown -R4S@C ->C;@GzDylTS@ <@GzD %  q A   %  A u -  %  { >8cӼ? A unknown -SZ@}DC@GzD -w`-Z@kAC@GzD %  B   %  B x -  %   zu8cӼ? B unknown -N%k)pY@YzYF@GzDNA>Y@]F@GzD%% %  D;  %  x  %  % %  GzDJ6sY@s]F@=? - - iU? %  Z E   %  E  -  %   >T=?? E unknown -hR@!l!A@GzD@N%k)pY@YzYF@GzD@ %  w F L  %  F w  %  k -N%k)pY@XzYF@GzDNA>Y@]F@GzD@ -%% %  G3  %  % %  EmAX@n@6H@GzD@!;&Y:u? K unknown - -w`-Z@kAC@GzD -w`-Z@kAC@GzD@ %  P z0/>:u? L unknown -NA>Y@{]F@GzDNA>Y@{]F@GzD@%%% %  M%11-1%%% %  N -%1116480%% %  OP  %   -w`-Z@kAC@GzD@%% %  PQ  %  NA>Y@{]F@GzD@ %  R Y - = %% %  S0 % %  TнS@:@GzDifS7@@ - -0/>:u? %  v T   %   WMBP? U unknown -RнS@:@GzDylTS@C ->C;@GzD%%% %  V 0%1116477%% %  WN  %  TнS@:@GzD %  \ MBP? Y unknown -TнS@:@GzD@ylTS@C ->C;@GzD@%%% %  [ 2%1116479%% %  \O  %  TнS@:@GzD@ %  ^  %   0/>:u? unknown -_$ܵ|R@YA@GzD_$ܵ|R@YA@GzD@%% %  _6  %  _ % %  _$ܵ|R@YA@GzD@_Xy{#3+= - -HMBP?%% %  `@  %  % %  XbAR@? wA@GzD_@Xy{@^$3+ - -MBP?%% %  b+  %    - -R4S@ <@GzDVZ@DC@GzD@ %%% %  e 7%1120446%%% %  g 8%1120447%%% %  j <%112365%% %   k(  %     - -hR@!l!A@GzDN%k)pY@YzYF@GzD@ % %  EmAX@n@6H@o_E;f@;f@? ?@ -  %  n p =  %  p o - &  %  o -  %   0/>:u? o  unknown -R4S@ <@GzDR4S@ <@GzD@ %   0/>:u? p  unknown -ylTS@C ->C;@GzDylTS@C ->C;@GzD@%% %   r>  % - r  %  % %  R4S@ <@GzDS t@p - -(A&Y? %  s -  %   T=?? s  unknown -R4S@ <@GzDVZ@}DC@GzD%% %   u<  %  % %  EdZ@A@GzDRďtS]qk?6CD@? - ->8cӼ? %  v -  %   >T=?? v  unknown -hR@!l!A@GzDN%k)pY@YzYF@GzD%% %   xC  %  % %  EmAX@n@6H@GzDhgoFۍ?f8uN?ѱv. _? - -u8cӼ?%%% %  y D%1116489%% %   zX  %  NA>Y@{]F@GzD%% %   {Y  %   -w`-Z@kAC@GzD %   } -  %   z(A&Y? }  unknown -_$ܵ|R@!l!A@GzD@hR@YA@GzD@ %  ~ -  %  ~    %  -hR@!l!A@GzDN%k)pY@YzYF@GzD@  -%% %   4  % !  "% %  N%k)pY@YzYF@GzD@h)Tx - ->T=?? % #  0/>:u? $ unknown -N%k)pY@YzYF@GzDN%k)pY@YzYF@GzD@%%% %  %11-1%%% %  G%1116481%% %  % R  %  N%k)pY@YzYF@GzD@ % &  (A&Y? ' unknown -R4S@C ->C;@GzD@ylTS@ <@GzD@ %   % ( -R4S@ <@GzDVZ@DC@GzD@  -%% %  ) 9  % * +% %  R4S@ <@GzD@# @[w@ - -T=?? % ,  0/>:u? - unknown -VZ@}DC@GzDVZ@}DC@GzD@%%% %  %11-1 % .  - -(Z@qDC@GzD -w`-Z@yAC@GzD@ % %  EdZ@A@o_E;f@;f@? ?@ - %%% %  J%1116488%% %  / W  %  VZ@}DC@GzD@%% %  0 F % %   -w`-Z@kAC@GzD@@ - -0/>:u?%% %  1 G % %  NA>Y@{]F@GzD@@ - -0/>:u?%%% %  O%1120454%%% %  P%1120455%%% %  S%1116478 %   -  % 2  z(A&Y? 3 unknown -_$ܵ|R@!l!A@GzDhR@YA@GzD%% %  4 ? % %  ylTS@C ->C;@GzDBp t#3+= - -MBP?%%% %  W%1120449%% %  5 7  % 6 7% %  TнS@:@GzD@0p@ t@Rf䠶 - -MBP?%%% %  \%1120451 % 8  -_$ܵ|R@!l!A@GzDhR@YA@GzD@ 9 -%% %  : J % %  _$ܵ|R@YA@GzD@@ - -0/>:u?%%% %  _%1116484%% %  ; T  %  _$ܵ|R@YA@GzD@%%% %  `%1116494%% %  < ]  %  _$ܵ|R@YA@GzD%%% %  b%112369%% %  = , % %  R4S@ <@o_E HC׿XQDž?@@ %%% %  k%112366%% %  > )  % ? b  9 - -_$ܵ|R@!l!A@GzDhR@YA@GzD@ % %  N%k)pY@YzYF@o_EHCZ?bge;a@ %% %  @ D % %  R4S@ <@GzD@@ - -0/>:u?%% %  A E % %  ylTS@C ->C;@GzD@@ - -0/>:u?%%% %  r%1116492%% %  B [  %  R4S@ <@GzD%% %  C \  %  ylTS@C ->C;@GzD%% %  D = % %  VZ@}DC@GzD# [w - -T=??%%% %  u%1116490%% %  E Z  %  VZ@}DC@GzD%% %  F B  % G  H% %  hR@!l!A@GzDh@)Tx@#bP= - ->T=??%%% %  x%1116497%% %  I _  %  N%k)pY@YzYF@GzD%%% %  z%1120471%%% %  {%1120472 %   - %% %  J 5 % %  hR@!l!A@GzD@Дy{_@ - -z(A&Y? % K  0/>:u? L unknown -hR@!l!A@GzDhR@!l!A@GzD@%%% %  %11-1%%% %  %1116482%% %  M S  %  hR@!l!A@GzD@%% %  N H % %  N%k)pY@YzYF@GzD@@ - -0/>:u?%%% %  %1120457%% %  O 8 % %  ylTS@C ->C;@GzD@S tp@'cS[= - -(A&Y?%%% %  %11-1%%% %  %1116487%% %  P V  %  R4S@ <@GzD@%% %  Q K % %  VZ@}DC@GzD@@ - -0/>:u?%% %  R - %%% %  %1120468%%% %  %1116500%%% %  %1116501%% %  S A % %  _$ܵ|R@YA@GzDДy{@_ - -z(A&Y?%%% %  %1116493%%% %  %1116485%% %  T U  %  ylTS@C ->C;@GzD@%%% %  %11-1% %  hR@!l!A@o_Eбv.f8uNܿ<y{_@ %%% %  %1116504%%% %  %1120461%%% %  %1120481%%% %  %112370%%% %   %112367%% %  U * %%% %   %1116498%%% %   %1116499%%% %  - %1120476%%% %   %1120478%%% %   %1116491%%% %   %1120474%%% %   %1116496%% %  V ^  %  hR@!l!A@GzD%%% %   %1120485%%% %   %1116483%% %  W I % %  hR@!l!A@GzD@@ - -0/>:u?%%% %  ! %1120459%%% %  # %1116502%%% %  & %1116486%%% %  * %1120466%%% %  , %1116505%%% %  . %112371%%% %  2 %1116495%%% %  6 %1120464%%% %  ? %112368%%% %  G %1120483%%% %  K %1116503 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0003233.sab -BIN000000027765 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     -_[=S@Ó0@GzD66@[@~@@GzD@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Stator_Teeth42 lump%   -_[=S@Ó0@GzD66@[@~@@GzD@ transform% ???? rgb_color% st% - %    ???%%% %   ATTRIB_XACIS_ID%111267 -shell%   -_[=S@Ó0@GzD66@[@~@@GzD@properties%  ansoft% %  -  Stator_Teeth42 %%% %   ATTRIB_XSTEP_PRODUCT_ID%15Stator_Teeth[42] face%     - -_[=S@Ó0@GzDS@| 9@GzD@ %%% %    %111267%%% %   %6Stator_Teeth[42]id%% %     %      -_[=S@Ó0@GzD66@[@~@@GzD -8绿lWNjX loop%   -_[=S@Ó0@GzDS@| 9@GzD@  - cone% surface%  ևL@ևL@? ?:u?  9 unknown -S@Ó0@GzDS@Ó0@GzD@%%% %   %112386%% %  :   % ; < =  > -_[=S@Ó0@GzD@66@[@~@@GzD@ -lW?8?NjX % ? @  -^Z@<@@GzDCveHZ@~@@GzD@ ' -% %  EdZ@A@o_E;f@;f@? ?@ - %%% %  %11-1 %  A B C D -   %  E  F G   %   H I J   %  K L  - - M  % N O PiU?  Q unknown ->veHZ@2Zx9@GzD66@[@~@@GzD %   A R   %  S T  0 - =  % U 8 V/Aޡh?  W unknown -_[=S@Ó0@GzD@S@| 9@GzD@ %  C X 2   % Y 7 Z/Aޡh? [ unknown -_[=S@Ó0@GzDS@| 9@GzD %  \ ! X ] - 5  %  ! \ S ^ - 5  % _ 3 ` -S@Ó0@GzDCb T@c`0@GzD@ a -%% %  b "  vertex% c " d % e ^ f straight% -curve%  S@Ó0@GzD@@ - -0/>:u?%%% %  $ %112387%% %  g %  % h i j  k - -!|S@!k7@GzD8"S@ 2p9@GzD@  % l m % -_[=S@Ó0@GzD@66@[@~@@GzD@% %  %= ףp=Z@GzD@ar^?@@ %%% %  &%11-1 %  I n K o &  %  p ) . R -   %  ) p q r -   %  s 1 ) D   % t Z uMBP? C v unknown -_[=S@w 9@GzD!|S@ 2p9@GzD %  w * x y   %  z { * G - |  % } P ~I8cӼ? *  unknown -!tk#[@+9@GzD66@[@7Zx9@GzD %  + s   %  @ + J - &  %   Oˋ8cӼ? + unknown -^Z@<@@GzDCveHZ@~@@GzD %  , @ o - M  %  , z - M  %  K -=veHZ@2Zx9@GzD66@[@~@@GzD@ %% %  -  %  -  %  -  ellipse% %  GzDeF|olDUfв<>veHZ@~@@=? - -iU? %  V Z0/>:u? . unknown -_[=S@w 9@GzD_[=S@x 9@GzD@ %  / 4 ^ =  %  / p = %% %  0  %  R % %  GzD@?S@Ó0@? - -/Aޡh? %  1 w 3 ]  %% %  2  %  D % %  GzD?S@Ó0@? - -/Aޡh? %  4 3 5  %   7䫣MBP? X unknown -S@Ó0@GzDCb T@]`0@GzD %  8 䫣MBP? S unknown -S@Ó0@GzD@Cb T@c`0@GzD@%%% %  5%11-1 %  5  a - -S@Ó0@GzDCb T@c`0@GzD@ % %  [S@\֊l0@o_Ei<ȿ\ϗb?@@ %%% %  6 "%1116536%% %  7  -point%  S@Ó0@GzD%% %  8  %  S@Ó0@GzD@%%% %  ; %%112388%% %  <  %   - -8"S@#k7@GzD^Z@@@@GzD@  %  < -!|S@!k7@GzD8"S@ 2p9@GzD@ k -% %  8"S@#k7@o_E8j@MLvԿ< t0p@ %%% %  =%11-1 %  =  %  @ - &  %   O0/>:u? @ unknown -CveHZ@~@@GzDCveHZ@~@@GzD@ %  B A T -   %  B r j  %  u 0/>:u? B unknown -!|S@ 2p9@GzD!|S@ 2p9@GzD@ %  H C  %% %  D  %  D % %  _[=S@w 9@GzD9p@ t@#3+ - -MBP? %  X E   %  E y -  %  ~ T=?? E unknown -nS@- -r2@GzD!tk#[@+9@GzD %  F L |  %  F - |  %  z -!tk#[@+9@GzD66@[@7Zx9@GzD@ -%% %  G  %  G % %  ۠U[@2,Ǩ5@GzDYirya&RA?) )jտ*[I@ D9? - -I8cӼ? %  H -  %   NT=?? H unknown -8"S@#k7@GzD^Z@@@@GzD %  n I & %% %  J  %  % %  EdZ@A@GzDq8:?>v?8j@MP? - -ˋ8cӼ? %  L K m - M  %  P 0/>:u? L unknown -66@[@2Zx9@GzD66@[@2Zx9@GzD@%%% %  M%11-1 %  M  -=veHZ@2Zx9@GzD66@[@~@@GzD@ % %  ITTS@TTS@? ?\@ - %%% %  N -%1116540%% %  O  %  CveHZ@~@@GzD%% %  P  %  66@[@2Zx9@GzD%% %  R % %  _[=S@w 9@GzD@ifS'=@ - -0/>:u? %  S =  %  T =  %   VMBP? p unknown -_[=S@r 9@GzD@!|S@ 2p9@GzD@%%% %  U 0%1116537%% %  V  %  _[=S@w 9@GzD@%%% %  Y 2%1116539%% %  Z  %  _[=S@w 9@GzD %  \ -  %   0/>:u? unknown -Cb T@]`0@GzDCb T@]`0@GzD@%% %  ]  %  % %  Cb T@]`0@GzDAH,bh$3+= - -䫣MBP?%% %  ^  %  ^ % %  S@Ó0@GzD@AH@,bh@cRf䠶 - -䫣MBP?%% %  `  %   - -nS@- -r2@GzD!tk#[@+9@GzD@ %%% %  c 7%1120546%%% %  e 8%1120547%%% %  h <%112389%% %  i  %  `  - -nS@[`0@GzDCb T@/- -r2@GzD@  %  i -8"S@#k7@GzD^Z@@@@GzD@ -% %  ^Z@@@@o_E*%dw?/@ %%% %  j%11-1 %  q s - j  %  m n =  %  m =  %   iU? m unknown -=veHZ@2Zx9@GzD@66@[@~@@GzD@ %   "S8cӼ? n unknown -^Z@@@@GzD@CveHZ@~@@GzD@%% %  o  %  % %  CveHZ@~@@GzD@@ - -0/>:u? %  q - j %% %   r  %  r % %  !|S@ 2p9@GzD@@ - -0/>:u? %  u B(A&Y? s  unknown -!|S@!k7@GzD8"S@ 2p9@GzD%%% %  t D%1116545%% %   u  %  !|S@ 2p9@GzD %   w -  %   (A&Y? w  unknown -nS@[`0@GzDCb T@-- -r2@GzD %   x {  %  x   - -  %  x -nS@- -r2@GzD!tk#[@+9@GzD@ -%% %   y  %  % %  !tk#[@+9@GzDygL ތjn - -T=?? %  { z - |  %  ~ 0/>:u?  unknown -!tk#[@+9@GzD!tk#[@+9@GzD@%%% %  |%11-1 %  |  - -!tk#[@+9@GzD66@[@7Zx9@GzD@ % %  ۠U[@2,Ǩ5@o_E;f@;f@? ?@ - %%% %  } G%1116541%% %   ~  %  !tk#[@+9@GzD %     %   - %% %     %  % %  8"S@#k7@GzDn@@Ḱq@ - -NT=?? %   0/>:u?  unknown -^Z@@@@GzD^Z@@@@GzD@%%% %  J%1116548%% %     %  ^Z@@@@GzD%% %     %  % %  66@[@2Zx9@GzD@@ - -0/>:u?%% %    %%% %  O%1120554%%% %  P%1120555%%% %  R%1116538 %    =  %   -  % !  "(A&Y? # unknown -nS@]`0@GzD@Cb T@/- -r2@GzD@ %   $ =  % % & B(A&Y? ' unknown -!|S@#k7@GzD@8"S@ 2p9@GzD@%% %  (  % %  !|S@ 2p9@GzD@0p tRf䠶= - -MBP?%%% %  V%1120549%%% %  Z%1120551 % ) -nS@[`0@GzDCb T@/- -r2@GzD@ -%% %  *  % %  Cb T@]`0@GzD@@ - -0/>:u?%%% %  ]%1116544%% %  +   %  Cb T@]`0@GzD%%% %  ^%1116557%% %  ,   %  Cb T@]`0@GzD@%%% %  `%112392%% %  -  % %  nS@-- -r2@o_EPϿؒh?@@ %%% %  i%112390%% %  .  % %  Cb T@]`0@o_E\ϗbi<ȿ,bhAH@ %%% %  %11-1 %   - j  % /  j8cӼ? 0 unknown -!tk#[@+9@GzD@66@[@6Zx9@GzD@%% %  1  % %  GzD@K[YGjؽd?66@[@=Zx9@=? - -iU?%% %  2   % 3 $ 4% %  EdZ@A@GzD@VFg<.<A]@?O? ? - -"S8cӼ?%%% %  o%1116551%% %  5   %  CveHZ@~@@GzD@%%% %  r%1116550%% %  6   %  !|S@ 2p9@GzD@%% %  7  % %  !|S@ 2p9@GzDh t@p - -B(A&Y?%%% %  u%1120564 %  - %% %  8  % %  nS@-- -r2@GzDH+bh@AH - -(A&Y? %   -  % 9  "0/>:u?  : unknown -nS@-- -r2@GzDnS@-- -r2@GzD@%%% %  %11-1%%% %  y%1116542%% %  ;   %  nS@-- -r2@GzD%% %  <   % = >% %  !tk#[@+9@GzD@@ - -0/>:u?%% %  ?  %%% %  ~%1120557 %  $ -  % @  &0/>:u? A unknown -8"S@#k7@GzD8"S@#k7@GzD@%%% %  %1116547%% %  B   %  8"S@#k7@GzD%% %  C  % %  ^Z@@@@GzD@@ - -0/>:u?%%% %  %1120568%%% %  %1116565%% %  D   %  66@[@2Zx9@GzD@%%% %  %112394 % E " T=?? F unknown -nS@-- -r2@GzD@!tk#[@+9@GzD@%% %  G   % H I% %  Cb T@]`0@GzD@H+bhAH@ - -(A&Y? % J  &NT=?? K unknown -8"S@#k7@GzD@^Z@@@@GzD@%% %  L   % M $ N% %  8"S@#k7@GzD@h tp@ - -B(A&Y?%%% %  %1116549%%% %  %11-1%%% %  %1116563%%% %  %1120561%%% %  %1120584%%% %  %112393%%% %  %112391%% %  O  % %  ۠U[@2,Ǩ5@GzD@[6}4<$):u?%%% %   %1120559%%% %   %1116564%% %  R   %  !tk#[@+9@GzD@%%% %   %112395%% %  S  % %  8"S@#k7@GzD@@ - -0/>:u?%%% %   %1120566%%% %   %1116552%%% %   %1120579%% %  T  % %  nS@-- -r2@GzD@ygL@ ތjn@ - -T=??%%% %  ! %1116558%% %  U "  %  nS@-- -r2@GzD@%% %  V $ % %  ^Z@@@@GzD@n@Ḱq!b` - -NT=??%%% %  % %1116556%% %  W &  %  8"S@#k7@GzD@%%% %  / %1116560%%% %  3 %1120576%%% %  9 -%1116562%%% %  = %1120588%%% %  @ %1116561%%% %  E %1116559%%% %  H "%1120586%%% %  J $%1116555%%% %  M &%1120581 End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 26939 -$end 'sab' -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0005330.sab -BIN000000010112 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     -V#M@^ @33333DB9R@!l7@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Magnet1 lump%   -V#M@^ @33333DB9R@!l7@33333D@ transform% ???? rgb_color% st% - %    ??? -shell%    -V#M@^ @33333DB9R@!l7@33333D@properties%  ansoft% %   Magnet1 face%  -  - -V#M@^ @33333DB9R@!l7@33333D -V#M@B9R@^ @!l7@id%% %   %     -V#M@^ @33333D@B9R@!l7@33333D@ -V#M@B9R@^ @!l7@ loop%    -V#M@^ @33333DB9R@!l7@33333D -plane% surface%  33333D?? %% %   %      -V#M@U53@33333Dn{O@!l7@33333D@  %   -V#M@^ @33333D@B9R@!l7@33333D@% %  33333D@??  coedge%      - %% %   %      -V#M@^ @33333D9#Q@U53@33333D@  %   -V#M@U53@33333Dn{O@!l7@33333D@% %   - N@?a5@[Sٺژ??  %    ! -   %  "  # $ -  %   " % & -  %  ' (   -   edge% ) *tN#;@ +J@@  , unknown -V#M@U53@33333Dn{O@!l7@33333D%% %   % - . /  0 -9#Q@^ @33333DB9R@0na*@33333D@  %  %  -V#M@^ @33333D9#Q@U53@33333D@% %  1TP@w(^>+@ٺژWS?  %  1  2 3 -   %   1 4 5 -   %  ( '  !   % 6 7tN#;@ 8J@@  9 unknown -V#M@U53@33333D@n{O@!l7@33333D@ %    : ; -  %  < =  $ - >  % ? +B/g.@ @"3q?@  A unknown -m{O@*na*@33333DB9R@!l7@33333D %  B C  & -   % D E 3q7 *_  F unknown -V#M@^ @33333D9#Q@U53@33333D %   C G -   %   < H -  %% %   vertex% I  J % K $ L straight% -curve%  fD@&C,33333Dٺژ?[S? %% %   % M >  N -m{O@*na*@33333DB9R@!l7@33333D@  %  :  -9#Q@^ @33333DB9R@0na*@33333D@% %  |~ZR@%@\S? ٺژ  %    O P -   %  C B  3   % Q R 3q7 7_  S unknown -V#M@^ @33333D@9#Q@U53@33333D@ %  = <  5 >  % T 8B/g.@ U"3q?@  V unknown -m{O@*na*@33333D@B9R@!l7@33333D@%% %  ! % W 3 X % Y ! Z% %  fD@&C,33333D@ٺژ?[S?  %  [ \ " ; - /  % ] @ K$a> EF C7 " ^ unknown -9#Q@^ @33333DB9R@0na*@33333D %  4 # ( H >  %  # 4 [ _ - >  %  # . -m{O@*na*@33333DB9R@!l7@33333D@%% %  $ % ` ; a% %  k -Pf3J@ٽڼ4A@33333DWS?ٺژ  %  2 % \ b -   %  % 2 ' G  %% %  & % c & d% %  `W6J@N*4,;8@33333DWSٺژ?  % e 733333T * C f unknown -V#M@U53@33333DV#M@U53@33333D@ % g +33333T 8 < h unknown -n{O@!l7@33333Dn{O@!l7@33333D@%% %  * -point%  V#M@U53@33333D%% %  + %  n{O@!l7@33333D%% %  .% %  ElQ@f 62@ٺژ?WS?  %  \ [ 1 P /  % i U K$a> RF C7 1 j unknown -9#Q@^ @33333D@B9R@0na*@33333D@%% %  3 % k P l% %  `W6J@N*4,;8@33333D@WSٺژ? %% %  5 % m 5 n% %  k -Pf3J@ٽڼ4A@33333D@WS?ٺژ %% %  7 %  V#M@U53@33333D@%% %  8 %  n{O@!l7@33333D@ %  O : = _ /  %  : O B b / %% %  ;% %  RiK@s"33333D ٺژ\S  % o @33333T U [ p unknown -B9R@0na*@33333DB9R@0na*@33333D@%% %  @ %  B9R@0na*@33333D % q R33333T E \ r unknown -9#Q@^ @33333D9#Q@^ @33333D@%% %  E %  9#Q@^ @33333D%% %  G% %  V#M@U53@33333D -K. -UG~@%% %  H% %  n{O@!l7@33333D@? -K. -UG~@%% %  P% %  RiK@s"33333D@ ٺژ\S %% %  R %  9#Q@^ @33333D@%% %  U %  B9R@0na*@33333D@%% %  _% %  B9R@0na*@33333D@? -K. -UG~@%% %  b% %  9#Q@^ @33333D -K. -UG~@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 9287 -$end 'sab' -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0005358.sab -BIN000000004351 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     -)\K)\K33333D)\K@)\K@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Shaft lump%   -)\K)\K33333D)\K@)\K@33333D@ transform% ???? rgb_color% st% - %    ?properties%  ansoft% %  Shaft -shell%    -)\K)\K33333D)\K@)\K@33333D@% % %   Shaft face%  -  - -)\K)\K33333D)\K@)\K@33333D id%% %   %      -)\K)\K33333D@)\K@)\K@33333D@  loop%    -)\K)\K33333D)\K@)\K@33333D -plane% surface%  33333D?? %% %  - %     -)\K)\K33333D)\K@)\K@33333D@  %   - -)\K)\K33333D@)\K@)\K@33333D@% %  33333D@??  coedge%      %% %   %     -)\K)\K33333D)\K@)\K@33333D   cone% %  ̣alK@4&@? ?(\K@  %      -   %      -   edge%  hs-8R? @   unknown -)\K)\K33333D)\K@)\K@33333D %    -)\K)\K33333D@)\K@)\K@33333D@   %        %  hs-8R? @  unknown -)\K)\K33333D@)\K@)\K@33333D@%% %   vertex% !  " ellipse% -curve%  33333ḌalK@4&@? %% %   % #  $% %  33333D@̣alK@4&@? %% %   -point%  (\K@33333D%% %   %  (\K@33333D@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 3526 -$end 'sab' -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0005367.sab -BIN000000010112 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     -yK@7ػ%<@33333D5tdO@h5F@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Magnet2 lump%   -yK@7ػ%<@33333D5tdO@h5F@33333D@ transform% ???? rgb_color% st% - %    ??? -shell%    -yK@7ػ%<@33333D5tdO@h5F@33333D@properties%  ansoft% %   Magnet2 face%  -  - -yK@7ػ%<@33333D5tdO@h5F@33333D -yK@5tdO@7ػ%<@h5F@id%% %   %     -yK@7ػ%<@33333D@5tdO@h5F@33333D@ -yK@5tdO@7ػ%<@h5F@ loop%    -yK@7ػ%<@33333D5tdO@h5F@33333D -plane% surface%  33333D?? %% %   %      -L(L@؂F@33333D5tdO@h5F@33333D@  %   -yK@7ػ%<@33333D@5tdO@h5F@33333D@% %  33333D@??  coedge%      - %% %   %      -yK@D$o<@33333DL(L@h5F@33333D@  %   -L(L@؂F@33333D5tdO@h5F@33333D@% %  lM@9mN#F@Q4<Φ???  %    ! -   %  "  # $ -  %   " % & -  %  ' (   -   edge% ) *tN#;@ +J@@  , unknown -L(L@؂F@33333D5tdO@h5F@33333D%% %   % - . /  0 -yK@7ػ%<@33333Dz\ O@F$o<@33333D@  %  %  -yK@D$o<@33333DL(L@h5F@33333D@% %  o K@։6B@￈Q4<Φ??  %  1  2 3 -   %   1 4 5 -   %  ( '  !   % 6 7tN#;@ 8J@@  9 unknown -L(L@؂F@33333D@5tdO@h5F@33333D@ %    : ; -  %  < =  $ - >  % ? + 3q7 @_  A unknown -y\ O@7ػ%<@33333D5tdO@؂F@33333D %  B C  & -   % D E?/g.@ *#3q?@  F unknown -yK@D$o<@33333DL(L@h5F@33333D %   C G -   %   < H -  %% %   vertex% I  J % K $ L straight% -curve%  Fl3=@a0\)F@33333D?Q4<Φ %% %   % M >  N -y\ O@7ػ%<@33333D5tdO@؂F@33333D@  %  :  -yK@7ػ%<@33333Dz\ O@F$o<@33333D@% %    % T 8 3q7 U_  V unknown -y\ O@7ػ%<@33333D@5tdO@؂F@33333D@%% %  ! % W 3 X % Y ! Z% %  Fl3=@a0\)F@33333D@?Q4<Φ  %  [ \ " ; - /  % ] @ K$a> EE C7 " ^ unknown -yK@7ػ%<@33333Dz\ O@F$o<@33333D %  4 # ( H >  %  # 4 [ _ - >  %  # . -y\ O@7ػ%<@33333D5tdO@؂F@33333D@%% %  $ % ` ; a% %  nX\2N@RRl4@33333DQ4<Φ  %  2 % \ b -   %  % 2 ' G  %% %  & % c & d% %  ,ftK@h1*@33333DQ4<Φ??  % e 733333T * C f unknown -L(L@h5F@33333DL(L@h5F@33333D@ % g +33333T 8 < h unknown -5tdO@؂F@33333D5tdO@؂F@33333D@%% %  * - -point%  L(L@h5F@33333D%% %  +  %  5tdO@؂F@33333D%% %  .% %  Io7O@2aϾB@?Q4<Φ  %  \ [ 1 P /  % i U K$a> RE C7 1 j unknown -yK@7ػ%<@33333D@z\ O@F$o<@33333D@%% %  3 % k P l% %  ,ftK@h1*@33333D@Q4<Φ?? %% %  5 % m 5 n% %  nX\2N@RRl4@33333D@Q4<Φ %% %  7 %  L(L@h5F@33333D@%% %  8 %  5tdO@؂F@33333D@ %  O : = _ /  %  : O B b / %% %  ;% %  =+?@OY%=@33333DQ4<Φ?  % o @33333T U [ p unknown -z\ O@7ػ%<@33333Dz\ O@7ػ%<@33333D@%% %  @  %  z\ O@7ػ%<@33333D % q R33333T E \ r unknown -yK@D$o<@33333DyK@D$o<@33333D@%% %  E  %  yK@D$o<@33333D%% %  G% %  L(L@h5F@33333D -x-إ -$.{@%% %  H% %  5tdO@؂F@33333D@? -x-إ -$.{@%% %  P% %  =+?@OY%=@33333D@Q4<Φ? %% %  R %  yK@D$o<@33333D@%% %  U %  z\ O@7ػ%<@33333D@%% %  _ % %  z\ O@7ػ%<@33333D@? -x-إ -$.{@%% %  b% %  yK@D$o<@33333D -x-إ -$.{@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 9287 -$end 'sab' -$begin 'sab' -Design_92.setup/NativeGeometryFiles/0005395.sab -BIN000000260756 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MJVKDQ5DWEXBMJWE9_S369EEPK2CM7U6D9CQ3KGQ43D4CNPPDQAUUS8QUT8UBKC6AFBMKMEQ7KAKCF body%     - T T33333D T@ T@33333D@string_attrib%name_attrib%gen% attrib%   ATTRIB_XACIS_NAME%6Rotor lump%   - T T33333D T@ T@33333D@ transform% ???? rgb_color% st% - %    ???properties%  ansoft% %  Rotor@ -shell%    - T T33333D T@ T@33333D@% % %   Rotor@ face%  -  -9#Q@*rOr#33333D\BېR@^ 33333D@ id%% %   %      -\BېR@*rOr#33333DH=,R@33333D@  loop%    -9#Q@*rOr#33333D\BېR@^ 33333D@ -plane% surface%  N>Q@L{F""]S ٺژ %% %  - %      -H=,R@033333DH=,S@33333D@  %   - -\BېR@*rOr#33333DH=,R@33333D@% %  ҿzR@b' ٺژ?S  coedge%      %% %   %      -N7*|S@Hv&33333DH=,S@033333D@  %    -H=,R@033333DH=,S@33333D@% %  H=,:S@  %  ! " #   %  $  ! %  %   $ & ' -  %  ( "   - )  edge% * +tN#;@ ,bb<@  - unknown -9#Q@*rOr#33333D\BېR@^ 33333D%% %   % . / 0  1 -DsYN@Մ933333DN7*|S@v&33333D@  %  2  -N7*|S@Hv&33333DH=,S@033333D@% %  $$S@0 "^$ᅩt߈]??  %  3 4 5 6   %  7  4 8 -   %   7  % -   %   5  # - )  % 9 , : m,#@ " ; unknown -\BېR@*rOr#33333DH=,R@33333D %    < = -  % > ,33333T ?  @ unknown -\BېR@*rOr#33333D\BېR@*rOr#33333D@ %  A B  ' C  % D +33333T E & F unknown -9#Q@^ 33333D9#Q@^ 33333D@ %  G  B H - )  %  I  J -yK@ ?I33333DH=,S@33333D K -%% %   vertex% L H M % N  O straight% -curve%  tJ@4Fݿ;'@33333Dٺژ?YS %% %   % P Q R  S -EsYN@|lޥG33333DT9vO@Մ933333D@  %  T  -DsYN@Մ933333DN7*|S@v&33333D@% %  ox|Q@]I#\2ٺژS??  %  U V W X   %  Y  V Z -   %   Y 8   %  " W  6 - )  % [ : \ @ 5 ] unknown -H=,R@033333DH=,S@33333D %  ! ^ _ -   % ` a33333T : 4 b unknown -H=,R@33333DH=,R@33333D@%% %  # % c # d% %  \BېR@*rOr#33333DS?ٺژ?  %  ^ e $ = f  % g EtN#;@ ?bb<@ < h unknown -9#Q@*rOr#33333D@\BېR@^ 33333D@%% %  % % i _ j% %  \BېR@*rOr#33333D@? -9 X -ӤJ@ %  k & e l - C  %  & k ( H C  %  B m -T#M@U5333333D9#Q@^ 33333D@%% %  ' % n = o% %  9#Q@^ 33333D@? -9 X -ӤJ@ %  p ( q r - )  % s t?/g.@ +#3q?@ ( u unknown -T#M@U5333333D9#Q@^ 33333D %  v w J -@H=,S33333D ?I@yK33333D K - % x y z  K - - T T33333D T@ T@33333D % %  EJN@!V9@33333D?? %% %  +< -point%  9#Q@^ 33333D%% %  ,= %  \BېR@*rOr#33333D%% %  / % { | }  ~ -JwC2N@ ?I33333DT9vO@|lޥG33333D@  %   / -EsYN@|lޥG33333DT9vO@Մ933333D@% %  j9O@k/=BO4<Φ?  %  0  %  2 -   %  2 3 Z   %  5 2 X - )  %  \ R@ W unknown -N7*|S@Hv&33333DH=,S@033333D %  4 3 -   %  33333T \ V unknown -H=,S@033333DH=,S@033333D@%% %  6 %  6 % %  H=,R@33333D?  %  < 7 _ f  %  ? a m,#@ ^ unknown -\BېR@*rOr#33333D@H=,R@33333D@%% %  8 %  % %  H=,R@33333D -9 X -ӤJ@%% %  :@ %  H=,R@33333D %  < A l f  %  < y -yK@ ?I33333D@H=,S@33333D@ %% %  =% %  tJ@4Fݿ;'@33333D@ٺژ?YS %% %  ?> %  \BېR@*rOr#33333D@ %  B A - C  %  ?/g.@ E#3q?@ e unknown -T#M@U5333333D@9#Q@^ 33333D@ %  C  -T#M@U5333333D9#Q@^ 33333D@ %% %  E? %  9#Q@^ 33333D@ %  G - )  %  G r  %  9 tE C7 G unknown -T#M@Or433333D/ ON@U5333333D%% %  H %  r % %  RGmH@b=33333DYS?ٺژ?  %  J - ?IH=,S33333DyK33333D K - %  - I %% %  J %   - T T33333D@ T@ T@33333D@  %  ) J - T T33333D T@ T@33333D K -%% %  Q %   -| -"M@ ?I33333DJwC2N@ d/H33333D@  %  Q -JwC2N@ ?I33333DT9vO@|lޥG33333D@% %  qBN@绥rHMidLp.??  %  R  %  T - 0  %  T U 0  %  W T - )  %  *3 \h@ unknown -DsYN@Մ933333DN7*|S@v&33333D %  V U -   %  33333T  unknown -N7*|S@Hv&33333DN7*|S@Hv&33333D@%% %  X %  X % %  H=,S@033333Dt߈]^$  %  ^ Y f  %  a  @ unknown -H=,R@033333D@H=,S@33333D@%% %  Z %  % %  H=,S@033333D -9 X -ӤJ@%% %  \B %  H=,S@033333D%% %  _% %  \BېR@*rOr#33333D@S?ٺژ? %% %  aA %  H=,R@33333D@ %  e f  %  y -@H=,S33333D@ ?I@yK33333D@ % %  EJN@!V9@33333D@??  %  q k  %  t33333T  unknown -T#M@U5333333DT#M@U5333333D@%% %  l %  l % %  RGmH@b=33333D@YS?ٺژ? %% %  m$ %   -Rz~+F@ܵ M33333Dh5F@L(L33333D@ % %  0TP@~(^>+ٺژ?YS  %  p - )  %  p  %   2@ p unknown -kS,62M@KXv3633333D/ ON@Kr433333D %  q  %  q -T#M@Or433333D/ ON@U5333333D@%% %  r %  % %  :w逥E@oy)*33333D ٺژ\S? %% %  t\ %  T#M@U5333333D %  J -H=,S ?I33333DyK33333D K - %  - v  %  w - I  %  w - I  %  w  %  tN#;@ bb<@ w unknown -Rz~+F@ܵ M33333Dh5F@L(L33333D%% %  y %   -L(L@Tz~+F@33333Dܵ M@h5F@33333D@  %  f y -,\K&\K33333D@$\K@*\K@33333D@  %  z %% %  | %      -ܵ M@ d/H33333D| -"M@Rz~+F33333D@  %   | -| -"M@ ?I33333DJwC2N@ d/H33333D@% %  M@tw]H;f?;f??  %      }  %      - R  %    R  %    - )  % -  {2 W @  unknown -EsYN@|lޥG33333DT9vO@Մ933333D %    - 0  %  33333T   unknown -EsYN@Մ933333DEsYN@Մ933333D@%% %   %  % %  j{O@0l733333DS翍ٺژ  %   f  %   R@  unknown -N7*|S@Hv&33333D@H=,S@033333D@%% %   %   % %  N7*|S@Hv&33333D -9 X -ӤJ@%% %  D %  N7*|S@Hv&33333D%% %  % %  H=,R@33333D@? %% %  C %  H=,S@033333D@ %     f  %  -  %  9 E C7  unknown -T#M@Or433333D@/ ON@U5333333D@ %    y - ?IH=,S33333D@yK33333D@  %   ! " # %% %  % %  T#M@U5333333D@? -9 X -ӤJ@%% %  ] %  T#M@U5333333D@%% %  % % $ % &  ' -Xz~+F@| -"M33333D d/H@ܵ M33333D@  %  -Rz~+F@ܵ M33333Dh5F@L(L33333D@% %  0F@_Ĕ"LR4<Φ?  %  ( ) * - )  %  + , -  % . / @ 0 unknown -hkBL@DU933333DkS,62M@KXv3633333D %   -  %   + 1  %  2 -kS,62M@KXv3633333D/ ON@Kr433333D@%% %   % 3 4% %  kS,62M@KXv3633333DS?cٺژ?  % 5 33333T  6 unknown -/ ON@Kr433333D/ ON@Kr433333D@ % 7 m  8 -T#M@Or433333D/ ON@U5333333D@ %% %  Z %  / ON@Kr433333D %  9 : J -H=,S@33333DyK ?I@33333D K - %  ; < = > -  %  ? @ A - v  %  B C D - v  %  E F G  % H ItN#;@ Jbb<@ K unknown -*rOr#\BېR33333D^ 9#Q33333D %  L M N - I  %  O P Q  % R S?/g.@ #3q?@ T unknown -A$o<@L(L33333Dh5F@yK33333D %  U V W - I  %  X Y &  % Z  [ m,#@ \ unknown -Xz~+F@| -"M33333D d/H@ܵ M33333D %  " Y ]  %  " O ^ - %% %   % _ ` % a b% %  `0\)F@Fl3=33333DR4<Φ %% %   % c d e  f -ܵ M@Zz~+F@33333D| -"M@d/H@33333D@  %  g -L(L@Tz~+F@33333Dܵ M@h5F@33333D@% %  ^Ĕ"L@g0F@Q4<Φ  %  h i  %  - j  % k l -DT!? l`8U)zj@ m unknown - T T33333D T@ T@33333D%% %   % n o p  q -L(L@h5F33333Dܵ M@Rz~+F33333D@  %  r -ܵ M@ d/H33333D| -"M@Rz~+F33333D@% %  ޵,`;M@0?\q-G?V4<Φ?  %  s t u v  %  w t x - }  %  w  }  %  u  - )  % y  zR@  { unknown -JwC2N@ ?I33333DT9vO@|lޥG33333D %  | } - R  % ~ 33333T    unknown -T9vO@|lޥG33333DT9vO@|lޥG33333D@%% %   %  % %  5tdO@؂F33333DO4<Φ?  %  |  f  %  *3 \h@   unknown -DsYN@Մ933333D@N7*|S@v&33333D@%% %   %  } % %  EsYN@Մ933333D -9 X -ӤJ@%% %  F %  EsYN@Մ933333D%% %  % %  H=,S@033333D@t߈]^$ %% %  E %  N7*|S@Hv&33333D@ %     f  %   -  %   2@  unknown -kS,62M@KXv3633333D@/ ON@Kr433333D@%% %   %  % %  :w逥E@oy)*33333D@ ٺژ\S?  %    y -H=,S ?I33333D@yK33333D@  %       %      %      %  # -  %  tN#;@ bb<@  unknown -Rz~+F@ܵ M33333D@h5F@L(L33333D@%% %  & %      - d/H@JwC2N33333D ?I@| -"M33333D@  %  -Xz~+F@| -"M33333D d/H@ܵ M33333D@% %  2?\q-G@,`;MF4<Φ  %     - )  %    *   %   /32@  unknown -hkBL@S[<33333DXŁL@DU933333D %   1 - -  %     -  %   -hkBL@DU933333DkS,62M@KXv3633333D@%% %   %  * % %  hkBL@DU933333D -}?2k?  %  33333T   unknown -kS,62M@KXv3633333DkS,62M@KXv3633333D@ %    -kS,62M@KXv3633333D/ ON@Kr433333D@ %% %  X %  kS,62M@KXv3633333D%% %  % %  / ON@Kr433333D -9 X -ӤJ@%% %  #% %  .'QN@fu3\S? ٺژ??  %    J - ?IyK@33333DH=,S@33333D K - %      -  %     -  %     -  %    >   %  tN#;@ bb<@  unknown -ܵ Mh5F33333DL(LRz~+F33333D %     - v  %    A   %  ?/g.@ I#3q?@  unknown -U539#Q33333D^ U#M33333D %     - v  %    D   %  J  m,#@  unknown -*rOr#H=,R33333D\BېR33333D %     G  %     - G  %   -*rOr#\BېR33333D^ 9#Q33333D@%% %   %  A  %  % %  8Fݿ;'@tJ33333DYS ٺژ  %     - I  %    N   %  9 SE C7  unknown -S[<@ZŁL33333DC$o<@yK33333D %   ^ Q  %     - Q  %   -A$o<@L(L33333Dh5F@yK33333D@%% %   %  N % %  h1*@,ftK33333D?Q4<Φ  %     - I  %    W   %  [  @  unknown - d/H@JwC2N33333D ?I@| -"M33333D %     - &  %   ] - & %% %   %  % %  Xz~+F@ܵ M33333D?F4<Φ  %  33333T   unknown -Xz~+F@ܵ M33333DXz~+F@ܵ M33333D@ %  33333T  O  unknown -h5F@L(L33333Dh5F@L(L33333D@%% %  ^ %  h5F@L(L33333D%% %  _ %  Xz~+F@ܵ M33333D%% %   %      -| -"M@d/H@33333DJwC2N@ ?I@33333D@  %   -ܵ M@Zz~+F@33333D| -"M@d/H@33333D@% %  ,`;M@4?\q-G@?sF4<Φ  %       %  h h i -   %  -DT!? ^8U)zj@  unknown -,\K&\K33333D@$\K@*\K@33333D@ %   - T T33333D T@ T@33333D - %% %   %   ellipse% %  8==33333D -qZL@ -qZL@? %% %   %      -yK@h5F33333DL(L@I$o<33333D@  %    -L(L@h5F33333Dܵ M@Rz~+F33333D@% %  VĔ"L@𽇀0FQ4<Φ??  %        %      -  %     x  %     v - )  %  z @ u  unknown -| -"M@ ?I33333DJwC2N@ d/H33333D %      - }  %  33333T z t  unknown -JwC2N@ ?I33333DJwC2N@ ?I33333D@%% %   %   !% %  T9vO@|lޥG33333DLp.Mid  %     } f  % "  {2 W @ | # unknown -EsYN@|lޥG33333D@T9vO@Մ933333D@%% %   % $  %% %  T9vO@|lޥG33333D -9 X -ӤJ@%% %  H %  T9vO@|lޥG33333D%% %  % %  j{O@0l733333D@S翍ٺژ %% %  G %  EsYN@Մ933333D@ %   & ' ( f  %  , +   - -  % ) * @  + unknown -hkBL@DU933333D@kS,62M@KXv3633333D@%% %   % ,  -% %  kS,62M@KXv3633333D@S?cٺژ? %% %  [ %  / ON@Kr433333D@ %  . / y -H=,S@33333D@yK ?I@33333D@  %  0 1 2 3   %  4  5 6  %   7 8 9  %  F E   - G  % : ;tN#;@ <bb<@  = unknown -*rOr#\BېR33333D@^ 9#Q33333D@ %  >  ? @  %  Y X   - &  % A  B m,#@  C unknown -Xz~+F@| -"M33333D@ d/H@ܵ M33333D@ %  ! D E F  %  P O !  - Q  % G H?/g.@ #3q?@ ! I unknown -A$o<@L(L33333D@h5F@yK33333D@%% %  # % J # K % L  M% %  `0\)F@Fl3=33333D@R4<Φ %% %  %' % N O P  Q -|lޥG@T9vO33333D ?I@JwC2N33333D@  %  V % - d/H@JwC2N33333D ?I@| -"M33333D@% %  pw]H@Mc<f6;f  %  R ( S T - )  %  U V (  W  % X YtN#;@ bb<@ ( Z unknown -yK@I$o<33333DYŁL@S[<33333D %  ' ) ,  -   %  ) ' U [   %  ) \ -hkBL@S[<33333DXŁL@DU933333D@%% %  * % ]  ^% %  XŁL@S[<33333D^X4<Φ?  % _ *33333T / , ` unknown -hkBL@DU933333DhkBL@DU933333D@ % a 2 -  b -hkBL@DU933333DkS,62M@KXv3633333D@ %% %  /V %  hkBL@DU933333D%% %  1% %  kS,62M@KXv3633333D -9 X -ӤJ@%% %  2"% %  M@95hٺژ?S  %  c d J -@yK@33333D ?I@H=,S@33333D K - %  e f g h - 9  %  i : j k -  %  : l m n -  %  o p :  q  % r stN#;@ tbb<@ : u unknown -\BېR^ @33333D9#Q*rOr#@33333D %  v ; w x -  %  y z ;  {  % | }?/g.@ #3q?@ ; ~ unknown -L(Lh5F33333DyKB$o<33333D %  <    -  %    <    %    m,#@ <  unknown -| -"M d/H33333Dܵ MYz~+F33333D %  2 =     %  = 2 y  -   %  =  -ܵ Mh5F33333DL(LRz~+F33333D@%% %  >9 %    %  > % %  Fl3=`0\)F33333DQ4<Φ?  %   ?   - v  %    ?    %  9 E C7 ?  unknown -Nr4/ ON33333DU53U#M33333D %  8 @ F    %  @ 8   -   %  @  -U539#Q33333D^ U#M33333D@%% %  A7 %   % %  b=TGmH33333Dٺژ?YS  %  B    - v  %    B    %    @ B  unknown -(H=,S33333DH=,R33333D %  5 C   -   %  C 5 E  -   %  C  -*rOr#H=,R33333D\BېR33333D@%% %  D - %  D % %  *rOr#\BېR33333Dٺژ?S  %  J33333T < E  unknown -*rOr#\BېR33333D*rOr#\BېR33333D@ %  I33333T ;   unknown -^ 9#Q33333D^ 9#Q33333D@ %   G   -*rOr#\BېR33333D^ 9#Q33333D@ %% %  I %  ^ 9#Q33333D%% %  J %  *rOr#\BېR33333D %   L   - I  %    L    %   2@ L  unknown -DU9@ZŁL33333DS[<@ukBL33333D %  E M P    %  M E     %  M  -S[<@ZŁL33333DC$o<@yK33333D@%% %  N %   % %  MY%=@=+?33333DQ4<Φ??  %  S33333T H   unknown -A$o<@yK33333DA$o<@yK33333D@ %   Q   -A$o<@L(L33333Dh5F@yK33333D@ %% %  S~ %  A$o<@yK33333D %  U    - I  %    U  P  %   R@ U  unknown -|lޥG@T9vO33333D ?I@JwC2N33333D %  ? V   -   %  V ? X   %% %  W %  W % %   d/H@| -"M33333D6;f?c<f  %  B33333T [   unknown - d/H@| -"M33333D d/H@| -"M33333D@%% %  [b %   d/H@| -"M33333D%% %  ]% %  Xz~+F@ܵ M33333D@? -9 X -ӤJ@%% %  ^% %  h5F@L(L33333D@? -9 X -ӤJ@%% %  d %      -JwC2N@|lޥG@33333DT9vO@ ?I@33333D@  %   d -| -"M@d/H@33333DJwC2N@ ?I@33333D@% %  M@rw]H@7;f?b<f  %      e  %   g    %  g    -  %    g  - c  %  tN#;@ bb<@   unknown -L(L@Tz~+F@33333Dܵ M@h5F@33333D %  h  -,\K&\K33333D@$\K@*\K@33333D@  %% %  i %  i % %   =33333D@kVeC@eVeC@?  %     - - T T33333D T@ T@33333D@  cone% %  8== -qZL@ -qZL@? ? T@ %% %  l* %   -qZL@" -qZL33333D%% %  o %  \ W   -yK@I$o<33333DYŁL@S[<33333D@  %  S o -yK@h5F33333DL(L@I$o<33333D@% %  p K@؉6B?`Q4<Φ?  %    R  p  %   r   -   %  r  s    %  u R r  - )  %   Mm,#@   unknown -ܵ M@ d/H33333D| -"M@Rz~+F33333D %  t s   -  %  33333T    unknown -| -"M@ d/H33333D| -"M@ d/H33333D@%% %  v %  v % %  JwC2N@ ?I33333D;f;f?  %   | w  f  %   R@   unknown -JwC2N@ ?I33333D@T9vO@|lޥG33333D@%% %  x %   % %  JwC2N@ ?I33333D -9 X -ӤJ@%% %  zJ %  JwC2N@ ?I33333D%% %  }% %  5tdO@؂F33333D@O4<Φ? %% %  I %  T9vO@|lޥG33333D@ %      f  %     ( -   %   *32@   unknown -hkBL@S[<33333D@XŁL@DU933333D@%% %   %   % %  hkBL@DU933333D@ -}?2k? %% %  Y %  kS,62M@KXv3633333D@ %    y - ?IyK@33333D@H=,S@33333D@  %        %     -   %        %     3 -   %  tN#;@ bb<@   unknown -ܵ Mh5F33333D@L(LRz~+F33333D@ %       %     6 -   %  <  m,#@   unknown -*rOr#H=,R33333D@\BېR33333D@ %       %     9 -   %  ?/g.@ ;#3q?@   unknown -U539#Q33333D@^ U#M33333D@%% %   %    %  6 !% %  8Fݿ;'@tJ33333D@YS ٺژ  %  "  # $  %     @ -   % % B & @  ' unknown - d/H@JwC2N33333D@ ?I@| -"M33333D@%% %   % ( @ )% %  Xz~+F@ܵ M33333D@?F4<Φ  %   * + ,  %     F -   % - .9 HE C7  / unknown -S[<@ZŁL33333D@C$o<@yK33333D@%% %   % 0  1% %  h1*@,ftK33333D@?Q4<Φ %% %  a %  h5F@L(L33333D@%% %  ` %  Xz~+F@ܵ M33333D@%% %  ( % 2 3 4  5 -Մ9@T9vO33333D|lޥG@LsYN33333D@  %    -|lޥG@T9vO33333D ?I@JwC2N33333D@% %  軥rH@rBNgp.9id??  %      - )  %  6 7  T   % 8 9 3q7 Y_  : unknown -yK@h5F33333DL(L@I$o<33333D %     [ - W  %    6 ; - W  %    -yK@I$o<33333DYŁL@S[<33333D@%% %   % < T =% %  )2|<@=33333D?Q4<Φ?  % > 33333T   ? unknown -XŁL@S[<33333DXŁL@S[<33333D@ % @    A -hkBL@S[<33333DXŁL@DU933333D@ %% %  T %  XŁL@S[<33333D%% %  % %  hkBL@DU933333D -9 X -ӤJ@%% %  !% %  j_L@鶍72k? -}ؿ  %  B  J -yK@@33333DH=,S@ ?I@33333D K - %  C D E F -   %  G  H I - 9  %   J K L - 9  %  M N  h O  % P QtN#;@ Rbb<@  S unknown -h5FL(L@33333DSz~+Fܵ M@33333D %  T  U V -  %  W X  k Y  % Z [?/g.@ s#3q?@  \ unknown -9#Q^ @33333DT#MU53@33333D %   ] ^ _ -  %  ` a  n b  % c t d m,#@  e unknown -H=,R@33333D\BېR*rOr#@33333D %    a f q  %    W g - q  %   h -\BېR^ @33333D9#Q*rOr#@33333D@%% %  l % i k j % k  l% %  tJ:Fݿ;'33333D ٺژXS?  %  m  n o -  %  p q  x r  % s t9 }E C7  u unknown -ZŁLD$o<33333DyKS[<33333D %      {  %    p v - {  %   w -L(Lh5F33333DyKB$o<33333D@%% %  j % x x y% %  ,ftKh1*33333DQ4<Φ  %   z { | -  %  } ~     %    @   unknown -JwC2N ?I33333D| -"M d/H33333D %    ~  -   %      -   %    -| -"M d/H33333Dܵ MYz~+F33333D@%% %  = %   % %  ܵ MYz~+F33333DF4<Φ  %  33333T    unknown -ܵ MYz~+F33333Dܵ MYz~+F33333D@ %  33333T  y  unknown -L(Lh5F33333DL(Lh5F33333D@ %      -ܵ Mh5F33333DL(LRz~+F33333D@ %% %   %  L(Lh5F33333D%% %   %  ܵ MYz~+F33333D %      - v  %        %   2@   unknown -JXv36/ ON33333DJr4lS,62M33333D %        %        %    -Nr4/ ON33333DU53U#M33333D@%% %  4 %   % %  oy)*;w逥E33333D\S?ٺژ?  %  33333T    unknown -U53U#M33333DU53U#M33333D@ %      -U539#Q33333D^ U#M33333D@ %% %   %  U53U#M33333D %      - v  %        %   R@   unknown -Ev&H=,S33333D(N7*|S33333D %      -   %        %    -(H=,S33333DH=,R33333D@%% %    %   % %  H=,R33333D  %  33333T    unknown -H=,R33333DH=,R33333D@ %      -*rOr#H=,R33333D\BېR33333D@ %% %   %  H=,R33333D%% %  % %  *rOr#\BېR33333D@? -9 X -ӤJ@%% %   % %  ^ 9#Q33333D@? -9 X -ӤJ@%% %  6% %  J{F""O>Q ٺژ]S?  %      - I  %        %   @   unknown -7Xv36@dS,62M33333DDU9@ukBL33333D %  +    -   %   +     %    -DU9@ZŁL33333DS[<@ukBL33333D@%% %   %   % %  DU9@ukBL33333D?&J4<Φ  %  .33333T    unknown -S[<@ZŁL33333DS[<@ZŁL33333D@ %      -S[<@ZŁL33333DC$o<@yK33333D@ %% %  | %  S[<@ZŁL33333D%% %  % %  A$o<@yK33333D@? -9 X -ӤJ@%% %  5% %  Չ6B@p KQ4<Φ  %      - I  %      4  %  *3 \h@   unknown -Մ9@T9vO33333D|lޥG@LsYN33333D %  #    - P  %   #   P %% %   %   % %   ?I@JwC2N33333D9idgp.  %  &33333T    unknown - ?I@JwC2N33333D ?I@JwC2N33333D@%% %  d %   ?I@JwC2N33333D%% %  % %   d/H@| -"M33333D -9 X -ӤJ@%% %   %      -KsYN@Մ9@33333DT9vO@}lޥG@33333D@  %    -JwC2N@|lޥG@33333DT9vO@ ?I@33333D@% %  qBN@껥rH@8idhp.?  %        %      - e  %      - e  %      - c  %    m,#@   unknown -ܵ M@Zz~+F@33333D| -"M@d/H@33333D %      -  %  33333T    unknown -ܵ M@Zz~+F@33333Dܵ M@Zz~+F@33333D@ %        %  33333T    unknown -L(L@h5F@33333DL(L@h5F@33333D@ %      - c %% %   %    %   % %  Fl3=@a0\)F@33333D?Q4<Φ  %     -,\K&\K33333D$\K@*\K@33333D@ % %   =kVeC@eVeC@? (\K@ %% %  = %  fVeC@hVeC33333D@%% %   %  j   - T T33333D@ T@ T@33333D@ - %% %  % %  1>L@Aye<Q4<Φ?  %    7  p  %      p  %  9 9F C7 R  unknown -L(L@h5F33333Dܵ M@Rz~+F33333D %      -   %  33333T    unknown -ܵ M@Rz~+F33333Dܵ M@Rz~+F33333D@%% %   %   % %  | -"M@ d/H33333DU4<Φ?  %      f  %   @   unknown -| -"M@ ?I33333D@JwC2N@ d/H33333D@%% %   %   % %  | -"M@ d/H33333D -9 X -ӤJ@%% %  L %  | -"M@ d/H33333D%% %  % %  T9vO@|lޥG33333D@Lp.Mid %% %  K %  JwC2N@ ?I33333D@ %  &    f  %  V U &  - W  %  tN#;@ bb<@ &  unknown -yK@I$o<33333D@YŁL@S[<33333D@%% %  ( %  ( % %  XŁL@S[<33333D@^X4<Φ? %% %  *W %  hkBL@DU933333D@ %    y -@yK@33333D@ ?I@H=,S@33333D@  %    -  .  %   /     %  /      %  p o /  - q  %  tN#;@ bb<@ /  unknown -\BېR^ @33333D@9#Q*rOr#@33333D@ %   0     %    0 - -   %    m,#@ 0  unknown -| -"M d/H33333D@ܵ MYz~+F33333D@ %  1      %  z y 1  - {  %  ?/g.@ #3q?@ 1 ! unknown -L(Lh5F33333D@yKB$o<33333D@%% %  3; % " 3 # % $ - %% %  Fl3=`0\)F33333D@Q4<Φ?  %  & 4 ' (  %    4  -   % )  * @ 4 + unknown -(H=,S33333D@H=,R33333D@%% %  6  % ,  -% %  *rOr#\BېR33333D@ٺژ?S  %  7 . / 0  %    7  -   % 1 29 E C7 7 3 unknown -Nr4/ ON33333D@U53U#M33333D@%% %  98 % 4 9 5% %  b=TGmH33333D@ٺژ?YS %% %  ; %  ^ 9#Q33333D@%% %  < %  *rOr#\BېR33333D@ %  6 > 7 8  %    > $ - P  % 9 & :R@ > ; unknown -|lޥG@T9vO33333D@ ?I@JwC2N33333D@%% %  @ % < $ =% %   d/H@| -"M33333D@6;f?c<f %% %  Bc %   d/H@| -"M33333D@ %  D > ? @  %    D , -   % A B .2@ D C unknown -DU9@ZŁL33333D@S[<@ukBL33333D@%% %  F % D F E% %  MY%=@=+?33333D@Q4<Φ?? %% %  H %  A$o<@yK33333D@%% %  O) % F G H  I -nv&@L7*|S33333DՄ9@LsYN33333D@  %   O -Մ9@T9vO33333D|lޥG@LsYN33333D@% %  k/=B@j9O)G4<Φ???  %   S V ;   %  S    -  %% %  T % J  K% %  LvK@4P533333D`Q4<Φ?  % L Y33333T  6 M unknown -yK@I$o<33333DyK@I$o<33333D@%% %  YR %  yK@I$o<33333D%% %  [% %  XŁL@S[<33333D -9 X -ӤJ@%% %  \ % %  `=PL@b:?hX4<Φ?  %  N J -,\K&\K33333D$\K@*\K@33333D K - %  O d P Q -   %  d R S T -   %  U V d F W  % X YtN#;@ Zbb<@ d [ unknown -^ @9#Q@33333D*rOr#@\BېR@33333D %  \ e ] ^ - 9  %  _ ` e I a  % b c?/g.@ Q#3q?@ e d unknown -h5FyK@33333DC$o<L(L@33333D %  f e f g - 9  %  h i f L j  % k R l m,#@ f m unknown - d/Hܵ M@33333DYz~+F| -"M@33333D %  - g i n O  %  g - _ o - O  %  g p -h5FL(L@33333DSz~+Fܵ M@33333D@%% %  h % q I r % s h t% %  a0\)FFl3=@33333DQ4<Φ??  %  u i v w -  %  x y i V z  % { |9 [E C7 i } unknown -/ ONU53@33333DT#MLr4@33333D %   j p g Y  %  j  x ~ - Y  %  j  -9#Q^ @33333DT#MU53@33333D@%% %  k %  V % %  TGmHb=@33333DXSٺژ  %  l    -  %    l _   %  d  @ l  unknown -H=,S@33333DH=,R @33333D %   m   - b  %  m  o f - b  %  m  -H=,R@33333D\BېR*rOr#@33333D@%% %  np %  n % %  \BېR*rOr#@33333DS翕ٺژ  %  t33333T  o  unknown -\BېR*rOr#@33333D\BېR*rOr#@33333D@ %  s33333T  W  unknown -9#Q^ @33333D9#Q^ @33333D@ %   q   -\BېR^ @33333D9#Q*rOr#@33333D@ %% %  s %  9#Q^ @33333D%% %  t %  \BېR*rOr#@33333D %   v   -  %    v o   %   t2@ v  unknown -YŁLS[<33333DtkBLDU933333D %   w z v r  %  w    r  %  w  -ZŁLD$o<33333DyKS[<33333D@%% %  xg %  o % %  =+?NY%=33333D?Q4<Φ  %  }33333T  p  unknown -yKB$o<33333DyKB$o<33333D@ %  h {   -L(Lh5F33333DyKB$o<33333D@ %% %  } %  yKB$o<33333D %      -  %     |   %   R@   unknown -T9vO ?I33333DJwC2N|lޥG33333D %      -   %        %    -JwC2N ?I33333D| -"M d/H33333D@%% %  @ %   % %  | -"M d/H33333Dc<f6;f  %  33333T  ~  unknown -| -"M d/H33333D| -"M d/H33333D@ %      -| -"M d/H33333Dܵ MYz~+F33333D@ %% %   %  | -"M d/H33333D%% %  :% %  ܵ MYz~+F33333D@? -9 X -ӤJ@%% %  <% %  L(Lh5F33333D@? -9 X -ӤJ@%% %  G% %  _Ĕ"L0FQ4<Φ??  %      - v  %        %   @   unknown -DU9lS,62M33333DJXv36ikBL33333D %  /    -   %   /     %    -JXv36/ ON33333DJr4lS,62M33333D@%% %  1 %   % %  JXv36lS,62M33333Deٺژ?S  %  233333T    unknown -Jr4/ ON33333DJr4/ ON33333D@ %      -Nr4/ ON33333DU53U#M33333D@ %% %   %  Jr4/ ON33333D%% %  5% %  U53U#M33333D@? -9 X -ӤJ@%% %  F% %  z(^>+0TPYSٺژ  %      - v  %        %  *3 \h@   unknown -Մ9N7*|S33333Dv&EsYN33333D %  '    -   %   '     %    -Ev&H=,S33333D(N7*|S33333D@%% %   %   % %  (H=,S33333Df$ᅫt߈]?  %  *33333T    unknown -(H=,S33333D(H=,S33333D@ %      -(H=,S33333DH=,R33333D@ %% %   %  (H=,S33333D%% %   % %  H=,R33333D -9 X -ӤJ@%% %  7% %  b' ҿzRS翕ٺژ  %      - I  %        %   32@   unknown -Tr4@/ ON33333D7Xv36@dS,62M33333D %  ?    -   %   ?     %    -7Xv36@dS,62M33333DDU9@ukBL33333D@%% %   %   % %  7Xv36@dS,62M33333D2k?}?  %  B33333T    unknown -DU9@ukBL33333DDU9@ukBL33333D@ %      -DU9@ZŁL33333DS[<@ukBL33333D@ %% %  z %  DU9@ukBL33333D%% %  % %  S[<@ZŁL33333D -9 X -ӤJ@%% %  4% %   Aye<@1>L?Q4<Φ?  %      - I  %      H  %   {2 W @   unknown -nv&@L7*|S33333DՄ9@LsYN33333D %  7    - 4  %   7   4 %% %   %   % %  7ػ%<@|\ O33333D)G4<Φ?  %  :33333T    unknown -|lޥG@T9vO33333D|lޥG@T9vO33333D@%% %  f %  |lޥG@T9vO33333D%% %  % %   ?I@JwC2N33333D -9 X -ӤJ@%% %   %      -KsYN@wv&@33333DL7*|S@Մ9@33333D@  %    -KsYN@Մ9@33333DT9vO@}lޥG@33333D@% %  j9O@k/=B@G4<Φ??  %        %      -   %        %      - c  %    @   unknown -| -"M@d/H@33333DJwC2N@ ?I@33333D %      - e  %  33333T    unknown -| -"M@d/H@33333D| -"M@d/H@33333D@%% %   % -  % %  ܵ M@Zz~+F@33333DsF4<Φ??  %        %  tN#;@ bb<@   unknown -L(L@Tz~+F@33333D@ܵ M@h5F@33333D@%% %  + %   % %  ܵ M@Zz~+F@33333D@? -9 X -ӤJ@ %      -   %        %    -yK@D$o<@33333DL(L@h5F@33333D@%% %  , %   % %  L(L@h5F@33333D@? -9 X -ӤJ@ %      - c  %  ?/g.@ #3q?@   unknown -yK@D$o<@33333DL(L@h5F@33333D%% %  , %  L(L@h5F@33333D%% %  + %  ܵ M@Zz~+F@33333D%% %   %     -,\K&\K33333D$\K@*\K@33333D   %        %      - p  %  933333T !  " unknown -L(L@h5F33333DL(L@h5F33333D@%% %  % %  2x8@@0 -F33333DQ4<Φ  %      f  % #  Mm,#@  $ unknown -ܵ M@ d/H33333D@| -"M@Rz~+F33333D@%% %   % %  &% %  ܵ M@Rz~+F33333D -9 X -ӤJ@%% %  N %  ܵ M@Rz~+F33333D%% %  % %  JwC2N@ ?I33333D@;f;f? %% %  M %  | -"M@ d/H33333D@ %      f  %  7 6   -   % ' ! 3q7 _  ( unknown -yK@h5F33333D@L(L@I$o<33333D@%% %   % )  *% %  )2|<@=33333D@?Q4<Φ? %% %  U %  XŁL@S[<33333D@ %  +  y -yK@@33333D@H=,S@ ?I@33333D@  %  , - . /   %  0  1 2 .  %   3 4 5 .  %  N M   - O  % 6 7tN#;@ 8bb<@  9 unknown -h5FL(L@33333D@Sz~+Fܵ M@33333D@ %  :  ; <   %  a `   - b  % =  > m,#@  ? unknown -H=,R@33333D@\BېR*rOr#@33333D@ %   @ A B   %  X W   - Y  % C D?/g.@ #3q?@  E unknown -9#Q^ @33333D@T#MU53@33333D@%% %  n % F  G % H  I% %  tJ:Fݿ;'33333D@ ٺژXS?  %  J  K L   %  ~ }   -   % M  N @  O unknown -JwC2N ?I33333D@| -"M d/H33333D@%% %  -? % P  Q% %  ܵ MYz~+F33333D@F4<Φ  %   R S T   %  q p   - r  % U V9 E C7  W unknown -ZŁLD$o<33333D@yKS[<33333D@%% %  k % X  Y% %  ,ftKh1*33333D@Q4<Φ %% %   %  L(Lh5F33333D@%% %   %  ܵ MYz~+F33333D@ %  Z  [ \  %     ( -   % ] * ^R@  _ unknown -Ev&H=,S33333D@(N7*|S33333D@%% %   % ` ( a% %  H=,R33333D@ %% %   %  H=,R33333D@ %   b c d  %     0 -   % e f 22@  g unknown -JXv36/ ON33333D@Jr4lS,62M33333D@%% %  6 % h  i% %  oy)*;w逥E33333D@\S?ٺژ? %% %   %  U53U#M33333D@ %  j " k l  %    " 8 - 4  % m :*3 n\h@ " o unknown -Մ9@T9vO33333D@|lޥG@LsYN33333D@%% %  $ % p 8 q% %   ?I@JwC2N33333D@9idgp. %% %  &e %   ?I@JwC2N33333D@ %  * r s t  %    * @ -   % u v B@ * w unknown -7Xv36@dS,62M33333D@DU9@ukBL33333D@%% %  , % x , y% %  DU9@ukBL33333D@?&J4<Φ %% %  .} %  S[<@ZŁL33333D@%% %  3* % z { |  } -@H=,S33333Dov&@L7*|S33333D@  %   3 -nv&@L7*|S33333DՄ9@LsYN33333D@% %  |I#\2@ox|QES'ٺژ?? %% %  9P %  L(L@h5F33333D%% %  ;% %  yK@I$o<33333D@? -9 X -ӤJ@ %  N N  ~ - B  %   C   -   %    C Q   %  ?/g.@ Y#3q?@ C  unknown -^ @T#M@33333DU53@9#Q@33333D %  D    -   %    D T   %  Z  m,#@ D  unknown -@\BېR@33333D*rOr#@H=,R@33333D %  . E   W  %  E .   - W  %  E  -^ @9#Q@33333D*rOr#@\BېR@33333D@%% %  F %  Q  %  F % %  :Fݿ;'tJ@33333DXS? ٺژ?  %   G   - 9  %    G ^   %  9 cE C7 G  unknown -D$o<yK@33333DS[33333T d   unknown -H=,R@33333DH=,R@33333D@ %   b   -H=,R@33333D\BېR*rOr#@33333D@ %% %  d %  H=,R@33333D%% %  fm% %  \BېR*rOr#@33333D@? -9 X -ӤJ@%% %  go% %  9#Q^ @33333D@? -9 X -ӤJ@%% %  hX% %  N>QF{F""@\S? ٺژ?  %   m   -  %    m    %   @ m  unknown -cS,62MDU933333DtkBL8Xv3633333D %  S n q  -   %  n S     %  n  -YŁLS[<33333DtkBLDU933333D@%% %  od %   % %  tkBLDU933333DJ4<Φ  %  V33333T t q  unknown -YŁLS[<33333DYŁLS[<33333D@ %  w r   -ZŁLD$o<33333DyKS[<33333D@ %% %  t %  YŁLS[<33333D%% %  vh% %  yKB$o<33333D@? -9 X -ӤJ@%% %  wW% %  p KՉ6BᅳQ4<Φ?  %  z    -  %    z    %  *3 \h@ z  unknown -T9vO|lޥG33333DKsYNՄ933333D %  K {   -   %  { K }    %  {  -T9vO ?I33333DJwC2N|lޥG33333D@%% %  |C %  | % %  JwC2N ?I33333Dgp.9id?  %  N33333T    unknown -JwC2N ?I33333DJwC2N ?I33333D@ %      -JwC2N ?I33333D| -"M d/H33333D@ %% %   %  JwC2N ?I33333D%% %  >% %  | -"M d/H33333D -9 X -ӤJ@%% %  H% %  ,`;M3?\q-GᅤF4<Φ?  %      - v  %        %   32@   unknown -S[  ? -L7*|S@@33333DH=,S@wv&@33333D@  %  @  -KsYN@wv&@33333DL7*|S@Մ9@33333D@% %  ox|Q@I#\2@&ٺژFS?  %  A B C D   %  E  B F -   %   E     %   C   - c  % G  HR@  I unknown -JwC2N@|lޥG@33333DT9vO@ ?I@33333D %    J K -   % L M33333T   N unknown -JwC2N@ ?I@33333DJwC2N@ ?I@33333D@%% %   % O  P% %  | -"M@d/H@33333Db<f?7;f?  %  J      % Q   m,#@  R unknown -ܵ M@Zz~+F@33333D@| -"M@d/H@33333D@%% %  - % S K T% %  | -"M@d/H@33333D -9 X -ӤJ@%% %  ; %  | -"M@d/H@33333D %   U    %% %  % %  Fl3=@a0\)F@33333D@?Q4<Φ %% %  ? %  ܵ M@Zz~+F@33333D@ %    V W -   % X Y?/g.@ #3q?@  Z unknown -yK@D$o<@33333D@L(L@h5F@33333D@ % [    \ -yK@D$o<@33333DL(L@h5F@33333D@ %% %  > %  L(L@h5F@33333D@ %  ]  ^ _ - c  %  V `   a  % b c9 E C7  d unknown -yK@S[<@33333DYŁL@F$o<@33333D%% %   % e  f% %  ,ftK@h1*@33333DQ4<Φ??  %    N ~   %      - +  % g h -DT!? h`8U)zj@  i unknown - T T33333D@ T@ T@33333D@ % j 9 !F C7  k unknown -L(L@h5F33333D@ܵ M@Rz~+F33333D@%% %   % l  m% %  L(L@h5F33333D@? -9 X -ӤJ@%% %  % %  | -"M@ d/H33333D@U4<Φ? %% %  O %  ܵ M@Rz~+F33333D@%% %  % %  LvK@4P533333D@`Q4<Φ? %% %  S %  yK@I$o<33333D@ %   y - T T33333D@ T@ T@33333D@  %  n  o p   %   q r s   %  V U  / - W  % t utN#;@ vbb<@  w unknown -^ @9#Q@33333D@*rOr#@\BېR@33333D@ %  x  y z .  %  i h  2 - j  % { 8 | m,#@  } unknown - d/Hܵ M@33333D@Yz~+F| -"M@33333D@ %   ~   .  %  ` _  5 - a  %  ?/g.@ 7#3q?@   unknown -h5FyK@33333D@C$o<L(L@33333D@%% %   %    %  2 % %  a0\)FFl3=@33333D@Q4<Φ??  %        %     < -   %  >  @   unknown -H=,S@33333D@H=,R @33333D@%% %  r %  < % %  \BېR*rOr#@33333D@S翕ٺژ  %        %  y x  B - z  %  9 DE C7   unknown -/ ONU53@33333D@T#MLr4@33333D@%% %   %   % %  TGmHb=@33333D@XSٺژ %% %   %  9#Q^ @33333D@%% %   %  \BېR*rOr#@33333D@ %        %     L -   %  N R@   unknown -T9vO ?I33333D@JwC2N|lޥG33333D@%% %  B %  L % %  | -"M d/H33333D@c<f6;f %% %   %  | -"M d/H33333D@ %        %     T -   %   V2@   unknown -YŁLS[<33333D@tkBLDU933333D@%% %  i %   % %  =+?NY%=33333D@?Q4<Φ %% %   %  yKB$o<33333D@ %   &    %    & \ -   %  ^*3 \h@ &  unknown -Մ9N7*|S33333D@v&EsYN33333D@%% %  ( %  \ % %  (H=,S33333D@f$ᅫt߈]? %% %  * %  (H=,S33333D@ %  .     %    . d -   %   f@ .  unknown -DU9lS,62M33333D@JXv36ikBL33333D@%% %  03 %  0 % %  JXv36lS,62M33333D@eٺژ?S %% %  2 %  Jr4/ ON33333D@ %   6    %    6 l - H  %  n {2 W @ 6  unknown -nv&@L7*|S33333D@Մ9@LsYN33333D@%% %  8 %  l % %  7ػ%<@|\ O33333D@)G4<Φ? %% %  :g %  |lޥG@T9vO33333D@ %  >     %    > t -   %   v32@ >  unknown -Tr4@/ ON33333D@7Xv36@dS,62M33333D@%% %  @ %  @ % %  7Xv36@dS,62M33333D@2k?}? %% %  B{ %  DU9@ukBL33333D@%% %  G+ %      -@H=,S33333D@H=,R33333D@  %   G -@H=,S33333Dov&@L7*|S33333D@% %  3 "@#$Su߈]Z$??  %  -DT!? ^8U)zj@ N  unknown -,\K&\K33333D$\K@*\K@33333D %   O   -   %    O    %  9 E C7 O  unknown -U53@T#M@33333DLr4@/ ON@33333D %  r P V    %  P r   -   %  P  -^ @T#M@33333DU53@9#Q@33333D@%% %  Q %   % %  b=@TGmH@33333DٺژXS?  %  R    -   %    R    %    @ R  unknown -@H=,R@33333D @H=,S@33333D %  o S   -   %  S o U  -   %  S  -@\BېR@33333D*rOr#@H=,R@33333D@%% %  T %  T % %  *rOr#@\BېR@33333DٺژS?  %  Z33333T v U  unknown -*rOr#@\BېR@33333D*rOr#@\BېR@33333D@ %  Y33333T u   unknown -^ @9#Q@33333D^ @9#Q@33333D@ %   W   -^ @9#Q@33333D*rOr#@\BېR@33333D@ %% %  Y %  ^ @9#Q@33333D%% %  Z  %  *rOr#@\BېR@33333D %   \   - 9  %    \    %   2@ \  unknown -S[+@ٺژXS?  %   " # $ -  %  % &   '  % ( *3 )\h@  * unknown -N7*|Sv&@33333DDsYNՄ9@33333D %    & + -   %        %   , -H=,S @33333DN7*|S@v&@33333D@%% %  v % -  .% %  H=,S @33333Dt߈]?^$?  % / 33333T   0 unknown -H=,S @33333DH=,S @33333D@ % 1 ,   2 -H=,S@33333DH=,R @33333D@ %% %   %  H=,S @33333D%% %  q% %  H=,R@33333D -9 X -ӤJ@%% %  Y% %  ҿzRb' @ٺژS?  %  3  4 5 -  %  6 7   8  % 9 : 32@  ; unknown -/ ON8Xv3633333DcS,62MUr433333D %      -   %    6 <   %   = -cS,62MDU933333DtkBL8Xv3633333D@%% %  a % >  ?% %  cS,62M8Xv3633333D}?2k  % @ 33333T   A unknown -tkBLDU933333DtkBLDU933333D@ % B    C -YŁLS[<33333DtkBLDU933333D@ %% %   %  tkBLDU933333D%% %  e% %  YŁLS[<33333D -9 X -ӤJ@%% %  V% %  1>LAye<Q4<Φ?  %   D E F -  %  G H   I  % J  {2 KW @  L unknown -L7*|SՄ933333DKsYNrv&33333D %    H M -   %        %   N -T9vO|lޥG33333DKsYNՄ933333D@%% %  F % O  P% %  {\ O7ػ%<33333D!G4<Φ??  % Q 33333T   R unknown -T9vO|lޥG33333DT9vO|lޥG33333D@ % S N   T -T9vO ?I33333DJwC2N|lޥG33333D@ %% %   %  T9vO|lޥG33333D%% %  A% %  JwC2N ?I33333D -9 X -ӤJ@%% %  I% %  Mqw]H6;fc<f?  %  U  V W - v  %  X Y   Z  % [ \tN#;@ bb<@  ] unknown -H$o %  H=,R@33333D@ %  @      %    @  -   %   2@ @  unknown -/ ONHr4@33333D@lS,62MHXv36@33333D@%% %  B %  B % %  :w逥Eoy)*?33333D@ٺژ?[S %% %  D %  T#MU53@33333D@ %   J     %    J  -   %  *3 \h@ J  unknown -T9vO|lޥG33333D@KsYNՄ933333D@%% %  LE %   % %  JwC2N ?I33333D@gp.9id? %% %  N %  JwC2N ?I33333D@ %  R      %    R  -   %   @ R  unknown -cS,62MDU933333D@tkBL8Xv3633333D@%% %  Tf %  T % %  tkBLDU933333D@J4<Φ %% %  V %  YŁLS[<33333D@ %   Z    %    Z  -   %   {2 W @ Z  unknown -|lޥGT9vO33333D@Մ9EsYN33333D@%% %  \ %   % %  /l7l{O33333D@ٺژS? %% %  ^ %  Dv&N7*|S33333D@ %  b -    %    b  -   %   32@ b  unknown -S[  % ?  @R@  A unknown - @N7*|S@33333D@v&@H=,S@33333D %    = B -   %        %   C -@H=,R@33333D @H=,S@33333D@%% %   % D  E% %  @H=,R@33333D=?  % F 33333T   G unknown -@H=,R@33333D@H=,R@33333D@ % H C   I -@\BېR@33333D*rOr#@H=,R@33333D@ %% %    %  @H=,R@33333D%% %  % %  *rOr#@\BېR@33333D@? -9 X -ӤJ@%% %  % %  ^ @9#Q@33333D@? -9 X -ӤJ@%% %  z% %  F{F""@N>Q@ ٺژ?\S  %  J  K L - 9  %  M N   O  % P Q @  R unknown -DU9tkBL@33333D9Xv36cS,62M@33333D %      -   %    M S   %   T -S[  %   @   -   %  @  A    %  C  @  - c  %   {2 W @   unknown -KsYN@wv&@33333DL7*|S@Մ9@33333D %  B A   -   %  33333T    unknown -KsYN@Մ9@33333DKsYN@Մ9@33333D@%% %  D %  D % %  {\ O@7ػ%<@33333DG4<Φ  %   J E    %  M R@   unknown -JwC2N@|lޥG@33333D@T9vO@ ?I@33333D@%% %  F/ %   % %  T9vO@|lޥG@33333D -9 X -ӤJ@%% %  H9 %  T9vO@|lޥG@33333D%% %  K% %  | -"M@d/H@33333D@b<f?7;f? %% %  MA %  JwC2N@ ?I@33333D@ %  U     %  ` V U  - a  %    9 YE C7 U  unknown -yK@S[<@33333D@YŁL@F$o<@33333D@%% %  W;% %  yK@D$o<@33333D@? -9 X -ӤJ@%% %  YN %  yK@D$o<@33333D@ %   ]   - c  %  - ]   %   @ ]  unknown -tkBL@:Xv36@33333DcS,62M@DU9@33333D %   ^ `  -   %  ^     %  ^  -tkBL@DU9@33333DYŁL@S[<@33333D@%% %  _  %     % %  tkBL@DU9@33333D J4<Φ??  %    33333T c `  unknown -YŁL@S[<@33333DYŁL@S[<@33333D@ %    a   -yK@S[<@33333DYŁL@F$o<@33333D@ %% %  c. %  YŁL@S[<@33333D%% %  hO %   -qZL@" -qZL33333D@ %   n     %    n  -   %      @ n  unknown -@H=,R@33333D@ @H=,S@33333D@%% %  p %     % %  *rOr#@\BېR@33333D@ٺژS?  %  q  !   %    q  -   % "  # 9 E C7 q $ unknown -U53@T#M@33333D@Lr4@/ ON@33333D@%% %  s % %  s & % %  b=@TGmH@33333D@ٺژXS? %% %  u  %  ^ @9#Q@33333D@%% %  v - %  *rOr#@\BېR@33333D@ %  ' x ( ) .  %    x  -   % *   + R@ x , unknown - ?IJwC2N@33333D@|lޥGT9vO@33333D@%% %  z % -   . % %   d/H| -"M@33333D@7;fb<f? %% %  | %   d/H| -"M@33333D@ %  ~ / 0 1 .  %    ~  -   % 2  3  2@ ~ 4 unknown -S[ % %  H=,S @33333D@t߈]?^$? %% %   %  H=,S @33333D@ %   ? @ A   %      -   % B  C  @  D unknown -lS,62MHXv36@33333D@ikBLDU9@33333D@%% %   % E   F % %  lS,62MHXv36@33333D@Sfٺژ %% %   %  / ONHr4@33333D@ %  G  H I   %  H G   - I  % J   {2 K W @  L unknown -L7*|SՄ933333D@KsYNrv&33333D@%% %  H % M   N % %  {\ O7ػ%<33333D@!G4<Φ?? %% %   %  T9vO|lޥG33333D@ %   O P Q   %  7 6   - 8  % R  S  32@  T unknown -/ ON8Xv3633333D@cS,62MUr433333D@%% %  c % U   V % %  cS,62M8Xv3633333D@}?2k %% %   %  tkBLDU933333D@ %  W  X Y  %  j i   - k  % Z   [ R@  \ unknown - ?IT9vO33333D@|lޥGJwC2N33333D@%% %   % ]   ^ % %  ؂F5tdO33333D@O4<Φ %% %   %  Մ9EsYN33333D@ %   _ ` a  %  Y X   - Z  % b  c tN#;@ bb<@  d unknown -H$o+@0TP@XS?ٺژ?  %   -   %   ;  %  @*3 \h@  unknown -v&@DsYN@33333DՄ9@N7*|S@33333D %    - >  %     B >  %   - @N7*|S@33333D@v&@H=,S@33333D@%% %   %   % %   @H=,S@33333D^$?t߈]  %   33333T  = unknown - @H=,S@33333D @H=,S@33333D@ %    -@H=,R@33333D @H=,S@33333D@ %% %   %   @H=,S@33333D%% %  % %  @H=,R@33333D -9 X -ӤJ@%% %  {% %  b' @ҿzR@S?ٺژ?  %   - 9  %   L  %   Q32@  unknown -9Xv36cS,62M@33333DVr4/ ON@33333D %  0   S - O  %   0 O  %   -DU9tkBL@33333D9Xv36cS,62M@33333D@%% %   %  L % %  9Xv36cS,62M@33333D2k}ؿ  %  3 33333T   unknown -DU9tkBL@33333DDU9tkBL@33333D@ %     -S[L@Q4<Φ??  %   - 9  %   ]  %  b {2 W @  unknown -Մ9KsYN@33333Dtv&L7*|S@33333D %  (  - `  %   (  d `  %   -}lޥGKsYN@33333DՄ9T9vO@33333D@%% %   %   % %  7ػ%<{\ O@33333D?G4<Φ  %  + 33333T  _ unknown -|lޥGT9vO@33333D|lޥGT9vO@33333D@ %    - ?IJwC2N@33333D|lޥGT9vO@33333D@ %% %   %  |lޥGT9vO@33333D%% %  % %   ?IJwC2N@33333D -9 X -ӤJ@%% %  -k% %  qw]HM@b<f?7;f?  %   -  %   n  %  tN#;@ sbb<@  unknown -ZŁLS[<@33333DyKF$o<@33333D %  @   u - q  %   @ q  %   -XŁLDU9@33333DhkBLS[<@33333D@%% %   %  n % %  XŁLS[<@33333D~X4<Φ?  %  C 33333T   unknown -ikBLDU9@33333DikBLDU9@33333D@ %     -lS,62MHXv36@33333DikBLDU9@33333D@ %% %   %  ikBLDU9@33333D%% %  % %  lS,62MHXv36@33333D -9 X -ӤJ@%% %  f% %  M95@iٺژS?  %  " -  %  "   %   R@ " unknown -T9vO|lޥG@33333DJwC2N ?I@33333D %  8 # -   %  # 8 %    %  # -T9vOՄ9@33333DDsYN|lޥG@33333D@%% %  $| %  $ % %  5tdO؂F@33333DO4<Φ?  %  ; 33333T )  unknown -DsYNՄ9@33333DDsYNՄ9@33333D@ %  '  -N7*|Sv&@33333DDsYNՄ9@33333D@ %% %  ) %  DsYNՄ9@33333D%% %  +w% %  N7*|S@v&@33333D -9 X -ӤJ@%% %  ,[% %  $$S( "@^$?t߈]?  %   3 -  %  3   %   3q7 _ 3 unknown -9#QU5333333DV#M^ 33333D %  P 4 7  -   %  4 P -   %  4 -/ ONUr433333DV#MU5333333D@%% %  5[ %   % %  fD&C,?33333DٺژZS  %  S 33333T : 7 unknown -/ ONUr433333D/ ONUr433333D@ %  = 8  -/ ON8Xv3633333DcS,62MUr433333D@ %% %  : %  / ONUr433333D%% %  <_% %  cS,62M8Xv3633333D -9 X -ӤJ@%% %  =T% %  l_Lܶ72k}ؿ  %  D  -  %  D   %   @ D unknown -H=,S33333DH=,R33333D %  H E -   %  E H G    %  E -H=,Srv&33333DL7*|S33333D@%% %  FL %  F % %  L7*|Srv&33333Du߈]Z$?  %  K 33333T K  unknown -L7*|Srv&33333DL7*|Srv&33333D@ %  I  -L7*|SՄ933333DKsYNrv&33333D@ %% %  K %  L7*|Srv&33333D%% %  MG% %  KsYNՄ933333D -9 X -ӤJ@%% %  NK% %  j9Ok/=B?!G4<Φ?  %  U   % -  -9 F C7 U  - unknown -h5Fܵ M33333DRz~+FL(L33333D %  ` V Y    %  V `  - -   %  V  - -h5FL(L33333DH$o<yK33333D@%% %  W% %  -   -% %  4P5LvK33333D?pQ4<Φ?  %  - \33333T c    - unknown -H$o<yK33333DH$o<yK33333D@ % - _ Z  - - -H$o  %   * -   >  %   ( -   - c  % , -  - -R@  . - unknown -L7*|S@@33333DH=,S@wv&@33333D %    / - 0 - -   % 1 - 2 -33333T   3 - unknown -L7*|S@wv&@33333DL7*|S@wv&@33333D@%% %   % 4 -  5 -% %  C9R@ -  2@  ? - unknown -tkBL@DU9@33333D@YŁL@S[<@33333D@%% %  ( % @ -  A -% %  =+?@OY%=@33333D@Q4<Φ?  %  B -  C - D - - c  %  E - F -   G -  % H - I - 32@  J - unknown -cS,62M@Wr4@33333D/ ON@:Xv36@33333D %  ; -    -  %   ; - E - K -  %   L - -tkBL@:Xv36@33333DcS,62M@DU9@33333D@%% %   - % M -  N -% %  cS,62M@:Xv36@33333D}ؿ2k?  % O - > -33333T   P - unknown -tkBL@DU9@33333DtkBL@DU9@33333D@ % Q -    R - -tkBL@DU9@33333DYŁL@S[<@33333D@ %% %  / %  tkBL@DU9@33333D%% %  :% %  YŁL@S[<@33333D -9 X -ӤJ@%% %  % %  1>L@Aye<@Q4<Φ???  %  S -  T - U -   %  = <   - >  % V -   W -R@  X - unknown - @N7*|S@33333D@@v&@H=,S@33333D@%% %   % Y -  Z -% %  @H=,R@33333D@=? %% %    %  @H=,R@33333D@ %   [ - \ - ] -   %  , +  ! - -  % ^ - _ - # 2@  ` - unknown -Hr4@lS,62M@33333D@HXv36@/ ON@33333D@%% %   % a -  b -% %  oy)*?:w逥E@33333D@[Sٺژ %% %  ) %  U53@T#M@33333D@ %  c -  d - e - .  %  _ ^  ) - `  % f - + *3 g -\h@  h - unknown -}lޥGKsYN@33333D@Մ9T9vO@33333D@%% %   % i - ) j -% %   ?IJwC2N@33333D@8id?hp.? %% %   %   ?IJwC2N@33333D@ %   k - l - m - .  %  N M  1 - O  % n - o - 3 @  p - unknown -DU9tkBL@33333D@9Xv36cS,62M@33333D@%% %   % q -  r -% %  DU9tkBL@33333D@J4<Φ? %% %   %  S[Qٺژ?[S??  %  - ( - - -   %  - - ( y -  % - - ~ 32@ ( - unknown -DU9@hkBL@33333DS[<@XŁL@33333D %  \ - ) , - |  %  ) \ - - - |  %  ) - -HXv36@ikBL@33333DDU9@lS,62M@33333D@%% %  * % - y -% %  DU9@ikBL@33333D2k}?  % - _ -33333T / , - unknown -HXv36@lS,62M@33333DHXv36@lS,62M@33333D@ % - 2 -  - -Hr4@lS,62M@33333DHXv36@/ ON@33333D@ %% %  /$ %  HXv36@lS,62M@33333D%% %  1% %  Hr4@/ ON@33333D -9 X -ӤJ@%% %  2% %  fu3@.'QN@ٺژ[S??  %  9 - - - -   %  - - 9 -  % -  {2 -W @ 9 - unknown -Մ9@DsYN@33333D|lޥG@T9vO@33333D %  T - : - - -  %  : T - <  %  : - -v&@DsYN@33333DՄ9@N7*|S@33333D@%% %  ; % - ; -% %  -l7@k{O@33333Dٺژ?S  % - W -33333T @ - unknown -@v&@N7*|S@33333D@v&@N7*|S@33333D@ % - - >  - - @N7*|S@33333D@v&@H=,S@33333D@ %% %  @ %  @v&@N7*|S@33333D%% %  B% %   @H=,S@33333D -9 X -ӤJ@%% %  C|% %  @H=,:S@?  %  - J - - - 9  %  - - J -  % - -tN#;@ bb<@ J - unknown -Vr4V#M@33333DU53/ ON@33333D %  l - K N -  %  K l - - -  %  K - -9Xv36cS,62M@33333DVr4/ ON@33333D@%% %  L % - -% %  Vr4/ ON@33333Dغژ忟S  % - o -33333T Q N - unknown -9Xv36cS,62M@33333D9Xv36cS,62M@33333D@ % - T O  - -DU9tkBL@33333D9Xv36cS,62M@33333D@ %% %  Q %  9Xv36cS,62M@33333D%% %  S% %  DU9tkBL@33333D -9 X -ӤJ@%% %  Tw% %  b:f=PL@J4<Φ??  %  [ - - - - 9  %  - - [ -  % -  -R@ [ - unknown -tv&L7*|S@33333DH=,S@33333D %  d - \ - - -  %  \ d - ^  %  \ - -Մ9KsYN@33333Dtv&L7*|S@33333D@%% %  ] % - ] -% %  9na*C9R@33333D&ٺژ?FS?  % - g -33333T b - unknown -Մ9KsYN@33333DՄ9KsYN@33333D@ % - - `  - -}lޥGKsYN@33333DՄ9T9vO@33333D@ %% %  b %  Մ9KsYN@33333D%% %  d% %  |lޥGT9vO@33333D -9 X -ӤJ@%% %  el% %  黥rHqBN@hp.?8id?  %  l - - -  %  - - l -  % - - 3q7 _ l - unknown -L(LF$o<@33333DyKh5F@33333D %  | - m p -  %  m | - - - -  %  m - -ZŁLS[<@33333DyKF$o<@33333D@%% %  n % - -% %  *2|<=@33333DQ4<Φ  % -  -33333T s p - unknown -XŁLS[<@33333DXŁLS[<@33333D@ % - v q  - -XŁLDU9@33333DhkBLS[<@33333D@ %% %  s %  XŁLS[<@33333D%% %  u% %  ikBLDU9@33333D -9 X -ӤJ@%% %  ve% %  j_L涍7@2k}?  %  } - - -  %   }   %     @ }  unknown -JwC2N d/H@33333D| -"M ?I@33333D %  t - ~   -  %  ~ t -   %  ~  -T9vO|lޥG@33333DJwC2N ?I@33333D@%% %   %    % %  T9vO|lޥG@33333DKp.?Nid?  % -  w -33333T  unknown -T9vO|lޥG@33333DT9vO|lޥG@33333D@ %     -T9vOՄ9@33333DDsYN|lޥG@33333D@ %% %   %  T9vO|lޥG@33333D%% %  z% %  DsYNՄ9@33333D -9 X -ӤJ@%% %  \% %  ox|QZI#\2@ٺژ?S?  %       %    9 F C7   unknown -\BېR*rOr#33333D9#Q^ 33333D %  -    %   -   -  %    -9#QU5333333DV#M^ 33333D@%% %  X %    % %  `W6JL*4,;833333DVS?ٺژ  %   33333T -  unknown -V#MU5333333DV#MU5333333D@ %       -/ ONUr433333DV#MU5333333D@ %% %   %  V#MU5333333D%% %  \% %  / ONUr433333D -9 X -ӤJ@%% %  S% %  M95غژ忡S  %       %     Mm,#@  unknown -H=,R*rOr#33333D\BېR33333D %  -   ! -  %   -   %   " -H=,S33333DH=,R33333D@%% %  O % #   $ % %  H=,S33333D?\3&  % %  -33333T  & unknown -H=,S33333DH=,S33333D@ % '  "   ( -H=,Srv&33333DL7*|S33333D@ %% %   %  H=,S33333D%% %  J% %  L7*|Srv&33333D -9 X -ӤJ@%% %  L% %  ox|Q~I#\2'ٺژ?ES??  %  -    -  %   - - )  %   * -h5Fܵ M33333DRz~+FL(L33333D@%% %  " % +   , % %  0 -F3x8@33333DQ4<Φ?  % -  33333T - . unknown -h5FL(L33333Dh5FL(L33333D@ % /     0 -h5FL(L33333DH$o<yK33333D@ %% %   %  h5FL(L33333D%% %  &% %  H$o<yK33333D@? -9 X -ӤJ@%% %  A% %  Aye<1>LQ4<Φ  %  -  ) - -  %   -   - -  %   1 - d/H | -"M33333DRz~+Fܵ M33333D@%% %  % %   d/H | -"M33333D?V4<Φ?  % 2  -33333T  - 3 unknown - d/H | -"M33333D d/H | -"M33333D@ % 4  1   5 - ?IJwC2N33333D d/H| -"M33333D@ %% %   %   d/H | -"M33333D%% %  % %   ?IJwC2N33333D -9 X -ӤJ@%% %  <% %  绥rHrBNLp.?Nid??  % 6  -33333T   7 unknown -*rOr#@\BېR33333D*rOr#@\BېR33333D@%% %  p %  *rOr#@\BېR33333D%% %  % %  ^ @9#Q33333D@? -9 X -ӤJ@%% %  /% %  p(^>+@1TPVS?ٺژ %% %  % %  @H=,R33333D -9 X -ӤJ@%% %   % 8  9 :  ; -V#M@^ @33333D9#Q@U53@33333D@  %  <  -9#Q@^ @33333D\BېR@*rOr#@33333D@% %  L>Q@8{F""@\S ٺژ??  %  = > ? @   %  A  > B -   %   A  + -   %   ?  ) - - c  % C  - - D @ ( - E unknown -H=,R@@33333DH=,S@@33333D %    F G - >  % H  I 33333T - - ' - J unknown -H=,S@@33333DH=,S@@33333D@%% %   % K   L % %  L7*|S@wv&@33333Du߈]?Z$  %  F   0 -   % M   {2 2 -W @ / - N unknown -KsYN@wv&@33333D@L7*|S@Մ9@33333D@%% %  1 % O  G P % %  L7*|S@wv&@33333D -9 X -ӤJ@%% %  7 %  L7*|S@wv&@33333D%% %  % %  {\ O@7ػ%<@33333D@G4<Φ %% %  C %  KsYN@Մ9@33333D@ %  Q R S   %  - < - -  % T  U  > -@ V unknown -tkBL@:Xv36@33333D@cS,62M@DU9@33333D@%% %   ' % W   X % %  tkBL@DU9@33333D@ J4<Φ?? %% %   M %  YŁL@S[<@33333D@ %  Y  Z [ - c  %  \ ]  D - ^  % _  ` tN#;@ I -bb<@  a unknown -V#M@U53@33333D/ ON@Wr4@33333D %  R  - K - - G -  %   R \ b G -  %   c -cS,62M@Wr4@33333D/ ON@:Xv36@33333D@%% %     % d  D - e % %  / ON@Wr4@33333DS翻غژ?  % f  U 33333T  - g unknown -cS,62M@:Xv36@33333DcS,62M@:Xv36@33333D@ % h    i -tkBL@:Xv36@33333DcS,62M@DU9@33333D@ %% %  0 %  cS,62M@:Xv36@33333D%% %   9% %  tkBL@DU9@33333D -9 X -ӤJ@%% %   % %  f=PL@b:@?J4<Φ  %  j  k l   %   U - -  % m  W -*3 n \h@  o unknown -v&@DsYN@33333D@Մ9@N7*|S@33333D@%% %    % p  U - q % %   @H=,S@33333D@^$?t߈] %% %    %   @H=,S@33333D@ %   r s t   %  { z  ] - - |  % u  v  _ -@  w unknown -HXv36@ikBL@33333D@DU9@lS,62M@33333D@%% %  !  % x  ! y % %  HXv36@lS,62M@33333D@fٺژS? %% %  # ' %  Hr4@/ ON@33333D@ %  z ' { | .  %  ' e - -  % }  g - {2 ~ W @ '  unknown -Մ9KsYN@33333D@tv&L7*|S@33333D@%% %  )  %  e - % %  7ػ%<{\ O@33333D@?G4<Φ %% %  +  %  |lޥGT9vO@33333D@ %  / .  %  / m - -  %   o -32@ / unknown -9Xv36cS,62M@33333D@Vr4/ ON@33333D@%% %  1  %  1 % %  9Xv36cS,62M@33333D@2k}ؿ %% %  3  %  DU9tkBL@33333D@ %  7   %  7 u - -  %  w - R@ 7 unknown -T9vO|lޥG@33333D@JwC2N ?I@33333D@%% %  9 ~ %  u - % %  5tdO؂F@33333D@O4<Φ? %% %  ;  %  DsYNՄ9@33333D@ %  ?   %  ? } - -  %  tN#;@  -bb<@ ? unknown -ZŁLS[<@33333D@yKF$o<@33333D@%% %  A  %  A % %  XŁLS[<@33333D@~X4<Φ? %% %  C  %  ikBLDU9@33333D@ %  - G   %  G - -  %  - @ G unknown -H=,S33333D@H=,R33333D@%% %  I N %  - % %  L7*|Srv&33333D@u߈]Z$? %% %  K  %  L7*|Srv&33333D@ %  O -   %  O - -  %   3q7 -_ O unknown -9#QU5333333D@V#M^ 33333D@%% %  Q ] %  Q % %  fD&C,?33333D@ٺژZS %% %  S  %  / ONUr433333D@ %  - - W - - -  %  - Mm,#@ W unknown - d/H | -"M33333D@Rz~+Fܵ M33333D@%% %  Y  %  - % %   ?IJwC2N33333D@;f?;f? %% %  [  %   ?IJwC2N33333D@ %  _ - -  %  9 -F C7 _ unknown -h5Fܵ M33333D@Rz~+FL(L33333D@%% %  a ' %  a % %  4P5LvK33333D@?pQ4<Φ? %% %  c  %  H$o<yK33333D@%% %  h  %  o % %  @H=,R33333D@غژ?S? %% %  j o %  @H=,R33333D@%% %  o % %  s"RiK33333D@[Sٺژ? %% %  q s %  ^ @9#Q33333D@ %  w -   %  w -  %  tN#;@ -bb<@ w unknown -S[<@yK@33333DF$o<@ZŁL@33333D %  s x { - - -  %  x s -  %  x -DU9@hkBL@33333DS[<@XŁL@33333D@%% %  y  %  - % %  S[<@XŁL@33333D~X4<Φ  %  v 33333T ~  { unknown -DU9@ikBL@33333DDU9@ikBL@33333D@ %  |  -HXv36@ikBL@33333DDU9@lS,62M@33333D@ %% %  ~ " %  DU9@ikBL@33333D%% %  % %  HXv36@lS,62M@33333D -9 X -ӤJ@%% %  % %  95@M@S?iٺژ?  %  -   %  -  %  - R@ unknown -|lޥG@JwC2N@33333D ?I@T9vO@33333D %  k - -  %  k - -  %  -Մ9@DsYN@33333D|lޥG@T9vO@33333D@%% %   %  % %  ؂F@5tdO@33333D?O4<Φ?  %  n 33333T  - unknown -Մ9@DsYN@33333DՄ9@DsYN@33333D@ %   -v&@DsYN@33333DՄ9@N7*|S@33333D@ %% %   %  Մ9@DsYN@33333D%% %  % %  @v&@N7*|S@33333D -9 X -ӤJ@%% %  }% %  ( "@$$S@t߈]^$?  %  - - 9  %  -  %   3q7 -_ unknown -U53V#M@33333D^ 9#Q@33333D %  - - -  %  - -  %  -Vr4V#M@33333DU53/ ON@33333D@%% %   %  - % %  &C,?fD@33333D[Sٺژ?  %  33333T  unknown -Vr4/ ON@33333DVr4/ ON@33333D@ %   -9Xv36cS,62M@33333DVr4/ ON@33333D@ %% %   %  Vr4/ ON@33333D%% %  % %  9Xv36cS,62M@33333D -9 X -ӤJ@%% %  v% %  ݶ7l_L@}ؿ2k?  %  - - 9  %  -  %  - @ unknown -H=,R@33333DH=,S@33333D %  { - -  %  { - -  %  -tv&L7*|S@33333DH=,S@33333D@%% %   %  % %  tv&L7*|S@33333DZ$?u߈]?  %  ~ 33333T  - unknown -tv&L7*|S@33333Dtv&L7*|S@33333D@ %   -Մ9KsYN@33333Dtv&L7*|S@33333D@ %% %   %  tv&L7*|S@33333D%% %  % %  Մ9KsYN@33333D -9 X -ӤJ@%% %  m% %  k/=Bj9O@G4<Φ?  %  -  %  9 -F C7 unknown -ܵ MQz~+F@33333DL(Lh5F@33333D %  - -  %  - -  %  -L(LF$o<@33333DyKh5F@33333D@%% %   %  - % %  LvK4P5@33333DQ4<Φ?  %  33333T  - unknown -yKF$o<@33333DyKF$o<@33333D@ %     -ZŁLS[<@33333DyKF$o<@33333D@ %% %   %  yKF$o<@33333D%% %  % %  XŁLS[<@33333D -9 X -ӤJ@%% %  d% %  `=PLb:@￀X4<Φ  %    -   %     Mm,#@  unknown -| -"MQz~+F@33333Dܵ M d/H@33333D %    -   %     %  -JwC2N d/H@33333D| -"M ?I@33333D@%% %   % -  % %  JwC2N ?I@33333D;f?;f  %  33333T   unknown -JwC2N ?I@33333DJwC2N ?I@33333D@ %     -T9vO|lޥG@33333DJwC2N ?I@33333D@ %% %   %  JwC2N ?I@33333D%% %  }% %  T9vO|lޥG@33333D -9 X -ӤJ@%% %  ]% %  j9Ok/=B@?O4<Φ??  %     %      %   -\BېR*rOr#33333D9#Q^ 33333D@%% %  U %    % %  RiKs"@33333Dٺژ?[S?  %   33333T    unknown -9#Q^ 33333D9#Q^ 33333D@ %     -9#QU5333333DV#M^ 33333D@ %% %   %  9#Q^ 33333D%% %  Y% %  V#MU5333333D@? -9 X -ӤJ@%% %  R% %  .'QNfu3ZSٺژ?  %    -   %  !   %   -H=,R*rOr#33333D\BېR33333D@%% %  R% %  H=,R33333DS?غژ  %   33333T    unknown -H=,R33333DH=,R33333D@ %      -H=,S33333DH=,R33333D@ %% %   %  H=,R33333D%% %  M% %  H=,S33333D -9 X -ӤJ@%% %  M% %  #$S6 "Z$?u߈]??  %   33333T  -  unknown -Rz~+Fܵ M33333DRz~+Fܵ M33333D@ %    -  -h5Fܵ M33333DRz~+FL(L33333D@ %% %   - %  Rz~+Fܵ M33333D%% %   -#% %  h5FL(L33333D@? -9 X -ӤJ@%% %   -@% %  ؉6Bp KpQ4<Φ?  % !  * -  " - d/H | -"M33333DRz~+Fܵ M33333D@ %% %   -% %   d/H | -"M33333D -9 X -ӤJ@%% %   -=% %  tw]HM;f?;f? %% %   -% %  *rOr#@\BېR33333D -9 X -ӤJ@%% %  " - % #  c ^  $ -V#M@U53@33333D/ ON@Wr4@33333D@  %  Z " - -V#M@^ @33333D9#Q@U53@33333D@% %  1TP@w(^>+@ٺژ?WS?  %  % & Y ' # -  %  ( % - & ) -   %  % - ( & - B   %  ( - Y % - @ - c  % *  D  + Mm,#@ ? , unknown -\BېR@@33333DH=,R@*rOr#@33333D %  ' - & - - . -   % /  0 33333T D  > 1 unknown -H=,R@@33333DH=,R@@33333D@%% %  ) - % 2  ) - 3 % %  H=,S@@33333D  %  - / - * - G   % 4  2 - I R@ F 5 unknown -L7*|S@@33333D@H=,S@wv&@33333D@%% %  + -2 % 6  . 7 % %  H=,S@@33333D -9 X -ӤJ@%% %  - -6 %  H=,S@@33333D%% %  0 -% %  C9R@  < - ? % %  cS,62M@:Xv36@33333D@}ؿ2k? %% %  > -L %  tkBL@DU9@33333D@ %  ? B - < ' - c  %  @ A B - [ :  % B  C  3q7 ` _ B - D unknown -V#M@^ @33333D9#Q@U53@33333D %  9 C - F - b - ^  %  C - 9 @ E - ^  %  C - 9 -V#M@U53@33333D/ ON@Wr4@33333D@%% %  D -  % F  [ G % %  fD@&C,33333Dٺژ?[S?  % H  < 33333T I - F - I unknown -/ ON@Wr4@33333D/ ON@Wr4@33333D@ % J  L - G -  K -cS,62M@Wr4@33333D/ ON@:Xv36@33333D@ %% %  I -1 %  / ON@Wr4@33333D%% %  K -8% %  cS,62M@:Xv36@33333D -9 X -ӤJ@%% %  L -% %  l_L@޶7@2k?}?  %  L S - M N   %  - - S - l - -  % O  n  {2 P W @ S - Q unknown -Մ9@DsYN@33333D@|lޥG@T9vO@33333D@%% %  U - % R  l S % %  -l7@k{O@33333D@ٺژ?S %% %  W - %  @v&@N7*|S@33333D@ %  [ - T U V   %  - - [ - t - -  % W  X  v 32@ [ - Y unknown -DU9@hkBL@33333D@S[<@XŁL@33333D@%% %  ] - % Z  ] - [ % %  DU9@ikBL@33333D@2k}? %% %  _ -% %  HXv36@lS,62M@33333D@ %  \ c - ] ^ .  %  - - c - | - -  % _  ~  ` R@ c - a unknown -tv&L7*|S@33333D@H=,S@33333D@%% %  e - % b  | c % %  9na*C9R@33333D@&ٺژ?FS? %% %  g - %  Մ9KsYN@33333D@ %  k - d e f .  %  - - k - - -  % g  h tN#;@ bb<@ k - i unknown -Vr4V#M@33333D@U53/ ON@33333D@%% %  m - % j  m - k % %  Vr4/ ON@33333D@غژ忟S %% %  o - %  9Xv36cS,62M@33333D@ %  s - l m   %   s - -   % n   o @ s - p unknown -JwC2N d/H@33333D@| -"M ?I@33333D@%% %  u - % q  r % %  T9vO|lޥG@33333D@Kp.?Nid? %% %  w - %  T9vO|lޥG@33333D@ %  { - s t   %  - - { - - -  % u  v  3q7 _ { - w unknown -L(LF$o<@33333D@yKh5F@33333D@%% %  } - % x  } - y % %  *2|<=@33333D@Q4<Φ %% %   - %  XŁLS[<@33333D@ %    - -   % z   { Mm,#@ - | unknown -H=,R*rOr#33333D@\BېR33333D@%% %  -Q % }  ~ % %  H=,S33333D@?\3& %% %  - %  H=,S33333D@ %    - -   %   { 9 F C7 - unknown -\BېR*rOr#33333D@9#Q^ 33333D@%% %  -Z %  - % %  `W6JL*4,;833333D@VS?ٺژ %% %  - %  V#MU5333333D@%% %  -! %  - % %   d/H | -"M33333D@?V4<Φ? %% %  - %   d/H | -"M33333D@%% %  -$% %  0 -F3x8@33333D@Q4<Φ? %% %  - %  h5FL(L33333D@%% %  -q %  *rOr#@\BېR33333D@ %  - -   %  -  %   3q7 _ - unknown -F$o<@yK@33333Dh5F@L(L@33333D %  U - - -  %  - U -  %  - -S[<@yK@33333DF$o<@ZŁL@33333D@%% %  - %  % %  =@*2|<@33333DQ4<Φ?  %  X 33333T - - unknown -S[<@XŁL@33333DS[<@XŁL@33333D@ %  - -  -DU9@hkBL@33333DS[<@XŁL@33333D@ %% %  -  %  S[<@XŁL@33333D%% %  -% %  DU9@ikBL@33333D -9 X -ӤJ@%% %  -% %  涍7@j_L@}?2k?  %  - -   %  -  %   @ - unknown - d/H@| -"M@33333D ?I@JwC2N@33333D %  M - -  %  - M -  %  - -|lޥG@JwC2N@33333D ?I@T9vO@33333D@%% %  - %  - % %  |lޥG@T9vO@33333DNid?Kp.  %  P 33333T - unknown -|lޥG@T9vO@33333D|lޥG@T9vO@33333D@ %  -  -Մ9@DsYN@33333D|lޥG@T9vO@33333D@ %% %  - %  |lޥG@T9vO@33333D%% %  -% %  Մ9@DsYN@33333D -9 X -ӤJ@%% %  -~% %  ZI#\2@ox|Q@S翎ٺژ?  %  -  %  9 F C7 - unknown -*rOr#9#Q@33333D^ \BېR@33333D %  e - -  %  - e -  %  - -U53V#M@33333D^ 9#Q@33333D@%% %  - %  % %  M*4,;8`W6J@33333DٺژWS  %  -33333T h  unknown -U53V#M@33333DU53V#M@33333D@ %  - -  -Vr4V#M@33333DU53/ ON@33333D@ %% %  - %  U53V#M@33333D%% %  -% %  Vr4/ ON@33333D -9 X -ӤJ@%% %  -u% %  95M@S翾غژ?  %  -  %   Mm,#@ - unknown -*rOr#\BېR@33333DH=,R@33333D %  ] - -  %  - ] -  %  - -H=,R@33333DH=,S@33333D@%% %  - %  - % %  H=,S@33333D\3&  %  ` 33333T - unknown -H=,S@33333DH=,S@33333D@ %  -  -tv&L7*|S@33333DH=,S@33333D@ %% %  - %  H=,S@33333D%% %  -% %  tv&L7*|S@33333D -9 X -ӤJ@%% %  -n% %  I#\2ox|Q@FS?&ٺژ?  %  s - -  %  - s   %  - -ܵ MQz~+F@33333DL(Lh5F@33333D@%% %  - %  - % %  3x8@0 -F@33333D?Q4<Φ?  %  -33333T v  unknown -L(Lh5F@33333DL(Lh5F@33333D@ %  - -  -L(LF$o<@33333DyKh5F@33333D@ %% %  - %  L(Lh5F@33333D%% %  -% %  yKF$o<@33333D@? -9 X -ӤJ@%% %  -c% %  1>LAye<@Q4<Φ?  %  l - -   %  - l    %  - -| -"MQz~+F@33333Dܵ M d/H@33333D@%% %  -% %  | -"M d/H@33333DV4<Φ?  %  o 33333T    unknown -| -"M d/H@33333D| -"M d/H@33333D@ %    -JwC2N d/H@33333D| -"M ?I@33333D@ %% %    %  | -"M d/H@33333D%% %   % %  JwC2N ?I@33333D -9 X -ӤJ@%% %   ^% %  rBN滥rH@Nid?Kp.?  %  { 33333T    unknown -\BېR*rOr#33333D\BېR*rOr#33333D@ %     -\BېR*rOr#33333D9#Q^ 33333D@ %% %    %  \BېR*rOr#33333D%% %   V% %  9#Q^ 33333D@? -9 X -ӤJ@%% %   Q% %  1TPr(^>+ٺژVS  %     -H=,R*rOr#33333D\BېR33333D@ %% %  ! P% %  H=,R33333D -9 X -ӤJ@%% %  " N% %  H=,:S\3&? %% %  )  % %  Rz~+Fܵ M33333D -9 X -ӤJ@%% %  * ?% %  𽇀0FXĔ"L?Q4<Φ?? %% %  1 >% %  0?\q-G޵,`;MV4<Φ? %% %  9 % %  .'QN@fu3@[S?ٺژ  %  < A # -  %  < = ) # -  %  + 9 C F C7 Y unknown -9#Q@^ @33333D\BېR@*rOr#@33333D %  > = -   %  33333T +  & unknown -\BېR@*rOr#@33333D\BېR@*rOr#@33333D@%% %  @  %  @ % %  H=,R@@33333DSغژ?  %  F A .   %  I  0 @ - unknown -H=,R@@33333D@H=,S@@33333D@%% %  B 3 %  % %  H=,R@@33333D -9 X -ӤJ@%% %  D 5 %  H=,R@@33333D%% %  G % %  L7*|S@wv&@33333D@u߈]?Z$ %% %  I E %  H=,S@@33333D@ %  Q   %  ] \ Q : - ^  %  tN#;@ < bb<@ Q unknown -V#M@U53@33333D@/ ON@Wr4@33333D@%% %  S % %  S % %  / ON@Wr4@33333D@S翻غژ? %% %  U K %  cS,62M@:Xv36@33333D@ %  Z ] E :  %  Z % - : %% %  [   %  ' % %  `W6J@N*4,;8@33333DWSٺژ?  %  ` 33333T  @ unknown -V#M@U53@33333DV#M@U53@33333D@%% %  ` 2 %  V#M@U53@33333D%% %  b 7% %  / ON@Wr4@33333D -9 X -ӤJ@%% %  c % %  M@95@غژ?S?  %  j   %  j N -  %  P  R@ j unknown -|lޥG@JwC2N@33333D@ ?I@T9vO@33333D@%% %  l  %  N % %  ؂F@5tdO@33333D@?O4<Φ? %% %  n  %  Մ9@DsYN@33333D@ %  r   %  r V -  %  tN#;@ X bb<@ r unknown -S[<@yK@33333D@F$o<@ZŁL@33333D@%% %  t  %  t % %  S[<@XŁL@33333D@~X4<Φ %% %  v # %  DU9@ikBL@33333D@ %  d z .  %  z ^ -  %  `   @ z  unknown -H=,R@33333D@H=,S@33333D@%% %  |  %   ^  % %  tv&L7*|S@33333D@Z$?u߈]? %% %  ~  %  tv&L7*|S@33333D@ %  \   .  %  f -  %     3q7 h _ unknown -U53V#M@33333D@^ 9#Q@33333D@%% %   % -  % %  &C,?fD@33333D@[Sٺژ? %% %   %  Vr4/ ON@33333D@ %    m -   %  o  Mm,#@  unknown -| -"MQz~+F@33333D@ܵ M d/H@33333D@%% %   %   m  % %  JwC2N ?I@33333D@;f?;f %% %   %  JwC2N ?I@33333D@ %  t -  %   9 v F C7  unknown -ܵ MQz~+F@33333D@L(Lh5F@33333D@%% %   %    % %  LvK4P5@33333D@Q4<Φ? %% %   %  yKF$o<@33333D@%% %  T %    % %  H=,R33333D@S?غژ %% %   %  H=,R33333D@%% %  W% %  RiKs"@33333D@ٺژ?[S? %% %   %  9#Q^ 33333D@%% %   %  Rz~+Fܵ M33333D@ %      %    9 F C7  unknown -Qz~+F@L(L@33333Dh5F@ܵ M@33333D %   %    -  %   -F$o<@yK@33333Dh5F@L(L@33333D@%% %   %   % %  4P5@LvK@33333D￀Q4<Φ  % !  33333T  " unknown -F$o<@yK@33333DF$o<@yK@33333D@ % #   $ -S[<@yK@33333DF$o<@ZŁL@33333D@ %% %   %  F$o<@yK@33333D%% %  % %  S[<@XŁL@33333D -9 X -ӤJ@%% %  % %  b:@`=PL@X4<Φ?  %  % & '  % (    Mm,#@ ) unknown -Qz~+F@ܵ M@33333D d/H@| -"M@33333D %  & * -  %   %  + - d/H@| -"M@33333D ?I@JwC2N@33333D@%% %   % ,  - % %   ?I@JwC2N@33333D;f;f  % .  33333T  / unknown - ?I@JwC2N@33333D ?I@JwC2N@33333D@ % 0  +  1 -|lޥG@JwC2N@33333D ?I@T9vO@33333D@ %% %   %   ?I@JwC2N@33333D%% %  % %  |lޥG@T9vO@33333D -9 X -ӤJ@%% %  % %  k/=B@j9O@O4<Φ??  %    %   2  %  3 -*rOr#9#Q@33333D^ \BېR@33333D@%% %   % 4  5 % %  s"@RiK@33333D\S? ٺژ  % 6  33333T   7 unknown -^ 9#Q@33333D^ 9#Q@33333D@ % 8   9 -U53V#M@33333D^ 9#Q@33333D@ %% %   %  ^ 9#Q@33333D%% %  % %  U53V#M@33333D@? -9 X -ӤJ@%% %  t% %  fu3.'QN@ٺژ?[S?  %  2 -  %   %  : -*rOr#\BېR@33333DH=,R@33333D@%% %  % %  H=,R@33333Dغژ心S  % ;   33333T  < unknown -H=,R@33333DH=,R@33333D@ % =  :  > -H=,R@33333DH=,S@33333D@ %% %   %  H=,R@33333D%% %  % %  H=,S@33333D -9 X -ӤJ@%% %  o% %  8 "#$S@u߈]?Z$?  % ?  33333T  @ unknown -ܵ MQz~+F@33333Dܵ MQz~+F@33333D@ % A   B -ܵ MQz~+F@33333DL(Lh5F@33333D@ %% %   %  ܵ MQz~+F@33333D%% %  % %  L(Lh5F@33333D@? -9 X -ӤJ@%% %  b% %  p K׉6B@￀Q4<Φ  % C    D -| -"MQz~+F@33333Dܵ M d/H@33333D@ %% %   % %  | -"M d/H@33333D -9 X -ӤJ@%% %  _% %  Msw]H@;f;f? %% %   S% %  \BېR*rOr#33333D -9 X -ӤJ@%% %   P% %  L>Q3{F""[S?ٺژ? %% %   O% %  ҿzRb' غژ忇S  %  & % E - # -  % F  C 33333T G  % H unknown -9#Q@^ @33333D9#Q@^ @33333D@%% %  ' % %  RiK@s"33333D ٺژ\S  %  - (   % I  0  Mm,#@ J unknown -\BېR@@33333D@H=,R@*rOr#@33333D@%% %  ) 4 % K  E L % %  \BېR@*rOr#@33333D -9 X -ӤJ@%% %  + 4 %  \BېR@*rOr#@33333D%% %  .  % %  H=,S@@33333D@ %% %  0 F %  H=,R@@33333D@ %  8 E   %  A @ 8 - :  % M  G  3q7 _ 8 N unknown -V#M@^ @33333D@9#Q@U53@33333D@%% %  : $ % O  : P % %  fD@&C,33333D@ٺژ?[S? %% %  < J %  / ON@Wr4@33333D@%% %  C 3 %  9#Q@^ @33333D%% %  E 6% %  V#M@U53@33333D@? -9 X -ӤJ@ %  L Q R   %  L -  % S   T @ L U unknown - d/H@| -"M@33333D@ ?I@JwC2N@33333D@%% %  N  % V  W % %  |lޥG@T9vO@33333D@Nid?Kp. %% %  P  %  |lޥG@T9vO@33333D@ %  T X Y   %  T -  % Z  [  3q7 _ T \ unknown -F$o<@yK@33333D@h5F@L(L@33333D@%% %  V  % ]  V ^ % %  =@*2|<@33333D@Q4<Φ? %% %  X ! %  S[<@XŁL@33333D@ %  \ -  % _    ` Mm,#@ \ a unknown -*rOr#\BېR@33333D@H=,R@33333D@%% %  ^  % b  c % %  H=,S@33333D@\3& %% %  `  %  H=,S@33333D@ %  d  -  % d  ` 9  F C7 d e unknown -*rOr#9#Q@33333D@^ \BېR@33333D@%% %  f  % f  f g % %  M*4,;8`W6J@33333D@ٺژWS %% %  h  %  U53V#M@33333D@%% %  m  % h  t i % %  | -"M d/H@33333D@V4<Φ? %% %  o  %  | -"M d/H@33333D@%% %  t % %  3x8@0 -F@33333D@?Q4<Φ? %% %  v  %  L(Lh5F@33333D@%% %  {  %  \BېR*rOr#33333D@ %  X    %  X % j   %  k -Qz~+F@L(L@33333Dh5F@ܵ M@33333D@%% %   % l  m % %  0 -F@3x8@@33333DQ4<Φ?  % n  33333T [   o unknown -h5F@L(L@33333Dh5F@L(L@33333D@ % p   q -F$o<@yK@33333Dh5F@L(L@33333D@ %% %   %  h5F@L(L@33333D%% %  % %  F$o<@yK@33333D@? -9 X -ӤJ@%% %  % %  Aye<@1>L@?Q4<Φ?  %  Q  j - '  %  Q * '  %  r -Qz~+F@ܵ M@33333D d/H@| -"M@33333D@%% %  % %   d/H@| -"M@33333DV4<Φ  % s  T 33333T  & t unknown - d/H@| -"M@33333D d/H@| -"M@33333D@ % u  r  v - d/H@| -"M@33333D ?I@JwC2N@33333D@ %% %   %   d/H@| -"M@33333D%% %  % %   ?I@JwC2N@33333D -9 X -ӤJ@%% %  % %  滥rH@rBN@Kp.Nid?  % w  ` 33333T  x unknown -*rOr#\BېR@33333D*rOr#\BېR@33333D@ % y   z -*rOr#9#Q@33333D^ \BېR@33333D@ %% %   %  *rOr#\BېR@33333D%% %  % %  ^ 9#Q@33333D@? -9 X -ӤJ@%% %  s% %  u(^>+1TP@WSٺژ?  % {  3  | -*rOr#\BېR@33333DH=,R@33333D@ %% %  % %  H=,R@33333D -9 X -ӤJ@%% %  p% %  H=,:S@\3&<? %% %  % %  ܵ MQz~+F@33333D -9 X -ӤJ@%% %  a% %  WĔ"L0F@Q4<Φ?? %% %  `% %  ޵,`;M/?\q-G@V4<Φ  % }  9 G F C7 ~ unknown -9#Q@^ @33333D@\BېR@*rOr#@33333D@%% %  5 %   % %  9#Q@^ @33333D@? -9 X -ӤJ@%% %  !% %  H=,R@@33333D@Sغژ? %% %  G %  \BېR@*rOr#@33333D@%% %  #% %  `W6J@N*4,;8@33333D@WSٺژ? %% %  I %  V#M@U53@33333D@ %  & % R - '  %  T  Mm,#@ unknown -Qz~+F@ܵ M@33333D@ d/H@| -"M@33333D@%% %   %  R % %   ?I@JwC2N@33333D@;f;f %% %   %   ?I@JwC2N@33333D@ %    Y -   %  9 [ F C7 unknown -Qz~+F@L(L@33333D@h5F@ܵ M@33333D@%% %   %  % %  4P5@LvK@33333D@￀Q4<Φ %% %   %  F$o<@yK@33333D@%% %   %   % %  H=,R@33333D@غژ心S %% %    %  H=,R@33333D@%% %   % %  s"@RiK@33333D@\S? ٺژ %% %    %  ^ 9#Q@33333D@%% %   %  ܵ MQz~+F@33333D@ %  33333T    unknown -Qz~+F@ܵ M@33333DQz~+F@ܵ M@33333D@ %     -Qz~+F@L(L@33333Dh5F@ܵ M@33333D@ %% %    %  Qz~+F@ܵ M@33333D%% %   % %  h5F@L(L@33333D@? -9 X -ӤJ@%% %   % %  ׉6B@p K@Q4<Φ?  %  k '  -Qz~+F@ܵ M@33333D d/H@| -"M@33333D@ %% %  * % %   d/H@| -"M@33333D -9 X -ӤJ@%% %  + % %  sw]H@M@;f;f?? %% %  2 % %  *rOr#\BېR@33333D -9 X -ӤJ@%% %  3 r% %  6{F""L>Q@ ٺژ\S? %% %  : q% %  b' ҿzR@Sغژ? %% %  E "% %  RiK@s"33333D@ ٺژ\S %% %  G H %  9#Q@^ @33333D@%% %  R  %  Y % %   d/H@| -"M@33333D@V4<Φ %% %  T  %   d/H@| -"M@33333D@%% %  Y % %  0 -F@3x8@@33333D@Q4<Φ? %% %  [  %  h5F@L(L@33333D@%% %  `  %  *rOr#\BېR@33333D@%% %  j % %  Qz~+F@ܵ M@33333D -9 X -ӤJ@%% %  k % %  0F@WĔ"L@Q4<Φ? %% %  r % %  /?\q-G@޵,`;M@V4<Φ? %% %   %  Qz~+F@ܵ M@33333D@ End-of-ACIS-data - -# Ansoft project setting data. Non-Ansoft programs -# should not read the rest of this file. -B_SETNGS 1.03 -ACIS BinaryFileT SpatialACIS 29.0.1 NTMon Oct 3 16:11:44 2022?ư>|= -MSA236Y5UCDZ98W39ZH9EPFD3T7NC29N4W8UCFCQ3KAVCGJNDF8UKRJPXPAJMKAPUJCSUP46UE8RBR transform% ????  -point%   flag% ansoft% attrib%    -color%% %   -units%% %    mm@@%% %    End-of-ACIS-data -E_SETNGS - -B_SYMTAB -E_SYMTAB -ANSOFT OFFSET: 259929 -$end 'sab' -$end 'Design_92.setup/NativeGeometryFiles' -$end 'AllReferencedFilesForProject' -$begin 'ProjectPreview' - IsEncrypted=false - Thumbnail64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCABgAGADASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAoopkkkcMck00iRRRI8kssjqkccaKWe\ -SR2ICIFBJJIAAyaAH0V8Yfszf8ABQv9jv8AbE8XeNPAn7OHxmsviR4s+H2npq3ivR4/B/xE8LSWGlya\ -m2jDUbO58b+EdNg12yGpBInlsJbpIzcQs5VJ4Wk+z6ACiiigAooooAKKKKACiiigAr8rf+Czv7TsX7L\ -n/BP340eILK9ks/GXxO04fBXwH5DqlyNd+IVre2Op30RMisn2Pwjb+JLsOuSslnGPvOoP6pV+N/8AwU\ -k/4J1fFr/goF8e/wBk6x1/xP8ADu2/Y1+EGu3Piz4yeA9R8SeNtG+I/jrWb+98rULHQIPDfhZrdbNvD\ -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\ -tHcXtqiPOYoJmCAlisLMBhSQAff1FFFAH/2Q==' - $begin 'DesignInfo' - DesignName='Y_Connections' - Notes='' - Factory='Maxwell 2D' - IsSolved=false - 'Nominal Setups'[1: 'Setup1'] - 'Nominal Setup Types'[1: ''] - 'Optimetrics Setups'[1: 'ParametricSetup1'] - 'Optimetrics Experiment Types'[1: 0] - Image64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCADIAMgDASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAooooAKKKKACiiigAooooAKKKKACiii\ -gAooooAKKZJJHDHJNNIkUUSPJLLI6pHHGilnkkdiAiBQSSSAAMmvjP9mb/goX+x3+2J4u8aeBP2cPjN\ -ZfEjxZ8PtPTVvFejx+D/AIieFpLDS5NTbRhqNnc+N/COmwa7ZDUgkTy2Et0kZuIWcqk8LSAH2fRRRQA\ -UUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAH5W/wDBZ39p2L9lz/gn78\ -aPEFleyWfjL4nacPgr4D8h1S5Gu/EK1vbHU76ImRWT7H4Rt/El2HXJWSzjH3nUH+af9ne9+B3/AATX/\ -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\ -oooAKKKKACiiigD//2Q==' - $end 'DesignInfo' - $begin 'DesignInfo' - DesignName='Sinusoidal' - Notes='' - Factory='Maxwell 2D' - IsSolved=false - 'Nominal Setups'[1: 'Setup1'] - 'Nominal Setup Types'[1: ''] - 'Optimetrics Setups'[1: 'ParametricSetup1'] - 'Optimetrics Experiment Types'[1: 0] - Image64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCADIAMgDASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAooooAKKKKACiiigAooooAKKKKACiii\ -gAooooAKKZJJHDHJNNIkUUSPJLLI6pHHGilnkkdiAiBQSSSAAMmvjP9mb/goX+x3+2J4u8aeBP2cPjN\ -ZfEjxZ8PtPTVvFejx+D/AIieFpLDS5NTbRhqNnc+N/COmwa7ZDUgkTy2Et0kZuIWcqk8LSAH2fRRRQA\ -UUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAH5W/wDBZ39p2L9lz/gn78\ -aPEFleyWfjL4nacPgr4D8h1S5Gu/EK1vbHU76ImRWT7H4Rt/El2HXJWSzjH3nUH+af9ne9+B3/AATX/\ -ai/4Jm/F74UftBfBb4mWPxg+G1t8Iv2wtC+Fvxi8H+N7vwt4q8d62l3qep+MNO8MaxdNp+k6d/wl/hf\ -yGuEjikuPhhMFZGxJX9DX/BST/gnV8Wv+CgXx7/ZOsdf8T/Du2/Y1+EGu3Piz4yeA9R8SeNtG+I/jrW\ -b+98rULHQIPDfhZrdbNvDWn2VhDdvr2n3VqPEOpSwIskcTT+A/taf8G9H7Gfjb4EeMdC/ZE+FPh/4Mf\ -tBSSaHd+AvHPiz4t/HnW/C1rLZ65YT6zp2v2mt+KvESRWN1oS6lEs0Wk3NxFO0LR7BucAF/wD4Kb/tb\ -ftrfCv9v/8AYd/Zn/ZV+KfhbwLpf7QWlXNh4g0nxr4E8JeK/C13q934qu9Fj17Wbu90KTWorax0xWuB\ -aaXqen/ansUhZ181npP2Tv2pP24vhp/wU4+Mn7An7UXxm0H9qbRNO+CU3xe+HvjrSPhX4G+D+tiaOw8\ -OarZ6THong+FILSCZNV1SykhvbnUpVms4LlL9YneM7niL/gnD+178R/2j/wDgl/8AtB/Ejxv8CLnV/w\ -BjnwJo3hf46tpXin4hXV74y1fQtTvFj1v4frffDKJdWa70lbCe5Gpy6SyXtxcRJ5kSJPJ7/F+wf8YF/\ -wCCtHin9vBfF3gKw+Emufs6n4Q2Ol6fqmtS/FbTvE50zSLJdZj0TUvA02hnToprCWSN5dSuCSI/NsZF\ -Lx0Afhd8M/8Agqb+218dvH/xQsfEf/BRr4HfsQ/GjQPitdaH4M/ZI/aC/Zt0PQ/g1c+HtNvoIr7S/Fn\ -7SWo+ENU1PwZeQMt5aXFtqDC/uJ4A1rdWyTZtP1m/bN/a5/a1/ZU+NX/BN/4seLfHvgi3/Zn+M+q+G/\ -hF+1J4S+Hlh4Y8U/C2H4ieKbZ5tO8e+C/iP4n8GweKIvC01tq93fWWLy2tms/AsSTxmS5uJbrxD9pf/\ -gm5/wAFQf2ifD/j74S/E34mf8E6P2ivCHiS6nsPCn7SHxt+BOoeE/2rvh94XnuInitvBo+F3w4j0Dw7\ -qkMERAmjkmmka6nAuoY3VI+o/wCCjfwN/Zt/Zm/4I2R/sg/F744+HZPFXw1+GGm3nwS1LxjrOnaR47+\ -IPxP+HuqWupwz+A/BkusS315Ztea7NpptbNryPR9I16OK5nMEXmsAaviz9uv9rXxn/wAFE/2xfBv7Pe\ -oyeL/2fv2F/wBmzxNrniT4Oad4N8J6sfjD8f08I6k+h+G5fFbaG3iDTZYvFmqFXs9K1OBp/wDhXE1us\ -DSXcyt+df7In/BSz9tb9oi98E+ILH/gqN+y14c+NV549vU8XfsXftQ/ATRvgb8NP+EZXVLm2stG8K/t\ -C+GfBF7qHijV7qL7LHaabBcwatFJIVuZ7h4lF3+lv/BFL9lnx/4K/wCCdniHx5P468TfDz9oL9sa88S\ -fFm5+LFzouheKvFXhptTgudK+GXiKXRPG2l3Vn4jiWzR9a+zahFJFdr4pmUPEJllT5y/aE/4JPf8ABR\ -/9r/R9P+Gv7SXjn/gnBr+np4t06+1n9rrw18E/E+jfti6t4b0+/eUWk0eieCtL0GCJrOQJJplpd2cE4\ -tIY59QfDTEA/pwtmuGt4Gu4oYLtoYmuobad7q3huCimaKC6ltoWuYVkLBZGhiZ1AYxoTtBXN+BfClt4\ -D8EeDvA9lf6lqtn4M8K+HvClpqms3LXusalbeHdIs9Igv9VvG5u9Smis0knlPMksjsetFAHVUUUUAFF\ -FFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFcF8T/if4C+DHgLxL8Tvid4lsvCXgfwlZR3ut63ex3d0UN1\ -d22m6XpmmaXpttPeeIPEeoaze6fp+laVp9vdanq2p6paabptpd393b28oB02va9pPhnSbvW9bu/sen2\ -fkI7pBc3lzcXN5cw2On6dp2n2MMlxq2r3eo3Nra2VlaxTXd7d3kNrawzXE0UT854Y8ZzavfzaD4i0C8\ -8G+KRZya3ZaBqV7Yag+p+Gmmt0j1TTdT0uWS1v7yze+sLPXLW3lmOkalOkfm3elX+h6zrP8AOd44/wC\ -CiH7Q/iz49eHvjr4atrPw94N8B3l9b+AP2c/FU+nTeHdU8IapBJYa9N8UPEWj2uotp3xr1jS3/c+ItE\ -a+tfAhWLRdFi8T6JP44b4lfu18I/i58KP2wvhRpXxB+H2q6vZCy1doLi3nXT9K+J3wX+J2lafE9/4f8\ -QWCS31vovjGy0/XIvMj36jofiDQ/EUV1ay+IPB/iC3uNUzkql+aLVo/Z797vo+1tO97+7nJVL80ZK0f\ -s/zd7vo/5bab3vdcv0jX5z/Hn9u3xX+zb8bPCHg34qfASHSPgv8AEHxlqHgfwL8ULH4w+G9Y+JXiu50\ -L4Z33xH8UeM9K+A2meHZZY/hrpf8AZt5p19fXPiK31WG4ME50L7LdW0sv294F8T3+tWB0fxRDZ6b8Qv\ -DtnpkHjfRrKOaGwW/uoZUi8Q+GVuriWS+8C6ncWOoy6TdmR3KWs9hfC21nTtV0+y/PLWv+Cenjrxh+2\ -P8AEL9qP4h/HTwL8SPDvjTwhqHwr8MfDnxl8D/F93r/AMEvhDr2h3eh+LPC3wV8daX+0VaaV4T8U6xD\ -eXEmpeIbrwjqN3K00scUEEFxcxTVGSnFSWz+9d0+zT0a6PQqElOKlHZ/eu6a6NPRrdO6ZR+Dn/BRL4q\ -/G3Tda0fwd+yat38WtW+DXwd/aH+D3w/j+PHh6LQ/GnwZ+Mniq98N2PiTx7481jwNZR/DXW9Gt7Ce+1\ -nSrLT/ABNMYWSLR5dXuC0SfPnxa/a/8E/HH9nBP2qPH3/BPj9n346+Dv2f9e+O+m/Enxd8Xvir8Itf8\ -C/DfUPhH4n0bw9dp8APG/ir4T6pqHxP1LxXqcEQ0B4dC8M2d5c6JDa6hqFjdSWaSdfL/wAEn/inB8KP\ -HngXw7+2fe+FPGviL4F/Cr9lXwl8S/D/AME30u98Jfs2/DDWtZ1iTwfqGk6d8YYJfEHjvW01WO01XxF\ -bajpEf2O2eKy0a1NxK5t+O/8Agll8SfGngD9lz4TQ/HX9n/w78G/2YtSudbtPgFpf7KHxM/4UP8Tdds\ -545/B2s/Ejwif20F1nxPeaVdC5vJEv/El7b6rqeoXF5qUEy3NzbzUUfXfx5/ay174TeBv2V9U+Fvwh0\ -fxprn7UHxH8AfDDwZ4U8e+P7z4QaR4Pbxv4E13xlp134m1jw78N/F01qtpa6EtpNaWmlz7XnJjkKxbX\ -8y8P/tyfGnxd4B+MOoeFv2ZPBOo/Er9nz47+Lvg38aNPvv2mtI0D4GeCdF8FeCY/HOtfE5vjdrXwrh1\ -LVvD6WF5plpJYweCjqVnfXcianb2NtbT3SezftQfsfaB+1lo/7POgfFLUPB+raD8G/jB4W+LHjPwpq/\ -w1tfE3gn4qJoXhLxL4b1LwhN4W17xLNF4e0W7ufEbXMRuZNaNqlikDx3Tn7SvxN45/4JOeN9R/Z+1T9\ -kz4Y/tS6d8Pf2Z5/jtf/FPT/hXqXwS1vXUn+Gmp3P8Abl5+zr4x8V+Dfjx4W1TxX8NT4slu7kTxXGm6\ -mbJ4NOlupRaw3QAP0r/Zg+O+mftO/s/fCf4/aN4c1XwlpvxU8IWHiq28OazcWt5f6SLp5oJbY39liLU\ -rTz7eR7a6RYxc20kM/lQmQxIV3fwt8Kan4F+HXg3wXrEvgia+8K6Bp+gE/DbwPe/DXwHDaaVCLPTrTw\ -p4D1Dxhr83hbRoNOhtIYrR9Zv/ACxB8s20qiFAHe0UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUVwXxP\ -+J/gL4MeAvEvxO+J3iWy8JeB/CVlHe63rd7Hd3RQ3V3babpemaZpem20954g8R6hrN7p+n6VpWn291q\ -eranqlppum2l3f3dvbygB8T/AIn+Avgx4C8S/E74neJbLwl4H8JWUd7ret3sd3dFDdXdtpul6Zpml6b\ -bT3niDxHqGs3un6fpWlafb3Wp6tqeqWmm6baXd/d29vL/AC/ftPftPePf2tPHtn4q8VWd74S+HPhK9v\ -J/hB8IJ7y0uh4RF1aXelzeO/Hc2l3c9n4g+NGoaNe3ttcXFtPdaZ4Y0zVLnw14aubuO78S+JfGXPftF\ -ftk63+2Z4v8NeO9du28J/DKy1jVbT4FfBzUb62t73w5qsWna7Zazr/jyxS4Kax+0TJodl4nttVtkM8P\ -gvT4dV8LaK0v/FW+I/F3j1ABXtH7Nvx88S/ss/Gez+MPh3R73xbompeHJPA3xV+HNjqY0mfx14Jk1ey\ -1rTtW0N7nUbXTrn4p+G7+HVZ/C76250w23jDxNoD3OgjxTP4m0bxeigD+snQ/FHhH4++CPh38cvgd4q\ -0bxJbxjUda8F6239paXpviCxuY77w74v8Ahx41jk09NW8LY1Wze31XTbu0S/8AD3inwXYy6xot1feH5\ -tGk9U8KeJ7DxhocGuadDeWqPeavpV7YahHDHf6Trnh3WL/w74j0S++yXE1vNeWPiDStTtJZbWe5s5ns\ -mls7q6tXhuJP5w/2C/2vv+GX/Hx8B/EvxT/Y/wCy546/ty9vrnVI/tWi/BP4saxrWmX9t44W+ku4v+E\ -F+D+u/avFj+M5gl5pum6/daX4tntdCsbz4ieJ7j+gLxf/AMW+15fiVafufC9/9l0v4pabb/uYm+2Xug\ -aPoXxUu5Js29t/wj+nwTw65cObLzPDUz31/f3CeFNI02TGf7uTqr4H8a+5c3yS95dY67xs8Z/upOqvg\ -fxr7lz/APbqXvLrHVaxSl67RRRWxsFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRXBfE/4n+Av\ -gx4C8S/E74neJbLwl4H8JWUd7ret3sd3dFDdXdtpul6Zpml6bbT3niDxHqGs3un6fpWlafb3Wp6tqeq\ -Wmm6baXd/d29vKAHxP+J/gL4MeAvEvxO+J3iWy8JeB/CVlHe63rd7Hd3RQ3V3babpemaZpem20954g8\ -R6hrN7p+n6VpWn291qeranqlppum2l3f3dvby/zX/Fb4m/tK/8FI/jba6P8PPhtrGp6N4Ia21nwD8Jb\ -nxFoGi+Dvgf4e8TXN/4PsPjT+0L4ybUJrGT4kapDNrlu6aKniLVNL0Kz8RaJ8ONE8URad478Q+J8742\ -fHD4m/t7fF1bvXNe8LfA74O/DRrHxBp83xX8Q6Npfwk/Zf8ABniq/uvBGnfGz4/+IF8Q2umeJvjv4il\ -vNT0Xw9olpqyLLNeXvg7wjqdvokXxI+JGo+o6hY+DdY8L+H/2dPhX8MfH3ir4Manqd3r+g/CO78HT+J\ -/jB+1f47jfQNI1P9o39qbTJdIs7PQdA/tSfwXa6Lp3iePw/wCC/AUF34auPFH/AAjN5a+DvC3w14Mfm\ -FLA005RdWvU0p0o6zm/JatJdXbTzdk/MzLNKOW0ouUXXxFV2p0oazqPySu0l1lZ2820n+kX7Jv7Cf7E\ -OnfBa41TSvDfwB/a0uPjDZSp8VPj7qfg74b/ABH0j4zT6Tr3hsXugadcE6zZaf8ACzR/Fnwy8LRaT4Y\ -hv7+20y88AWl7qd1q3iyPVPEGofh5+0X4M8LfDH9rD9qb4WeANEsvCvw7+H3xO8H2HgfwhpavHo3hPS\ -vF37PvwU+J+r6FoFtI7f2Z4cj8Y+PPE8unabEVsdHsbu30fSLex0aw0+wtfou6/a21D4GeHvEfg39lL\ -4m/D3x78Q/inc2Xin46/tDeEpn+I3wG8Jao/hWPw1oPgL9lnTY9QtNG+JXxC0TQf7MbWviZrljqljda\ -l4b0/RNU0DWLWzHgP4V/mFrmqJ8KtZ1Xxf4i1+9k+Hfim901/FGteJ/EV/q994Z+IWu63dQX/j3xHr3\ -ie/ubzWrbxPrOtaWuuX0l0ZYNcjbxBqEV2+veJNbseqhKrOjTnXpqlWkk5RT5lF9r6X/pXe77MNOtUo\ -Up4ikqFecU5QT5lF9Veyvb/gXe79gorOh1SF9Y1rwze2mteHvF/hn+zv8AhKfA3jLw7r/gf4geE/7Zt\ -TqGif8ACW+APGGm2Os+Fvt+mBLyw/tCxtvt1lPFe2nnWs0Uz6Nam5Uv7Cx1WxvdL1SytNS0zUrS5sNR\ -06/tobyxv7G8he3u7K9tLhGjurSW3kkSSN1ZHSRlZSpIr97v+CYP7V+q/FHwprH7O3xS8Qax4h+L3wh\ -0ddf0Hxp4p1y01HV/ix8INZ8T65ZeH7xJL501TX/F3guAeHPDfiq+uTq09zHqvhPxLrOvXGt+M7qwsP\ -wcrY8JeLPE3w2+Inwy+Lngc2h8a/CPx3pXjjw/b388dpY61arZ6l4Z8ceDL2/n0jUU0W08SfDPxJ428\ -Nyap/ZmpXGiJ4ubWtPsptT0+y2gH9ZfgL/ihdWHwgufk0rT9Il1L4SMP9Jkk+G3hy28LaNqHh/VLxcM\ -dX0DXNcsbON7iJXu9F1XRZWvtX1aLX7iD12vnDwZ478PftRfBP4S/HT4S3ItZNTXQPib4KtvEk1jFqP\ -h7XYbe+0Lxt8M/HsOg3mqW3hzxfBp+oeOvBniOEDVZvDWrTag8dtcappMKD2zwj4nsPGfhrR/E+mw3l\ -pb6tZrPJpupxwwaxol/E722q+Htfs4LiVdN8R6dqkN5Y6jaGRntL7T7i2kPmROBjT9yTovZaw/w6XX/\ -brdvKLju7mFP93J0XolrD/Bomv+3W7baRcNW7nR0UUVsbhRRRQAUUUUAFFFFABRRRQAUUUUAFFFcB8U\ -vil8P/gp8P8AxP8AFH4o+J7Hwh4E8IWMd/rmu38d3c+X9pu7bTdM0zTNM022nvPEHiPUNZvdP0/StK0\ -+3utT1bU9UtNM0y0u7+7traWZzhThOpUmqdOmnKUpNJRSV223oklq29EgSbdkrtjvif8AE/wF8GPAXi\ -X4nfE7xLZeEvA/hKyjvdb1u9ju7oobq7ttN0vTNM0vTbae88QeI9Q1m90/T9K0rT7e61PVtT1S003Tb\ -S7v7u3t5f5eP2kf2nPHn7Zvxa0afxHd3Hwy+G/hjWLJvAXg6+8P+I/iPYfBbSPEsHiDSovin8QvBXwr\ -W/1H4xftG6x4a0vxuNL8OeHGu5LbSdC8R6T4d1Cw8H6N8WPipcfN3/BQL9uX9of49/EXSvirLpuk+HP\ -2evAen+L4vAfwe1eyvNXvfhlrOqaNe6boHxz+LNx4W1q4j8WeK2SX7LrsujLcxeCPDevazo3h1tdhvf\ -EHirVv3C0T4vf8E0Pgr+xPpPgy01zSvil4L+JkuoR694I8C+LfBfxw+PPxG+POi+GvB3i3xLN4y8Z/s\ -++Kb7RvDXxk0PVLn4ZQP4stfEGh+D/h/f3fgu30bxH4W0GLwgYPByXiXKOJsLi8RkGPp41YWc6TetlO\ -N0nKOk/Zy3jKyU4+9G6sya8MRTVSmoeyrqN4c6vF3Wj913cb6S1Uk09Nr/As9zo/w58JzDQ/B+qWPg/\ -4WW6fEJfDvijxF4fkn8DX/jyWP4aWv7Q37UPjjRIpIfGX7RPjC/MHhyw07whpfiLVrHR7W4+GnwI8Fa\ -/pGh+IJfEHk3jT41614g8N+OPhf8Pr77H8IviN/ZVt8VPHus+EdX8KfGf9pi00JNXjg0nxBZ3+vy/8K\ -X/ZZm/t2/j0X4WrZy64+lRPcePPEF3qvjT4jeGtQ8nuta8YeI7WztfFevX1zoen+KNV8d6L4GFxo99o\ -2heONe0O08Lav441rxFYeFNJvfih8Tp/CdhaaZJ4i1iCODS7GW/0XwB4f+Hvgi+TwTZbXgTwq3xF0rw\ -z41bxDLofwY8Ua1quiaT4z8F2F142+J/xXn8O2zzeKdO/Zl8H23h2+0XxJFp+rSaD4d1nx/4w1LQfhl\ -4K8Q+P9Ki1bVdfv9P1zwtB0YTA08G6mYY6squMmvfqSaUIL+WF7csVpG+7tpa9jxMFl1PAOrmmZYhVc\ -fUX7yrJpQpr+SneyjFaRvu7aWTsR+BPC/iz4tfEjRfgx8KNJtPGPxY8RWi6pZeFm1RdOtdB8Mi6ayvv\ -iJ8QNUhtLqTwX8L7C4VlvtYktLhpLgw6Po1lrHiTUdH0LUv06/YQ0n9kT4XfE7wJq/iy/wBc+Jfx21o\ -3/h/Qf2jXsvEtl+yt4V8eeL3Xw7pfwh+AP/CWXunjXry+0K5ubPQ/iyfDAsvHv/CfXmi6F4xs4/FWlf\ -Dey+atM8N3jeA5vghJ4f01fh/Y6bH8Q/iF8JL7WbPxD8EU1TT9OvX1L9pr9un9pjVvhHpEU9tJbeEfE\ -+qRza/YaD4O03Sfhlp2gfDr4c6pr/w98PtNw2v/AB48PaRe3T/D3SdJ+NHxLtJYJNC/aB8Wx+CPEH7O\ -XwL8VafqWmalZ/ED9iP4c6l4Nur744eMbFrG70/T/iT8QF0i0j1LR7bxl4D0nUfA3ijVPCV/FLMcTj6\ -8Fl9BfUoP361RNKST1jTjo3/ifzStrnRzXGZliKayvDpYCnL95XqqSU0nrGlHSTf95rfdK2v6j/8ABY\ -X/AIVb/wAKO8C/2j/Yv/DRH/CxvCP/AAoby/O/4TP/AIRT/hYXw8/4aS8j7Jx/wrn/AIU99v8A7Z/tX\ -/iRf23/AMIjs/4rH/hCq/DSuG+LVv468aX2p/FjUPFPjD4mfHWxxqlr4x8a+JpNT8S+KLC31afxFrPw\ -ps7zUp4tL8DfDnWrm816G00DTbOx8I+GdQ8Sf21ougWVzY2vl1/BfxY+GXxE+zp4H8e+E/E93caTFrn\ -9laVrlhca7a6XL9lH2rUtA88Xuk7Jb60jmS6t4ZIJrhYZ0jlOyvbPoT0GiiigD9Sf+CTfx7/4Qv4i+N\ -f2WfE2peT4a+JH9r/F74H/AG688uz03xzYxQf8Lq+GGj/2hrMVvZ/2pYDTPHOjaJpGnT3l9fW3xX8Ta\ -tchEjr9mtI/4of4k6n4cf8Ac+F/iZ9t8XeFs/u7LTPHthFF/wAJ74Yts+Tb2X9raetn4ksbK3juL2+v\ -7bxzrF7KqIlfyNRaz4w8Jax4Z8f/AA3vrTS/iZ8NvEukePvh3qOoXWqWOlDxX4cnNxb6J4ju9Blj1Ae\ -BNb099S8P+J7axmgudS8MeK9Z0pZkS+kNf1UaD8RNE/ab/Z48AfHL4PwXd5Lq9j4V+K3gnRNQutC0/w\ -AW6b4k8N6hFd+JvhF4jv7DWbm08DeO3ksvFngTxRGL24XRrrUda02/W6jgvLSbKqnyqcVedPVea6r5q\ -6XnZ9DKsnyqcVedL3klu11j81dL+9Z9D6aorI8P69pPinQdE8T6Dd/b9D8R6RpuvaNfeRc2v2zSdXso\ -dQ067+zXkMc1v5lncQv5csccib9siKwKjXrRNNJp3T1TWzRompJSi7xeqa1TT6oKKKKYwooooAKKKKA\ -CiiigAoorgPil8Uvh/wDBT4f+J/ij8UfE9j4Q8CeELGO/1zXb+O7ufL+03dtpumaZpmmabbT3niDxHq\ -Gs3un6fpWlafb3Wp6tqeqWmmaZaXd/d21tLM5wpwnUqTVOnTTlKUmkopK7bb0SS1beiQJNuyV2w+KXx\ -S+H/wAFPh/4n+KPxR8T2PhDwJ4QsY7/AFzXb+O7ufL+03dtpumaZpmmabbT3niDxHqGs3un6fpWlafb\ -3Wp6tqeqWmmaZaXd/d21tL/KZ+1f+1f8QP2wPiBZ+J/E9nfeEPhj4Qvryf4P/B+e8tLn/hFftNpd6VN\ -4+8fTaXdz2fiD40aho17e2801vPdaZ4X0zVLnw34bubtLvxL4l8ZH7V/7V/xA/bA+IFn4n8T2d94Q+G\ -PhC+vJ/g/8H57y0uf+EV+02l3pU3j7x9Npd3PZ+IPjRqGjXt7bzTW891pnhfTNUufDfhu5u0u/EviXx\ -l801/I/ip4qTz+dfh7h6u6eR03y168bp4tp/DHZrDpr1rPV+5ZP3sFglSSq1Veq9l/L/wAH8j2z9mT4\ -D6n+1N8f/DPwF0zxT/wgttqHg7xZ8TvGvjGK2t77WtI+G/gPX/AXhvxJbeBrC+sbmzvPiLe6x8SfCtp\ -pj6pC2kabFc32uX1vrJ0mDwxr/wAZan4S139iL4//ABn+DfxUeHUNM0/4p3Xw60zU/DugWz6lpOstDq\ -3xH8Badpfg/wALHVLs+DfFvw68aaH4q0DRdO1DWJ/C8vjOfw9qkT61FrGrXv1T+yJp/wAS7b4n/F34y\ -fD/AOPnxO+EvjHwVruqfAzQT4L8P/AvWtLh+Hvir4ffs9/FPxJY3Fj8U/g14kNzqF54zs9LuHumk82G\ -PSYre1NvDJdJceK/FrTde+KnxW/a20j4u+ONf+KOueJfiL4Usdc8deJtF+Hem+Jb6SL9nD4CpompjS/\ -BXgbSfD9lqulw2+ljT5bfRIQkmi21zOlxeCa4mOGM+y/gThjI85w2Bq/2visUnjKilF0cRhKqqWpNe0\ -c1KlCMJ0/3UeWqp2m41Jc37Lxf4A8U5LwRhfEDF5/lOIy7EYLLcdSw1Cpj3jaVPNKeFq0Y1Y1cupYVt\ -RxVOGJjDF1FF3dJ1HCEz9dPgR/wTL8d/HT4F+IPi3458Q6P4X8QeLfAGv6p+zn8KV8RfDD4h/C3xFqe\ -reD9Wk+G/wAQv2hPFng6x8YaP8Qfh5d+LLrwprFj4c8MahqOgaj4d0wp4vk8X6f4n1LwRonzV8QfiZP\ -4M8f+PdI8U6J8TrL416y4b4varaQ+Bv8AhpbxF4+0/SNQk8PD4neOvEPgTVvh38M/htbazqOk28U8Ev\ -izXbTwhcW9x8Lvg5e/DbW/BnjeL5q+BX7bH7Veo/B25/Yw8R/H660TR/gnc+H/AA1p6+AbG3+FPxok+\ -GXg3QdA0v4Y6J4f+Jnwp1vTp/DPwqXQ7fw3eTWdsk/jV75I4fEPjWfQtWuPDFxzj6z4C+HFnF4T0Sy0\ -PRl0u00/UI/CXh2HQtA07w9pXinxbaeFtL8R+Jbieey0f4Y+BLz4geINL0ybxP4jvNF8MWmq+IraLVN\ -Zs3uldv6gprLc/wAJl+ZwrPEYGrCNWmlL93NTSlGUl1su9t2ndH80YzLsLmM6NTGczhhHLmpOVqfOmk\ -/aR2bg012s3e6O91m51rxjpukaL4yj8Ejwt4f8S23jvQPhr4E8C2XhH4Y6N8SoNE0Tw5dfFuex1fUta\ -8SfEb4zX2meHNMkvPGXjvxV4w8UR3d7qraVq2lWOs6hp82z4D8L+Ofi6/iT/hUnhZvF2jeCW1hfiN8T\ -tV1bT/BfwF+EUPhs2f8Awl9/8Wvjf4iePRPDbaBaanpuoa9oenyax40s9GuW1e08KahaROw2vCvwr16\ -7C+MvHR8H6h4T8OBvEGrWnxE8PeKfDn7OT6Zon2m+v4/HHhDx9p3hj4hftAeD2XSx/aen67afAPSdNc\ -TwahbfGHwZeTRXvv8Ar2sW19oHwxn+KHxT0PT/AIZeHdIsz8CfG37UV14N+FfwgttC+GFlob6Lc/sb/\ -se/Cfwd4cf9pX4iaJ4f8Z6Fd+ENT8EeB4I/EWl+JR4X0X4qWpl03SFKmcYeM/quX0Xjq0VZRpJKnH/F\ -P4UvNXXR2OKrnuFjP6nleHlmWIgrKNFJUo9uap8KXnG66NpnS/DP4efsTfDzxR4c1L4t2HjH9t/w2ni\ -bStG8d/F7xX4U0b4X/sUeA9F1rWdZ8IS+LvB/wX8XeIrk/G3wdZ22ufD7xJrHifxVeeMvAmn6FoeqeP\ -fA/jHTtR0oeFrz9cf+Cofg/wCG/in9hb9oXU/iFo3hrU9V+HXgDxB8Svgvf+IBapfeHf2jfC+kah/wo\ -TU/BVxPIjnx3dfEy98P6RpthAXfxA/id/DM1rqNlrV1pl5+IA/aM8NeGNch174XfB63+NnjfRr7S9V8\ -I/tB/tjG9tfB3hHxXoWv2Wt2vi74J/sN+Bzb2+g+HSmnGbwn4g8V+L9E+MXhz/hMb3T/ABDe3dtpK6d\ -q/wAkftCa98UviXG/xh+IPxB+I3xt+L3w4+0eMfCGoeKbyG+kH9naTDYeJfBXgD4eeFNKsfDHw7/4Sn\ -wXpq6FqB8OeHLL7fdtY6/qNpq2v6fbXh7sH9ecJyxzgpzd4xgnaCts5P4n5+urVrell6zFwqTzJ01Uq\ -O8YU07Qjb4XJ/E7639bO1rdpRVSwv7HVbGy1TS7201LTNStLa/07UbC5hvLG/sbyFLi0vbK7t3aO6tJ\ -beSN45EZkdJFZWKkGrddh3hX7Ff8EfPjHPFb/GP9lvWLuySy8FXsPxv+EkV1fadZajdeFvi14k8S3Hx\ -d8LaJo5s1vPElloPxdhl8RaprEl5emzk/aU0fQ3g0vT7PREvvx1r0X4F/FP8A4UN+0Z8AvjTNff2boH\ -hf4jab4Q+JM8viD/hEtHf4SfF1T8M/Gmo+OPErq0Fn8OfDF74i8NfEPVIb9G0yWX4JWM13Lpz2tvrOm\ -AH9T3w0/wCJDr3xM+H0vyf2N4vu/HmgrL+9vb3wp8XL3U/F82q3t1B+4/5Kf/wtXTrWALDcw2Hhm0a5\ -hk82LUL/ANdryLx5/wASX4gfCDxevyRTav4m+GOtXV38uk6ZoPj7RE16zu5pxsFnq9z8RPh38OtIsJJ\ -ZTDNJ4pksFt5r6+sXg9drGj7vPT6UnZf4WlJfJJ8q/wAPyWFH3VUpWsqMrL/C0pRsu0U+Rd+W/kiiii\ -tjcKKKKACiiigAoorhfiZ8TPAnwc8CeJPiX8S/Ell4T8E+E7JL7Wtavkurjy/tF1b6dpunadpunW813\ -r3iC/1e8sLDTNMsLe51HVdR1K107TrW6vrq3t5Mq9ehhaFbFYqtDDYbDQlUqVKklCFOEE5TnOcmoxhG\ -KcpSk0opNtpIwxOJw2Cw2IxmMxEMJhMJCdWrVqzjTp0qdOLnOpUnNqMIQinKc5NRjFNtpJsPiZ8TPAn\ -wc8CeJPiX8S/Ell4T8E+E7JL7Wtavkurjy/tF1b6dpunadpunW813r3iC/wBXvLCw0zTLC3udR1XUdS\ -tdO061ur66t7eT+VL9tT9pD4tftieJ9P8AEySt4I8H+ANan1n4O/BrWp7K50W3V9N1PRLzW/ilqGkpe\ -rP8VNW0PVr+BtU0qS7tfBsF5/Y+g/25YS+LLzx71n7Uf7Ufjv8Aay8d2niPxHaXvhP4beE727m+E3wm\ -mu7W4/4Rn7Ra3WmS+OvHUumXU1prvxgv9IvLy3mmt5rnTvDWnalceHvD1xdJdeIvEXi75yr/AB4+k/8\ -ATPzXijPI8I+EuZPA8H5JiIyxGPjFOWc1qMr8ijJf8iuMlpCSvjH+8qJUlCD/AMIvpZ/tGuKc342y7h\ -36POfzyPhTgrH0sTUziEIynnmMwlVTjCNOrGUXksJxt7GpBrMfjrR9h7OnLyHwx4hs/FegaX4gsYbu0\ -h1K2EsunalHFBq+jX8TvbapoOuWcM8g07xBp+pQ3dlqFqXZ7W9sJ7aTEkTAb1cl8QLMeCdYHxMslEPh\ -+6FvpvxO0+3UxJMl3d6FpOifE26eTNvAdAsIJ4tZuH+x7/Dsz3t9fTR+F9K06Tra+t4F4zy3j3hzCcQ\ -5dD6u6sp0sRh3LmnhcTT5XUoylZKceWcKtKokvaUalOUo06vtKVP/AGO+jF9Ifhr6THhVlfiHkVD+y8\ -ypzngs3yyU/aVMtzOjGMqtD2nLBVqFWnOlisJXjFe0w1emqkaWJhXoUvof9jXTc+APH3jTzv8Akonxp\ -+IWpf2b5f8AyB/+FdS6X8A/J+2eZ/xMPtn/AAp7+1t3lQfZ/wDhIvsG2f7J9suvnPxJ/wAl4/aa/wCy\ -q+D/AP1nH4D16F+y7+0F8BPA/wAJG8L+NPjd8IfCHibS/ir+0L/aXh3xR8SvBnh/XdO+2/tBfE/UbP7\ -dpGra1DcWnnafd2s8XmRr5kNzHKmUdWPinhvxNY/EDXfip8TLDUNK1W38e/F7x/La6j4fu4b7w5qOif\ -D7VR8GPB+q6Fdw3Ey3dpe+B/hl4ZvZp1uJobm91G6ubUwWc1va2/75xNVw8OEMkw1Oac39XfKndq1CT\ -lfVtay6+h/sp49YSeQ+C06NXBVsJltZ5NlOAcqdTkcaEYVsLTVSavOEMBllRe1lKcpuMHOUpVHJ+Ift\ -J6N4o0jQJ/in8O57nTfGGg+HPEPhTV7rTX1C0vbvwd4r0+6003kk/h+wN9d3Oh65eWmrWLSXUFjpeL/\ -VZllkgjWv6TdV/a6/4JLWP7H+t/Cf9nac+NfBPxZ07W4F8A/s0+CMfHi38a6LdaL4UPxh8fap8XLHTk\ -+G/wAdtPvPDWk+I9D8X/FXUdM13xFe/DyHWtDvPEep2lss34i31jZapZXmmanZ2uo6bqNrcWOoaffW8\ -N3ZX1ldwvb3dneWlwjR3VrLBJIkkbqyOjlWBUkV5N+y5r3icXWm/sxvp/i74lfGXS/HFz8Ofh/4b8K+\ -F9X1bWfGdncaFJ4s8JPf6xDd3OheDFufDltrl9H/AGvrGladoeg6DJdarPp+n6Vf3sP6r4DcTfWcJmH\ -CmMqKbwqdbDqT1dKbtWgl1jCbUv8AuJbZH+ZubYeMMQqnLeljk4zXTnjHT156aaflTXdn1zc/EL4n61\ -4j0fxfY6sfCWseG9b0/wAS+FPE3irw/wDDr4o+N9F13R75tU0LWvDfgDxr4Y1n4bfBs211KlxZw2vh7\ -xv8RvD13bSWUHx78S6DcS2MvFatd+HPC0niP4heMvEsh1XWP7H/AOE2+KPxO8Z6n4i8WeIf7PWPRPDf\ -/Cb/ABO8f6xdap4i+yW1xa6dpv8Aaeoz/ZLb7Pp9n5VukMC/R3xI/ZF/aQ+F83w1t/jBo1r4Ii+LUWs\ -N4S0T4b+MtAvtYtdU0XRbTxJf+Cfip8afGHgHVvDnwW+I0GkzXFxZ6V4Z8HfGyPxVF4V8UQ2N74e0nR\ -JfGsd74ReCbK28TRWPwht4/Fvxd8LatrPh/Vda/Zo+GLfGj9ofw9rPjvSpvA2teBfi5+174303X7j9n\ -T7dbW/iPT7DUfCcv7OvheyutY8Yazp+keGoTcJ4d/dqmOy7K2sHRpN1Uk1SpQbk77PZJu2rblex8rVz\ -HKsmawNCi3XSTVGjTcpO+zeiTdtW3K9l9/BWHwe+M2paG3izW/DHhT9nTwGmrHw7H8TP26PGGp/sceB\ -tU8XLZpqSeBPDunfEPwZc+Ltd8Vz6NJLqFpNF4SHhy6s9D1eNPEQ1PS59Mb67/ZY/Zz/ZB8X/ABi8Ee\ -CvjLrn7Rnxxu/F8uq2nge68bfDXTf2fv2VfiT428N6bqHj59AsPgd/wkE3xTj8r4e+D/G8Oq6N8U7i9\ -8BeJF0PW5TZXVtqfhGyb5jtPih8J7PXNU8a2HxD+F9j481zwfe3UXj3RLH4if8ABRb9oLxxe2N4ul6V\ -8IviX8WvhR4kPgXwzrV62g6bLp0viL9oG9h0PRLLwwNa0zQ9Mv4p9A2tF/aPfwT4003x98J/g94w1/x\ -54P1a51T4R/Gv9sP46S634h8CDVfCV54Q8TWviH9j/wDZR0Dwp8OvEMs2j+IviFp2m6k3jO81uG18ZR\ -areao/2O38KWSpYnNsTVpSjgo4PCqScvayvUlHqlGPwyt0l1sr6MVDF53i61GUcBDAYNSTm60uarKHV\ -RjH4JW6S2dlfRn6Jf8ABSX9j39mf4Jfs23fxs+B3wW+G/wR8a+B/iH8GtAlT4P+CPCnw48PeOfD3xb+\ -NPw4+Emv6N8RfD3hPRrW38VrZad4yl1TRL2RY9U0fVNKVLK/j0fVfEmka5+PlHxz/aB+P3xs+KHwnf8\ -AaB+K2rePvDa618R9e8DeG7PStH8D+AfAfxX1Hw8x0/SvCXhLwTa20+u6T/wrOb4s2+nXfji88Yapo9\ -lpP2a28RQ6hq+oy68V7J74Vz3i3w3Y+M/Cnibwfqkt3Bpnivw9rXhvUZ7CSGK+hsdd0250u7lspbiCW\ -OO7W3upDGzxSIHVS0bqCp6GigD+mn4N/FTXf2s/2HPBXxVsLXR7j4seJPhtDquoaT4etr7RNA8O/tQf\ -Cq/lsvE3h7Q4fFV/IJdH0D9onwNqllbPeXl/pd9DoCStfarpVwLq6+wPD+vaT4p0HRPE+g3f2/Q/Eek\ -abr2jX3kXNr9s0nV7KHUNOu/s15DHNb+ZZ3EL+XLHHIm/bIisCo/If/gjd8Q/tXwz+O/wOv8AV/MvPh\ -R8YH8ceDvC/wDZ+3+wfhP8eNGg8Xw6p/bcNkE1T+1f2htH/aYuPIuru51Kx+z+SYbPQ38PxN+mXwW/4\ -lvhTUvBEn7mf4Z+L/FHgODTP9Z/YnhSw1J9X+FulfbV3DUtnwf1v4fSee01xct9p2ajM2qJeqmL92vH\ -tUi0/WLvFLzalJtdVG62Zg/dxEe1WDTfnB3il5tSm2tW1G6tZnrtFFFbG4UUUUAFFFcL8TPiZ4E+Dng\ -TxJ8S/iX4ksvCfgnwnZJfa1rV8l1ceX9ourfTtN07TtN063mu9e8QX+r3lhYaZplhb3Oo6rqOpWunad\ -a3V9dW9vJlXr0MLQrYrFVoYbDYaEqlSpUkoQpwgnKc5zk1GMIxTlKUmlFJttJGGJxOGwWGxGMxmIhhM\ -JhITq1atWcadOlTpxc51Kk5tRhCEU5TnJqMYpttJNh8TPiZ4E+DngTxJ8S/iX4ksvCfgnwnZJfa1rV8\ -l1ceX9ourfTtN07TtN063mu9e8QX+r3lhYaZplhb3Oo6rqOpWunada3V9dW9vJ/L9+1H+1H47/ay8d2\ -niPxHaXvhP4beE727m+E3wmmu7W4/4Rn7Ra3WmS+OvHUumXU1prvxgv8ASLy8t5prea507w1p2pXHh7\ -w9cXSXXiLxF4uP2o/2o/Hf7WXju08R+I7S98J/Dbwne3c3wm+E013a3H/CM/aLW60yXx146l0y6mtNd\ -+MF/pF5eW801vNc6d4a07Urjw94euLpLrxF4i8XfOVf4y/S4+lxX8R6+O8N/DfHTw3AGGm6eOx1NuE8\ -5nB6wg9JRy2MleMXZ4tpVKiVJQg/+fv6dH06MT4s4nMvCXwlzKeE8MMJN0sxzGk5U6nEFSnLWnTekoZ\ -RCSvCDtLHSSq1UqCp05FFFFf5/H+XRU1DT7DVrC90vVLK01LTNStLnT9R07ULaG8sNQsLyF7a8sr2zu\ -UaO6tJbeSSOSORWSRJGVlKkivC/Ac1/psOreAtdvLu+174f3cWjDUdTuJrnUvEnhO4iNz4I8X3V5eFZ\ -tYu7vQlW01TUPJhtp/Evh3X4LRTDaA17/XiPxFh/sDx58PPGcY8ux1ltT+GPieRF+yWqprcX/CQeB9b\ -17Ulylwtp4m0K70LSra4UA33xfkSzuIri4a01H+hPo6cW1Mm4xlw3iKlst4rg6aTbtDGUIVKmGmkk25\ -VV7TC8qS5p16cpO1NW/0k/Zh+N+J8NfH/AAvh/mGL9nwn4wwWXVYzcuSlm2HhVrZTiIxipPnrVXVy2y\ -Si3joTqSUaKcf0z/4JZfHnwL8C/wBqjxT4P+Imr6P4b039q7wl8Nfhx4H8T67q66VZR/GD4UeIPiNrH\ -gn4YwRPaSR3useMND+LfjZ9OnuLiwgh1D4ZWuiQf2lq/inSbSP5g/bV0DwH8FP2lPjze+EfFN14s+CG\ -rfFDxt4w8S/F/UF02z8I/Dn47/En4g+MfFvxd+CXiDxKt1FDqtro/jnVLqK18QwWsOi2N/r6/DbVr4+\ -PPDd+NY+afH3hq88Y+EdZ8L2d/Yad/bcVtY37arpd7rGl6hoct9bHxFoGpWOma5pl2bDU9BXUtOmmst\ -SsL62j1RrmxvLa7ihmT9BPgZ8SPCnjfwpDoWiaDp/gPWvAen6NoWu/DKx+ypaeDLRLWWz8Pnwz9jsrW\ -HVPh3dWml3S6FqNva2sM0OmT2FxZ6ZrGmato2mf6m5LnVDirg3DcDZhGnSrZTUlVw1ZN+15W5y92naM\ -JcrqTjO85OVN/DGS9ov+tbwR8KuDePFxFjc+z2pLMsNB06eW4afscTSpyVJLM51KtGpSq0FVksPGlSV\ -R06ybxnsI1sEsV8V1wnw0+Lni/wDZJ/bZ+E37Qnw4+HHwZ8d674v8P6j8O72P4u6Bf6XpehSpf6VPr2\ -qeFPihoAmufA/xl8R+AluvC2ialJpurCKwivrKTS9UtLmW1h9y+Lfwk/4Ut9q8VeFbX/iy3z3GsaPbp\ -/yRbq0t/YRKP+SLdTLEB/xRXLoP+EK3L4K+Vf2h1msPh7F4y07Qm1/xB8N/F/gvx34bttupTQ2eo6V4\ -isbK/wBVvbXTJka60y38N6prz3aufLjtvNnLwvElxD4vCU8dwVx5krxScadStGjKS+CrRrv2XMm/spy\ -jOS+KLjZ66P8ANPFfw3zrw/xlfL8wX1vA1VKvgMbCHLSxdOjKMpJJuXscRBONPFYaU5SoupGUZ1cNWw\ -+Ir/qd+0r+2d8f/wBrLSovCvjfwv8AAH4efDmx8R6Z4u0HwXafCjwN+0b4p0bXtK0LUfD5OpePf2kfB\ -OqeGfEFlcJrWuXSy2Hwy8O6xYi/t9Mh1me0g1KXXfkDxH4N0nx3aaJY/E+XUfizZ+GbaS08KaT8Tr6T\ -xj4S8B2tzFZw32nfCr4damD4a+CvhyeLTdKiOieDNG8P6FDbaJp1jaaZb2Gl6ba2n6r/ALMf/BLPW/j\ -d8JvCPxW+Nvx2+IPw1ufHvhzR/FHh34f/AAO0v9n6YeGrTVvtk8q6z8WLzWvi14f+NXhy70/+w7zw3r\ -vh1fCy3WmXzXup6VDd36aToP58+BPg74O8SR6xo+reAdG1z4j+C9QuvC3xX+HHwh/Zk+IH7eWs/B34g\ -6Dqeq+HfFng7xzcftSn9o4fD/yfFOg+ILPTNQ8OR+C7LxfF4eudQeTxVY2GjzaL/bWMx1DA+znUpzqS\ -rXUVThzSdrO2lujurvZO2x+HY/McNl3s6lSjUqzxF1H2VNzlK1na6stndXeqTtex5v4Q8T2fxK/tH/h\ -Uek+NPjj/AGL9k/4SD/hQPw88ffHv/hF/7R+0/wBk/wDCWf8ACnfDWt/8Ip9t+wal9g/tH7L9u/sm9+\ -x+d9juvK9k1n4IfGfwprk3hj4tXf7L/wCyj4lh0nTdes/D37Y37YnwX+GGueLND1e81jT7XWfBGk/CC\ -9+IlxqGkw3+gapBd3Oqx6LD5xii019TdNRXTe78Q/Fjwp8Qdf1zwR8UvjJomrXuq6xqcfjLSv21f+Cj\ -Xwi8FfBybX9MvZ9T1BPi3+y+3x61y++GOsR65YF7PwpL8GLCbwr4hhsLKfw34QOmPJo3PeCfil8G/DH\ -hLWo/BvxN+G3wXv0udRv9M+D/AMJf2A/2xviTaeOdaXTLRbK9i+InjXwl8DvD/hfxHqc1va6WsWt2tt\ -pViulW19qXi2Gynlj0ji/tPMa3+65PUt3qyjT/AAflazvvddDzv7XzWvb6nkNXlf2q040vP4XrazVnf\ -e6toz7D+Av/AASm+HP7SPgzw18Xde/bH+IXjHwvZeI/EFz8NNV+CnwGsv2b9S0zxN4YvPHvwm+IMPjz\ -wt+0hb/EDUtRvra+XX9Ntbb7D4eFnJDfTXEWqmfTZ9N+PP2ifgrqn7M3x48T/AbVvE//AAnEWl+D/CX\ -xL8HeMpba3sdY1r4cePNe8e+HPDUHjjT7GxtrOy+I1nrHw28VWmqNpcK6RqMVtY65YwaP/a03hjw/9X\ -/Az/goT8Nv2avAnxE8O/B/4CftdfEzxx8RPiCnxIvdd/ai8W/sp+AfDdzrjeEfh/8AD+5tNV8U/s8av\ -rVx4e0mDwT8PNM+wx2PgXVZrnUwsV7PbWt3NqFh8EeKvjz43/ax8aX37UHxCTR7DU/il4R8DR+CfCWh\ -2L21l8MfhBYWGoeJfBHwxn1Z7gv441ix1zxx431DUfEVxBZT6pqHi25EGn6VpFtpOjab7FF1XSpuvFQ\ -rNLmUXeKl1s3ra+x71B1pUaTxEIwruK51F3ipW15W9bX2vrbczKKKK0NT9CP+CT3izUfD/wC2P8QPA1\ -lDZS6T8XP2Z77xZ4kuLqOd9RstR/Z2+KXhLR/BUOiTRXKRW1ldW37UXj9tUWeG5knk0fRzaSWK296uo\ -fu34T/4lfxf+L2g2/z2esaR8MfidcyTfNcpr3iOx8UfDe+tIHTaq6Qmh/BvwxLFGyNMt3f38j3EkMtv\ -Ba/zRfsU6lqOk/t4/sgtpV/e6Y3iLxp8XfB/iBtPup7M674Suf2Y/jh4zuPC2sm2kX+0/DknjDwH4H1\ -Z7GffbNqfgzSb9ojdadZyw/0u6n/o3x68EfZ/9H/tn4RfFL+2PJ/df2t/wjPjL4Pf8I3/AGl5ePt39n\ -/8Jb4q+w+bv+yf8JNqHkeX9tufMxqu3sp9IzX/AJNeH4OSfojGt7vsZ9ITj/5Pemvuc0/RHrtFFFbGw\ -UUVwvxM+JngT4OeBPEnxL+JfiSy8J+CfCdkl9rWtXyXVx5f2i6t9O03TtO03Trea717xBf6veWFhpmm\ -WFvc6jquo6la6dp1rdX11b28mVevQwtCtisVWhhsNhoSqVKlSShCnCCcpznOTUYwjFOUpSaUUm20kYY\ -nE4bBYbEYzGYiGEwmEhOrVq1Zxp06VOnFznUqTm1GEIRTlOcmoxim20k2HxM+JngT4OeBPEnxL+JfiS\ -y8J+CfCdkl9rWtXyXVx5f2i6t9O03TtO03Trea717xBf6veWFhpmmWFvc6jquo6la6dp1rdX11b28n8\ -v37Uf7Ufjv9rLx3aeI/Edpe+E/ht4Tvbub4TfCaa7tbj/hGftFrdaZL468dS6ZdTWmu/GC/0i8vLeaa\ -3mudO8NadqVx4e8PXF0l14i8ReLj9qP9qPx3+1l47tPEfiO0vfCfw28J3t3N8JvhNNd2tx/wjP2i1ut\ -Ml8deOpdMuprTXfjBf6ReXlvNNbzXOneGtO1K48PeHri6S68ReIvF3zlX+Mv0uPpcV/EevjvDfw3x08\ -NwBhpunjsdTbhPOZwesIPSUctjJXjF2eLaVSolSUIP/n7+nR9OjE+LOJzLwl8JcynhPDDCTdLMcxpOV\ -OpxBUpy1p03pKGUQkrwg7Sx0kqtVKgqdORRRRX+fx/l0FFFFABXl3xr0291P4T+Pl0mxu9S8Q6V4bv/\ -ABR4StNPt572/bxt4PVfFngiay0+3Rjql3F4t0XRZo7Ro5ort4Ftp4J4ZZIX9Ror0smzOvkub5VnOG1\ -xOU4mhiadpOL56FWNWHvRtKPvQXvR1W61Pf4U4ix3CHFPDXFmWSlDMuF8wweY4eUak6UlXwWIp4mk41\ -abVSnJVKUWqkGpwfvRakkzzWxvrLVLKz1PTLy11HTdRtbe+0/ULG4hu7K+sruFLi0vLO7t3aO6tZYJI\ -3jkRmR0cMpKkGmsurafq2k+K/Cmrf8ACO+NfDv2r+wde+ytfWxtr5rVtV8OeI9KW6g/4SLwVqP2GxXU\ -tNaeBpGsbW/sLrTta07SdW0/zr4IgxfB34X2UoMd5pPgLwtoOq2kgKXOma54f0a00TXtG1CBsPZatY6\ -zp9/aXlvIFmtrqymt5kSWN0X1Gv8AWfnlg8XKeErtSw9R+zqRevuyfLJNaapX00afY/7cOH+IMwyXH5\ -ZxFw9mLwmOwrjWw+IoyjJNTj5qVOrRq05OFSnNTo16M5U6kZ0pyi/qDQv2tPhSPCfiTXfiRq0Xwq1jw\ -F4bfxJ490PxKmqNZWVjb3ttpVxqHgbxC+jwQ/FLRZNU1HQorZ9Gim1FZvFui6dqulaRr2pRaKsH7XH/\ -AATW+J3wI/Y08c/G1/EOleC28X6ja+Dr/wDZvu5rG7034D+HvjfqfhT4R/CnTfCPjrwtDdpqniPT/iV\ -4whvPFmkxT3fhnR9M8WHR/AWpSad4BsW+IXy3cWFjeTWFxd2VpdXGlXb3+mT3FvDPNp19JY3umSXthL\ -Khazu203UdQt2kjKuYL+aIny5XVuu1v4kfHHXvhDpP7O158ePiD/wzxoeo+B73SPgy2jfCi/8AD2m2X\ -w68c6D8RvCHhrT/ABfrHw0ufFun+ErDxV4a0c2OmweI47TTdNsINB0qOx0G1tNMt/07LONMgx2Cx1Hi\ -zLJ1sbRoSeCrUdYwxavyVJxvGcNVB+7OVNpVFKnK8FD9i8TPHDM+P+F8t4bpZDhsrjUnTrZlUly4n2l\ -ak37NZeq1OU8DTtKbqTVWri5wqPCrFRw0sVHG8t+zh8SPiTc/s3/B3wl4S+OPx+8E/DfwfpXiAeFfA3\ -w++Kfij4OWGga/r3iXUdS+J19Jq3wd1XRdX8b22q/EBda1O3XxPqutrpQ1OSDQodEs7m5sG0fEPwv8A\ -eNNYvPE3xB8L6b8UPF+pfZ/7X8c/FkT/Ff4ga59jtYNPsP7f8f/ABGm1PWdf+zaZa2Vna/bL6f7LZaf\ -bWVv5VrbQQx95/wSd+F3/BOrVfgnEn7bn7UmgeFPiDpfhPw1pWnfAj4gfFb40/sYj4UCy+Ifxsg1fU7\ -Lxinxm8NaX+0DquvPHpx1CbS7V/8AhFP+EYtNF1BY7+WZ5+r/AGivFv7AVn+0t8UPCHw38TfsQWvhXV\ -dT8LX/AMC/C/we+DX/AASq1vwFqXgmP4WeCn8VXusfGr4xfBy98P8AhDxGvxM034rl9O8V+NNI1CWGw\ -sY9M0+WPVNAj1P+xaeOVLLcDinRnX9vClpSjzu84Jp2utOl+7Xc/k2rilgMHhpzo1MS2qcLUoc0ruO/\ -LdWV13dm0j5zsPjV+z/pVjZaXpfxa+Dum6ZptpbWGnadYePPBVnY2FjZwpb2llZWlvqqx2tpFbxxpHG\ -iqiJGqqoUAV7Npuk/EDXNOsNb8OfAz9pzxX4e1iytdU0HxT4P/ZW/aP8AF/hLxLo2oQR3el6/4W8WeG\ -fhbd6b4o8OXljNBcWOo6fdXNje21zFc2lxNBLHI3sH/DSXhL/ovfxa/wDF0nwJ/wDpnlaGn/F3wf8AE\ -D7d4buf2mPBmjaXdafcjXLL9qb/AILPeFtQ+EfizRJ9lhqXg7WPDvwx/an+Ksni/wC3296yXGka14XH\ -h/UNMi1GDUb4M1vp+o86zfESaUcmxPM9rxUV829EvNnnRzzFSajHIcXzPa8FFfOTdkvNlfTf2TP23Nb\ -06w1rRf2MfjJeaNq9la6ppN3qXjL9mvwbqN1pl/BHd2Fzf+EPH/x80nXvCl69rLE0um63pWmavYyM1r\ -qWn2d5FNbR+IW/wB/aD/Zo8GfD7wd+0F8FPF3wgtZm1LwN8NdY1/Xvhp4s0jxZp3g+K9fw7otz4h+Fn\ -j3X7LTfiH/wrrTtPv7uwv20yXVJNL1298P2l5pmi6s+m/oT+xRrH7Jn7PX7Rp+L+v8A7SP/AASe+FXh\ -pPgn8Rvhvc2PwG/a9+Gut654l1zxj47+DXifR7vXLa9+G3g63i0nT7D4c+IEWRrm8mE2vqsUCI08ler\ -f8FLv2wf2afjv8I/DHwX+B/jzwB8dPGd78UPht46k+IPw11KHxz4W+DXh/wAF6tqniHxDr+mfFDw7pt\ -54ebx3q+m6I/gS/wDDdp4gsvE0Xhz48XWr3Nhc+HTd22o+nha1avRVSvh3hajb9xyUmktndJLU9fBV6\ -+IoRq4jCvB1W2nTclJpLZ3SS1PyjooorpOs0fCv/JWf2bf+zv8A9jT/ANaq+D1f1pfEP/R/HfwFvLf9\ -xeXXxG8SeH7m7h/dXNxoN/8ABv4oa9faJPOmGm0ibXPC3hi9ltmJhku/DlhcOhms7d4/5INJ1LTtD+I\ -HwM8R63f2Wj+HvCn7Tn7K3jDxTr2qXUGn6N4a8JeEP2j/AIW+JvFninX9Uu5Eg0fw5pfhvStU1DUb64\ -kjtrKx024u7mWKCGSRf63/AIk/8jl+z9/2V3Wv/VC/G2sa/wAEf8dP/wBORMMR/Dj/ANfKX/p2B67RR\ -RWxufMH7Xv7aH7MH7Bfwavfj/8AtcfF/wAP/Bj4U2fiDQfCcXiHWbLxBruo614q8SzyxaP4Z8J+DvB2\ -j6jrfjTxA9ta6nfSWWkade3NtpWhanrF1HDpWl6heW38r/7ZP/BaH/glB+1n8R9J8QR/8Fj/AAh4H+G\ -Hg62t3+H3wk1L/gnF+3D4ys/D3iW40y40/wASePNY1+wk0NPFXja8gv8AUbG0vJtNgTRdEuJdL0qG2k\ -1TxLfeIP1B/wCC+n/OFf8A7T/f8E5P/eyV+/1fOcWcJZBxxkWN4Z4owUsyyPMUliMOq+Jw8a0Yu/s6s\ -sLWo1J0m0nKlKbpzsueMrI+S444G4Y8R+Gsw4Q4yy6eb8N5qoxxWFjicXhYYiEXzKlWng6+Hq1KLaTn\ -RnN0qllzwlZW/gS/4b8/4JFf9Jpvhp/4q0/bs/8Amyo/4b8/4JFf9Jpvhp/4q0/bs/8Amyr++2ivw/8\ -A4lA+jf8A9Guwn/hXmX/zafzl/wASHfRJ/wCjMYL/AMLs3/8AnifwJf8ADfn/AASK/wCk03w0/wDFWn\ -7dn/zZUf8ADfn/AASK/wCk03w0/wDFWn7dn/zZV/fbRR/xKB9G/wD6NdhP/CvMv/m0P+JDvok/9GYwX\ -/hdm/8A88T+BL/hvz/gkV/0mm+Gn/irT9uz/wCbKj/hvz/gkV/0mm+Gn/irT9uz/wCbKv77aKP+JQPo\ -3/8ARrsJ/wCFeZf/ADaH/Eh30Sf+jMYL/wALs3/+eJ/Cl8J/2q/+CYvxx+Kfw0+Cnwt/4LE/DTxR8Tf\ -jB8QPBvwt+HXhn/h2P+2non/CReO/iB4j03wn4R0L+2fEXxCtNP0j7X4g1fT7f7VfXdrZ2/2jzbq4hg\ -R5F/b7/hzd8Yv+jwfhp/4ib4p/+i0rk/8Ag4d1r/hGvDP/AAR58RfZvtv9gf8ABeH/AIJ9a19j877N9\ -r/srT/jZffZvtHlSeR5nkbN+x9u/dsbGD+0/wAFvjT/AMLf/wCEl/4pr/hHf+Ee/sb/AJjP9rfbP7W/\ -tX/qFWv2fy/7M/29/n/w7fmP+JQPo3/9Guwn/hXmX/zaH/Eh30Sf+jMYL/wuzf8A+eJ+Iehf8EMPi74\ -ctb6x079tP4cPbX3iTxf4mb7b+yJ4mnnjvPGfivWvF+pQLJB+13Epto9R1y6jgBTesMUayNJIGkba/w\ -CHJ/xr/wCj0Phb/wCIfeLP/ow6/oWor9Pp+E3h5Rp06VPhilGnSioxXtMQ7KKsld1m3ZLdtvuf1xl0I\ -5Rl+AyrLl9Vy/LKNLD0KS1VOjRhGnSppy5pNQhCMU5Ntpatttv+en/hyf8AGv8A6PQ+Fv8A4h94s/8A\ -ow6yde/4I2/E/wAK6HrXifxP+3V8F/Dnhrw5pOo694h8Q69+yf4h0fQ9B0PR7ObUNW1nWtW1D9smO30\ -vSbWwt7ie5uZ5I4YIYHlldUVmH9FlfPvxV8EeKPit45+G/g+70v8As34QeB/Ffg/4y+OdavL3TpP+Fj\ -eKPAur6jr3wp+Gnh3TtNuxqmjf2H8U/D/gfxxrOszy6dbt/wAIVoPhm1tfFGneJfFieGnLws4AS93hi\ -lKT0X7zEde/73Zbvy2u9Dqnj8ZGPu1HKT0Wi3fV6aJbt9r2u9H/ACvfsEf8E0/2w/GGs/EDwp8afGek\ -/sseIvF3h7wr8evA/hz4o/B+1+I+ufEzSfGd3q+m+Ptc0nSvC3xq8KXHhDVvD19b+AIPE+i30c+oaFN\ -8QdAj1PTdBfUrMar+ln/Dm745f9Hk/Cj/AMRA8X//AEYlfrr+0N4I8Uav4Xt/iP8ACrS/tnx1+Efm+K\ -fhrDaXunaLqPjnTrfUdE1nx78Ar3XtYu4rDTvCnxB0Dw3F4eurjVlvdL0PVLjQ/Gq6fNrnhHQrmz9s0\ -HWbPxHoejeIdPh1a3sNe0nTtZsbfXtB1zwrrkFnqlnDfW0OteGPE+nWepeHNWWGdFubDUbS1vrOZXt7\ -u2guI5Il+4weHhg6FPB01alQSUNkuXpFJJJcuySVlHl9DzcLSeGprDOcqvs7tSk7ykpNt3fVptrTaPL\ -1Z+D3/Dm745f9Hk/Cj/xEDxf/APRiUf8ADm745f8AR5Pwo/8AEQPF/wD9GJX770V1nUfgR/w5u+OX/R\ -5Pwo/8RA8X/wD0Ylc94Z/4IlfGTwpptzpenftnfDOa3uvEPi3xJI97+yJ4pkmW+8Z+K9a8YapEjQfte\ -RqLSPU9du0t1Kl1gjjWSSWQNK/9DFFAH4Ef8Obvjl/0eT8KP/EQPF//ANGJR/w5u+OX/R5Pwo/8RA8X\ -/wD0YlfvvRQB/PP4t/4IlfGTxn4U8TeD9U/bO+GcGmeK/D2teG9RnsP2RPFMV9DY67ptzpd3LZS3H7X\ -kscd2tvdSGNnikQOqlo3UFT+16+BfiZq3ijwJrfjPx74F1PS/A3iPUfE8Gl+GPhj4g8M3+oX974I8X+\ -CooZtX1X4s6xHBZx2/i+6nZVsmeR7SNBJGpY17TRUTpxny813ytNWbSummrpNJ2aW9/wAWZzpQqcvPd\ -8jTVpSSummrpNJ2aT1uvvYUUUVZofgD/wAF9P8AnCv/ANp/v+Ccn/vZK+9v+CmPxg/af/Zy/ZW+Kf7R\ -/wCzV4y+A2hXfwJ+HXjv4jeL/CXxy+B/xC+Ltv8AEK30HTLS90XQvDes+Af2j/ALfDyZZINTF1eXVt4\ -kW4W9g8q0tTbSG6+Cf+C+n/OFf/tP9/wTk/8AeyV+uH7X/wCz9/w1b+y98d/2bf8AhLf+EC/4XZ8M/E\ -/w7/4TP+wf+Ep/4Rn/AISSwksf7Y/4R3+2tO/tnyd+77P9utPMxt8+PrQB8S+Jf22/iV+ydfpYftf+P\ -/AvxZn0v9kX9ov9sXxCn7N37KPiP4VQT/D74JXPwkim0XR7r4k/tu+MJIfGMA8Z6wq2clrNaa9/aVtI\ -NT8MnSJIde5zxD/wWV8AeFZviDD4h/Ys/br0k/Cv4TeHv2jfiDJe+Dv2b7eHwt+y/wCKn1RNB/aE1OW\ -X9p8CPw3OdD1wt4UXd8TrcaHem68BwizufK9d/a2/4J2/8NS6tquqf8Lg/wCEF/tP9hT9o79iryP+Ff\ -8A/CT+R/w0Dc/Da4/4WX5v/Cb6f5n9kf8ACvcf2NtX7f8A2vn+1bL7PifO+Lf/AATe/wCFpf8ADU//A\ -Beb+wv+Gl/2BPAv7Df/ACTv+0/+EK/4Qv8A4W5/xdD/AJHq3/4ST7T/AMLU/wCQJ/oHk/2F/wAheX7V\ -/o4B1fiX/gpj8EPDnxg1H4cReBvjJ4i+H3hb4gfCT4Q/En9p/QND8Cv+z18Lvi/8dbLRb34WfDTxXf6\ -v8RbPxZquuaini74fpcX3h/wjrmg6LL8RdITX9Y0syXZs/on44ftSfDT9nu/0DTfHvhn9ovX7jxLZ3t\ -9p0nwP/Y+/a2/acsLaHT5oLedNf1X9mz4JeLLXwneM9xGYLfVZrO4uUV5LaKWOKR0/Na4/4IxfD2L9q\ -o/tFadqX7NGrWXiPxn8E/iX48ufit+wt8HvjX+0fYeN/gz4V8NeFPs3wI/aX+IniG6/4Ur4B16z8D+E\ -ZdR0yfwn4k1TS7lNUvfCniDw9qGow3mn/pT8cP2W/hp+0Jf6BqXj3xN+0XoFx4as72x06P4H/tg/tbf\ -sx2FzDqE0FxO+v6V+zZ8bfCdr4svFe3jEFxqsN5cWyM8dtLFHLIjgHr/gXxno/wARPB/h3xzoFn4s0/\ -RfFGl22saZZeOvAXjn4XeMLW0ulLRQ+Ivh58TPDuka/wCD9UAH7yx1bTLK9hPE1uh4r4C+Pn7X/wC0L\ -8MP24v2Qf2c9B/Z70/T/gF8dfiF4n8D+MP2hvHPi/wzd3HiXV9O+BHxM+LGn+Gvgr8PvB3i+41awlsd\ -Q8DQxa7rXi+z0q3XzBZaHpOspdvrOmfU/in9lT9nf4jfCDw18BvjF8JvCn7Qvwo8JtpM+k+Ff2nYLr9\ -p8z6locF3baT4g8Qa9+0Fd+JdT8XeK4YL+9RdX1a8vdTIvJQ123mNni/ip+yfoXj34gfsX+LPC2saT8\ -NvDP7GvxG1zxr4d+H+geC7P+wtb0LUfgb4++CWkeB9FTTtXsLfwJpOm6f41t7m2MFnewrDoSafFaQJK\ -txAAfj7/wAHIv8AyTP/AIJN/wDacT9hH/1H/jpX6ofsW/8ANSv+5O/92qvyv/4ORf8Akmf/AASb/wC0\ -4n7CP/qP/HSv1Q/Yt/5qV/3J3/u1UAfdFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQB8Qft\ -9/sCfBr/gor8GvC/wg+L/AIo+MHw6ufh18YPh98fvhF8XfgD8QZ/hn8Zfg78ZfhnPqI8K/EL4e+Kjp1\ -/aWfiCHSNd8S2CPf6bqEdtHr8l/YR2et2elarp/wCNnxp/4IifEzwX/wAI1/wrr/grx/wX+8Wf2l/bP\ -9sf8Z96/rv2D7H/AGV/Z/8AyAvhPF9l837Vff63dv8As3yY2PkooA8L/wCHPn7TH/SUj/gv9/4m34//\ -APnZUf8ADnz9pj/pKR/wX+/8Tb8f/wDzsqKKAD/hz5+0x/0lI/4L/f8Aibfj/wD+dlR/w58/aY/6Skf\ -8F/v/ABNvx/8A/OyoooAP+HPn7TH/AElI/wCC/wB/4m34/wD/AJ2VH/Dnz9pj/pKR/wAF/v8AxNvx/w\ -D/ADsqKKAH6N/wRe8XXfxE+D/j343/ALVP/BW39rbS/gd8UfDvxr8A/Cz9qr9o/wAc/Ff4UWPxX8F2u\ -qReBvHk/hc+BbGYeINGvNWuLmylt723EhMllfLeaTeajp15/Qx+yP4X8TeGv+Fg/wDCReHdd0D7b/wi\ -n2P+2tI1DSvtf2b/AISX7R9m+3W8fn+X58G/Znb5ybsbhkooA+y6KKKACiiigAooooAKKKKACiiigAo\ -oooAKKKKACiiigD//2Q==' - $end 'DesignInfo' - $begin 'DesignInfo' - DesignName='Basis_Model_For_Test' - Notes='' - Factory='Maxwell 2D' - IsSolved=false - 'Nominal Setups'[1: 'Setup1'] - 'Nominal Setup Types'[1: ''] - 'Optimetrics Setups'[1: 'ParametricSetup1'] - 'Optimetrics Experiment Types'[1: 0] - Image64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCADIAMgDASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAooooAKKKKACiiigAooooAKKKKACiii\ -gAooooAKKZJJHDHJNNIkUUSPJLLI6pHHGilnkkdiAiBQSSSAAMmvjP9mb/goX+x3+2J4u8aeBP2cPjN\ -ZfEjxZ8PtPTVvFejx+D/AIieFpLDS5NTbRhqNnc+N/COmwa7ZDUgkTy2Et0kZuIWcqk8LSAH2fRRRQA\ -UUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAH5W/wDBZ39p2L9lz/gn78\ -aPEFleyWfjL4nacPgr4D8h1S5Gu/EK1vbHU76ImRWT7H4Rt/El2HXJWSzjH3nUH+af9ne9+B3/AATX/\ -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\ -oooAKKKKACiiigD//2Q==' - $end 'DesignInfo' -$end 'ProjectPreview' diff --git a/tests/system/general/example_models/TMaxwell/Motor_EM_R2019R3.jpg b/tests/system/general/example_models/TMaxwell/Motor_EM_R2019R3.jpg deleted file mode 100644 index d646f280345f7ec682469f26e6cfe12a65487cf0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22351 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 "2022.2": - test_name = "Motor_EM_R2019R3_231" -else: - test_name = "Motor_EM_R2019R3" + +test_name = "Maxwell_2D_Tests" +design_name = "Basis_Model_For_Test" ctrl_prg = "TimeStepCtrl" ctrl_prg_file = "timestep_only.py" m2d_fields = "maxwell_e_line_export_field" -m2d_external_circuit = "External_Circuit" - - -@pytest.fixture(scope="class") -def aedtapp(add_app): - app = add_app( - project_name=test_name, design_name="Basis_Model_For_Test", application=Maxwell2d, subfolder=test_subfolder - ) - if config["desktopVersion"] < "2023.1": - app.duplicate_design("design_for_test") - app.set_active_design("Basis_Model_For_Test") - return app - - -@pytest.fixture(scope="class") -def m2d_ctrl_prg(add_app): - app = add_app(application=Maxwell2d, project_name=ctrl_prg, subfolder=test_subfolder) - return app - - -@pytest.fixture(scope="class") -def m2d_field_export(add_app): - app = add_app(application=Maxwell2d, project_name=m2d_fields, subfolder=test_subfolder) - return app - - -@pytest.fixture(scope="class") -def m2d_circuit(add_app): - app = add_app(application=Maxwell2d, project_name=m2d_external_circuit, subfolder=test_subfolder) - return app - class TestClass: - @pytest.fixture(autouse=True) - def init(self, aedtapp, m2d_ctrl_prg, m2d_field_export, m2d_circuit, local_scratch): - self.aedtapp = aedtapp - self.m2d_ctrl_prg = m2d_ctrl_prg - self.m2d_field_export = m2d_field_export - self.m2d_circuit = m2d_circuit - self.local_scratch = local_scratch - - def test_03a_assign_initial_mesh_from_slider(self): - assert self.aedtapp.mesh.assign_initial_mesh_from_slider(4) - - def test_03a_assign_initial_mesh_from_slider_failure_due_to_wrong_method(self): - with pytest.raises(ValueError): - self.aedtapp.mesh.assign_initial_mesh_from_slider(method="dummy") - def test_03b_assign_initial_mesh(self): - assert self.aedtapp.mesh.assign_initial_mesh(surface_deviation="2mm") + def test_assign_initial_mesh_from_slider(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_03b_assign_initial_mesh_failure_due_to_wrong_method(self): + assert aedtapp.mesh.assign_initial_mesh_from_slider(4) + with pytest.raises(ValueError): + aedtapp.mesh.assign_initial_mesh_from_slider(method="dummy") with pytest.raises(ValueError): - self.aedtapp.mesh.assign_initial_mesh(method="dummy") + aedtapp.mesh.assign_initial_mesh(method="dummy") + aedtapp.close_project(aedtapp.project_name) + + def test_assign_winding(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_04_create_winding(self): - bounds = self.aedtapp.assign_winding(assignment=["Coil"], current=20e-3) + bounds = aedtapp.assign_winding(assignment=["Coil"], current=20e-3) assert bounds - o = self.aedtapp.modeler.create_rectangle([0, 0, 0], [3, 1], name="Rectangle2", material="copper") - bounds = self.aedtapp.assign_winding(assignment=o.id, current=20e-3) + o = aedtapp.modeler.create_rectangle([0, 0, 0], [3, 1], name="Rectangle", material="copper") + bounds = aedtapp.assign_winding(assignment=o.id, current=20e-3) assert bounds - bounds = self.aedtapp.assign_winding(assignment=["Coil"], current="20e-3A") + bounds = aedtapp.assign_winding(assignment=["Coil"], current="20e-3A") assert bounds - bounds = self.aedtapp.assign_winding(assignment=["Coil"], resistance="1ohm") + bounds = aedtapp.assign_winding(assignment=["Coil"], resistance="1ohm") assert bounds - bounds = self.aedtapp.assign_winding(assignment=["Coil"], inductance="1H") + bounds = aedtapp.assign_winding(assignment=["Coil"], inductance="1H") assert bounds - bounds = self.aedtapp.assign_winding(assignment=["Coil"], voltage="10V") + bounds = aedtapp.assign_winding(assignment=["Coil"], voltage="10V") assert bounds - bounds_name = generate_unique_name("Coil") - bounds = self.aedtapp.assign_winding(assignment=["Coil"], name=bounds_name) + bounds_name = ansys.aedt.core.generate_unique_name("Coil") + bounds = aedtapp.assign_winding(assignment=["Coil"], name=bounds_name) assert bounds_name == bounds.name + aedtapp.close_project(aedtapp.project_name) + + def test_assign_coil(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_04a_assign_coil(self): - bound = self.aedtapp.assign_coil(assignment=["Coil"]) + bound = aedtapp.assign_coil(assignment=["Coil"]) assert bound polarity = "Positive" - bound = self.aedtapp.assign_coil(assignment=["Coil"], polarity=polarity) + bound = aedtapp.assign_coil(assignment=["Coil"], polarity=polarity) assert bound.props["PolarityType"] == polarity.lower() polarity = "Negative" - bound = self.aedtapp.assign_coil(assignment=["Coil"], polarity=polarity) + bound = aedtapp.assign_coil(assignment=["Coil"], polarity=polarity) assert bound.props["PolarityType"] == polarity.lower() - bound_name = generate_unique_name("Coil") - bound = self.aedtapp.assign_coil(assignment=["Coil"], name=bound_name) + bound_name = ansys.aedt.core.generate_unique_name("Coil") + bound = aedtapp.assign_coil(assignment=["Coil"], name=bound_name) assert bound_name == bound.name + aedtapp.close_project(aedtapp.project_name) + + def test_create_vector_potential(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_05_create_vector_potential(self): - region = self.aedtapp.modeler["Region"] + region = aedtapp.modeler["Region"] edge_object = region.edges[0] - bounds = self.aedtapp.assign_vector_potential(edge_object.id, 3) + bounds = aedtapp.assign_vector_potential(edge_object.id, 3) assert bounds assert bounds.props["Value"] == "3" bounds["Value"] = "2" assert bounds.props["Value"] == "2" - line = self.aedtapp.modeler.create_polyline([[0, 0, 0], [1, 0, 1]], name="myline") - bound2 = self.aedtapp.assign_vector_potential(line.id, 2) + line = aedtapp.modeler.create_polyline([[0, 0, 0], [1, 0, 1]], name="myline") + bound2 = aedtapp.assign_vector_potential(line.id, 2) assert bound2 assert bound2.props["Value"] == "2" assert bound2.update() + aedtapp.close_project(aedtapp.project_name) + + def test_create_setup(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_06a_create_setup(self): - mysetup = self.aedtapp.create_setup() + mysetup = aedtapp.create_setup() mysetup.props["SaveFields"] = True assert mysetup.update() + aedtapp.close_project(aedtapp.project_name) + + def test_assign_balloon(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + + region = aedtapp.modeler["Region"] + aedtapp.assign_balloon(region.edges) + aedtapp.close_project(aedtapp.project_name) + + def test_generate_design_data(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + + assert aedtapp.generate_design_data() + assert aedtapp.read_design_data() + aedtapp.close_project(aedtapp.project_name) + + def test_assign_torque(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + + torque = aedtapp.assign_torque("Rotor_Section1") + assert torque.type == "Torque" + assert torque.props["Objects"][0] == "Rotor_Section1" + assert torque.props["Is Positive"] + assert torque.delete() + torque = aedtapp.assign_torque(assignment="Rotor_Section1", is_positive=False, torque_name="Torque_Test") + assert torque.name == "Torque_Test" + assert not torque.props["Is Positive"] + assert torque.props["Objects"][0] == "Rotor_Section1" + aedtapp.close_project(aedtapp.project_name) + + def test_assign_force(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_07_create_vector_potential(self): - region = self.aedtapp.modeler["Region"] - self.aedtapp.assign_balloon(region.edges) - - def test_08_generate_design_data(self): - assert self.aedtapp.generate_design_data() - - def test_09_read_design_data(self): - assert self.aedtapp.read_design_data() - - def test_10_assign_torque(self): - T = self.aedtapp.assign_torque("Rotor_Section1") - assert T.type == "Torque" - assert T.props["Objects"][0] == "Rotor_Section1" - assert T.props["Is Positive"] - assert T.delete() - T = self.aedtapp.assign_torque(assignment="Rotor_Section1", is_positive=False, torque_name="Torque_Test") - assert T.name == "Torque_Test" - assert not T.props["Is Positive"] - assert T.props["Objects"][0] == "Rotor_Section1" - - def test_11_assign_force(self): - F = self.aedtapp.assign_force("Magnet2_Section1") - assert F.type == "Force" - assert F.props["Objects"][0] == "Magnet2_Section1" - assert F.props["Reference CS"] == "Global" - assert F.delete() - F = self.aedtapp.assign_force(assignment="Magnet2_Section1", force_name="Force_Test") - assert F.name == "Force_Test" - - def test_12_assign_current_source(self): - coil = self.aedtapp.modeler.create_circle( + force = aedtapp.assign_force("Magnet2_Section1") + assert force.type == "Force" + assert force.props["Objects"][0] == "Magnet2_Section1" + assert force.props["Reference CS"] == "Global" + assert force.delete() + force = aedtapp.assign_force(assignment="Magnet2_Section1", force_name="Force_Test") + assert force.name == "Force_Test" + aedtapp.close_project(aedtapp.project_name) + + def test_assign_current_source(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + + coil = aedtapp.modeler.create_circle( position=[0, 0, 0], radius=5, num_sides="8", is_covered=True, name="Coil", material="Copper" ) - assert self.aedtapp.assign_current([coil]) - assert not self.aedtapp.assign_current([coil.faces[0].id]) + assert aedtapp.assign_current([coil]) + assert not aedtapp.assign_current([coil.faces[0].id]) + aedtapp.close_project(aedtapp.project_name) + + def test_assign_master_slave(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_13_assign_master_slave(self): - mas, slave = self.aedtapp.assign_master_slave( - self.aedtapp.modeler["Rectangle2"].edges[0].id, - self.aedtapp.modeler["Rectangle2"].edges[2].id, + aedtapp.modeler.create_rectangle([1, 1, 1], [3, 1], name="Rectangle1", material="copper") + mas, slave = aedtapp.assign_master_slave( + aedtapp.modeler["Rectangle1"].edges[0].id, + aedtapp.modeler["Rectangle1"].edges[2].id, ) assert "Independent" in mas.name assert "Dependent" in slave.name + aedtapp.close_project(aedtapp.project_name) + + def test_check_design_preview_image(self, local_scratch, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_14_check_design_preview_image(self): - jpg_file = os.path.join(self.local_scratch.path, "file.jpg") - assert self.aedtapp.export_design_preview_to_jpg(jpg_file) + jpg_file = os.path.join(local_scratch.path, "file.jpg") + assert aedtapp.export_design_preview_to_jpg(jpg_file) + aedtapp.close_project(aedtapp.project_name) - def test_14a_model_depth(self): - self.aedtapp.model_depth = 2.0 - assert self.aedtapp.change_design_settings({"ModelDepth": "3mm"}) + def test_model_depth(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + + assert aedtapp.change_design_settings({"ModelDepth": "3mm"}) + aedtapp.close_project(aedtapp.project_name) - def test_14b_skew_model(self): - self.aedtapp.set_active_design("Basis_Model_For_Test") - assert self.aedtapp.apply_skew() - assert not self.aedtapp.apply_skew(skew_type="Invalid") - assert not self.aedtapp.apply_skew(skew_part="Invalid") - assert not self.aedtapp.apply_skew( + def test_apply_skew(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + + assert aedtapp.apply_skew() + assert not aedtapp.apply_skew(skew_type="Invalid") + assert not aedtapp.apply_skew(skew_part="Invalid") + assert not aedtapp.apply_skew( skew_type="Continuous", skew_part="Stator", skew_angle="0.5", skew_angle_unit="Invalid" ) - assert not self.aedtapp.apply_skew( + assert not aedtapp.apply_skew( skew_type="User Defined", number_of_slices="4", custom_slices_skew_angles=["1", "2", "3"] ) - assert self.aedtapp.apply_skew( + assert aedtapp.apply_skew( skew_type="User Defined", number_of_slices="4", custom_slices_skew_angles=["1", "2", "3", "4"] ) + aedtapp.close_project(aedtapp.project_name) + + def test_assign_movement(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_15_assign_movement(self): - self.aedtapp.set_active_design("Y_Connections") - self.aedtapp.insert_design("Motion") - self.aedtapp.solution_type = SOLUTIONS.Maxwell2d.TransientZ - self.aedtapp.xy_plane = True - self.aedtapp.modeler.create_circle([0, 0, 0], 10, name="Circle_inner") - self.aedtapp.modeler.create_circle([0, 0, 0], 30, name="Circle_outer") - bound = self.aedtapp.assign_rotate_motion("Circle_outer", positive_limit=300, mechanical_transient=True) + aedtapp.xy_plane = True + aedtapp.modeler.create_circle([0, 0, 0], 10, name="Circle_inner") + aedtapp.modeler.create_circle([0, 0, 0], 30, name="Circle_outer") + bound = aedtapp.assign_rotate_motion("Circle_outer", positive_limit=300, mechanical_transient=True) assert bound assert bound.props["PositivePos"] == "300deg" + assert bound.props["Objects"][0] == "Circle_outer" + aedtapp.close_project(aedtapp.project_name) + + def test_change_inductance_computation(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + + assert aedtapp.change_inductance_computation() + assert aedtapp.change_inductance_computation(True, False) + assert aedtapp.change_inductance_computation(False, False) + aedtapp.close_project(aedtapp.project_name) + + def test_initial_mesh_settings(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + + assert aedtapp.mesh.initial_mesh_settings + assert aedtapp.mesh.initial_mesh_settings.props + aedtapp.close_project(aedtapp.project_name) - def test_16_enable_inductance_computation(self): - assert self.aedtapp.change_inductance_computation() - assert self.aedtapp.change_inductance_computation(True, False) - assert self.aedtapp.change_inductance_computation(False, False) - - def test_17_mesh_settings(self): - assert self.aedtapp.mesh.initial_mesh_settings - assert self.aedtapp.mesh.initial_mesh_settings.props - - def test_18_end_connection(self): - self.aedtapp.insert_design("EndConnection") - self.aedtapp.solution_type = SOLUTIONS.Maxwell2d.TransientXY - rect = self.aedtapp.modeler.create_rectangle([0, 0, 0], [5, 5], material="aluminum") - rect2 = self.aedtapp.modeler.create_rectangle([15, 20, 0], [5, 5], material="aluminum") - bound = self.aedtapp.assign_end_connection([rect, rect2]) + def test_assign_end_connection(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + + rect = aedtapp.modeler.create_rectangle([0, 0, 0], [5, 5], material="aluminum") + rect2 = aedtapp.modeler.create_rectangle([15, 20, 0], [5, 5], material="aluminum") + bound = aedtapp.assign_end_connection([rect, rect2]) assert bound assert bound.props["ResistanceValue"] == "0ohm" bound.props["InductanceValue"] = "5H" assert bound.props["InductanceValue"] == "5H" - assert not self.aedtapp.assign_end_connection([rect]) - self.aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY - assert not self.aedtapp.assign_end_connection([rect, rect2]) - - def test_19_matrix(self): - self.aedtapp.insert_design("Matrix") - self.aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY - self.aedtapp.modeler.create_rectangle([0, 1.5, 0], [8, 3], is_covered=True, name="Coil_1", material="vacuum") - self.aedtapp.modeler.create_rectangle([8.5, 1.5, 0], [8, 3], is_covered=True, name="Coil_2", material="vacuum") - self.aedtapp.modeler.create_rectangle([16, 1.5, 0], [8, 3], is_covered=True, name="Coil_3", material="vacuum") - self.aedtapp.modeler.create_rectangle([32, 1.5, 0], [8, 3], is_covered=True, name="Coil_4", material="vacuum") - self.aedtapp.assign_current("Coil_1", amplitude=1, swap_direction=False, name="Current1") - self.aedtapp.assign_current("Coil_2", amplitude=1, swap_direction=True, name="Current2") - self.aedtapp.assign_current("Coil_3", amplitude=1, swap_direction=True, name="Current3") - self.aedtapp.assign_current("Coil_4", amplitude=1, swap_direction=True, name="Current4") - L = self.aedtapp.assign_matrix(assignment="Current1") - assert L.props["MatrixEntry"]["MatrixEntry"][0]["Source"] == "Current1" - assert L.delete() - L = self.aedtapp.assign_matrix( - assignment=["Current1", "Current2"], matrix_name="Test1", turns=2, return_path="Current3" - ) - assert len(L.props["MatrixEntry"]["MatrixEntry"]) == 2 - L = self.aedtapp.assign_matrix( - assignment=["Current1", "Current2"], matrix_name="Test2", turns=[2, 1], return_path=["Current3", "Current4"] - ) - assert L.props["MatrixEntry"]["MatrixEntry"][1]["ReturnPath"] == "Current4" - L = self.aedtapp.assign_matrix( - assignment=["Current1", "Current2"], matrix_name="Test3", turns=[2, 1], return_path=["Current1", "Current1"] + assert not aedtapp.assign_end_connection([rect]) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY + assert not aedtapp.assign_end_connection([rect, rect2]) + aedtapp.close_project(aedtapp.project_name) + + def test_setup_y_connection(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name="Y_Connections", + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, ) - assert not L - group_sources = {"Group1_Test": ["Current3", "Current2"]} - L = self.aedtapp.assign_matrix( - assignment=["Current3", "Current2"], - matrix_name="Test4", - turns=[2, 1], - return_path=["Current4", "Current1"], - group_sources=group_sources, - ) - assert L.name == "Test4" - group_sources = {"Group1_Test": ["Current3", "Current2"], "Group2_Test": ["Current1", "Current2"]} - L = self.aedtapp.assign_matrix( - assignment=["Current1", "Current2"], - matrix_name="Test5", - turns=[2, 1], - return_path="infinite", - group_sources=group_sources, - ) - assert L.props["MatrixGroup"]["MatrixGroup"] - group_sources = {} - group_sources["Group1_Test"] = ["Current1", "Current3"] - group_sources["Group2_Test"] = ["Current2", "Current4"] - L = self.aedtapp.assign_matrix( - assignment=["Current1", "Current2", "Current3", "Current4"], - matrix_name="Test6", - turns=2, - group_sources=group_sources, - branches=3, - ) - assert L.props["MatrixGroup"]["MatrixGroup"][0]["GroupName"] == "Group1_Test" - group_sources = {"Group1_Test": ["Current1", "Current3"], "Group2_Test": ["Current2", "Current4"]} - L = self.aedtapp.assign_matrix( - assignment=["Current1", "Current2", "Current3", "Current4"], - matrix_name="Test7", - turns=[5, 1], - group_sources=group_sources, - branches=[3, 2, 1], + + assert aedtapp.setup_y_connection(["PhaseA", "PhaseB", "PhaseC"]) + assert aedtapp.setup_y_connection(["PhaseA", "PhaseB"]) + assert aedtapp.setup_y_connection() + aedtapp.close_project(aedtapp.project_name) + + def test_change_symmetry_multiplier(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, ) - assert len(L.props["MatrixGroup"]["MatrixGroup"]) == 2 - group_sources = {"Group1_Test": ["Current1", "Current3", "Current2"], "Group2_Test": ["Current2", "Current4"]} - L = self.aedtapp.assign_matrix( - assignment=["Current1", "Current2", "Current3"], - matrix_name="Test8", - turns=[2, 1, 2, 3], - return_path=["infinite", "infinite", "Current4"], - group_sources=group_sources, - branches=[3, 2], + + assert aedtapp.change_symmetry_multiplier(2) + aedtapp.close_project(aedtapp.project_name) + + def test_eddy_effects_on(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, ) - assert L.props["MatrixEntry"]["MatrixEntry"][0]["NumberOfTurns"] == 2 - L.props["MatrixEntry"]["MatrixEntry"][0]["NumberOfTurns"] = 3 - assert L.props["MatrixEntry"]["MatrixEntry"][0]["NumberOfTurns"] == 3 - group_sources = {"Group1_Test": ["Current1", "Current3"], "Group2_Test": ["Current2", "Current4"]} - L = self.aedtapp.assign_matrix( - assignment=["Current1", "Current2", "Current3", "Current4"], - matrix_name="Test9", - turns=[5, 1, 2, 3], - group_sources=group_sources, - branches=[3, 2], + + assert aedtapp.eddy_effects_on(["Coil_1"], enable_eddy_effects=True) + assert aedtapp.oboundary.GetEddyEffect("Coil_1") + aedtapp.eddy_effects_on(["Coil_1"], enable_eddy_effects=False) + assert not aedtapp.oboundary.GetEddyEffect("Coil_1") + aedtapp.close_project(aedtapp.project_name) + + def test_assign_symmetry(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, ) - for l in L.props["MatrixEntry"]["MatrixEntry"]: - assert l["ReturnPath"] == "infinite" - def test_20_setup_y_connection(self): - self.aedtapp.set_active_design("Y_Connections") - assert self.aedtapp.setup_y_connection(["PhaseA", "PhaseB", "PhaseC"]) - assert self.aedtapp.setup_y_connection(["PhaseA", "PhaseB"]) # Remove one phase from the Y connection. - assert self.aedtapp.setup_y_connection() # Remove the Y connection. - - def test_21_symmetry_multiplier(self): - assert self.aedtapp.change_symmetry_multiplier(2) - - def test_22_eddycurrent(self): - self.aedtapp.set_active_design("Basis_Model_For_Test") - assert self.aedtapp.eddy_effects_on(["Coil_1"], enable_eddy_effects=True) - oModule = self.aedtapp.odesign.GetModule("BoundarySetup") - assert oModule.GetEddyEffect("Coil_1") - self.aedtapp.eddy_effects_on(["Coil_1"], enable_eddy_effects=False) - assert not oModule.GetEddyEffect("Coil_1") - - def test_23_read_motion_boundary(self): - assert self.aedtapp.boundaries - for bound in self.aedtapp.boundaries: - if bound.name == "MotionSetup1": - assert bound.props["MotionType"] == "Band" - assert bound.props["InitPos"] == "Init_Pos" - bound.props["InitPos"] = "10deg" - assert bound.props["InitPos"] == "10deg" - assert bound.type == "Band" - - def test_24_assign_symmetry(self): - self.aedtapp.set_active_design("Basis_Model_For_Test") - region = [x for x in self.aedtapp.modeler.object_list if x.name == "Region"] - band = [x for x in self.aedtapp.modeler.object_list if x.name == "Band"] - assert self.aedtapp.assign_symmetry([region[0].edges[0], band[0].edges[0]], "Symmetry_Test_IsOdd") - assert self.aedtapp.assign_symmetry([region[0].edges[0], band[0].edges[0]]) - assert self.aedtapp.assign_symmetry([region[0].edges[0], band[0].edges[0]], "Symmetry_Test_IsEven", False) - assert self.aedtapp.assign_symmetry([9556, 88656]) - assert not self.aedtapp.assign_symmetry([]) - for bound in self.aedtapp.boundaries: + region = [x for x in aedtapp.modeler.object_list if x.name == "Region"] + band = [x for x in aedtapp.modeler.object_list if x.name == "Band"] + assert aedtapp.assign_symmetry([region[0].edges[0], band[0].edges[0]], "Symmetry_Test_IsOdd") + assert aedtapp.assign_symmetry([region[0].edges[0], band[0].edges[0]]) + assert aedtapp.assign_symmetry([region[0].edges[0], band[0].edges[0]], "Symmetry_Test_IsEven", False) + assert aedtapp.assign_symmetry([9556, 88656]) + assert not aedtapp.assign_symmetry([]) + for bound in aedtapp.boundaries: if bound.name == "Symmetry_Test_IsOdd": assert bound.type == "Symmetry" assert bound.props["IsOdd"] if bound.name == "Symmetry_Test_IsEven": assert bound.type == "Symmetry" assert not bound.props["IsOdd"] + aedtapp.close_project(aedtapp.project_name) + + def test_export_rl_matrix(self, local_scratch, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_25_export_rl_matrix(self): - self.aedtapp.set_active_design("Sinusoidal") - assert not self.aedtapp.export_rl_matrix("Test1", " ") - self.aedtapp.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY - self.aedtapp.assign_matrix(assignment=["PM_I1_1_I0", "PM_I1_I0"], matrix_name="Test1") - self.aedtapp.assign_matrix(assignment=["Phase_A", "Phase_B", "Phase_C"], matrix_name="Test2") + aedtapp.set_active_design("Sinusoidal") + assert not aedtapp.export_rl_matrix("Test1", " ") + aedtapp.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY + aedtapp.assign_matrix(assignment=["PM_I1_1_I0", "PM_I1_I0"], matrix_name="Test1") + aedtapp.assign_matrix(assignment=["Phase_A", "Phase_B", "Phase_C"], matrix_name="Test2") setup_name = "setupTestMatrixRL" - setup = self.aedtapp.create_setup(name=setup_name) + setup = aedtapp.create_setup(name=setup_name) setup.props["MaximumPasses"] = 2 - export_path_1 = os.path.join(self.local_scratch.path, "export_rl_matrix_Test1.txt") - assert not self.aedtapp.export_rl_matrix("Test1", export_path_1) - assert not self.aedtapp.export_rl_matrix("Test2", export_path_1, False, 10, 3, True) - self.aedtapp.validate_simple() - self.aedtapp.analyze_setup(setup_name) - assert self.aedtapp.export_rl_matrix("Test1", export_path_1) - assert not self.aedtapp.export_rl_matrix("abcabc", export_path_1) + export_path_1 = os.path.join(local_scratch.path, "export_rl_matrix_Test1.txt") + assert not aedtapp.export_rl_matrix("Test1", export_path_1) + assert not aedtapp.export_rl_matrix("Test2", export_path_1, False, 10, 3, True) + aedtapp.validate_simple() + aedtapp.analyze_setup(setup_name) + assert aedtapp.export_rl_matrix("Test1", export_path_1) + assert not aedtapp.export_rl_matrix("abcabc", export_path_1) assert os.path.exists(export_path_1) - export_path_2 = os.path.join(self.local_scratch.path, "export_rl_matrix_Test2.txt") - assert self.aedtapp.export_rl_matrix("Test2", export_path_2, False, 10, 3, True) + export_path_2 = os.path.join(local_scratch.path, "export_rl_matrix_Test2.txt") + assert aedtapp.export_rl_matrix("Test2", export_path_2, False, 10, 3, True) assert os.path.exists(export_path_2) + aedtapp.close_project(aedtapp.project_name) + + def test_assign_current_density(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name="Sinusoidal", + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + + bound = aedtapp.assign_current_density("Coil", "CurrentDensity_1") + assert bound + assert bound.props["Objects"] == ["Coil"] + assert bound.props["Value"] == "0" + assert bound.props["CoordinateSystem"] == "" + bound2 = aedtapp.assign_current_density("Coil", "CurrentDensity_2", "40deg", current_density_2d="2") + assert bound2 + assert bound2.props["Objects"] == ["Coil"] + assert bound2.props["Value"] == "2" + assert bound2.props["CoordinateSystem"] == "" + bound_group = aedtapp.assign_current_density(["Coil", "Coil_1"], "CurrentDensityGroup_1") + assert bound_group + assert bound_group.props[bound_group.props["items"][0]]["Objects"] == ["Coil", "Coil_1"] + assert bound_group.props[bound_group.props["items"][0]]["Value"] == "0" + assert bound_group.props[bound_group.props["items"][0]]["CoordinateSystem"] == "" + assert not aedtapp.assign_current_density("Circle_inner", "CurrentDensity_1") + aedtapp.close_project(aedtapp.project_name) + + def test_add_mesh_link(self, local_scratch, add_app): + aedtapp = add_app( + project_name=test_name, + design_name="Sinusoidal", + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_26_assign_current_density(self): - self.aedtapp.set_active_design("Sinusoidal") - assert self.aedtapp.assign_current_density("Coil", "CurrentDensity_1") - assert self.aedtapp.assign_current_density("Coil", "CurrentDensity_2", "40deg", current_density_2d="2") - assert self.aedtapp.assign_current_density(["Coil", "Coil_1"]) - assert self.aedtapp.assign_current_density(["Coil", "Coil_1"], "CurrentDensityGroup_1") - for bound in self.aedtapp.boundaries: - if bound.type == "CurrentDensity": - if bound.name == "CurrentDensity_1": - assert bound.props["Objects"] == ["Coil"] - assert bound.props["Phase"] == "0deg" - assert bound.props["Value"] == "0" - assert bound.props["CoordinateSystem"] == "" - if bound.name == "CurrentDensity_2": - assert bound.props["Objects"] == ["Coil"] - assert bound.props["Phase"] == "40deg" - assert bound.props["Value"] == "2" - assert bound.props["CoordinateSystem"] == "" - if bound.type == "CurrentDensityGroup": - if bound.name == "CurrentDensityGroup_1": - assert bound.props["Objects"] == ["Coil", "Coil_1"] - assert bound.props["Phase"] == "0deg" - assert bound.props["Value"] == "0" - assert bound.props["CoordinateSystem"] == "" - self.aedtapp.set_active_design("Motion") - assert not self.aedtapp.assign_current_density("Circle_inner", "CurrentDensity_1") - - def test_27_add_mesh_link(self): - self.aedtapp.save_project(self.aedtapp.project_file) - self.aedtapp.set_active_design("Sinusoidal") - assert self.aedtapp.setups[0].add_mesh_link(design="Y_Connections") - meshlink_props = self.aedtapp.setups[0].props["MeshLink"] + assert aedtapp.setups[0].add_mesh_link(design=design_name) + meshlink_props = aedtapp.setups[0].props["MeshLink"] assert meshlink_props["Project"] == "This Project*" assert meshlink_props["PathRelativeTo"] == "TargetProject" - assert meshlink_props["Design"] == "Y_Connections" + assert meshlink_props["Design"] == design_name assert meshlink_props["Soln"] == "Setup1 : LastAdaptive" - assert sorted(list(meshlink_props["Params"].keys())) == sorted(self.aedtapp.available_variations.variables) - assert sorted(list(meshlink_props["Params"].values())) == sorted(self.aedtapp.available_variations.variables) - assert not self.aedtapp.setups[0].add_mesh_link(design="") - assert self.aedtapp.setups[0].add_mesh_link(design="Y_Connections", solution="Setup1 : LastAdaptive") - assert not self.aedtapp.setups[0].add_mesh_link(design="Y_Connections", solution="Setup_Test : LastAdaptive") - assert self.aedtapp.setups[0].add_mesh_link( - design="Y_Connections", parameters=self.aedtapp.available_variations.nominal_w_values_dict + assert sorted(list(meshlink_props["Params"].keys())) == sorted(aedtapp.available_variations.variables) + assert sorted(list(meshlink_props["Params"].values())) == sorted(aedtapp.available_variations.variables) + assert not aedtapp.setups[0].add_mesh_link(design="") + assert aedtapp.setups[0].add_mesh_link(design=design_name, solution="Setup1 : LastAdaptive") + assert not aedtapp.setups[0].add_mesh_link(design=design_name, solution="Setup_Test : LastAdaptive") + assert aedtapp.setups[0].add_mesh_link( + design=design_name, parameters=aedtapp.available_variations.nominal_w_values_dict ) example_project = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, test_name + ".aedt") - example_project_copy = os.path.join(self.local_scratch.path, test_name + "_copy.aedt") + example_project_copy = os.path.join(local_scratch.path, test_name + "_copy.aedt") shutil.copyfile(example_project, example_project_copy) assert os.path.exists(example_project_copy) - assert self.aedtapp.setups[0].add_mesh_link(design="Basis_Model_For_Test", project=example_project_copy) + assert aedtapp.setups[0].add_mesh_link(design=design_name, project=example_project_copy) + aedtapp.close_project(aedtapp.project_name) + + def test_set_variable(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_28_set_variable(self): - self.aedtapp.variable_manager.set_variable("var_test", expression="123") - self.aedtapp["var_test"] = "234" - assert "var_test" in self.aedtapp.variable_manager.design_variable_names - assert self.aedtapp.variable_manager.design_variables["var_test"].expression == "234" + aedtapp.variable_manager.set_variable("var_test", expression="123") + aedtapp["var_test"] = "234" + assert "var_test" in aedtapp.variable_manager.design_variable_names + assert aedtapp.variable_manager.design_variables["var_test"].expression == "234" + aedtapp.close_project(aedtapp.project_name) + + def test_cylindrical_gap(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_31a_cylindrical_gap(self): - assert not self.aedtapp.mesh.assign_cylindrical_gap("Band") + assert not aedtapp.mesh.assign_cylindrical_gap("Band") [ x.delete() - for x in self.aedtapp.mesh.meshoperations[:] + for x in aedtapp.mesh.meshoperations[:] if x.type == "Cylindrical Gap Based" or x.type == "CylindricalGap" ] - assert self.aedtapp.mesh.assign_cylindrical_gap("Band", name="cyl_gap_test") - assert not self.aedtapp.mesh.assign_cylindrical_gap(["Band", "Region"]) - assert not self.aedtapp.mesh.assign_cylindrical_gap("Band") + assert aedtapp.mesh.assign_cylindrical_gap("Band", name="cyl_gap_test") + assert not aedtapp.mesh.assign_cylindrical_gap(["Band", "Region"]) + assert not aedtapp.mesh.assign_cylindrical_gap("Band") [ x.delete() - for x in self.aedtapp.mesh.meshoperations[:] + for x in aedtapp.mesh.meshoperations[:] if x.type == "Cylindrical Gap Based" or x.type == "CylindricalGap" ] - assert self.aedtapp.mesh.assign_cylindrical_gap("Band", name="cyl_gap_test", band_mapping_angle=2) + assert aedtapp.mesh.assign_cylindrical_gap("Band", name="cyl_gap_test", band_mapping_angle=2) + aedtapp.close_project(aedtapp.project_name) + + def test_skin_depth(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_31b_skin_depth(self): - edge = self.aedtapp.modeler["Rotor"].edges[0] - mesh = self.aedtapp.mesh.assign_skin_depth(assignment=edge, skin_depth="0.3mm", layers_number=3) + edge = aedtapp.modeler["Rotor_Section1"].edges[0] + mesh = aedtapp.mesh.assign_skin_depth(assignment=edge, skin_depth="0.3mm", layers_number=3) assert mesh assert mesh.type == "SkinDepthBased" assert mesh.props["Edges"][0] == edge.id assert mesh.props["SkinDepth"] == "0.3mm" assert mesh.props["NumLayers"] == 3 - edge1 = self.aedtapp.modeler["Rotor"].edges[1] - mesh = self.aedtapp.mesh.assign_skin_depth(assignment=edge1.id, skin_depth="0.3mm", layers_number=3) + edge1 = aedtapp.modeler["Rotor_Section1"].edges[1] + mesh = aedtapp.mesh.assign_skin_depth(assignment=edge1.id, skin_depth="0.3mm", layers_number=3) assert mesh assert mesh.type == "SkinDepthBased" assert mesh.props["Edges"][0] == edge1.id assert mesh.props["SkinDepth"] == "0.3mm" assert mesh.props["NumLayers"] == 3 + aedtapp.close_project(aedtapp.project_name) + + def test_start_continue_from_previous_setup(self, local_scratch, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) - def test_32_control_program(self): - user_ctl_path = "user.ctl" - ctrl_prg_path = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, ctrl_prg_file) - assert self.m2d_ctrl_prg.setups[0].enable_control_program(control_program_path=ctrl_prg_path) - assert self.m2d_ctrl_prg.setups[0].enable_control_program( - control_program_path=ctrl_prg_path, control_program_args="3" + assert aedtapp.setups[0].start_continue_from_previous_setup( + design="Y_Connections", solution="Setup1 : Transient" ) - assert not self.m2d_ctrl_prg.setups[0].enable_control_program( - control_program_path=ctrl_prg_path, control_program_args=3 + assert aedtapp.setups[0].props["PrevSoln"]["Project"] == "This Project*" + assert aedtapp.setups[0].props["PrevSoln"]["Design"] == "Y_Connections" + assert aedtapp.setups[0].props["PrevSoln"]["Soln"] == "Setup1 : Transient" + assert not aedtapp.setups[0].start_continue_from_previous_setup(design="", solution="Setup1 : Transient") + assert not aedtapp.setups[0].start_continue_from_previous_setup(design="Y_Connections", solution="") + assert not aedtapp.setups[0].start_continue_from_previous_setup(design="", solution="") + example_project = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, test_name + ".aedt") + example_project_copy = os.path.join(local_scratch.path, test_name + "_copy.aedt") + shutil.copyfile(example_project, example_project_copy) + assert os.path.exists(example_project_copy) + aedtapp.create_setup(name="test_setup") + assert aedtapp.setups[1].start_continue_from_previous_setup( + design="Y_Connections", solution="Setup1 : Transient", project=example_project_copy ) - assert self.m2d_ctrl_prg.setups[0].enable_control_program( - control_program_path=ctrl_prg_path, call_after_last_step=True + assert aedtapp.setups[1].props["PrevSoln"]["Project"] == example_project_copy + assert aedtapp.setups[1].props["PrevSoln"]["Design"] == "Y_Connections" + assert aedtapp.setups[1].props["PrevSoln"]["Soln"] == "Setup1 : Transient" + aedtapp.close_project(aedtapp.project_name) + + def test_design_excitations_by_type(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + + coils = aedtapp.excitations_by_type["Coil"] + assert coils + assert len(coils) == len([bound for bound in aedtapp.excitation_objects.values() if bound.type == "Coil"]) + currents = aedtapp.excitations_by_type["Current"] + assert currents + assert len(currents) == len([bound for bound in aedtapp.excitation_objects.values() if bound.type == "Current"]) + wdg_group = aedtapp.excitations_by_type["Winding Group"] + assert wdg_group + assert len(wdg_group) == len( + [bound for bound in aedtapp.excitation_objects.values() if bound.type == "Winding Group"] + ) + aedtapp.close_project(aedtapp.project_name) + + def test_boundaries_by_type(self, add_app): + aedtapp = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, ) - invalid_ctrl_prg_path = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, "invalid.py") - assert not self.m2d_ctrl_prg.setups[0].enable_control_program(control_program_path=invalid_ctrl_prg_path) - self.m2d_ctrl_prg.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY - assert not self.m2d_ctrl_prg.setups[0].enable_control_program(control_program_path=ctrl_prg_path) - if os.path.exists(user_ctl_path): - os.unlink(user_ctl_path) + + coils = aedtapp.boundaries_by_type["Coil"] + assert coils + assert len(coils) == len([bound for bound in aedtapp.boundaries if bound.type == "Coil"]) + currents = aedtapp.boundaries_by_type["Current"] + assert currents + assert len(currents) == len([bound for bound in aedtapp.boundaries if bound.type == "Current"]) + wdg_group = aedtapp.boundaries_by_type["Winding Group"] + assert wdg_group + assert len(wdg_group) == len([bound for bound in aedtapp.boundaries if bound.type == "Winding Group"]) + aedtapp.close_project(aedtapp.project_name) @pytest.mark.skipif(config["NonGraphical"], reason="Test fails on build machine") - def test_33_import_dxf(self): - self.aedtapp.insert_design("dxf") + def test_import_dxf(self, add_app): + aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, design_name="dxf") + dxf_file = os.path.join(TESTS_GENERAL_PATH, "example_models", "cad", "DXF", "dxf2.dxf") - dxf_layers = self.aedtapp.get_dxf_layers(dxf_file) + dxf_layers = aedtapp.get_dxf_layers(dxf_file) assert isinstance(dxf_layers, list) - assert self.aedtapp.import_dxf(dxf_file, dxf_layers) + assert aedtapp.import_dxf(dxf_file, dxf_layers) dxf_layers = ["invalid", "invalid1"] - assert not self.aedtapp.import_dxf(dxf_file, dxf_layers) + assert not aedtapp.import_dxf(dxf_file, dxf_layers) + aedtapp.close_project(aedtapp.project_name) - def test_34_start_continue_from_previous_setup(self): - self.aedtapp.set_active_design("Basis_Model_For_Test") + def test_assign_floating(self, add_app): + aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, design_name="Floating") - assert self.aedtapp.setups[0].start_continue_from_previous_setup( - design="design_for_test", solution="Setup1 : Transient" + aedtapp.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticXY + rect = aedtapp.modeler.create_rectangle([0, 0, 0], [3, 1]) + floating = aedtapp.assign_floating(assignment=rect, charge_value=3, name="floating_test") + assert floating + assert floating.name == "floating_test" + assert floating.props["Objects"][0] == rect.name + assert floating.props["Value"] == "3" + aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY + floating = aedtapp.assign_floating(assignment=rect, charge_value=3, name="floating_test1") + assert not floating + aedtapp.close_project(aedtapp.project_name) + + def test_matrix(self, add_app): + aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, design_name="Matrix") + + aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY + aedtapp.modeler.create_rectangle([0, 1.5, 0], [8, 3], is_covered=True, name="Coil_1", material="vacuum") + aedtapp.modeler.create_rectangle([8.5, 1.5, 0], [8, 3], is_covered=True, name="Coil_2", material="vacuum") + aedtapp.modeler.create_rectangle([16, 1.5, 0], [8, 3], is_covered=True, name="Coil_3", material="vacuum") + aedtapp.modeler.create_rectangle([32, 1.5, 0], [8, 3], is_covered=True, name="Coil_4", material="vacuum") + aedtapp.assign_current("Coil_1", amplitude=1, swap_direction=False, name="Current1") + aedtapp.assign_current("Coil_2", amplitude=1, swap_direction=True, name="Current2") + aedtapp.assign_current("Coil_3", amplitude=1, swap_direction=True, name="Current3") + aedtapp.assign_current("Coil_4", amplitude=1, swap_direction=True, name="Current4") + matrix = aedtapp.assign_matrix(assignment="Current1") + assert matrix.props["MatrixEntry"]["MatrixEntry"][0]["Source"] == "Current1" + assert matrix.delete() + matrix = aedtapp.assign_matrix( + assignment=["Current1", "Current2"], matrix_name="Test1", turns=2, return_path="Current3" ) - assert self.aedtapp.setups[0].props["PrevSoln"]["Project"] == "This Project*" - assert self.aedtapp.setups[0].props["PrevSoln"]["Design"] == "design_for_test" - assert self.aedtapp.setups[0].props["PrevSoln"]["Soln"] == "Setup1 : Transient" - assert self.aedtapp.setups[1].start_continue_from_previous_setup( - design="design_for_test", solution="Setup1 : Transient", map_variables_by_name=False + assert len(matrix.props["MatrixEntry"]["MatrixEntry"]) == 2 + matrix = aedtapp.assign_matrix( + assignment=["Current1", "Current2"], matrix_name="Test2", turns=[2, 1], return_path=["Current3", "Current4"] + ) + assert matrix.props["MatrixEntry"]["MatrixEntry"][1]["ReturnPath"] == "Current4" + matrix = aedtapp.assign_matrix( + assignment=["Current1", "Current2"], matrix_name="Test3", turns=[2, 1], return_path=["Current1", "Current1"] ) - assert self.aedtapp.setups[1].props["PrevSoln"]["Project"] == "This Project*" - assert self.aedtapp.setups[1].props["PrevSoln"]["Design"] == "design_for_test" - assert self.aedtapp.setups[1].props["PrevSoln"]["Soln"] == "Setup1 : Transient" - assert not self.aedtapp.setups[0].start_continue_from_previous_setup(design="", solution="Setup1 : Transient") - assert not self.aedtapp.setups[0].start_continue_from_previous_setup(design="design_for_test", solution="") - assert not self.aedtapp.setups[0].start_continue_from_previous_setup(design="", solution="") + assert not matrix + group_sources = {"Group1_Test": ["Current3", "Current2"]} + matrix = aedtapp.assign_matrix( + assignment=["Current3", "Current2"], + matrix_name="Test4", + turns=[2, 1], + return_path=["Current4", "Current1"], + group_sources=group_sources, + ) + assert matrix.name == "Test4" + group_sources = {"Group1_Test": ["Current3", "Current2"], "Group2_Test": ["Current1", "Current2"]} + matrix = aedtapp.assign_matrix( + assignment=["Current1", "Current2"], + matrix_name="Test5", + turns=[2, 1], + return_path="infinite", + group_sources=group_sources, + ) + assert matrix.props["MatrixGroup"]["MatrixGroup"] + group_sources = {"Group1_Test": ["Current1", "Current3"], "Group2_Test": ["Current2", "Current4"]} + matrix = aedtapp.assign_matrix( + assignment=["Current1", "Current2", "Current3", "Current4"], + matrix_name="Test6", + turns=2, + group_sources=group_sources, + branches=3, + ) + assert matrix.props["MatrixGroup"]["MatrixGroup"][0]["GroupName"] == "Group1_Test" + group_sources = {"Group1_Test": ["Current1", "Current3"], "Group2_Test": ["Current2", "Current4"]} + matrix = aedtapp.assign_matrix( + assignment=["Current1", "Current2", "Current3", "Current4"], + matrix_name="Test7", + turns=[5, 1], + group_sources=group_sources, + branches=[3, 2, 1], + ) + assert len(matrix.props["MatrixGroup"]["MatrixGroup"]) == 2 + group_sources = {"Group1_Test": ["Current1", "Current3", "Current2"], "Group2_Test": ["Current2", "Current4"]} + matrix = aedtapp.assign_matrix( + assignment=["Current1", "Current2", "Current3"], + matrix_name="Test8", + turns=[2, 1, 2, 3], + return_path=["infinite", "infinite", "Current4"], + group_sources=group_sources, + branches=[3, 2], + ) + assert matrix.props["MatrixEntry"]["MatrixEntry"][0]["NumberOfTurns"] == 2 + matrix.props["MatrixEntry"]["MatrixEntry"][0]["NumberOfTurns"] = 3 + assert matrix.props["MatrixEntry"]["MatrixEntry"][0]["NumberOfTurns"] == 3 + group_sources = {"Group1_Test": ["Current1", "Current3"], "Group2_Test": ["Current2", "Current4"]} + matrix = aedtapp.assign_matrix( + assignment=["Current1", "Current2", "Current3", "Current4"], + matrix_name="Test9", + turns=[5, 1, 2, 3], + group_sources=group_sources, + branches=[3, 2], + ) + for l in matrix.props["MatrixEntry"]["MatrixEntry"]: + assert l["ReturnPath"] == "infinite" + aedtapp.close_project(aedtapp.project_name) - example_project_copy = os.path.join(self.local_scratch.path, test_name + "_copy.aedt") - assert os.path.exists(example_project_copy) - self.aedtapp.create_setup(name="test_setup") - assert self.aedtapp.setups[2].start_continue_from_previous_setup( - design="design_for_test", solution="Setup1 : Transient", project=example_project_copy - ) - assert self.aedtapp.setups[2].props["PrevSoln"]["Project"] == example_project_copy - assert self.aedtapp.setups[2].props["PrevSoln"]["Design"] == "design_for_test" - assert self.aedtapp.setups[2].props["PrevSoln"]["Soln"] == "Setup1 : Transient" - - def test_35_solution_types_setup(self, add_app): - m2d = add_app(application=Maxwell2d, design_name="test_setups") - m2d.solution_type = SOLUTIONS.Maxwell2d.TransientXY - setup = m2d.create_setup(setup_type=m2d.solution_type) + def test_solution_types_setup(self, add_app): + aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, design_name="test_setups") + + aedtapp.solution_type = SOLUTIONS.Maxwell2d.TransientXY + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() - m2d.solution_type = SOLUTIONS.Maxwell2d.TransientZ - setup = m2d.create_setup(setup_type=m2d.solution_type) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.TransientZ + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() - m2d.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY - setup = m2d.create_setup(setup_type=m2d.solution_type) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() - m2d.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticZ - setup = m2d.create_setup(setup_type=m2d.solution_type) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticZ + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() - m2d.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY - setup = m2d.create_setup(setup_type=m2d.solution_type) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() - m2d.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentZ - setup = m2d.create_setup(setup_type=m2d.solution_type) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentZ + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() - m2d.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticXY - setup = m2d.create_setup(setup_type=m2d.solution_type) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticXY + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() - m2d.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticZ - setup = m2d.create_setup(setup_type=m2d.solution_type) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticZ + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() - m2d.solution_type = SOLUTIONS.Maxwell2d.DCConductionXY - setup = m2d.create_setup(setup_type=m2d.solution_type) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.DCConductionXY + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() - m2d.solution_type = SOLUTIONS.Maxwell2d.DCConductionZ - setup = m2d.create_setup(setup_type=m2d.solution_type) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.DCConductionZ + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() - m2d.solution_type = SOLUTIONS.Maxwell2d.ACConductionXY - setup = m2d.create_setup(setup_type=m2d.solution_type) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.ACConductionXY + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() - m2d.solution_type = SOLUTIONS.Maxwell2d.ACConductionZ - setup = m2d.create_setup(setup_type=m2d.solution_type) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.ACConductionZ + setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) assert setup setup.delete() + aedtapp.close_project(aedtapp.project_name) - def test_36_design_excitations_by_type(self): - coils = self.aedtapp.excitations_by_type["Coil"] - assert coils - assert len(coils) == len([bound for bound in self.aedtapp.excitation_objects.values() if bound.type == "Coil"]) - currents = self.aedtapp.excitations_by_type["Current"] - assert currents - assert len(currents) == len( - [bound for bound in self.aedtapp.excitation_objects.values() if bound.type == "Current"] - ) - wdg_group = self.aedtapp.excitations_by_type["Winding Group"] - assert wdg_group - assert len(wdg_group) == len( - [bound for bound in self.aedtapp.excitation_objects.values() if bound.type == "Winding Group"] + def test_create_external_circuit(self, local_scratch, add_app): + aedtapp = add_app( + application=ansys.aedt.core.Maxwell2d, design_name="external_circuit", solution_type="Transient" ) - def test_37_boundaries_by_type(self): - coils = self.aedtapp.boundaries_by_type["Coil"] - assert coils - assert len(coils) == len([bound for bound in self.aedtapp.boundaries if bound.type == "Coil"]) - currents = self.aedtapp.boundaries_by_type["Current"] - assert currents - assert len(currents) == len([bound for bound in self.aedtapp.boundaries if bound.type == "Current"]) - wdg_group = self.aedtapp.boundaries_by_type["Winding Group"] - assert wdg_group - assert len(wdg_group) == len([bound for bound in self.aedtapp.boundaries if bound.type == "Winding Group"]) + aedtapp.modeler.create_circle([0, 0, 0], 10, name="Coil1") + aedtapp.modeler.create_circle([20, 0, 0], 10, name="Coil2") + + aedtapp.assign_coil(assignment=["Coil1"]) + aedtapp.assign_coil(assignment=["Coil2"]) + + aedtapp.assign_winding(assignment=["Coil1"]) + aedtapp.assign_winding(assignment=["Coil2"]) + + assert aedtapp.create_external_circuit() + assert aedtapp.create_external_circuit(circuit_design="test_cir") + aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY + assert not aedtapp.create_external_circuit() + aedtapp.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY + for w in aedtapp.excitations_by_type["Winding"]: + w.delete() + aedtapp.save_project() + assert not aedtapp.create_external_circuit() + aedtapp.close_project(aedtapp.project_name) + + def test_export_field_file(self, local_scratch, add_app): + aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, project_name=m2d_fields, subfolder=test_subfolder) + + output_file = os.path.join(local_scratch.path, "e_tang_field.fld") - def test_38_export_fields_calc(self): - output_file = os.path.join(self.local_scratch.path, "e_tang_field.fld") - assert self.m2d_field_export.post.export_field_file( + assert aedtapp.post.export_field_file( quantity="E_Line", output_file=output_file, assignment="Poly1", objects_type="Line" ) assert os.path.exists(output_file) + aedtapp.close_project(aedtapp.project_name) - def test_39_create_external_circuit(self): - assert self.m2d_circuit.create_external_circuit() - assert self.m2d_circuit.create_external_circuit(circuit_design="test_cir") - self.m2d_circuit.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY - assert not self.m2d_circuit.create_external_circuit() - self.m2d_circuit.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY - for w in self.m2d_circuit.excitations_by_type["Winding Group"]: - w.delete() - self.m2d_circuit.save_project() - assert not self.m2d_circuit.create_external_circuit() - - def test_40_assign_floating(self): - self.aedtapp.insert_design("Floating") - self.aedtapp.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticXY - rect = self.aedtapp.modeler.create_rectangle([0, 0, 0], [3, 1], name="Rectangle1") - floating = self.aedtapp.assign_floating(assignment=rect, charge_value=3, name="floating_test") - assert floating - assert floating.name == "floating_test" - assert floating.props["Objects"][0] == rect.name - assert floating.props["Value"] == "3" - self.aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY - floating = self.aedtapp.assign_floating(assignment=rect, charge_value=3, name="floating_test1") - assert not floating + def test_control_program(self, add_app): + aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, project_name=ctrl_prg, subfolder=test_subfolder) + + user_ctl_path = "user.ctl" + ctrl_prg_path = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, ctrl_prg_file) + assert aedtapp.setups[0].enable_control_program(control_program_path=ctrl_prg_path) + assert aedtapp.setups[0].enable_control_program(control_program_path=ctrl_prg_path, control_program_args="3") + assert not aedtapp.setups[0].enable_control_program(control_program_path=ctrl_prg_path, control_program_args=3) + assert aedtapp.setups[0].enable_control_program(control_program_path=ctrl_prg_path, call_after_last_step=True) + invalid_ctrl_prg_path = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, "invalid.py") + assert not aedtapp.setups[0].enable_control_program(control_program_path=invalid_ctrl_prg_path) + aedtapp.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY + assert not aedtapp.setups[0].enable_control_program(control_program_path=ctrl_prg_path) + if os.path.exists(user_ctl_path): + os.unlink(user_ctl_path) + aedtapp.close_project(aedtapp.project_name) From 5c035f1ef4d02dcd7065810599bee41e699eaeee Mon Sep 17 00:00:00 2001 From: Maxime Rey <87315832+MaxJPRey@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:28:15 +0100 Subject: [PATCH 03/11] DOCS: Remove numpy docstyle error (#5575) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sébastien Morais <146729917+SMoraisAnsys@users.noreply.github.com> Co-authored-by: Samuel Lopez <85613111+Samuelopez-ansys@users.noreply.github.com> --- .../aedt/core/application/analysis_3d.py | 10 ++++-- .../application/analysis_circuit_netlist.py | 1 + src/ansys/aedt/core/application/variables.py | 1 + src/ansys/aedt/core/desktop.py | 1 - src/ansys/aedt/core/emit_core/couplings.py | 6 ++-- .../aedt/core/emit_core/results/results.py | 7 ++-- .../aedt/core/emit_core/results/revision.py | 4 +-- src/ansys/aedt/core/filtersolutions.py | 4 +-- .../core/filtersolutions_core/attributes.py | 16 ++++++++++ .../filtersolutions_core/export_to_aedt.py | 32 +++++++++++-------- src/ansys/aedt/core/generic/configurations.py | 2 +- src/ansys/aedt/core/generic/constants.py | 7 ++-- src/ansys/aedt/core/generic/filesystem.py | 8 ++--- src/ansys/aedt/core/generic/settings.py | 19 +++++++---- src/ansys/aedt/core/hfss.py | 4 +-- src/ansys/aedt/core/maxwell.py | 1 + .../aedt/core/modeler/advanced_cad/oms.py | 1 + .../core/modeler/advanced_cad/stackup_3d.py | 7 ++-- .../aedt/core/modeler/cad/components_3d.py | 4 ++- .../aedt/core/modeler/cad/elements_3d.py | 5 +-- src/ansys/aedt/core/modeler/cad/object_3d.py | 6 ++-- src/ansys/aedt/core/modeler/cad/polylines.py | 4 ++- src/ansys/aedt/core/modeler/cad/primitives.py | 12 +++---- .../core/modeler/circuits/primitives_emit.py | 8 ++--- .../aedt/core/modeler/geometry_operators.py | 6 ++-- src/ansys/aedt/core/modeler/modeler_3d.py | 5 +-- .../aedt/core/modeler/pcb/object_3d_layout.py | 2 +- .../core/modules/boundary/maxwell_boundary.py | 8 ++--- src/ansys/aedt/core/modules/material.py | 3 +- src/ansys/aedt/core/modules/solve_setup.py | 3 +- src/ansys/aedt/core/q3d.py | 6 ++-- src/ansys/aedt/core/twinbuilder.py | 6 ++-- .../advanced/touchstone_parser.py | 1 + .../core/visualization/post/post_common_3d.py | 4 ++- 34 files changed, 125 insertions(+), 89 deletions(-) diff --git a/src/ansys/aedt/core/application/analysis_3d.py b/src/ansys/aedt/core/application/analysis_3d.py index 42a22969d7d..a44688fe193 100644 --- a/src/ansys/aedt/core/application/analysis_3d.py +++ b/src/ansys/aedt/core/application/analysis_3d.py @@ -444,6 +444,7 @@ def get_property_value(self, assignment, property_name, property_type=None): @pyaedt_function_handler(object_list="assignment") def copy_solid_bodies_from(self, design, assignment=None, no_vacuum=True, no_pec=True, include_sheets=False): """Copy a list of objects and user defined models from one design to the active design. + If user defined models are selected, the project will be saved automatically. Parameters @@ -1060,7 +1061,9 @@ def add_stackup_3d(self): @pyaedt_function_handler(component_name="components") def flatten_3d_components(self, components=None, purge_history=True, password=None): - """Flatten one or multiple 3d components in the actual layout. Each 3d Component is replaced with objects. + """Flatten one or multiple 3d components in the actual layout. + + Each 3d Component is replaced with objects. This function will work only if the reference coordinate system of the 3d component is the global one. Parameters @@ -1154,8 +1157,9 @@ def flatten_3d_components(self, components=None, purge_history=True, password=No @pyaedt_function_handler(object_name="assignment") def identify_touching_conductors(self, assignment=None): # type: (str) -> dict - """Identify all touching components and group in a dictionary. This method requires that - the ``pyvista`` package is installed. + """Identify all touching components and group in a dictionary. + + This method requires that the ``pyvista`` package is installed. Parameters ---------- diff --git a/src/ansys/aedt/core/application/analysis_circuit_netlist.py b/src/ansys/aedt/core/application/analysis_circuit_netlist.py index 558b0760898..95103c9accd 100644 --- a/src/ansys/aedt/core/application/analysis_circuit_netlist.py +++ b/src/ansys/aedt/core/application/analysis_circuit_netlist.py @@ -28,6 +28,7 @@ class AnalysisCircuitNetlist(Analysis, object): """Provides the Circuit Netlist (CircuitNetlist) interface. + Circuit Netlist Editor has no setup, solution, analysis or postprocessor It is automatically initialized by Application call. Refer to Application function for inputs definition diff --git a/src/ansys/aedt/core/application/variables.py b/src/ansys/aedt/core/application/variables.py index cc5ddcc4e90..74f0aa1a23c 100644 --- a/src/ansys/aedt/core/application/variables.py +++ b/src/ansys/aedt/core/application/variables.py @@ -340,6 +340,7 @@ def _generate_property_validation_errors(property_name, expected, actual): @pyaedt_function_handler() def generate_validation_errors(property_names, expected_settings, actual_settings): """From the given property names, expected settings and actual settings, return a list of validation errors. + If no errors are found, an empty list is returned. The validation of values such as "10mm" ensures that they are close to within a relative tolerance. For example an expected setting of "10mm", and actual of "10.000000001mm" will not yield a validation error. diff --git a/src/ansys/aedt/core/desktop.py b/src/ansys/aedt/core/desktop.py index 74ca83428cc..cdb19974194 100644 --- a/src/ansys/aedt/core/desktop.py +++ b/src/ansys/aedt/core/desktop.py @@ -440,7 +440,6 @@ class Desktop(object): PyAEDT INFO: Python version ... >>> hfss = ansys.aedt.core.Hfss(design="HFSSDesign1") PyAEDT INFO: No project is defined. Project... - """ # _sessions = {} diff --git a/src/ansys/aedt/core/emit_core/couplings.py b/src/ansys/aedt/core/emit_core/couplings.py index 85b0b0b35c4..738101b04a1 100644 --- a/src/ansys/aedt/core/emit_core/couplings.py +++ b/src/ansys/aedt/core/emit_core/couplings.py @@ -134,9 +134,9 @@ def delete_link(self, coupling_link_name): self._odesign.DeleteLink(coupling_link_name) def update_link(self, coupling_name): - """Update the link if it's a valid link. Check if anything - in the linked design has changed and retrieve updated - data if it has. + """Update the link if it's a valid link. + + Check if anything in the linked design has changed and retrieve updated data if it has. Parameters ---------- diff --git a/src/ansys/aedt/core/emit_core/results/results.py b/src/ansys/aedt/core/emit_core/results/results.py index b4188d90092..a3e358fcb7b 100644 --- a/src/ansys/aedt/core/emit_core/results/results.py +++ b/src/ansys/aedt/core/emit_core/results/results.py @@ -135,8 +135,7 @@ def interaction_domain(): @pyaedt_function_handler def _unload_revisions(self): - """Convenience function to set all revisions - as ``unloaded`` + """Convenience function to set all revisions as ``unloaded`` Parameters ---------- @@ -217,9 +216,7 @@ def get_revision(self, revision_name=None): @pyaedt_function_handler() def analyze(self): - """ - Analyze the current revision or create a new revision if - the design has changed. + """Analyze the current revision or create a new revision if the design has changed. Returns ------- diff --git a/src/ansys/aedt/core/emit_core/results/revision.py b/src/ansys/aedt/core/emit_core/results/revision.py index dc2cd528f19..fa42e4d732a 100644 --- a/src/ansys/aedt/core/emit_core/results/revision.py +++ b/src/ansys/aedt/core/emit_core/results/revision.py @@ -307,9 +307,7 @@ def get_interferer_names(self, interferer_type=None): @pyaedt_function_handler() def get_band_names(self, radio_name, tx_rx_mode=None): - """ - Get a list of all ``tx`` or ``rx`` bands (or waveforms) in - a given radio/emitter. + """Get a list of all ``tx`` or ``rx`` bands (or waveforms) in a given radio/emitter. Parameters ---------- diff --git a/src/ansys/aedt/core/filtersolutions.py b/src/ansys/aedt/core/filtersolutions.py index a0835f7c531..edc830d7012 100644 --- a/src/ansys/aedt/core/filtersolutions.py +++ b/src/ansys/aedt/core/filtersolutions.py @@ -40,8 +40,8 @@ class FilterSolutions: - """ - Provides the :doc:`FilterSolutions` application interface. + """Provides the :doc:`FilterSolutions` application interface. + This class has access to ideal filter attributes and calculated output parameters. Parameters diff --git a/src/ansys/aedt/core/filtersolutions_core/attributes.py b/src/ansys/aedt/core/filtersolutions_core/attributes.py index d7073d9ec22..0d616a2dfb1 100644 --- a/src/ansys/aedt/core/filtersolutions_core/attributes.py +++ b/src/ansys/aedt/core/filtersolutions_core/attributes.py @@ -617,6 +617,7 @@ def _define_attributes_dll_functions(self): @property def filter_type(self) -> FilterType: """Type (mathematical formulation) of the filter. The default is ``BUTTERWORTH``. + The ``FilterType`` enum provides a list of all types. Returns @@ -832,6 +833,7 @@ def minimum_order_group_delay_error_percent(self, minimum_order_group_delay_erro @property def minimum_order_group_delay_cutoff(self) -> str: """Filter group delay cutoff frequency for calculation of the filter minimum order. + The default is ``10 GHz``. Returns @@ -903,6 +905,7 @@ def pass_band_definition(self, column: PassbandDefinition): @property def pass_band_center_frequency(self) -> str: """Filter pass band or center frequency. + The default is ``1 GHz``. Returns @@ -967,6 +970,7 @@ def upper_frequency(self, upper_freq_string): @property def diplexer_inner_band_width(self) -> str: """Diplexer inner band width for ``BP1`` and ``Triplexer1`` diplexer types. + The default is ``200 MHz``. Returns @@ -1019,6 +1023,7 @@ def diplexer_lower_center_frequency(self, diplexer_lower_center_frequency_string @property def diplexer_upper_center_frequency(self) -> str: """Diplexer upper center frequency for ``BP2`` and ``Triplexer2`` diplexer types. + The default is ``2 GHz``. Returns @@ -1039,6 +1044,7 @@ def diplexer_upper_center_frequency(self, diplexer_upper_center_frequency_string @property def diplexer_lower_band_width(self) -> str: """Diplexer lower band width for ``BP2`` and ``Triplexer2`` diplexer types. + The default is ``500 MHz``. Returns @@ -1055,6 +1061,7 @@ def diplexer_lower_band_width(self, diplexer_lower_band_width_string): @property def diplexer_upper_band_width(self) -> str: """Diplexer upper band width for ``BP2`` and ``Triplexer2`` diplexer types. + The default is ``2 GHz``. Returns @@ -1124,6 +1131,7 @@ def stop_band_frequency(self, stop_band_frequency_string): @property def stop_band_attenuation_db(self) -> str: """Filter stop band attenuation in dB. + The default is ``60 dB``. Returns @@ -1273,6 +1281,7 @@ def normalized_group_delay_percentage(self, column: BesselRipplePercentage): @property def standard_pass_band_attenuation_value_db(self) -> str: """Filter cut off attenuation in dB. + The default is ''3.01 dB''. Returns @@ -1404,6 +1413,7 @@ def asymmetric(self, asymmetric: bool): @property def asymmetric_low_order(self) -> int: """Order for low side of an asymmetric filter. + The default is ''5''. Returns @@ -1423,6 +1433,7 @@ def asymmetric_low_order(self, asymmetric_low_order: int): @property def asymmetric_high_order(self) -> int: """Order for high side of an asymmetric filter. + The default is ''5''. Returns @@ -1442,6 +1453,7 @@ def asymmetric_high_order(self, asymmetric_high_order: int): @property def asymmetric_low_stop_band_ratio(self) -> str: """Stop-band ratio for low side of an asymmetric filter. + The default is ''1.2''. Returns @@ -1503,6 +1515,7 @@ def asymmetric_low_stop_band_attenuation_db(self, asymmetric_low_stop_band_atten @property def asymmetric_high_stop_band_attenuation_db(self) -> str: """Stop-band attenuation for high side of an asymmetric filter. + The default is ''60 dB''. Returns @@ -1686,6 +1699,7 @@ def constrict_ripple_percent(self, constrict_ripple_percent_string): @property def ripple_constriction_band(self) -> RippleConstrictionBandSelect: """Filter ripple constriction band option. + The default is ''STOP''. Returns @@ -1738,6 +1752,7 @@ def delay_equalizer(self, delay_equalizer: bool): @property def delay_equalizer_order(self) -> int: """Filter delay equalizer order. + The default is ''2''. Returns @@ -1775,6 +1790,7 @@ def standard_delay_equ_pass_band_attenuation(self, standard_delay_equ_pass_band_ @property def standard_delay_equ_pass_band_attenuation_value_db(self) -> str: """Filter standard delay equalizer cut Off attenuation in dB. + The default is ''3.01 dB''. Returns diff --git a/src/ansys/aedt/core/filtersolutions_core/export_to_aedt.py b/src/ansys/aedt/core/filtersolutions_core/export_to_aedt.py index e7757de29e7..1e1db5c7b8f 100644 --- a/src/ansys/aedt/core/filtersolutions_core/export_to_aedt.py +++ b/src/ansys/aedt/core/filtersolutions_core/export_to_aedt.py @@ -96,7 +96,8 @@ class SubstrateType(Enum): class SubstrateEr(Enum): - """Provides an enum of substrate relative permitivity (``Er``) for various materials.. + """Provides an enum of substrate relative permitivity (``Er``) for various materials. + The enum values represent common materials used in substrates and their associated ``Er`` value. **Attributes:** @@ -141,6 +142,7 @@ class SubstrateEr(Enum): class SubstrateResistivity(Enum): """Provides an enum of substrate resistivity types for various materials. + The enum values represent common materials used in substrates and their associated resistivity index. **Attributes:** @@ -569,8 +571,7 @@ def include_gt_gain_enabled(self, include_gt_gain_enabled: bool): @property def include_vgsl_enabled(self) -> bool: - """Flag indicating if the voltage gain source load report will be created upon - export to ``AEDT``. + """Flag indicating if the voltage gain source load report will be created upon export to ``AEDT``. Returns ------- @@ -588,8 +589,7 @@ def include_vgsl_enabled(self, include_vgsl_enabled: bool): @property def include_vgin_enabled(self) -> bool: - """Flag indicating if the voltage gain insertion report will be created upon - export to ``AEDT``. + """Flag indicating if the voltage gain insertion report will be created upon export to ``AEDT``. Returns ------- @@ -626,8 +626,7 @@ def include_input_return_loss_s11_enabled(self, include_input_return_loss_s11_en @property def include_forward_transfer_s21_enabled(self) -> bool: - """Flag indicating if the forward transfer gain report will be created upon - export to ``AEDT``. + """Flag indicating if the forward transfer gain report will be created upon export to ``AEDT``. Returns ------- @@ -740,8 +739,7 @@ def smith_plot_enabled(self, smith_plot_enabled: bool): @property def polar_plot_enabled(self) -> bool: - """Flag indicating if the polar report format in the - exported filter to ``AEDT`` is enabled. + """Flag indicating if the polar report format in the exported filter to ``AEDT`` is enabled. Returns ------- @@ -759,8 +757,7 @@ def polar_plot_enabled(self, polar_plot_enabled: bool): @property def table_data_enabled(self) -> bool: - """Flag indicating if the table data format in the - exported filter to ``AEDT`` is enabled. + """Flag indicating if the table data format in the exported filter to ``AEDT`` is enabled. Returns ------- @@ -778,8 +775,7 @@ def table_data_enabled(self, table_data_enabled: bool): @property def optimitrics_enabled(self) -> bool: - """Flag indicating if the optimitric parameters in the - exported filter to ``AEDT`` is enabled. + """Flag indicating if the optimitric parameters in the exported filter to ``AEDT`` is enabled. Returns ------- @@ -815,6 +811,7 @@ def optimize_after_export_enabled(self, optimize_after_export_enabled: bool): def export_design(self, export_format=None, export_creation_mode=None, export_path=None): """Export the design directly to ``AEDT` or generate a ``Python`` script for exporting. + When exporting to ``AEDT``, the design can either be appended to an existing project or overwrite it. When generating a Python script, the script is created and saved to the specified file location. @@ -861,12 +858,12 @@ def import_tuned_variables(self): @property def part_libraries(self) -> PartLibraries: """Part libraries selection. The default is ``LUMPED``. + The ``PartLibraries`` enum provides a list of all options. Returns ------- :enum:`PartLibraries` - """ index = c_int() part_libraries_list = list(PartLibraries) @@ -883,6 +880,7 @@ def part_libraries(self, library_type: PartLibraries): @property def interconnect_length_to_width_ratio(self) -> str: """Length to width ratio of interconnect line. + The length to width ratio is a measure of the proportion between the length and width of the interconnect line. This ratio is important for determining the electrical characteristics of the interconnect, such as impedance and signal integrity. @@ -902,6 +900,7 @@ def interconnect_length_to_width_ratio(self, interconnect_length_to_width_ratio_ @property def interconnect_minimum_length_to_width_ratio(self) -> str: """Minimum length to width ratio of interconnect line. + The minimum length to width ratio is a measure of the smallest proportion between the length and width of the interconnect line that is allowed. This parameter is used to determine the minimum dimensions of interconnect lines for optimization purposes. @@ -925,6 +924,7 @@ def interconnect_minimum_length_to_width_ratio(self, interconnect_minimum_length @property def interconnect_maximum_length_to_width_ratio(self) -> str: """Maximum length to width ratio of interconnect line. + The maximum length to width ratio is a measure of the largest proportion between the length and width of the interconnect line that is allowed. This parameter is used to determine the maximum dimensions of interconnect lines for optimization purposes. @@ -948,6 +948,7 @@ def interconnect_maximum_length_to_width_ratio(self, interconnect_maximum_length @property def interconnect_line_to_termination_width_ratio(self) -> str: """Line width to termination width ratio of interconnect line. + The line width to termination width ratio is a measure of the proportion between the width of the interconnect line and the width of its termination. This ratio is crucial for ensuring proper impedance matching and signal integrity at the points where the interconnect line connects to @@ -972,6 +973,7 @@ def interconnect_line_to_termination_width_ratio(self, interconnect_line_to_term @property def interconnect_minimum_line_to_termination_width_ratio(self) -> str: """Minimum line width to termination width ratio of interconnect line. + The minimum line width to termination width ratio is a measure of the smallest proportion between the width of the interconnect line and the width of its termination that is allowed. This parameter is used to determine the minimum dimensions of interconnect lines for optimization purposes. @@ -997,6 +999,7 @@ def interconnect_minimum_line_to_termination_width_ratio( @property def interconnect_maximum_line_to_termination_width_ratio(self) -> str: """Maximum line width to termination width ratio of interconnect line. + The maximum line width to termination width ratio is a measure of the largest proportion between the width of the interconnect line and the width of its termination that is allowed. This parameter is used to determine the maximum dimensions of interconnect lines for optimization purposes. @@ -1022,6 +1025,7 @@ def interconnect_maximum_line_to_termination_width_ratio( @property def interconnect_length_value(self) -> str: """Interconnect physical length value. + The interconnect physical length value represents the actual length of the interconnect line in the design. This value is crucial for determining the electrical characteristics of the interconnect, such as signal delay, impedance, and potential signal loss. Accurate length measurements are essential for ensuring that the diff --git a/src/ansys/aedt/core/generic/configurations.py b/src/ansys/aedt/core/generic/configurations.py index ed36cf50666..909a79c2b12 100644 --- a/src/ansys/aedt/core/generic/configurations.py +++ b/src/ansys/aedt/core/generic/configurations.py @@ -1461,8 +1461,8 @@ def _export_materials(self, dict_out): @pyaedt_function_handler() def export_config(self, config_file=None, overwrite=False): """Export current design properties to a JSON or TOML file. - The sections to be exported are defined with ``configuration.options`` class. + The sections to be exported are defined with ``configuration.options`` class. Parameters ---------- diff --git a/src/ansys/aedt/core/generic/constants.py b/src/ansys/aedt/core/generic/constants.py index a3a388d894c..0598c66191c 100644 --- a/src/ansys/aedt/core/generic/constants.py +++ b/src/ansys/aedt/core/generic/constants.py @@ -143,8 +143,10 @@ def unit_system(units): def _resolve_unit_system(unit_system_1, unit_system_2, operation): - """Retrieve the unit string of an arithmetic operation on ``Variable`` objects. If no resulting unit system - is defined for a specific operation (in unit_system_operations), an empty string is returned + """Retrieve the unit string of an arithmetic operation on ``Variable`` objects. + + If no resulting unit system is defined for a specific operation (in unit_system_operations), + an empty string is returned. Parameters ---------- @@ -159,7 +161,6 @@ def _resolve_unit_system(unit_system_1, unit_system_2, operation): ------- str Unit system when successful, ``""`` when failed. - """ try: key = f"{unit_system_1}_{operation}_{unit_system_2}" diff --git a/src/ansys/aedt/core/generic/filesystem.py b/src/ansys/aedt/core/generic/filesystem.py index 534dcc2bc63..506b4a6fa07 100644 --- a/src/ansys/aedt/core/generic/filesystem.py +++ b/src/ansys/aedt/core/generic/filesystem.py @@ -91,9 +91,9 @@ def remove(self): logger.error(f"An error occurred while removing {self._scratch_path}") def copyfile(self, src_file, dst_filename=None): - """ - Copy a file to the scratch directory. The target filename is optional. - If omitted, the target file name is identical to the source file name. + """Copy a file to the scratch directory. + + The target filename is optional. If omitted, the target file name is identical to the source file name. Parameters ---------- @@ -104,12 +104,10 @@ def copyfile(self, src_file, dst_filename=None): in which case the destination file is given the same name as the source file. - Returns ------- dst_file : str Full path and file name of the copied file. - """ if dst_filename: dst_file = os.path.join(self.path, dst_filename) diff --git a/src/ansys/aedt/core/generic/settings.py b/src/ansys/aedt/core/generic/settings.py index 96e3825903b..02b6ed9f889 100644 --- a/src/ansys/aedt/core/generic/settings.py +++ b/src/ansys/aedt/core/generic/settings.py @@ -440,7 +440,9 @@ def use_lsf_scheduler(self, value): @property def lsf_aedt_command(self): - """Command to launch the task in the LSF Scheduler. The default is ``"ansysedt"``. + """Command to launch the task in the LSF Scheduler. + + The default is ``"ansysedt"``. This attribute is valid only on Linux systems running LSF Scheduler.""" return self.__lsf_aedt_command @@ -450,8 +452,9 @@ def lsf_aedt_command(self, value): @property def lsf_num_cores(self): - """Number of LSF cores. This attribute is valid only - on Linux systems running LSF Scheduler.""" + """Number of LSF cores. + + This attribute is valid only on Linux systems running LSF Scheduler.""" return self.__lsf_num_cores @lsf_num_cores.setter @@ -460,8 +463,9 @@ def lsf_num_cores(self, value): @property def lsf_ram(self): - """RAM allocated for the LSF job. This attribute is valid - only on Linux systems running LSF Scheduler.""" + """RAM allocated for the LSF job. + + This attribute is valid only on Linux systems running LSF Scheduler.""" return self.__lsf_ram @lsf_ram.setter @@ -641,8 +645,9 @@ def desktop_launch_timeout(self, value): @property def aedt_version(self): - """AEDT version in the form ``"2023.x"``. In AEDT 2022 R2 and later, - evaluating a bounding box by exporting a SAT file is disabled.""" + """AEDT version in the form ``"2023.x"``. + + In AEDT 2022 R2 and later, evaluating a bounding box by exporting a SAT file is disabled.""" return self.__aedt_version @aedt_version.setter diff --git a/src/ansys/aedt/core/hfss.py b/src/ansys/aedt/core/hfss.py index 51115afcfbb..2eaacfb7016 100644 --- a/src/ansys/aedt/core/hfss.py +++ b/src/ansys/aedt/core/hfss.py @@ -2644,7 +2644,6 @@ def assign_primary(self, assignment, u_start, u_end, reverse_v=False, coordinate def _create_pec_cap(self, sheet_name, obj_name, pecthick): """Create a PEC object to back a wave port. - Parameters ---------- sheet_name : str @@ -2658,7 +2657,6 @@ def _create_pec_cap(self, sheet_name, obj_name, pecthick): ------- bool ``True`` when successful, ``False`` when failed. - """ if isinstance(sheet_name, str) and isinstance(obj_name, cad.elements_3d.FacePrimitive): obj = obj_name.create_object() # Create face object of type cad.object_3d.Object3d from FacePrimitive @@ -3909,6 +3907,7 @@ def edit_source_from_file( window="hamming", ): """Edit a source from file data. + File data is a CSV containing either frequency data or time domain data that will be converted through FFT. Parameters @@ -3942,7 +3941,6 @@ def edit_source_from_file( ------- bool """ - if not assignment: self.osolution.LoadSourceWeights(input_file) return True diff --git a/src/ansys/aedt/core/maxwell.py b/src/ansys/aedt/core/maxwell.py index cf458e729f1..ea612a27ab3 100644 --- a/src/ansys/aedt/core/maxwell.py +++ b/src/ansys/aedt/core/maxwell.py @@ -2752,6 +2752,7 @@ def assign_layout_force( ): # type: (dict, str, str, str, bool) -> bool """Assign the layout force to a component in a Transient A-Phi solver. + To access layout component features the Beta option has to be enabled first. Parameters diff --git a/src/ansys/aedt/core/modeler/advanced_cad/oms.py b/src/ansys/aedt/core/modeler/advanced_cad/oms.py index fe3bf32d690..822c6c2454b 100644 --- a/src/ansys/aedt/core/modeler/advanced_cad/oms.py +++ b/src/ansys/aedt/core/modeler/advanced_cad/oms.py @@ -67,6 +67,7 @@ def __init__(self, cad_path): @pyaedt_function_handler() def create_building_roof(all_pos): """Generate a filled in polygon from outline. + Includes concave and convex shapes. Parameters diff --git a/src/ansys/aedt/core/modeler/advanced_cad/stackup_3d.py b/src/ansys/aedt/core/modeler/advanced_cad/stackup_3d.py index a15715ea766..70562bdcaed 100644 --- a/src/ansys/aedt/core/modeler/advanced_cad/stackup_3d.py +++ b/src/ansys/aedt/core/modeler/advanced_cad/stackup_3d.py @@ -187,6 +187,7 @@ def read_only_variable(self, value=True): class DuplicatedParametrizedMaterial(object): """Provides a class to duplicate a material and manage its duplication in PyAEDT and in AEDT. + For each material property a NamedVariable is created as attribute. Parameters @@ -1956,12 +1957,13 @@ def points_on_layer(self): class Patch(CommonObject, object): - """Patch Class in Stackup3D. Create a parametrized patch. It is preferable to use the add_patch method + """Patch Class in Stackup3D. Create a parametrized patch. + + It is preferable to use the add_patch method in the class Layer3D than directly the class constructor. Parameters ---------- - application : :class:`ansys.aedt.core.hfss.Hfss` HFSS design or project where the variable is to be created. frequency : float, None @@ -1990,7 +1992,6 @@ class Patch(CommonObject, object): Examples -------- - >>> from ansys.aedt.core import Hfss >>> from ansys.aedt.core.modeler.advanced_cad.stackup_3d import Stackup3D >>> hfss = Hfss() diff --git a/src/ansys/aedt/core/modeler/cad/components_3d.py b/src/ansys/aedt/core/modeler/cad/components_3d.py index 3525a46ceb8..65b609c779c 100644 --- a/src/ansys/aedt/core/modeler/cad/components_3d.py +++ b/src/ansys/aedt/core/modeler/cad/components_3d.py @@ -477,7 +477,9 @@ def target_coordinate_system(self, tCS): @pyaedt_function_handler() def delete(self): - """Delete the object. The project must be saved after the operation to update the list + """Delete the object. + + The project must be saved after the operation to update the list of names for user-defined components. References diff --git a/src/ansys/aedt/core/modeler/cad/elements_3d.py b/src/ansys/aedt/core/modeler/cad/elements_3d.py index 4ed7b4f483e..19735a69aa5 100644 --- a/src/ansys/aedt/core/modeler/cad/elements_3d.py +++ b/src/ansys/aedt/core/modeler/cad/elements_3d.py @@ -1201,8 +1201,9 @@ def __init__(self, primitives, name): @property def _oeditor(self): - """Pointer to the oEditor object in the AEDT API. This property is - intended primarily for use by FacePrimitive, EdgePrimitive, and + """Pointer to the oEditor object in the AEDT API. + + This property is intended primarily for use by FacePrimitive, EdgePrimitive, and VertexPrimitive child objects. Returns diff --git a/src/ansys/aedt/core/modeler/cad/object_3d.py b/src/ansys/aedt/core/modeler/cad/object_3d.py index 81ff98a148b..da875b90aa1 100644 --- a/src/ansys/aedt/core/modeler/cad/object_3d.py +++ b/src/ansys/aedt/core/modeler/cad/object_3d.py @@ -785,8 +785,9 @@ def vertices(self): @property def _oeditor(self): - """Pointer to the oEditor object in the AEDT API. This property is - intended primarily for use by FacePrimitive, EdgePrimitive, and + """Pointer to the oEditor object in the AEDT API. + + This property is intended primarily for use by FacePrimitive, EdgePrimitive, and VertexPrimitive child objects. Returns @@ -812,7 +813,6 @@ def surface_material_name(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty diff --git a/src/ansys/aedt/core/modeler/cad/polylines.py b/src/ansys/aedt/core/modeler/cad/polylines.py index 82283513241..fa04db8a79e 100644 --- a/src/ansys/aedt/core/modeler/cad/polylines.py +++ b/src/ansys/aedt/core/modeler/cad/polylines.py @@ -392,6 +392,7 @@ def end_point(self): def _update_segments_and_points(self): """Updates the self._segment_types and the self._positions from the history. + This internal method is called by properties ``points`` and ``segment_types``. It will be called only once after opening a new project, then the internal variables are maintained updated. @@ -1076,12 +1077,13 @@ def _get_point_slice_from_segment_id(self, segment_id, at_start=True): @pyaedt_function_handler() def _get_segment_id_from_point_n(self, pn, at_start, allow_inner_points=False): """Get the segment id for a given point index considering the segment types in the polyline. + If a segment cannot be found with the specified rules, the function returns False. Parameters ---------- pn : int - point number along the polyline + Point number along the polyline. at_start : bool If set to ``True`` the segment id that begins with the point pn is returned. If set to ``False`` the segment id that terminates with the point pn is returned. diff --git a/src/ansys/aedt/core/modeler/cad/primitives.py b/src/ansys/aedt/core/modeler/cad/primitives.py index 98837e613cd..3653d536159 100644 --- a/src/ansys/aedt/core/modeler/cad/primitives.py +++ b/src/ansys/aedt/core/modeler/cad/primitives.py @@ -1058,14 +1058,12 @@ def find_new_objects(self): @pyaedt_function_handler() def add_new_objects(self): - """Add objects that have been created in the modeler by - previous operations. + """Add objects that have been created in the modeler by previous operations. Returns ------- list List of added objects. - """ added_objects = [] objs_ids = {} @@ -1075,14 +1073,12 @@ def add_new_objects(self): @pyaedt_function_handler() def add_new_solids(self): - """Add objects that have been created in the modeler by - previous operations. + """Add objects that have been created in the modeler by previous operations. Returns ------- list List of added objects. - """ added_objects = [] @@ -1107,8 +1103,7 @@ def add_new_solids(self): @pyaedt_function_handler() def add_new_points(self): - """Add objects that have been created in the modeler by - previous operations. + """Add objects that have been created in the modeler by previous operations. Returns ------- @@ -5761,6 +5756,7 @@ def flatten_assembly(self): @pyaedt_function_handler(sheet_name="sheet", object_name="object") def wrap_sheet(self, sheet, object, imprinted=False): """Execute the sheet wrapping around an object. + If wrapping produces an unclassified operation it will be reverted. Parameters diff --git a/src/ansys/aedt/core/modeler/circuits/primitives_emit.py b/src/ansys/aedt/core/modeler/circuits/primitives_emit.py index fac37fcdc6b..ad762bf0bd1 100644 --- a/src/ansys/aedt/core/modeler/circuits/primitives_emit.py +++ b/src/ansys/aedt/core/modeler/circuits/primitives_emit.py @@ -1039,8 +1039,7 @@ def props(self): @property def enabled(self): - """Returns ''True'' if the node is enabled and - ''False'' if the node is disabled. + """Returns ''True'' if the node is enabled and ''False'' if the node is disabled. Parameters ---------- @@ -1108,8 +1107,9 @@ def get_band_power_level(self, units=""): @pyaedt_function_handler() def set_channel_sampling(self, sampling_type="Uniform", percentage=None, max_channels=None, seed=None): - """Set the channel sampling for the radio. If a percentage is - specified, then it will be used instead of max_channels. + """Set the channel sampling for the radio. + + If a percentage is specified, then it will be used instead of max_channels. Parameters ---------- diff --git a/src/ansys/aedt/core/modeler/geometry_operators.py b/src/ansys/aedt/core/modeler/geometry_operators.py index 30428732bdf..0b8394c37f3 100644 --- a/src/ansys/aedt/core/modeler/geometry_operators.py +++ b/src/ansys/aedt/core/modeler/geometry_operators.py @@ -1741,10 +1741,12 @@ def orientation(p, q, r): @staticmethod @pyaedt_function_handler() def is_segment_intersecting_polygon(a, b, polygon): - """ - Determine if a segment defined by two points ``a`` and ``b`` intersects a polygon. + """Determine if a segment defined by two points ``a`` and ``b`` intersects a polygon. + Points on the vertices and on the polygon boundaries are not considered intersecting. + Parameters + ---------- a : List First point of the segment. List of ``[x, y]`` coordinates. b : List diff --git a/src/ansys/aedt/core/modeler/modeler_3d.py b/src/ansys/aedt/core/modeler/modeler_3d.py index f45ff3a54d2..2c60c11c2a7 100644 --- a/src/ansys/aedt/core/modeler/modeler_3d.py +++ b/src/ansys/aedt/core/modeler/modeler_3d.py @@ -1043,8 +1043,9 @@ def import_nastran( preview=False, merge_angle=1e-3, ): - """Import Nastran file into 3D Modeler by converting the faces to stl and reading it. The solids are - translated directly to AEDT format. + """Import Nastran file into 3D Modeler by converting the faces to stl and reading it. + + The solids are translated directly to AEDT format. Parameters ---------- diff --git a/src/ansys/aedt/core/modeler/pcb/object_3d_layout.py b/src/ansys/aedt/core/modeler/pcb/object_3d_layout.py index 5fbfb894923..ae12f30856f 100644 --- a/src/ansys/aedt/core/modeler/pcb/object_3d_layout.py +++ b/src/ansys/aedt/core/modeler/pcb/object_3d_layout.py @@ -305,6 +305,7 @@ def create_clearance_on_component(self, extra_soldermask_clearance=5e-3): @property def location(self): """Retrieve/Set the absolute location in model units. + Location is computed with combination of 3d Layout location and model center. Returns @@ -314,7 +315,6 @@ def location(self): References ---------- - >>> oEditor.GetPropertyValue """ if self.prim_type == "component": diff --git a/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py b/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py index cdad30d395a..a95c7b6e8e3 100644 --- a/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py +++ b/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py @@ -221,14 +221,14 @@ def _create_matrix_reduction(self, red_type, sources, matrix_name=None, join_nam @pyaedt_function_handler() def join_series(self, sources, matrix_name=None, join_name=None): - """ + """Create matrix reduction by joining sources in series. Parameters ---------- sources : list Sources to be included in matrix reduction. matrix_name : str, optional - name of the string to create. + Name of the string to create. join_name : str, optional Name of the Join operation. @@ -244,14 +244,14 @@ def join_series(self, sources, matrix_name=None, join_name=None): @pyaedt_function_handler() def join_parallel(self, sources, matrix_name=None, join_name=None): - """ + """Create matrix reduction by joining sources in parallel. Parameters ---------- sources : list Sources to be included in matrix reduction. matrix_name : str, optional - name of the string to create. + Name of the matrix to create. join_name : str, optional Name of the Join operation. diff --git a/src/ansys/aedt/core/modules/material.py b/src/ansys/aedt/core/modules/material.py index 160c1ef3777..5888fa9c304 100644 --- a/src/ansys/aedt/core/modules/material.py +++ b/src/ansys/aedt/core/modules/material.py @@ -205,8 +205,7 @@ def get_defaultvalue(cls, aedtname): class SurfMatProperties(object): - """Contains a list of constant names for all surface materials with - mappings to their internal XML names. + """Contains a list of constant names for all surface materials with mappings to their internal XML names. Internal names are used in scripts, and XML names are used in the XML syntax. """ diff --git a/src/ansys/aedt/core/modules/solve_setup.py b/src/ansys/aedt/core/modules/solve_setup.py index 8e0d590accc..de9ec06d0ca 100644 --- a/src/ansys/aedt/core/modules/solve_setup.py +++ b/src/ansys/aedt/core/modules/solve_setup.py @@ -312,6 +312,7 @@ def get_solution_data( sweep=None, ): """Get a simulation result from a solved setup and cast it in a ``SolutionData`` object. + Data to be retrieved from Electronics Desktop are any simulation results available in that specific simulation context. Most of the argument have some defaults which works for most of the ``Standard`` report quantities. @@ -362,7 +363,6 @@ def get_solution_data( References ---------- - >>> oModule.GetSolutionDataPerVariation Examples @@ -3683,6 +3683,7 @@ def add_eddy_current_sweep( @pyaedt_function_handler() def enable_control_program(self, control_program_path, control_program_args=" ", call_after_last_step=False): """Enable control program option is solution setup. + Provide externally created executable files, or Python (*.py) scripts that are called after each time step, and allow you to control the source input, circuit elements, mechanical quantities, time step, and stopping criteria, based on the updated solutions. diff --git a/src/ansys/aedt/core/q3d.py b/src/ansys/aedt/core/q3d.py index dc1ecd6fd5c..5bfc1345acb 100644 --- a/src/ansys/aedt/core/q3d.py +++ b/src/ansys/aedt/core/q3d.py @@ -1558,6 +1558,7 @@ def assign_net(self, assignment, net_name=None, net_type="Signal"): @pyaedt_function_handler(objects="assignment", axisdir="direction") def source(self, assignment=None, direction=0, name=None, net_name=None, terminal_type="voltage"): """Generate a source on a face of an object or a group of faces or face ids. + The face ID is selected based on the axis direction. It is the face that has the maximum/minimum in this axis direction. @@ -1581,7 +1582,6 @@ def source(self, assignment=None, direction=0, name=None, net_name=None, termina References ---------- - >>> oModule.AssignSource """ return self._assign_source_or_sink(assignment, direction, name, net_name, terminal_type, "Source") @@ -2024,7 +2024,9 @@ def create_setup(self, name="MySetupAuto", **kwargs): @pyaedt_function_handler() def assign_thin_conductor(self, assignment, material="copper", thickness=1, name=""): - """Assign a thin conductor to a sheet. The method accepts both a sheet name or a face id. + """Assign a thin conductor to a sheet. + + The method accepts both a sheet name or a face id. If a face it is provided, then a sheet will be created and the boundary assigned to it. Parameters diff --git a/src/ansys/aedt/core/twinbuilder.py b/src/ansys/aedt/core/twinbuilder.py index a6bc5107cd3..8677f744df1 100644 --- a/src/ansys/aedt/core/twinbuilder.py +++ b/src/ansys/aedt/core/twinbuilder.py @@ -354,8 +354,10 @@ def set_sim_setup_parameter(self, variable, expression, analysis_name="TR"): @pyaedt_function_handler() def create_subsheet(self, name, design_name): - """Create a subsheet from a parent design. If the parent design does not exist, it will add at top level. Nested - subsheets are currently not supported. + """Create a subsheet from a parent design. + + If the parent design does not exist, it will add at top level. + Nested subsheets are currently not supported. Parameters ---------- diff --git a/src/ansys/aedt/core/visualization/advanced/touchstone_parser.py b/src/ansys/aedt/core/visualization/advanced/touchstone_parser.py index 5689a698f79..bc48aff3624 100644 --- a/src/ansys/aedt/core/visualization/advanced/touchstone_parser.py +++ b/src/ansys/aedt/core/visualization/advanced/touchstone_parser.py @@ -409,6 +409,7 @@ def plot_fext_xtalk_losses(self, tx_prefix, rx_prefix, skip_same_index_couples=T @pyaedt_function_handler() def get_worst_curve(self, freq_min=None, freq_max=None, worst_is_higher=True, curve_list=None, plot=True): """Analyze a solution data object with multiple curves and find the worst curve. + Take the mean of the magnitude over the frequency range. Parameters diff --git a/src/ansys/aedt/core/visualization/post/post_common_3d.py b/src/ansys/aedt/core/visualization/post/post_common_3d.py index fe4d8ee3f88..166ed5ab9f6 100644 --- a/src/ansys/aedt/core/visualization/post/post_common_3d.py +++ b/src/ansys/aedt/core/visualization/post/post_common_3d.py @@ -1513,7 +1513,9 @@ def create_fieldplot_nets( self, nets, quantity, setup=None, layers=None, plot_on_surface=True, intrinsics=None, name=None ): # type: (list, str, str, list, bool, dict, str) -> FieldPlot - """Create a field plot of stacked layer plot based on a net selections. Layers can be used as a filter. + """Create a field plot of stacked layer plot based on a net selections. + + Layers can be used as a filter. Dielectrics will be excluded from the plot. This plot is valid from AEDT 2023 R2 and later in HFSS 3D Layout. It works when a layout components in 3d modeler is used. From a68479bad0c7c1c9b779dcdd7820dbbe2dced395 Mon Sep 17 00:00:00 2001 From: Samuel Lopez <85613111+Samuelopez-ansys@users.noreply.github.com> Date: Tue, 17 Dec 2024 14:43:30 +0100 Subject: [PATCH 04/11] FEAT: Icepak analysis class (#5574) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sébastien Morais <146729917+SMoraisAnsys@users.noreply.github.com> --- doc/source/Getting_started/ClientServer.rst | 2 +- doc/source/Getting_started/versioning.rst | 2 +- .../aedt/core/application/analysis_3d.py | 5 +- .../aedt/core/application/analysis_icepak.py | 252 +++++++++++++ src/ansys/aedt/core/application/design.py | 332 ++++++++++-------- src/ansys/aedt/core/icepak.py | 83 +---- src/ansys/aedt/core/modeler/cad/primitives.py | 2 +- .../aedt/core/modeler/cad/primitives_3d.py | 16 +- src/ansys/aedt/core/rpc/rpyc_services.py | 2 +- .../core/visualization/plot/matplotlib.py | 2 +- .../core/visualization/post/field_summary.py | 2 +- .../visualization/post/fields_calculator.py | 2 +- .../core/visualization/post/post_3dlayout.py | 2 +- .../core/visualization/post/post_circuit.py | 4 +- .../core/visualization/post/post_common_3d.py | 6 +- .../core/visualization/post/post_icepak.py | 2 +- .../aedt/core/visualization/post/spisim.py | 2 +- .../aedt/core/visualization/report/emi.py | 4 +- .../aedt/core/visualization/report/eye.py | 4 +- .../core/visualization/report/standard.py | 4 +- .../core/workflows/hfss3dlayout/cutout.py | 2 +- .../workflows/hfss3dlayout/parametrize_edb.py | 2 +- .../core/workflows/project/configure_edb.py | 2 +- .../workflows/project/kernel_converter.py | 2 +- tests/system/general/test_08_Primitives3D.py | 2 +- 25 files changed, 476 insertions(+), 264 deletions(-) create mode 100644 src/ansys/aedt/core/application/analysis_icepak.py diff --git a/doc/source/Getting_started/ClientServer.rst b/doc/source/Getting_started/ClientServer.rst index 712a1bb6cb9..986875c6b01 100644 --- a/doc/source/Getting_started/ClientServer.rst +++ b/doc/source/Getting_started/ClientServer.rst @@ -14,7 +14,7 @@ In AEDT 2022 R2 and later, PyAEDT fully supports the gRPC API (except for EDB): # Launch the latest installed version of AEDT in graphical mode. from ansys.aedt.core import Hfss - from ansys.aedt.core import settings + from ansys.aedt.core.generic.settings import settings settings.use_grpc_api=True hfss = Hfss(machine="fullmachinename", port=portnumber) diff --git a/doc/source/Getting_started/versioning.rst b/doc/source/Getting_started/versioning.rst index f0c872ffa64..f8f35e0912a 100644 --- a/doc/source/Getting_started/versioning.rst +++ b/doc/source/Getting_started/versioning.rst @@ -36,7 +36,7 @@ This interface works only on Windows and uses .NET COM objects. .. code:: python - from ansys.aedt.core import settings + from ansys.aedt.core.generic.settings import settings settings.use_grpc_api = False diff --git a/src/ansys/aedt/core/application/analysis_3d.py b/src/ansys/aedt/core/application/analysis_3d.py index a44688fe193..59ad9f755a0 100644 --- a/src/ansys/aedt/core/application/analysis_3d.py +++ b/src/ansys/aedt/core/application/analysis_3d.py @@ -163,16 +163,15 @@ def mesh(self): Returns ------- - :class:`ansys.aedt.core.modules.mesh.Mesh` or :class:`ansys.aedt.core.modules.mesh_icepak.IcepakMesh` + :class:`ansys.aedt.core.modules.mesh.Mesh` Mesh object. """ if self._mesh is None and self._odesign: self.logger.reset_timer() from ansys.aedt.core.modules.mesh import Mesh - from ansys.aedt.core.modules.mesh_icepak import IcepakMesh - self._mesh = IcepakMesh(self) if self.design_type == "Icepak" else Mesh(self) + self._mesh = Mesh(self) self.logger.info_timer("Mesh class has been initialized!") return self._mesh diff --git a/src/ansys/aedt/core/application/analysis_icepak.py b/src/ansys/aedt/core/application/analysis_icepak.py new file mode 100644 index 00000000000..d4c1400bce6 --- /dev/null +++ b/src/ansys/aedt/core/application/analysis_icepak.py @@ -0,0 +1,252 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2021 - 2024 ANSYS, Inc. and/or its affiliates. +# SPDX-License-Identifier: MIT +# +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +from typing import Optional +from typing import Union + +from ansys.aedt.core.application.analysis_3d import FieldAnalysis3D +from ansys.aedt.core.application.design import DesignSettingsManipulation +from ansys.aedt.core.generic.configurations import ConfigurationsIcepak +from ansys.aedt.core.generic.settings import settings +from ansys.aedt.core.modules.boundary.icepak_boundary import BoundaryDictionary + + +class FieldAnalysisIcepak(FieldAnalysis3D, object): + """Manages Icepak field analysis setup. + + This class is automatically initialized by an application call from one Icepak. + See the application function for parameter definitions. + + Parameters + ---------- + application : str + 3D application that is to initialize the call. + project : str, optional + Name of the project to select or the full path to the project + or AEDTZ archive to open. The default is ``None``, in which + case an attempt is made to get an active project. If no + projects are present, an empty project is created. + design : str, optional + Name of the design to select. The default is ``None``, in + which case an attempt is made to get an active design. If no + designs are present, an empty design is created. + solution_type : str, optional + Solution type to apply to the design. The default is + ``None``, in which case the default type is applied. + setup : str, optional + Name of the setup to use as the nominal. The default is + ``None``, in which case the active setup is used or + nothing is used. + version : str, int, float, optional + Version of AEDT to use. The default is ``None``, in which case + the active version or latest installed version is used. + non_graphical : bool, optional + Whether to run AEDT in non-graphical mode. The default + is ``False``, in which case AEDT is launched in the graphical mode. + new_desktop : bool, optional + Whether to launch an instance of AEDT in a new thread, even if + another instance of the ``specified_version`` is active on the + machine. The default is ``False``. + close_on_exit : bool, optional + Whether to release AEDT on exit. The default is ``False``. + student_version : bool, optional + Whether to enable the student version of AEDT. The default + is ``False``. + aedt_process_id : int, optional + Only used when ``new_desktop = False``, specifies by process ID which instance + of Electronics Desktop to point PyAEDT at. + remove_lock : bool, optional + Whether to remove lock to project before opening it or not. + The default is ``False``, which means to not unlock + the existing project if needed and raise an exception. + """ + + def __init__( + self, + application: str, + project: str, + design: str, + solution_type: str, + setup: Optional[str] = None, + version: Optional[Union[str, int, float]] = None, + non_graphical: bool = False, + new_desktop: bool = False, + close_on_exit: bool = False, + student_version=False, + machine: str = "", + port: int = 0, + aedt_process_id: Optional[int] = None, + remove_lock: bool = False, + ): + FieldAnalysis3D.__init__( + self, + application, + project, + design, + solution_type, + setup, + version, + non_graphical, + new_desktop, + close_on_exit, + student_version, + machine, + port, + aedt_process_id, + remove_lock=remove_lock, + ) + + self.design_settings.manipulate_inputs = IcepakDesignSettingsManipulation(self) + self._mesh = None + self._post = None + self._monitor = None + self._configurations = ConfigurationsIcepak(self) + if not settings.lazy_load: + self._mesh = self.mesh + self._post = self.post + self._monitor = self.monitor + + @property + def post(self): + """Icepak post processor. + + Returns + ------- + :class:`ansys.aedt.core.visualization.post.post_icepak.PostProcessorIcepak` + PostProcessor object. + """ + if self._post is None and self._odesign: + from ansys.aedt.core.visualization.post import post_processor + + self._post = post_processor(self) + return self._post + + @property + def mesh(self): + """Mesh. + + Returns + ------- + :class:`ansys.aedt.core.modules.mesh_icepak.IcepakMesh` + Mesh object. + """ + if self._mesh is None and self._odesign: + self.logger.reset_timer() + + from ansys.aedt.core.modules.mesh_icepak import IcepakMesh + + self._mesh = IcepakMesh(self) + self.logger.info_timer("Mesh class has been initialized!") + return self._mesh + + @property + def monitor(self): + """Property to handle monitor objects. + + Returns + ------- + :class:`ansys.aedt.core.modules.monitor_icepak.Monitor` + """ + if self._monitor is None: + from ansys.aedt.core.visualization.post.monitor_icepak import Monitor + + self._monitor = Monitor(self) + + self._monitor._delete_removed_monitors() # force update. some operations may delete monitors + return self._monitor + + +class IcepakDesignSettingsManipulation(DesignSettingsManipulation): + """Manages Icepak design settings. + + This class provides methods to modify specific design settings like ambient temperature, + gauge pressure, and gravity vector. The settings are managed through key-value pairs + and validated based on specific rules for each key. + + Parameters + ---------- + app : FieldAnalysisIcepak + Icepak application that is to initialize the call. + """ + + def __init__(self, app): + self.app = app + + def execute(self, k, v) -> str: + """ + Modify the design settings for the given key with the specified value. + + Handles specific keys like ``"AmbTemp"``, ``"AmbRadTemp"``, ``"AmbGaugePressure"``, and ``"GravityVec"``, + applying custom logic to validate and format the values before assignment. + + Parameters + ---------- + k : str + The design setting key to modify. + v: float, int, str + The value to assign to the setting. The expected type and format depend on the key. + Returns + ------- + str + Updated value after processing, or an error message if the operation fails. + """ + + if k in ["AmbTemp", "AmbRadTemp"]: + if k == "AmbTemp" and isinstance(v, (dict, BoundaryDictionary)): + self.app.logger.error("Failed. Use `edit_design_settings` function.") + return self.app.design_settings["AmbTemp"] + # FIXME: Bug in native API. Uncomment when fixed + # if not self.solution_type == "Transient": + # self.logger.error("Transient assignment is supported only in transient designs.") + # return False + # ambtemp = getattr(self, "_parse_variation_data")( + # "AmbientTemperature", + # "Transient", + # variation_value=v["Values"], + # function=v["Function"], + # ) + # if ambtemp is not None: + # return ambtemp + # else: + # self.logger.error("Transient dictionary is not valid.") + # return False + else: + return self.app.value_with_units(v, "cel") + elif k == "AmbGaugePressure": + return self.app.value_with_units(v, "n_per_meter_sq") + elif k == "GravityVec": + if isinstance(v, (float, int)): + self.app.design_settings["GravityDir"] = ["Positive", "Negative"][v // 3] + v = f'Global::{["X", "Y", "Z"][v - v // 3 * 3]}' + return v + else: + if len(v.split("::")) == 1 and len(v) < 3: + if v.startswith("+") or v.startswith("-"): + self.app.design_settings["GravityDir"] = ["Positive", "Negative"][int(v.startswith("-"))] + v = v[-1] + return f"Global::{v}" + else: + return v + else: + return v diff --git a/src/ansys/aedt/core/application/design.py b/src/ansys/aedt/core/application/design.py index 67c5b19daf2..5598bed480a 100644 --- a/src/ansys/aedt/core/application/design.py +++ b/src/ansys/aedt/core/application/design.py @@ -43,7 +43,12 @@ import sys import threading import time +from typing import Any +from typing import Dict from typing import List +from typing import Optional +from typing import Tuple +from typing import Union import warnings from ansys.aedt.core.application.aedt_objects import AedtObjects @@ -86,7 +91,15 @@ import base64 -def load_aedt_thread(project_path): +def load_aedt_thread(project_path) -> None: + """ + Load an AEDT file in a separate thread and update project settings. + + Parameters + ---------- + project_path : str + Path to the AEDT project file. + """ pp = load_entire_aedt_file(project_path) inner_project_settings.properties[os.path.normpath(project_path)] = pp inner_project_settings.time_stamp = os.path.getmtime(project_path) @@ -95,7 +108,7 @@ def load_aedt_thread(project_path): class Design(AedtObjects): """Contains all functions and objects connected to the active project and design. - This class is inherited in the caller application and is accessible through it (for + This class is inherited in the caller application and is accessible through it for example, ``hfss.method_name``. Parameters @@ -141,8 +154,110 @@ class Design(AedtObjects): the existing project if needed and raise an exception. """ + def __init__( + self, + design_type: str, + project_name: Optional[str] = None, + design_name: Optional[str] = None, + solution_type: Optional[str] = None, + version: Optional[Union[str, int, float]] = None, + non_graphical: bool = False, + new_desktop: bool = False, + close_on_exit: bool = False, + student_version: bool = False, + machine: str = "", + port: int = 0, + aedt_process_id: Optional[int] = None, + ic_mode: Optional[bool] = None, + remove_lock: bool = False, + ): + self._design_name: Optional[str] = None + self._project_name: Optional[str] = None + self._project_path: Optional[str] = None + self.__t: Optional[threading.Thread] = None + if ( + project_name + and os.path.exists(project_name) + and (os.path.splitext(project_name)[1] == ".aedt" or os.path.splitext(project_name)[1] == ".a3dcomp") + ): + self.__t = threading.Thread(target=load_aedt_thread, args=(project_name,), daemon=True) + self.__t.start() + self._init_variables() + self._ic_mode: Optional[bool] = ic_mode + self._design_type: str = design_type + self.last_run_log: str = "" + self.last_run_job: str = "" + self._design_dictionary: Optional[Dict] = None + self._project_dictionary: Dict = {} + self._boundaries: Dict = {} + self._project_datasets: List = [] + self._design_datasets: List = [] + self.close_on_exit: bool = close_on_exit + self._desktop_class = None + self._desktop_class = _init_desktop_from_design( + version, + non_graphical, + new_desktop, + close_on_exit, + student_version, + machine, + port, + aedt_process_id, + ) + self._global_logger = self._desktop_class.logger + self._logger = self._desktop_class.logger + + self.student_version = self._desktop_class.student_version + if self.student_version: + settings.disable_bounding_box_sat = True + + self._mttime: Optional[float] = None + self._desktop = self._desktop_class.odesktop + self._desktop_install_dir: Optional[str] = settings.aedt_install_dir + self._odesign: Optional[Any] = None + self._oproject: Optional[Any] = None + + if design_type == "HFSS": + self.design_solutions = HFSSDesignSolution(None, design_type, self._aedt_version) + elif design_type == "Icepak": + self.design_solutions = IcepakDesignSolution(None, design_type, self._aedt_version) + elif design_type == "Maxwell 2D": + self.design_solutions = Maxwell2DDesignSolution(None, design_type, self._aedt_version) + elif design_type == "RMxprtSolution" or design_type == "ModelCreation": + self.design_solutions = RmXprtDesignSolution(None, design_type, self._aedt_version) + else: + self.design_solutions = DesignSolution(None, design_type, self._aedt_version) + self.design_solutions._solution_type = solution_type + + self._temp_solution_type: Optional[str] = solution_type + self._remove_lock: bool = remove_lock + self.oproject: Optional[str] = project_name + self.odesign: Optional[str] = design_name + + self._logger.oproject = self.oproject + self._logger.odesign = self.odesign + AedtObjects.__init__(self, self._desktop_class, self.oproject, self.odesign, is_inherithed=True) + self.logger.info("Aedt Objects correctly read") + if not self.__t and not settings.lazy_load and os.path.exists(self.project_file): + self.__t = threading.Thread(target=load_aedt_thread, args=(self.project_file,), daemon=True) + self.__t.start() + + self._variable_manager = VariableManager(self) + self._project_datasets = [] + self._design_datasets = [] + + if self._design_type not in ["Maxwell Circuit", "Circuit Netlist"]: + self.design_settings = DesignSettings(self) + @property - def _pyaedt_details(self): + def _pyaedt_details(self) -> Dict[str, str]: + """Retrieve detailed session information for PyAEDT. + + Returns + ------- + dict + Session details including. + """ import platform from ansys.aedt.core import __version__ as pyaedt_version @@ -164,7 +279,7 @@ def _pyaedt_details(self): _p_dets["AEDT GRPC Port"] = self.desktop_class.port return _p_dets - def __str__(self): + def __str__(self) -> str: return "\n".join( [ f"{each_name}:".ljust(25) + f"{each_attr}".ljust(25) @@ -172,7 +287,7 @@ def __str__(self): ] ) - def __exit__(self, ex_type, ex_value, ex_traceback): + def __exit__(self, ex_type, ex_value, ex_traceback) -> None: if ex_type: exception_to_desktop(ex_value, ex_traceback) if self._desktop_class._connected_app_instances > 0: # pragma: no cover @@ -185,25 +300,37 @@ def __enter__(self): # pragma: no cover return self @pyaedt_function_handler() - def __getitem__(self, variable_name): + def __getitem__(self, variable_name: str) -> str: return self.variable_manager[variable_name].expression @pyaedt_function_handler() - def __setitem__(self, variable_name, variable_value): + def __setitem__(self, variable_name: str, variable_value: Optional[Union[str, int, float]]) -> bool: self.variable_manager[variable_name] = variable_value return True @property - def info(self): + def info(self) -> Dict[str, str]: """Dictionary of the PyAEDT session information. Returns ------- dict + Dictionary containing session details. """ return self._pyaedt_details - def _init_design(self, project_name, design_name, solution_type=None): + def _init_design(self, project_name: str, design_name: str, solution_type: Optional[str] = None) -> None: + """Initializes a new design. + + Parameters + ---------- + project_name : str + The name of the project to create or load. + design_name : str + The name of the design to create or load. + solution_type : str, optional + The solution type for the design. + """ # calls the method from the application class self._init_from_design( project=project_name, @@ -218,97 +345,6 @@ def _init_design(self, project_name, design_name, solution_type=None): port=self._desktop_class.port, ) - def __init__( - self, - design_type, - project_name=None, - design_name=None, - solution_type=None, - version=None, - non_graphical=False, - new_desktop=False, - close_on_exit=False, - student_version=False, - machine="", - port=0, - aedt_process_id=None, - ic_mode=None, - remove_lock=False, - ): - self._design_name = None - self._project_name = None - self._project_path = None - self.__t = None - if ( - project_name - and os.path.exists(project_name) - and (os.path.splitext(project_name)[1] == ".aedt" or os.path.splitext(project_name)[1] == ".a3dcomp") - ): - self.__t = threading.Thread(target=load_aedt_thread, args=(project_name,), daemon=True) - self.__t.start() - self._init_variables() - self._ic_mode = ic_mode - self._design_type = design_type - self.last_run_log = "" - self.last_run_job = "" - self._design_dictionary = None - # Get Desktop from global Desktop Environment - self._project_dictionary = {} - self._boundaries = {} - self._project_datasets = {} - self._design_datasets = {} - self.close_on_exit = close_on_exit - self._desktop_class = None - self._desktop_class = _init_desktop_from_design( - version, - non_graphical, - new_desktop, - close_on_exit, - student_version, - machine, - port, - aedt_process_id, - ) - self._global_logger = self._desktop_class.logger - self._logger = self._desktop_class.logger - - self.student_version = self._desktop_class.student_version - if self.student_version: - settings.disable_bounding_box_sat = True - self._mttime = None - self._desktop = self._desktop_class.odesktop - - self._desktop_install_dir = settings.aedt_install_dir - self._odesign = None - self._oproject = None - if design_type == "HFSS": - self.design_solutions = HFSSDesignSolution(None, design_type, self._aedt_version) - elif design_type == "Icepak": - self.design_solutions = IcepakDesignSolution(None, design_type, self._aedt_version) - elif design_type == "Maxwell 2D": - self.design_solutions = Maxwell2DDesignSolution(None, design_type, self._aedt_version) - elif design_type == "RMxprtSolution" or design_type == "ModelCreation": - self.design_solutions = RmXprtDesignSolution(None, design_type, self._aedt_version) - else: - self.design_solutions = DesignSolution(None, design_type, self._aedt_version) - self.design_solutions._solution_type = solution_type - self._temp_solution_type = solution_type - self._remove_lock = remove_lock - self.oproject = project_name - self.odesign = design_name - self._logger.oproject = self.oproject - self._logger.odesign = self.odesign - AedtObjects.__init__(self, self._desktop_class, self.oproject, self.odesign, is_inherithed=True) - self.logger.info("Aedt Objects correctly read") - if not self.__t and not settings.lazy_load and os.path.exists(self.project_file): - self.__t = threading.Thread(target=load_aedt_thread, args=(self.project_file,), daemon=True) - self.__t.start() - self._variable_manager = VariableManager(self) - self._project_datasets = [] - self._design_datasets = [] - if self._design_type not in ["Maxwell Circuit", "Circuit Netlist"]: - self.design_settings = DesignSettings(self) - @property def desktop_class(self): """``Desktop`` class. @@ -320,24 +356,26 @@ def desktop_class(self): return self._desktop_class @property - def project_datasets(self): + def project_datasets(self) -> Dict[str, DataSet]: """Dictionary of project datasets. Returns ------- dict[str, :class:`ansys.aedt.core.application.variables.DataSet`] + Project datasets. """ if not self._project_datasets: self._project_datasets = self._get_project_datasets() return self._project_datasets @property - def design_datasets(self): + def design_datasets(self) -> Dict[str, DataSet]: """Dictionary of Design Datasets. Returns ------- dict[str, :class:`ansys.aedt.core.application.variables.DataSet`] + Design datasets. """ if not self._design_datasets: self._design_datasets = self._get_design_datasets() @@ -463,7 +501,7 @@ def boundaries(self) -> List[BoundaryObject]: return list(self._boundaries.values()) @property - def boundaries_by_type(self): + def boundaries_by_type(self) -> Dict[str, List[BoundaryObject]]: """Design boundaries by type. Returns @@ -479,7 +517,7 @@ def boundaries_by_type(self): return _dict_out @property - def ports(self): + def ports(self) -> List[str]: """Design excitations. Returns @@ -525,11 +563,11 @@ def odesktop(self): return self.desktop_class.odesktop @pyaedt_function_handler() - def __delitem__(self, key): + def __delitem__(self, key: str) -> None: """Implement destructor with array name or index.""" del self._variable_manager[key] - def _init_variables(self): + def _init_variables(self) -> None: self.__aedt_version = "" self._modeler = None self._post = None @@ -541,7 +579,7 @@ def _init_variables(self): self._mesh = None @property - def settings(self): + def settings(self) -> Dict: """Settings of the current Python/Pyaedt session.""" return settings @@ -556,7 +594,7 @@ def logger(self): return self._logger @property - def project_properties(self): + def project_properties(self) -> Dict[str, dict]: """Project properties. Returns @@ -595,7 +633,7 @@ def project_properties(self): return {} @property - def design_properties(self): + def design_properties(self) -> Dict[str, dict]: """Design properties. Returns @@ -618,7 +656,7 @@ def design_properties(self): return {} @property - def aedt_version_id(self): + def aedt_version_id(self) -> str: """AEDT version. Returns @@ -634,11 +672,11 @@ def aedt_version_id(self): return aedt_versions.get_version_env_variable(self._aedt_version) @property - def _aedt_version(self): + def _aedt_version(self) -> str: return self.desktop_class.aedt_version_id @property - def design_name(self): + def design_name(self) -> Optional[str]: """Design name. Returns @@ -672,7 +710,7 @@ def design_name(self): return self._design_name @design_name.setter - def design_name(self, new_name): + def design_name(self, new_name: str) -> None: if ";" in new_name: new_name = new_name.split(";")[1] @@ -695,7 +733,7 @@ def design_name(self, new_name): self._design_name = new_name @property - def design_list(self): + def design_list(self) -> List[str]: """Design list. Returns @@ -716,7 +754,7 @@ def design_list(self): return updateddeslist @property - def design_type(self): + def design_type(self) -> str: """Design type. Options are ``"Circuit Design"``, ``"Circuit Netlist"``, ``"Emit"``, ``"HFSS"``, @@ -734,7 +772,7 @@ def design_type(self): return self._design_type @property - def project_name(self): + def project_name(self) -> Optional[str]: """Project name. Returns @@ -760,7 +798,7 @@ def project_name(self): return None @property - def project_list(self): + def project_list(self) -> List[str]: """Project list. Returns @@ -776,7 +814,7 @@ def project_list(self): return list(self.odesktop.GetProjectList()) @property - def project_path(self): + def project_path(self) -> Optional[str]: """Project path. Returns @@ -794,7 +832,7 @@ def project_path(self): return self._project_path @property - def project_time_stamp(self): + def project_time_stamp(self) -> Union[int, float]: """Return Project time stamp.""" if os.path.exists(self.project_file): inner_project_settings.time_stamp = os.path.getmtime(self.project_file) @@ -803,13 +841,13 @@ def project_time_stamp(self): return inner_project_settings.time_stamp @property - def project_timestamp_changed(self): + def project_timestamp_changed(self) -> bool: """Return a bool if time stamp changed or not.""" old_time = inner_project_settings.time_stamp return old_time != self.project_time_stamp @property - def project_file(self): + def project_file(self) -> Optional[str]: """Project name and path. Returns @@ -822,7 +860,7 @@ def project_file(self): return os.path.join(self.project_path, self.project_name + ".aedt") @property - def lock_file(self): + def lock_file(self) -> Optional[str]: """Lock file. Returns @@ -835,7 +873,7 @@ def lock_file(self): return os.path.join(self.project_path, self.project_name + ".aedt.lock") @property - def results_directory(self): + def results_directory(self) -> Optional[str]: """Results directory. Returns @@ -848,7 +886,7 @@ def results_directory(self): return os.path.join(self.project_path, self.project_name + ".aedtresults") @property - def solution_type(self): + def solution_type(self) -> Optional[str]: """Solution type. Returns @@ -867,7 +905,7 @@ def solution_type(self): return None @solution_type.setter - def solution_type(self, soltype): + def solution_type(self, soltype: str) -> None: if self.design_solutions: if ( self.design_type == "HFSS" and self.design_solutions.solution_type == "Terminal" and soltype == "Modal" @@ -879,7 +917,7 @@ def solution_type(self, soltype): self.design_solutions.solution_type = soltype @property - def valid_design(self): + def valid_design(self) -> bool: """Valid design. Returns @@ -894,7 +932,7 @@ def valid_design(self): return False @property - def personallib(self): + def personallib(self) -> str: """PersonalLib directory. Returns @@ -910,7 +948,7 @@ def personallib(self): return self.desktop_class.personallib @property - def userlib(self): + def userlib(self) -> str: """UserLib directory. Returns @@ -926,7 +964,7 @@ def userlib(self): return self.desktop_class.userlib @property - def syslib(self): + def syslib(self) -> str: """SysLib directory. Returns @@ -942,7 +980,7 @@ def syslib(self): return self.desktop_class.syslib @property - def src_dir(self): + def src_dir(self) -> str: """Source directory for Python. Returns @@ -954,7 +992,7 @@ def src_dir(self): return os.path.dirname(os.path.realpath(__file__)) @property - def pyaedt_dir(self): + def pyaedt_dir(self) -> str: """PyAEDT directory. Returns @@ -966,7 +1004,7 @@ def pyaedt_dir(self): return os.path.realpath(os.path.join(self.src_dir, "..")) @property - def library_list(self): + def library_list(self) -> List[str]: """Library list. Returns @@ -978,7 +1016,7 @@ def library_list(self): return [self.syslib, self.userlib, self.personallib] @property - def temp_directory(self): + def temp_directory(self) -> str: """Path to the temporary directory. Returns @@ -990,7 +1028,7 @@ def temp_directory(self): return self.odesktop.GetTempDirectory() @property - def toolkit_directory(self): + def toolkit_directory(self) -> str: """Path to the toolkit directory. @@ -1022,7 +1060,7 @@ def toolkit_directory(self): return toolkit_directory @property - def working_directory(self): + def working_directory(self) -> str: """Path to the working directory. Returns @@ -1048,7 +1086,7 @@ def working_directory(self): return working_directory @property - def default_solution_type(self): + def default_solution_type(self) -> str: """Default solution type. Returns @@ -1060,7 +1098,7 @@ def default_solution_type(self): return solutions_defaults[self._design_type] @pyaedt_function_handler() - def _find_design(self): + def _find_design(self) -> Tuple[str, str]: activedes = None warning_msg = "" names = self.get_oo_name(self.oproject) @@ -1140,7 +1178,7 @@ def odesign(self): return self._odesign @odesign.setter - def odesign(self, des_name): + def odesign(self, des_name) -> None: if des_name: if self._assert_consistent_design_type(des_name) == des_name: self._insert_design(self._design_type, design_name=des_name) @@ -4245,11 +4283,11 @@ class DesignSettings: """ def __init__(self, app): - self._app = app - self.manipulate_inputs = None + self._app: Any = app + self.manipulate_inputs: Optional[DesignSettingsManipulation] = None @property - def design_settings(self): + def design_settings(self) -> Optional[Any]: """Design settings.""" try: return self._app.odesign.GetChildObject("Design Settings") @@ -4258,18 +4296,18 @@ def design_settings(self): return None @property - def available_properties(self): + def available_properties(self) -> List[str]: """Available properties names for the current design.""" return [prop for prop in self.design_settings.GetPropNames() if not prop.endswith("/Choices")] - def __repr__(self): + def __repr__(self) -> str: lines = ["{"] for prop in self.available_properties: lines.append(f"\t{prop}: {self.design_settings.GetPropValue(prop)}") lines.append("}") return "\n".join(lines) - def __setitem__(self, key, value): + def __setitem__(self, key: str, value: Any) -> Union[bool, None]: if key in self.available_properties: if self.manipulate_inputs is not None: value = self.manipulate_inputs.execute(key, value) @@ -4285,18 +4323,18 @@ def __setitem__(self, key, value): else: self._app.logger.error(f"{key} property is not available in design settings.") - def __getitem__(self, key): + def __getitem__(self, key: str) -> Optional[Any]: if key in self.available_properties: return self.design_settings.GetPropValue(key) else: self._app.logger.error(f"{key} property is not available in design settings.") return None - def __contains__(self, item): + def __contains__(self, item: str) -> bool: return item in self.available_properties class DesignSettingsManipulation: @abstractmethod - def execute(self, k, v): + def execute(self, k: str, v: Any) -> Any: pass diff --git a/src/ansys/aedt/core/icepak.py b/src/ansys/aedt/core/icepak.py index d63c755aa77..618ffa9ea2c 100644 --- a/src/ansys/aedt/core/icepak.py +++ b/src/ansys/aedt/core/icepak.py @@ -32,9 +32,7 @@ import warnings import ansys.aedt.core -from ansys.aedt.core.application.analysis_3d import FieldAnalysis3D -from ansys.aedt.core.application.design import DesignSettingsManipulation -from ansys.aedt.core.generic.configurations import ConfigurationsIcepak +from ansys.aedt.core.application.analysis_icepak import FieldAnalysisIcepak from ansys.aedt.core.generic.data_handlers import _arg2dict from ansys.aedt.core.generic.data_handlers import _dict2arg from ansys.aedt.core.generic.data_handlers import random_string @@ -61,10 +59,9 @@ from ansys.aedt.core.modules.boundary.layout_boundary import NativeComponentObject from ansys.aedt.core.modules.boundary.layout_boundary import NativeComponentPCB from ansys.aedt.core.modules.setup_templates import SetupKeys -from ansys.aedt.core.visualization.post.monitor_icepak import Monitor -class Icepak(FieldAnalysis3D): +class Icepak(FieldAnalysisIcepak): """Provides the Icepak application interface. This class allows you to connect to an existing Icepak design or create a @@ -187,7 +184,7 @@ def __init__( aedt_process_id=None, remove_lock=False, ): - FieldAnalysis3D.__init__( + FieldAnalysisIcepak.__init__( self, "Icepak", project, @@ -204,28 +201,10 @@ def __init__( aedt_process_id, remove_lock=remove_lock, ) - self._monitor = Monitor(self) - self._configurations = ConfigurationsIcepak(self) - self.design_settings.manipulate_inputs = IcepakDesignSettingsManipulation(self) def _init_from_design(self, *args, **kwargs): self.__init__(*args, **kwargs) - @property - def post(self): - """PostProcessor. - - Returns - ------- - :class:`ansys.aedt.core.visualization.post.post_icepak.PostProcessorIcepak` - PostProcessor object. - """ - if self._post is None and self._odesign: - from ansys.aedt.core.visualization.post import post_processor - - self._post = post_processor(self) - return self._post - @property def problem_type(self): """Problem type of the Icepak design. Options are ``"TemperatureAndFlow"``, ``"TemperatureOnly"``, @@ -254,17 +233,6 @@ def existing_analysis_sweeps(self): sweep_list.append(el + " : " + s_type) return sweep_list - @property - def monitor(self): - """Property to handle monitor objects. - - Returns - ------- - :class:`ansys.aedt.core.modules.monitor_icepak.Monitor` - """ - self._monitor._delete_removed_monitors() # force update. some operations may delete monitors - return self._monitor - @pyaedt_function_handler() def assign_grille( self, @@ -6479,48 +6447,3 @@ def clear_linked_data(self): return False else: return True - - -class IcepakDesignSettingsManipulation(DesignSettingsManipulation): - def __init__(self, app): - self.app = app - - def execute(self, k, v): - if k in ["AmbTemp", "AmbRadTemp"]: - if k == "AmbTemp" and isinstance(v, (dict, BoundaryDictionary)): - self.app.logger.error("Failed. Use `edit_design_settings` function.") - return self.app.design_settings["AmbTemp"] - # FIXME: Bug in native API. Uncomment when fixed - # if not self.solution_type == "Transient": - # self.logger.error("Transient assignment is supported only in transient designs.") - # return False - # ambtemp = getattr(self, "_parse_variation_data")( - # "AmbientTemperature", - # "Transient", - # variation_value=v["Values"], - # function=v["Function"], - # ) - # if ambtemp is not None: - # return ambtemp - # else: - # self.logger.error("Transient dictionary is not valid.") - # return False - else: - return self.app.value_with_units(v, "cel") - elif k == "AmbGaugePressure": - return self.app.value_with_units(v, "n_per_meter_sq") - elif k == "GravityVec": - if isinstance(v, (float, int)): - self.app.design_settings["GravityDir"] = ["Positive", "Negative"][v // 3] - v = f'Global::{["X", "Y", "Z"][v - v // 3 * 3]}' - return v - else: - if len(v.split("::")) == 1 and len(v) < 3: - if v.startswith("+") or v.startswith("-"): - self.app.design_settings["GravityDir"] = ["Positive", "Negative"][int(v.startswith("-"))] - v = v[-1] - return f"Global::{v}" - else: - return v - else: - return v diff --git a/src/ansys/aedt/core/modeler/cad/primitives.py b/src/ansys/aedt/core/modeler/cad/primitives.py index 3653d536159..fe5662c4834 100644 --- a/src/ansys/aedt/core/modeler/cad/primitives.py +++ b/src/ansys/aedt/core/modeler/cad/primitives.py @@ -213,7 +213,7 @@ class GeometryModeler(Modeler): """ @pyaedt_function_handler() - def __getitem__(self, partId): + def __getitem__(self, partId) -> Object3d: """Get the object ``Object3D`` for a given object ID or object name. Parameters diff --git a/src/ansys/aedt/core/modeler/cad/primitives_3d.py b/src/ansys/aedt/core/modeler/cad/primitives_3d.py index 1a01d819f0f..abc835c3b98 100644 --- a/src/ansys/aedt/core/modeler/cad/primitives_3d.py +++ b/src/ansys/aedt/core/modeler/cad/primitives_3d.py @@ -127,7 +127,7 @@ def create_box(self, origin, sizes, name=None, material=None, **kwargs): Returns ------- - bool, :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` + :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` or bool 3D object or ``False`` if it fails. References @@ -200,7 +200,7 @@ def create_cylinder(self, orientation, origin, radius, height, num_sides=0, name Returns ------- - bool, :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` + bool or :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` 3D object or ``False`` if it fails. References @@ -285,7 +285,7 @@ def create_polyhedron(self, orientation=None, center=(0.0, 0.0, 0.0), origin=(0. Returns ------- - bool, :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` + :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` or bool 3D object or ``False`` if it fails. References @@ -366,7 +366,7 @@ def create_cone(self, orientation, origin, bottom_radius, top_radius, height, na Returns ------- - bool, :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` + :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` or bool 3D object or ``False`` if it fails. References @@ -447,7 +447,7 @@ def create_sphere(self, origin, radius, name=None, material=None, **kwargs): Returns ------- - bool, :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` + :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` or bool 3D object or ``False`` if it fails. References @@ -518,7 +518,7 @@ def create_torus(self, origin, major_radius, minor_radius, axis=None, name=None, Returns ------- - bool, :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` + :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` or bool 3D object or ``False`` if it fails. References @@ -744,7 +744,7 @@ def create_rectangle(self, orientation, origin, sizes, name=None, material=None, Returns ------- - bool, :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` + :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` or bool 3D object or ``False`` if it fails. References @@ -1191,7 +1191,7 @@ def create_helix(self, assignment, origin, x_start_dir, y_start_dir, z_start_dir Returns ------- - bool, :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` + :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` or bool 3D object or ``False`` if it fails. References diff --git a/src/ansys/aedt/core/rpc/rpyc_services.py b/src/ansys/aedt/core/rpc/rpyc_services.py index f7b87be4bea..382d1f0894c 100644 --- a/src/ansys/aedt/core/rpc/rpyc_services.py +++ b/src/ansys/aedt/core/rpc/rpyc_services.py @@ -8,7 +8,7 @@ import sys import time -from ansys.aedt.core import generate_unique_name +from ansys.aedt.core.generic.general_methods import generate_unique_name from ansys.aedt.core.generic.general_methods import env_path from ansys.aedt.core.generic.settings import is_linux diff --git a/src/ansys/aedt/core/visualization/plot/matplotlib.py b/src/ansys/aedt/core/visualization/plot/matplotlib.py index 8ac19101409..6fd2ef9de77 100644 --- a/src/ansys/aedt/core/visualization/plot/matplotlib.py +++ b/src/ansys/aedt/core/visualization/plot/matplotlib.py @@ -27,8 +27,8 @@ import os import warnings -from ansys.aedt.core import settings from ansys.aedt.core.generic.general_methods import pyaedt_function_handler +from ansys.aedt.core.generic.settings import settings try: import numpy as np diff --git a/src/ansys/aedt/core/visualization/post/field_summary.py b/src/ansys/aedt/core/visualization/post/field_summary.py index 7cd4d98e5ab..d448abac347 100644 --- a/src/ansys/aedt/core/visualization/post/field_summary.py +++ b/src/ansys/aedt/core/visualization/post/field_summary.py @@ -36,8 +36,8 @@ import tempfile import warnings -from ansys.aedt.core import pyaedt_function_handler from ansys.aedt.core.generic.general_methods import open_file +from ansys.aedt.core.generic.general_methods import pyaedt_function_handler try: import pandas as pd diff --git a/src/ansys/aedt/core/visualization/post/fields_calculator.py b/src/ansys/aedt/core/visualization/post/fields_calculator.py index 218bbad8ad9..b45089740d5 100644 --- a/src/ansys/aedt/core/visualization/post/fields_calculator.py +++ b/src/ansys/aedt/core/visualization/post/fields_calculator.py @@ -26,7 +26,7 @@ import warnings import ansys.aedt.core -from ansys.aedt.core import generate_unique_name +from ansys.aedt.core.generic.general_methods import generate_unique_name from ansys.aedt.core.generic.general_methods import generate_unique_project_name from ansys.aedt.core.generic.general_methods import open_file from ansys.aedt.core.generic.general_methods import pyaedt_function_handler diff --git a/src/ansys/aedt/core/visualization/post/post_3dlayout.py b/src/ansys/aedt/core/visualization/post/post_3dlayout.py index cf47a90f200..31b08e0c9ec 100644 --- a/src/ansys/aedt/core/visualization/post/post_3dlayout.py +++ b/src/ansys/aedt/core/visualization/post/post_3dlayout.py @@ -24,8 +24,8 @@ from pathlib import Path import re -from ansys.aedt.core import settings from ansys.aedt.core.generic.general_methods import pyaedt_function_handler +from ansys.aedt.core.generic.settings import settings from ansys.aedt.core.visualization.post.post_common_3d import PostProcessor3D diff --git a/src/ansys/aedt/core/visualization/post/post_circuit.py b/src/ansys/aedt/core/visualization/post/post_circuit.py index eb596e62e53..ec367e7b998 100644 --- a/src/ansys/aedt/core/visualization/post/post_circuit.py +++ b/src/ansys/aedt/core/visualization/post/post_circuit.py @@ -26,9 +26,9 @@ import warnings -from ansys.aedt.core import generate_unique_name -from ansys.aedt.core import pyaedt_function_handler from ansys.aedt.core.generic.constants import unit_converter +from ansys.aedt.core.generic.general_methods import generate_unique_name +from ansys.aedt.core.generic.general_methods import pyaedt_function_handler from ansys.aedt.core.visualization.post.common import PostProcessorCommon try: diff --git a/src/ansys/aedt/core/visualization/post/post_common_3d.py b/src/ansys/aedt/core/visualization/post/post_common_3d.py index 166ed5ab9f6..2c487513871 100644 --- a/src/ansys/aedt/core/visualization/post/post_common_3d.py +++ b/src/ansys/aedt/core/visualization/post/post_common_3d.py @@ -36,13 +36,13 @@ import string import warnings -from ansys.aedt.core import generate_unique_name -from ansys.aedt.core import pyaedt_function_handler -from ansys.aedt.core import settings from ansys.aedt.core.application.variables import decompose_variable_value from ansys.aedt.core.generic.constants import unit_converter from ansys.aedt.core.generic.general_methods import check_and_download_file +from ansys.aedt.core.generic.general_methods import generate_unique_name from ansys.aedt.core.generic.general_methods import open_file +from ansys.aedt.core.generic.general_methods import pyaedt_function_handler +from ansys.aedt.core.generic.settings import settings from ansys.aedt.core.modeler.cad.elements_3d import FacePrimitive from ansys.aedt.core.visualization.plot.pyvista import ModelPlotter from ansys.aedt.core.visualization.post.common import PostProcessorCommon diff --git a/src/ansys/aedt/core/visualization/post/post_icepak.py b/src/ansys/aedt/core/visualization/post/post_icepak.py index b08e911ab2c..92a13db009c 100644 --- a/src/ansys/aedt/core/visualization/post/post_icepak.py +++ b/src/ansys/aedt/core/visualization/post/post_icepak.py @@ -34,7 +34,7 @@ import os import re -from ansys.aedt.core import generate_unique_name +from ansys.aedt.core.generic.general_methods import generate_unique_name from ansys.aedt.core.generic.general_methods import open_file from ansys.aedt.core.generic.general_methods import pyaedt_function_handler from ansys.aedt.core.generic.settings import settings diff --git a/src/ansys/aedt/core/visualization/post/spisim.py b/src/ansys/aedt/core/visualization/post/spisim.py index 92263064bcf..a682af2c15b 100644 --- a/src/ansys/aedt/core/visualization/post/spisim.py +++ b/src/ansys/aedt/core/visualization/post/spisim.py @@ -29,10 +29,10 @@ from struct import unpack import subprocess # nosec -from ansys.aedt.core import generate_unique_name from ansys.aedt.core.generic.aedt_versions import aedt_versions from ansys.aedt.core.generic.general_methods import env_value from ansys.aedt.core.generic.general_methods import generate_unique_folder_name +from ansys.aedt.core.generic.general_methods import generate_unique_name from ansys.aedt.core.generic.general_methods import open_file from ansys.aedt.core.generic.general_methods import pyaedt_function_handler from ansys.aedt.core.generic.settings import is_linux diff --git a/src/ansys/aedt/core/visualization/report/emi.py b/src/ansys/aedt/core/visualization/report/emi.py index 371c2842862..6b4eb1eb4f9 100644 --- a/src/ansys/aedt/core/visualization/report/emi.py +++ b/src/ansys/aedt/core/visualization/report/emi.py @@ -29,8 +29,8 @@ """ -from ansys.aedt.core import generate_unique_name -from ansys.aedt.core import pyaedt_function_handler +from ansys.aedt.core.generic.general_methods import generate_unique_name +from ansys.aedt.core.generic.general_methods import pyaedt_function_handler from ansys.aedt.core.visualization.report.common import CommonReport diff --git a/src/ansys/aedt/core/visualization/report/eye.py b/src/ansys/aedt/core/visualization/report/eye.py index e9c7bc4c434..68c9af68a30 100644 --- a/src/ansys/aedt/core/visualization/report/eye.py +++ b/src/ansys/aedt/core/visualization/report/eye.py @@ -30,8 +30,8 @@ """ import os -from ansys.aedt.core import generate_unique_name -from ansys.aedt.core import pyaedt_function_handler +from ansys.aedt.core.generic.general_methods import generate_unique_name +from ansys.aedt.core.generic.general_methods import pyaedt_function_handler from ansys.aedt.core.modeler.cad.elements_3d import BinaryTreeNode from ansys.aedt.core.visualization.report.common import CommonReport diff --git a/src/ansys/aedt/core/visualization/report/standard.py b/src/ansys/aedt/core/visualization/report/standard.py index 515545aee65..6e27c94ef34 100644 --- a/src/ansys/aedt/core/visualization/report/standard.py +++ b/src/ansys/aedt/core/visualization/report/standard.py @@ -30,8 +30,8 @@ """ import re -from ansys.aedt.core import generate_unique_name -from ansys.aedt.core import pyaedt_function_handler +from ansys.aedt.core.generic.general_methods import generate_unique_name +from ansys.aedt.core.generic.general_methods import pyaedt_function_handler from ansys.aedt.core.modeler.cad.elements_3d import BinaryTreeNode from ansys.aedt.core.visualization.report.common import CommonReport diff --git a/src/ansys/aedt/core/workflows/hfss3dlayout/cutout.py b/src/ansys/aedt/core/workflows/hfss3dlayout/cutout.py index 50be70465a9..3733783f6b8 100644 --- a/src/ansys/aedt/core/workflows/hfss3dlayout/cutout.py +++ b/src/ansys/aedt/core/workflows/hfss3dlayout/cutout.py @@ -25,7 +25,7 @@ import ansys.aedt.core from ansys.aedt.core import Hfss3dLayout -from ansys.aedt.core import generate_unique_name +from ansys.aedt.core.generic.general_methods import generate_unique_name import ansys.aedt.core.workflows.hfss3dlayout from ansys.aedt.core.workflows.misc import get_aedt_version from ansys.aedt.core.workflows.misc import get_arguments diff --git a/src/ansys/aedt/core/workflows/hfss3dlayout/parametrize_edb.py b/src/ansys/aedt/core/workflows/hfss3dlayout/parametrize_edb.py index c0b1e1409ef..ed53ddd96a0 100644 --- a/src/ansys/aedt/core/workflows/hfss3dlayout/parametrize_edb.py +++ b/src/ansys/aedt/core/workflows/hfss3dlayout/parametrize_edb.py @@ -25,7 +25,7 @@ import ansys.aedt.core from ansys.aedt.core import Hfss3dLayout -from ansys.aedt.core import generate_unique_name +from ansys.aedt.core.generic.general_methods import generate_unique_name import ansys.aedt.core.workflows.hfss3dlayout from ansys.aedt.core.workflows.misc import get_aedt_version from ansys.aedt.core.workflows.misc import get_arguments diff --git a/src/ansys/aedt/core/workflows/project/configure_edb.py b/src/ansys/aedt/core/workflows/project/configure_edb.py index 1a3530c13d2..382a67a160a 100644 --- a/src/ansys/aedt/core/workflows/project/configure_edb.py +++ b/src/ansys/aedt/core/workflows/project/configure_edb.py @@ -32,7 +32,7 @@ import PIL.ImageTk import ansys.aedt.core from ansys.aedt.core import Hfss3dLayout -from ansys.aedt.core import generate_unique_name +from ansys.aedt.core.generic.general_methods import generate_unique_name import ansys.aedt.core.workflows.hfss3dlayout from ansys.aedt.core.workflows.misc import get_aedt_version from ansys.aedt.core.workflows.misc import get_port diff --git a/src/ansys/aedt/core/workflows/project/kernel_converter.py b/src/ansys/aedt/core/workflows/project/kernel_converter.py index 5510632c83d..c14738d2f0c 100644 --- a/src/ansys/aedt/core/workflows/project/kernel_converter.py +++ b/src/ansys/aedt/core/workflows/project/kernel_converter.py @@ -32,11 +32,11 @@ from ansys.aedt.core import Icepak from ansys.aedt.core import Maxwell3d from ansys.aedt.core import Q3d -from ansys.aedt.core import settings from ansys.aedt.core.application.design_solutions import solutions_types from ansys.aedt.core.generic.design_types import get_pyaedt_app from ansys.aedt.core.generic.filesystem import search_files from ansys.aedt.core.generic.general_methods import generate_unique_name +from ansys.aedt.core.generic.settings import settings import ansys.aedt.core.workflows from ansys.aedt.core.workflows.misc import get_aedt_version from ansys.aedt.core.workflows.misc import get_arguments diff --git a/tests/system/general/test_08_Primitives3D.py b/tests/system/general/test_08_Primitives3D.py index bd7bd63febe..544fa53c2ea 100644 --- a/tests/system/general/test_08_Primitives3D.py +++ b/tests/system/general/test_08_Primitives3D.py @@ -28,8 +28,8 @@ from ansys.aedt.core import Icepak from ansys.aedt.core import Q2d -from ansys.aedt.core import generate_unique_name from ansys.aedt.core.generic.constants import AXIS +from ansys.aedt.core.generic.general_methods import generate_unique_name from ansys.aedt.core.generic.settings import is_linux from ansys.aedt.core.modeler.cad.components_3d import UserDefinedComponent from ansys.aedt.core.modeler.cad.object_3d import Object3d From c10d896f103af2722048528379a133eec6de7ed2 Mon Sep 17 00:00:00 2001 From: Samuel Lopez <85613111+Samuelopez-ansys@users.noreply.github.com> Date: Tue, 17 Dec 2024 16:16:33 +0100 Subject: [PATCH 05/11] FIX: Allow Optimetrics multi goals (#5583) Co-authored-by: mcapodif --- src/ansys/aedt/core/generic/data_handlers.py | 22 ++- src/ansys/aedt/core/generic/load_aedt_file.py | 10 +- .../aedt/core/modules/design_xploration.py | 133 ++++++++++-------- tests/system/general/test_11_Setup.py | 14 ++ 4 files changed, 117 insertions(+), 62 deletions(-) diff --git a/src/ansys/aedt/core/generic/data_handlers.py b/src/ansys/aedt/core/generic/data_handlers.py index 095c7482c0c..225507fb64b 100644 --- a/src/ansys/aedt/core/generic/data_handlers.py +++ b/src/ansys/aedt/core/generic/data_handlers.py @@ -127,7 +127,15 @@ def _dict2arg(d, arg_out): arg = ["NAME:" + k, v[0], v[1]] arg_out.append(arg) elif k == "Range": - if isinstance(v[0], (list, tuple)): + if isinstance(v[0], dict): + for rr in v: + arg_out.append("Range:=") + new_range = [] + for rk, ri in rr.items(): + new_range.append(rk + ":=") + new_range.append(ri) + arg_out.append(new_range) + elif isinstance(v[0], (list, tuple)): for e in v: arg_out.append(k + ":=") arg_out.append([i for i in e]) @@ -165,6 +173,18 @@ def _arg2dict(arg, dict_out): dict_out[arg[0][5:]].append(list(arg[1:])) else: dict_out[arg[0][5:]] = list(arg[1:]) + elif "NAME:Ranges" in arg[0]: + dict_out["Ranges"] = {"Range": []} + for el, val in enumerate(arg[1:]): + if val == "Range:=": + rr = {} + vals = arg[el + 2] + k = 0 + while k < len(vals): + rr[vals[k][:-2]] = vals[k + 1] + k += 2 + dict_out["Ranges"]["Range"].append(rr) + elif arg[0][:5] == "NAME:": top_key = arg[0][5:] dict_in = {} diff --git a/src/ansys/aedt/core/generic/load_aedt_file.py b/src/ansys/aedt/core/generic/load_aedt_file.py index ef7ec682755..4ba4ce73cf2 100644 --- a/src/ansys/aedt/core/generic/load_aedt_file.py +++ b/src/ansys/aedt/core/generic/load_aedt_file.py @@ -98,7 +98,7 @@ def load_keyword_in_aedt_file(filename, keyword, design_name=None): "Rotation", "PostProcessingCells", ] -_recognized_subkeys = ["simple(", "IDMap(", "WireSeg(", "PC("] +_recognized_subkeys = ["simple(", "IDMap(", "WireSeg(", "PC(", "Range("] # global variables _all_lines = [] @@ -201,6 +201,14 @@ def _decode_recognized_subkeys(sk, d): d["PC"] = [] d["PC"].append(pclist) return True + if sk.startswith(_recognized_subkeys[4]): + pclist = [i for i in sk.lstrip("Range(").rstrip(")").split(", ")] + if "Range" in d.keys(): + d["Range"].append(pclist) + else: + d["Range"] = [] + d["Range"].append(pclist) + return True return False diff --git a/src/ansys/aedt/core/modules/design_xploration.py b/src/ansys/aedt/core/modules/design_xploration.py index 125a05aedef..b6fe097b753 100644 --- a/src/ansys/aedt/core/modules/design_xploration.py +++ b/src/ansys/aedt/core/modules/design_xploration.py @@ -24,6 +24,9 @@ import copy import csv +from typing import Any +from typing import Dict +from typing import Optional from ansys.aedt.core.generic.data_handlers import _arg2dict from ansys.aedt.core.generic.data_handlers import _dict2arg @@ -45,15 +48,15 @@ class CommonOptimetrics(PropsManager, object): Parameters ---------- - p_app : - - name : - - dictinputs - + p_app : :class:`ansys.aedt.core.application.analysis.Analysis` + PyAEDT analysis instance. + name : str + Optimetrics setup name. + dictinputs : dict + Input setup parameters. optimtype : str - Type of the optimization. - + Type of the optimization. Available options are: ``"OptiParametric"``, ``"OptiDesignExplorer"`, + ``"OptiOptimization"``, ``"OptiSensitivity"``, ``"OptiStatistical"``, ``"OptiDXDOE"``, and ``"optiSLang"``. """ def __init__(self, p_app, name, dictinputs, optimtype): @@ -114,11 +117,20 @@ def __init__(self, p_app, name, dictinputs, optimtype): if self._app._is_object_oriented_enabled(): oparams = self.omodule.GetChildObject(self.name).GetCalculationInfo() oparam = [i for i in oparams[0]] - calculation = ["NAME:Goal"] - calculation.extend(oparam) - arg1 = {} - _arg2dict(calculation, arg1) - self.props["Goals"] = arg1 + idx = None + if oparam[0] in oparam[1:]: + idx = oparam[1:].index(oparam[0]) + 1 + if idx: + oparam = [["NAME:Goal"] + oparam[k : idx + k] for k in range(0, len(oparam), idx)] + else: + oparam = [["NAME:Goal"] + oparam] + + self.props["Goals"]["Goal"] = [] + for param in oparam: + arg1 = {} + _arg2dict(param, arg1) + self._get_setup_props(arg1) + self.props["Goals"]["Goal"].append(SetupProps(self, arg1["Goal"])) if inputd.get("Variables"): # pragma: no cover for var in inputd.get("Variables"): @@ -136,6 +148,16 @@ def __init__(self, p_app, name, dictinputs, optimtype): self.auto_update = True + def _get_setup_props(self, arg1: Dict[str, Any]) -> None: + for k, v in arg1.items(): + if isinstance(v, dict): + arg1[k] = SetupProps(self, v) + self._get_setup_props(v) + elif isinstance(v, list): + for idx, item in enumerate(v): + if isinstance(item, dict): + v[idx] = SetupProps(self, item) + @pyaedt_function_handler() def _get_context( self, @@ -155,17 +177,16 @@ def _get_context( did = 3 if domain != "Sweep": did = 1 - sweepdefinition = {} - sweepdefinition["ReportType"] = report_category + sweep_definition = {"ReportType": report_category} if not setup_sweep_name: setup_sweep_name = self._app.nominal_sweep - sweepdefinition["Solution"] = setup_sweep_name + sweep_definition["Solution"] = setup_sweep_name ctxt = {} if self._app.solution_type in ["TR", "AC", "DC"]: ctxt["SimValueContext"] = [did, 0, 2, 0, False, False, -1, 1, 0, 1, 1, "", 0, 0] setup_sweep_name = self._app.solution_type - sweepdefinition["Solution"] = setup_sweep_name + sweep_definition["Solution"] = setup_sweep_name elif self._app.solution_type in ["HFSS3DLayout"]: if context == "Differential Pairs": @@ -215,12 +236,12 @@ def _get_context( ctxt["PointCount"] = polyline_points else: ctxt = {"Domain": domain} - sweepdefinition["SimValueContext"] = ctxt - sweepdefinition["Calculation"] = expressions - sweepdefinition["Name"] = expressions - sweepdefinition["Ranges"] = {} + sweep_definition["SimValueContext"] = ctxt + sweep_definition["Calculation"] = expressions + sweep_definition["Name"] = expressions + sweep_definition["Ranges"] = {} if context and context in self._app.modeler.line_names and intrinsics and "Distance" not in intrinsics: - sweepdefinition["Ranges"]["Range"] = ("Var:=", "Distance", "Type:=", "a") + sweep_definition["Ranges"]["Range"] = ("Var:=", "Distance", "Type:=", "a") if not setup_sweep_name: setup_sweep_name = self._app.nominal_sweep if not setup_sweep_name: @@ -231,43 +252,35 @@ def _get_context( return False if intrinsics: for v, k in intrinsics.items(): + r = {} if not k: - r = ["Var:=", v, "Type:=", "a"] + r = {"Var": v, "Type": "a"} elif isinstance(k, tuple): - r = ["Var:=", v, "Type:=", "rd"] - r.append("Start:=") - r.append(k[0]) - r.append("Stop:=") - r.append(k[1]) - r.append("DiscreteValues:=") - r.append("") + r = {"Var": v, "Type": "rd", "Start": k[0], "Stop": k[1], "DiscreteValues": ""} elif isinstance(k, (list, str)): - r = ["Var:=", v, "Type:=", "d"] - r.append("DiscreteValues:=") - if isinstance(k, list): - r.append(",".join(k)) - else: - r.append(k) - - if not sweepdefinition["Ranges"]: - sweepdefinition["Ranges"]["Range"] = tuple(r) - elif isinstance(sweepdefinition["Ranges"]["Range"], list): - sweepdefinition["Ranges"]["Range"].append(tuple(r)) + r = {"Var": v, "Type": "d", "DiscreteValues": ",".join(k) if isinstance(k, list) else k} + r = SetupProps(self, r) + if not sweep_definition["Ranges"]: + sweep_definition["Ranges"]["Range"] = [r] + elif isinstance(sweep_definition["Ranges"]["Range"], list): + sweep_definition["Ranges"]["Range"].append(r) else: - sweepdefinition["Ranges"]["Range"] = [sweepdefinition["Ranges"]["Range"]] - sweepdefinition["Ranges"]["Range"].append(tuple(r)) + sweep_definition["Ranges"]["Range"] = [sweep_definition["Ranges"]["Range"]] + sweep_definition["Ranges"]["Range"].append(r) if is_goal: - sweepdefinition["Condition"] = condition - sweepdefinition["GoalValue"] = { + sweep_definition["Condition"] = condition + goal_value = { "GoalValueType": "Independent", "Format": "Real/Imag", "bG": ["v:=", f"[{goal_value};]"], } - sweepdefinition["Weight"] = f"[{goal_weight};]" - return sweepdefinition + goal_value = SetupProps(self, goal_value) + sweep_definition["GoalValue"] = goal_value + sweep_definition["Weight"] = f"[{goal_weight};]" + return sweep_definition @pyaedt_function_handler() - def update(self, update_dictionary=None): + def update(self, update_dictionary: Optional[Dict[str, Any]] = None) -> bool: """Update the setup based on stored properties. Parameters @@ -302,7 +315,7 @@ def update(self, update_dictionary=None): return True @pyaedt_function_handler() - def create(self): + def create(self) -> bool: """Create a setup. Returns @@ -395,7 +408,7 @@ def _add_calculation( optigoalname = "Goals" if "Goal" in self.props[optigoalname]: if type(self.props[optigoalname]["Goal"]) is not list: - self.props[optigoalname]["Goal"] = [self.props[optigoalname]["Goal"], sweepdefinition] + self.props[optigoalname]["Goal"] = [self.props[optigoalname]["Goal"], SetupProps(self, sweepdefinition)] else: self.props[optigoalname]["Goal"].append(sweepdefinition) else: @@ -534,16 +547,16 @@ def _activate_variable(self, variable_name): @pyaedt_function_handler(num_cores="cores", num_tasks="tasks", num_gpu="gpus") def analyze( self, - cores=1, - tasks=1, - gpus=0, - acf_file=None, - use_auto_settings=True, - solve_in_batch=False, - machine="localhost", - run_in_thread=False, - revert_to_initial_mesh=False, - ): + cores: int = 1, + tasks: int = 1, + gpus: int = 0, + acf_file: str = None, + use_auto_settings: bool = True, + solve_in_batch: bool = False, + machine: str = "localhost", + run_in_thread: bool = False, + revert_to_initial_mesh: bool = False, + ) -> bool: """Solve the active design. Parameters diff --git a/tests/system/general/test_11_Setup.py b/tests/system/general/test_11_Setup.py index 7e6ca70655e..c3885a87f71 100644 --- a/tests/system/general/test_11_Setup.py +++ b/tests/system/general/test_11_Setup.py @@ -275,8 +275,22 @@ def test_26_create_optimization(self): if "NAME:Ranges" in el: break assert "rd" in el[2] + + assert setup2.props["Goals"]["Goal"][0]["Ranges"]["Range"][0]["DiscreteValues"] == "2.5GHz" + + setup2.props["Goals"]["Goal"][0]["Ranges"]["Range"][0]["DiscreteValues"] = "2.7GHz" + + oo = self.aedtapp.get_oo_object(self.aedtapp.odesign, f"Optimetrics\\{setup2.name}") + oo_calculation = oo.GetCalculationInfo()[0] + for el in oo_calculation: + if "NAME:Ranges" in el: + break + assert el[2][5] == "2.7GHz" + assert self.aedtapp.optimizations.delete(setup2.name) + assert not self.aedtapp.get_oo_object(self.aedtapp.odesign, f"Optimetrics\\{setup2.name}") + def test_27_create_doe(self): calculation = "db(S(1,1))" new_setup = self.aedtapp.create_setup("MyDOESetup") From 84a7b79702c2c45a48cc5501a20ebb741eeb1119 Mon Sep 17 00:00:00 2001 From: Maxime Rey <87315832+MaxJPRey@users.noreply.github.com> Date: Tue, 17 Dec 2024 22:38:49 +0100 Subject: [PATCH 06/11] DOCS: Fix numpy docstyle warnings and errors. (#5586) --- src/ansys/aedt/core/__init__.py | 2 +- .../aedt/core/application/aedt_objects.py | 18 --- src/ansys/aedt/core/application/analysis.py | 27 ----- .../aedt/core/application/analysis_3d.py | 10 -- .../core/application/analysis_3d_layout.py | 6 - .../aedt/core/application/analysis_hf.py | 6 - .../aedt/core/application/analysis_nexxim.py | 8 -- .../core/application/analysis_r_m_xprt.py | 1 - .../core/application/analysis_twin_builder.py | 3 - src/ansys/aedt/core/application/design.py | 61 ----------- src/ansys/aedt/core/application/variables.py | 28 ----- src/ansys/aedt/core/circuit.py | 11 -- src/ansys/aedt/core/common_rpc.py | 4 +- src/ansys/aedt/core/desktop.py | 7 +- src/ansys/aedt/core/generic/design_types.py | 4 +- .../aedt/core/generic/general_methods.py | 3 +- src/ansys/aedt/core/generic/ibis_reader.py | 22 ++-- .../aedt/core/generic/python_optimizers.py | 2 +- src/ansys/aedt/core/hfss.py | 54 --------- src/ansys/aedt/core/hfss3dlayout.py | 18 --- src/ansys/aedt/core/icepak.py | 50 --------- src/ansys/aedt/core/maxwell.py | 33 +----- src/ansys/aedt/core/mechanical.py | 11 -- .../core/modeler/advanced_cad/stackup_3d.py | 1 - .../aedt/core/modeler/cad/component_array.py | 3 - .../aedt/core/modeler/cad/components_3d.py | 13 --- .../aedt/core/modeler/cad/elements_3d.py | 28 ----- src/ansys/aedt/core/modeler/cad/object_3d.py | 46 -------- src/ansys/aedt/core/modeler/cad/polylines.py | 9 +- src/ansys/aedt/core/modeler/cad/primitives.py | 103 +----------------- .../aedt/core/modeler/cad/primitives_2d.py | 5 - .../aedt/core/modeler/cad/primitives_3d.py | 21 ---- .../modeler/circuits/object_3d_circuit.py | 12 -- .../modeler/circuits/primitives_circuit.py | 17 --- .../core/modeler/circuits/primitives_emit.py | 14 +-- .../circuits/primitives_maxwell_circuit.py | 5 - .../modeler/circuits/primitives_nexxim.py | 19 ---- .../circuits/primitives_twin_builder.py | 8 -- src/ansys/aedt/core/modeler/modeler_2d.py | 1 - src/ansys/aedt/core/modeler/modeler_3d.py | 4 - src/ansys/aedt/core/modeler/modeler_pcb.py | 16 --- .../aedt/core/modeler/pcb/object_3d_layout.py | 34 ------ .../core/modeler/pcb/primitives_3d_layout.py | 8 -- src/ansys/aedt/core/modeler/schematic.py | 9 -- .../aedt/core/modules/boundary/common.py | 4 +- .../core/modules/boundary/icepak_boundary.py | 4 +- .../aedt/core/modules/design_xploration.py | 10 -- src/ansys/aedt/core/modules/layer_stackup.py | 11 -- src/ansys/aedt/core/modules/material.py | 35 ------ src/ansys/aedt/core/modules/material_lib.py | 11 -- src/ansys/aedt/core/modules/mesh.py | 18 --- src/ansys/aedt/core/modules/mesh_3d_layout.py | 8 -- src/ansys/aedt/core/modules/mesh_icepak.py | 16 +-- src/ansys/aedt/core/modules/solve_setup.py | 35 ------ src/ansys/aedt/core/q3d.py | 17 --- src/ansys/aedt/core/rmxprt.py | 1 - src/ansys/aedt/core/twinbuilder.py | 5 - .../aedt/core/visualization/post/common.py | 12 -- .../core/visualization/post/field_data.py | 4 +- .../core/visualization/post/monitor_icepak.py | 4 - .../core/visualization/post/post_3dlayout.py | 2 +- .../core/visualization/post/post_common_3d.py | 11 -- .../core/visualization/post/post_icepak.py | 4 - .../core/visualization/post/solution_data.py | 2 +- .../aedt/core/visualization/post/spisim.py | 3 +- .../aedt/core/visualization/report/common.py | 1 - .../core/workflows/hfss/choke_designer.py | 4 +- .../workflows/icepak/power_map_from_csv.py | 2 +- tests/unit/conftest.py | 1 - 69 files changed, 32 insertions(+), 958 deletions(-) diff --git a/src/ansys/aedt/core/__init__.py b/src/ansys/aedt/core/__init__.py index 06fa85ba28d..7aae035fbb9 100644 --- a/src/ansys/aedt/core/__init__.py +++ b/src/ansys/aedt/core/__init__.py @@ -53,7 +53,7 @@ def deprecation_warning(): # Define and use custom showwarning def custom_show_warning(message, category, filename, lineno, file=None, line=None): - """Custom warning used to remove :loc: pattern.""" + """Define and use custom warning to remove :loc: pattern.""" print(f"{category.__name__}: {message}") warnings.showwarning = custom_show_warning diff --git a/src/ansys/aedt/core/application/aedt_objects.py b/src/ansys/aedt/core/application/aedt_objects.py index 7a40d704c13..51e79a7f568 100644 --- a/src/ansys/aedt/core/application/aedt_objects.py +++ b/src/ansys/aedt/core/application/aedt_objects.py @@ -88,7 +88,6 @@ def oradfield(self): References ---------- - >>> oDesign.GetModule("RadField") """ if self.design_type == "HFSS" and self._odesign.GetSolutionType() not in ["EigenMode", "Characteristic Mode"]: @@ -111,7 +110,6 @@ def o_symbol_manager(self): References ---------- - >>> oSymbolManager = oDefinitionManager.GetManager("Symbol") """ if self.odefinition_manager: @@ -124,7 +122,6 @@ def opadstackmanager(self): References ---------- - >>> oPadstackManger = oDefinitionManager.GetManager("Padstack") """ if self._oproject and not self._opadstackmanager: @@ -153,7 +150,6 @@ def oimport_export(self): References ---------- - >>> oDesktop.GetTool("ImportExport") """ if not self._oimport_export: @@ -166,7 +162,6 @@ def ooptimetrics(self): References ---------- - >>> oDesign.GetModule("Optimetrics") """ if not self._ooptimetrics and self.design_type not in ["Circuit Netlist", "Maxwell Circuit", "EMIT"]: @@ -179,7 +174,6 @@ def ooutput_variable(self): References ---------- - >>> oDesign.GetModule("OutputVariable") """ if not self._ooutput_variable and self.design_type not in ["EMIT", "Maxwell Circuit", "Circuit Netlist"]: @@ -192,7 +186,6 @@ def oanalysis(self): References ---------- - >>> oDesign.GetModule("SolveSetups") >>> oDesign.GetModule("SimSetup") >>> oDesign.GetModule("AnalysisSetup") @@ -215,7 +208,6 @@ def odefinition_manager(self): References ---------- - >>> oDefinitionManager = oProject.GetDefinitionManager() """ if not self._odefinition_manager and self._oproject: @@ -228,7 +220,6 @@ def omaterial_manager(self): References ---------- - >>> oMaterialManager = oDefinitionManager.GetManager("Material") """ if self.odefinition_manager and not self._omaterial_manager: @@ -241,7 +232,6 @@ def omodelsetup(self): References ---------- - >>> oDesign.GetModule("ModelSetup") """ if self.design_type not in ["Maxwell 3D", "Maxwell 2D", "HFSS"]: @@ -261,7 +251,6 @@ def o_maxwell_parameters(self): References ---------- - >>> oDesign.GetModule("MaxwellParameterSetup") """ if self._odesign and self.design_type not in ["Maxwell 3D", "Maxwell 2D"]: @@ -285,7 +274,6 @@ def osolution(self): References ---------- - >>> oModule = oDesign.GetModule("Solutions") """ if not self._osolution: @@ -310,7 +298,6 @@ def oexcitation(self): References ---------- - >>> oModule = oDesign.GetModule("Excitations") """ if self.design_type not in ["HFSS3DLayout", "HFSS 3D Layout Design"]: @@ -339,7 +326,6 @@ def ofieldsreporter(self): References ---------- - >>> oDesign.GetModule("FieldsReporter") """ if self.design_type in [ @@ -366,7 +352,6 @@ def oreportsetup(self): References ---------- - >>> oDesign.GetModule("ReportSetup") """ if not self._oreportsetup: @@ -379,7 +364,6 @@ def omeshmodule(self): References ---------- - >>> oDesign.GetModule("MeshRegion") """ meshers = { @@ -403,7 +387,6 @@ def oeditor(self): References ---------- - >>> oEditor = oDesign.SetActiveEditor("SchematicEditor")""" if not self._oeditor and self._odesign: if self.design_type in ["Circuit Design", "Twin Builder", "Maxwell Circuit", "EMIT"]: @@ -427,7 +410,6 @@ def layouteditor(self): References ---------- - >>> oDesign.SetActiveEditor("Layout") """ if not self._layouteditor and self.design_type in ["Circuit Design"]: diff --git a/src/ansys/aedt/core/application/analysis.py b/src/ansys/aedt/core/application/analysis.py index b7568fc1e19..424497c7247 100644 --- a/src/ansys/aedt/core/application/analysis.py +++ b/src/ansys/aedt/core/application/analysis.py @@ -206,7 +206,6 @@ def output_variables(self): References ---------- - >>> oModule.GetOutputVariables() """ return self.ooutput_variable.GetOutputVariables() @@ -312,7 +311,6 @@ def active_setup(self): References ---------- - >>> oModule.GetAllSolutionSetups() """ if self._setup: @@ -345,7 +343,6 @@ def existing_analysis_sweeps(self): References ---------- - >>> oModule.GelAllSolutionNames >>> oModule.GetSweeps """ @@ -386,7 +383,6 @@ def nominal_adaptive(self): References ---------- - >>> oModule.GelAllSolutionNames >>> oModule.GetSweeps """ @@ -426,7 +422,6 @@ def existing_analysis_setups(self): References ---------- - >>> oModule.GetSetups """ setups = [] @@ -447,7 +442,6 @@ def setup_names(self): References ---------- - >>> oModule.GetSetups """ setup_names = [] @@ -489,7 +483,6 @@ def excitations(self): References ---------- - >>> oModule.GetExcitations """ try: @@ -529,7 +522,6 @@ def excitation_objects(self): References ---------- - >>> oModule.GetExcitations """ exc_names = self.excitations[::] @@ -676,7 +668,6 @@ def list_of_variations(self, setup=None, sweep=None): References ---------- - >>> oModule.ListVariations """ @@ -761,7 +752,6 @@ def export_results( References ---------- - >>> oModule.GetAllPortsList >>> oDesign.ExportProfile >>> oModule.ExportToFile @@ -977,7 +967,6 @@ def export_convergence(self, setup, variations="", output_file=None): References ---------- - >>> oModule.ExportConvergence """ if " : " in setup: @@ -1098,7 +1087,6 @@ def variations(self, setup_sweep=None, output_as_dict=False): References ---------- - >>> oModule.GetAvailableVariations """ variations_string = self.get_variation_strings(setup_sweep) @@ -1150,7 +1138,6 @@ def get_variation_strings(self, setup_sweep=None): References ---------- - >>> oModule.GetAvailableVariations """ if not setup_sweep: @@ -1177,7 +1164,6 @@ def nominal_w_values(self): References ---------- - >>> oDesign.GetChildObject('Variables').GetChildNames >>> oDesign.GetVariables >>> oDesign.GetVariableValue @@ -1200,7 +1186,6 @@ def nominal_w_values_dict(self): References ---------- - >>> oDesign.GetChildObject('Variables').GetChildNames >>> oDesign.GetVariables >>> oDesign.GetVariableValue @@ -1223,7 +1208,6 @@ def nominal_w_values_dict_w_dependent(self): References ---------- - >>> oDesign.GetChildObject('Variables').GetChildNames >>> oDesign.GetVariables >>> oDesign.GetVariableValue @@ -1259,7 +1243,6 @@ def get_setups(self): References ---------- - >>> oModule.GetSetups """ setups = self.oanalysis.GetSetups() @@ -1301,7 +1284,6 @@ def get_sweeps(self, name): References ---------- - >>> oModule.GetSweeps """ sweeps = self.oanalysis.GetSweeps(name) @@ -1328,7 +1310,6 @@ def export_parametric_results(self, sweep, output_file, export_units=True): References ---------- - >>> oModule.ExportParametricResults """ self.ooptimetrics.ExportParametricResults(sweep, output_file, export_units) @@ -1467,7 +1448,6 @@ def delete_setup(self, name): References ---------- - >>> oModule.DeleteSetups Examples @@ -1506,7 +1486,6 @@ def edit_setup(self, name, properties): References ---------- - >>> oModule.EditSetup """ @@ -1573,7 +1552,6 @@ def create_output_variable(self, variable, expression, solution=None, context=No References ---------- - >>> oModule.CreateOutputVariable """ if context is None: @@ -1611,7 +1589,6 @@ def get_output_variable(self, variable, solution=None): References ---------- - >>> oDesign.GetNominalVariation >>> oModule.GetOutputVariableValue """ @@ -1722,7 +1699,6 @@ def analyze( References ---------- - >>> oDesign.Analyze """ if solve_in_batch: @@ -1795,7 +1771,6 @@ def analyze_setup( References ---------- - >>> oDesign.Analyze """ start = time.time() @@ -2139,7 +2114,6 @@ def submit_job( References ---------- - >>> oDesktop.SubmitJob """ return self.desktop_class.submit_job( @@ -2464,7 +2438,6 @@ def change_property(self, aedt_object, tab_name, property_object, property_name, References ---------- - >>> oEditor.ChangeProperty """ if isinstance(property_value, list) and len(property_value) == 3: diff --git a/src/ansys/aedt/core/application/analysis_3d.py b/src/ansys/aedt/core/application/analysis_3d.py index 59ad9f755a0..37228551970 100644 --- a/src/ansys/aedt/core/application/analysis_3d.py +++ b/src/ansys/aedt/core/application/analysis_3d.py @@ -400,7 +400,6 @@ def get_property_value(self, assignment, property_name, property_type=None): References ---------- - >>> oDesign.GetPropertyValue """ boundary = {"HFSS": "HfssTab", "Icepak": "Icepak", "Q3D": "Q3D", "Maxwell3D": "Maxwell3D"} @@ -587,7 +586,6 @@ def import_3d_cad( References ---------- - >>> oEditor.Import """ return self.modeler.import_3d_cad( @@ -650,7 +648,6 @@ def export_3d_model( References ---------- - >>> oEditor.Export """ return self.modeler.export_3d_model( @@ -674,7 +671,6 @@ def get_all_sources(self): References ---------- - >>> oModule.GetAllSources """ return list(self.osolution.GetAllSources()) @@ -690,7 +686,6 @@ def get_all_source_modes(self): References ---------- - >>> oModule.GetAllSources """ return list(self.osolution.GetAllSourceModes()) @@ -713,7 +708,6 @@ def set_source_context(self, sources, number_of_modes=1): References ---------- - >>> oModule.SetSourceContexts """ @@ -746,7 +740,6 @@ def assign_material(self, assignment, material): References ---------- - >>> oEditor.AssignMaterial Examples @@ -845,7 +838,6 @@ def get_all_conductors_names(self): References ---------- - >>> oEditor.GetObjectsByMaterial """ if len(self.modeler.objects) != len(self.modeler.object_names): @@ -917,7 +909,6 @@ def assignmaterial_from_sherlock_files(self, component_file, material_file): References ---------- - >>> oEditor.AssignMaterial """ with open_file(material_file) as csvfile: @@ -1332,7 +1323,6 @@ def import_dxf( References ---------- - >>> oEditor.ImportDXF """ diff --git a/src/ansys/aedt/core/application/analysis_3d_layout.py b/src/ansys/aedt/core/application/analysis_3d_layout.py index 83040e8dedf..796953d1bee 100644 --- a/src/ansys/aedt/core/application/analysis_3d_layout.py +++ b/src/ansys/aedt/core/application/analysis_3d_layout.py @@ -182,7 +182,6 @@ def excitations(self): References ---------- - >>> oModule.GetExcitations """ return list(self.oboundary.GetAllPortsList()) @@ -227,7 +226,6 @@ def export_mesh_stats(self, setup, variations="", mesh_path=None): References ---------- - >>> oModule.ExportMeshStats """ if not mesh_path: @@ -258,7 +256,6 @@ def port_list(self): References ---------- - >>> oModule.GetAllPorts""" return self.oexcitation.GetAllPortsList() @@ -273,7 +270,6 @@ def existing_analysis_setups(self): References ---------- - >>> oModule.GetSetups """ setups = self.oanalysis.GetSetups() @@ -303,7 +299,6 @@ def create_setup(self, name="MySetupAuto", setup_type=None, **kwargs): References ---------- - >>> oModule.Add Examples @@ -379,7 +374,6 @@ def delete_setup(self, name): References ---------- - >>> oModule.Delete Examples diff --git a/src/ansys/aedt/core/application/analysis_hf.py b/src/ansys/aedt/core/application/analysis_hf.py index 1fda12d8a34..7d0ba7dea71 100644 --- a/src/ansys/aedt/core/application/analysis_hf.py +++ b/src/ansys/aedt/core/application/analysis_hf.py @@ -87,7 +87,6 @@ def get_all_return_loss_list(self, excitations=None, excitation_name_prefix="", References ---------- - >>> oEditor.GetAllPorts """ if excitations is None: @@ -143,7 +142,6 @@ def get_all_insertion_loss_list( References ---------- - >>> oEditor.GetAllPorts """ if drivers is None: @@ -203,7 +201,6 @@ def get_next_xtalk_list(self, drivers=None, drivers_prefix_name="", math_formula References ---------- - >>> oEditor.GetAllPorts """ next_xtalks = [] @@ -270,7 +267,6 @@ def get_fext_xtalk_list( References ---------- - >>> oEditor.GetAllPorts """ @@ -310,7 +306,6 @@ def get_touchstone_data(self, setup=None, sweep=None, variations=None): References ---------- - >>> oModule.GetSolutionDataPerVariation """ from ansys.aedt.core.visualization.advanced.touchstone_parser import TouchstoneData @@ -380,7 +375,6 @@ def export_touchstone( References ---------- - >>> oDesign.ExportNetworkData """ return self._app._export_touchstone( diff --git a/src/ansys/aedt/core/application/analysis_nexxim.py b/src/ansys/aedt/core/application/analysis_nexxim.py index 4dfd326032a..c5e653e257d 100644 --- a/src/ansys/aedt/core/application/analysis_nexxim.py +++ b/src/ansys/aedt/core/application/analysis_nexxim.py @@ -49,7 +49,6 @@ class FieldAnalysisCircuit(Analysis): Parameters ---------- - """ def __init__( @@ -111,7 +110,6 @@ def delete_setup(self, name): References ---------- - >>> oModule.RemoveSimSetup """ if name in self.existing_analysis_setups: @@ -192,7 +190,6 @@ def existing_analysis_sweeps(self): References ---------- - >>> oModule.GetAllSolutionSetups""" return self.existing_analysis_setups @@ -202,7 +199,6 @@ def existing_analysis_setups(self): References ---------- - >>> oModule.GetAllSolutionSetups""" setups = self.oanalysis.GetAllSolutionSetups() return setups @@ -238,7 +234,6 @@ def setup_names(self): References ---------- - >>> oModule.GetAllSolutionSetups""" return self.oanalysis.GetAllSolutionSetups() @@ -253,7 +248,6 @@ def source_names(self): References ---------- - >>> oDesign.GetChildObject("Excitations").GetChildNames() """ return list(self.odesign.GetChildObject("Excitations").GetChildNames()) @@ -325,7 +319,6 @@ def excitations(self): References ---------- - >>> oModule.GetAllPorts """ ports = [p.replace("IPort@", "").split(";")[0] for p in self.modeler.oeditor.GetAllPorts() if "IPort@" in p] @@ -412,7 +405,6 @@ def create_setup(self, name="MySetupAuto", setup_type=None, **kwargs): References ---------- - >>> oModule.AddLinearNetworkAnalysis >>> oModule.AddDCAnalysis >>> oModule.AddTransient diff --git a/src/ansys/aedt/core/application/analysis_r_m_xprt.py b/src/ansys/aedt/core/application/analysis_r_m_xprt.py index 4af51cf8634..e8f7f3f8d7f 100644 --- a/src/ansys/aedt/core/application/analysis_r_m_xprt.py +++ b/src/ansys/aedt/core/application/analysis_r_m_xprt.py @@ -35,7 +35,6 @@ class FieldAnalysisRMxprt(Analysis): Parameters ---------- - Returns ------- diff --git a/src/ansys/aedt/core/application/analysis_twin_builder.py b/src/ansys/aedt/core/application/analysis_twin_builder.py index 7bfd644282b..d2008966d90 100644 --- a/src/ansys/aedt/core/application/analysis_twin_builder.py +++ b/src/ansys/aedt/core/application/analysis_twin_builder.py @@ -36,7 +36,6 @@ class AnalysisTwinBuilder(Analysis): Parameters ---------- - Returns ------- @@ -48,7 +47,6 @@ def existing_analysis_setups(self): References ---------- - >>> oModule.GetAllSolutionSetups""" setups = list(self.oanalysis.GetAllSolutionSetups()) return setups @@ -59,7 +57,6 @@ def setup_names(self): References ---------- - >>> oModule.GetAllSolutionSetups""" return list(self.oanalysis.GetAllSolutionSetups()) diff --git a/src/ansys/aedt/core/application/design.py b/src/ansys/aedt/core/application/design.py index 5598bed480a..d3884f1f8cd 100644 --- a/src/ansys/aedt/core/application/design.py +++ b/src/ansys/aedt/core/application/design.py @@ -666,7 +666,6 @@ def aedt_version_id(self) -> str: References ---------- - >>> oDesktop.GetVersion() """ return aedt_versions.get_version_env_variable(self._aedt_version) @@ -686,7 +685,6 @@ def design_name(self) -> Optional[str]: References ---------- - >>> oDesign.GetName >>> oDesign.RenameDesignInstance @@ -743,7 +741,6 @@ def design_list(self) -> List[str]: References ---------- - >>> oProject.GetTopDesignList() """ deslist = list(self.oproject.GetTopDesignList()) @@ -782,7 +779,6 @@ def project_name(self) -> Optional[str]: References ---------- - >>> oProject.GetName """ if self._project_name: @@ -808,7 +804,6 @@ def project_list(self) -> List[str]: References ---------- - >>> oDesktop.GetProjectList """ return list(self.odesktop.GetProjectList()) @@ -824,7 +819,6 @@ def project_path(self) -> Optional[str]: References ---------- - >>> oProject.GetPath """ if not self._project_path and self.oproject: @@ -896,7 +890,6 @@ def solution_type(self) -> Optional[str]: References ---------- - >>> oDesign.GetSolutionType >>> oDesign.SetSolutionType """ @@ -942,7 +935,6 @@ def personallib(self) -> str: References ---------- - >>> oDesktop.GetPersonalLibDirectory """ return self.desktop_class.personallib @@ -958,7 +950,6 @@ def userlib(self) -> str: References ---------- - >>> oDesktop.GetUserLibDirectory """ return self.desktop_class.userlib @@ -974,7 +965,6 @@ def syslib(self) -> str: References ---------- - >>> oDesktop.GetLibraryDirectory """ return self.desktop_class.syslib @@ -1167,7 +1157,6 @@ def odesign(self): References ---------- - >>> oProject.SetActiveDesign >>> oProject.InsertDesign """ @@ -1215,7 +1204,6 @@ def oproject(self): References ---------- - >>> oDesktop.GetActiveProject >>> oDesktop.SetActiveProject >>> oDesktop.NewProject @@ -1781,7 +1769,6 @@ def set_license_type(self, license_type="Pool"): References ---------- - >>> oDesktop.SetRegistryString """ try: @@ -1847,7 +1834,6 @@ def get_registry_key_string(self, name): References ---------- - >>> oDesktop.GetRegistryString """ return self.odesktop.GetRegistryString(name) @@ -1868,7 +1854,6 @@ def get_registry_key_int(self, name): References ---------- - >>> oDesktop.GetRegistryInt """ return self.odesktop.GetRegistryInt(name) @@ -1889,7 +1874,6 @@ def check_beta_option_enabled(self, beta_option): References ---------- - >>> oDesktop.GetRegistryString """ limit = 100 @@ -1936,7 +1920,6 @@ def set_active_dso_config_name(self, product_name="HFSS", config_name="Local"): References ---------- - >>> oDesktop.SetRegistryString """ try: @@ -1967,7 +1950,6 @@ def set_registry_from_file(self, registry_file, make_active=True): References ---------- - >>> oDesktop.SetRegistryFromFile """ try: @@ -2089,7 +2071,6 @@ def activate_variable_statistical( References ---------- - >>> oDesign.ChangeProperty """ arg = ["NAME:AllTabs"] @@ -2120,7 +2101,6 @@ def activate_variable_optimization(self, name, minimum=None, maximum=None): References ---------- - >>> oDesign.ChangeProperty """ arg = ["NAME:AllTabs"] @@ -2151,7 +2131,6 @@ def activate_variable_sensitivity(self, name, minimum=None, maximum=None): References ---------- - >>> oDesign.ChangeProperty """ arg = ["NAME:AllTabs"] @@ -2182,7 +2161,6 @@ def activate_variable_tuning(self, name, minimum=None, maximum=None): References ---------- - >>> oDesign.ChangeProperty """ arg = ["NAME:AllTabs"] @@ -2209,7 +2187,6 @@ def deactivate_variable_statistical(self, name): References ---------- - >>> oDesign.ChangeProperty """ arg = ["NAME:AllTabs"] @@ -2236,7 +2213,6 @@ def deactivate_variable_optimization(self, name): References ---------- - >>> oDesign.ChangeProperty """ arg = ["NAME:AllTabs"] @@ -2263,7 +2239,6 @@ def deactivate_variable_sensitivity(self, name): References ---------- - >>> oDesign.ChangeProperty """ arg = ["NAME:AllTabs"] @@ -2290,7 +2265,6 @@ def deactivate_variable_tuning(self, name): References ---------- - >>> oDesign.ChangeProperty """ arg = ["NAME:AllTabs"] @@ -2320,7 +2294,6 @@ def hidden_variable(self, name, value=True): References ---------- - >>> oDesign.ChangeProperty Examples @@ -2374,7 +2347,6 @@ def read_only_variable(self, name, value=True): References ---------- - >>> oDesign.ChangeProperty Examples @@ -2571,7 +2543,6 @@ def autosave_disable(self): References ---------- - >>> oDesktop.EnableAutoSave """ self.odesktop.EnableAutoSave(False) @@ -2588,7 +2559,6 @@ def autosave_enable(self): References ---------- - >>> oDesktop.EnableAutoSave """ self.odesktop.EnableAutoSave(True) @@ -2686,7 +2656,6 @@ def load_project(self, file_name, design=None, close_active=False, set_active=Fa References ---------- - >>> oDesktop.OpenProject """ proj = self.odesktop.OpenProject(file_name) @@ -2730,7 +2699,6 @@ def create_dataset1d_design(self, name, x, y, x_unit="", y_unit="", sort=True): References ---------- - >>> oProject.AddDataset >>> oDesign.AddDataset """ @@ -2762,7 +2730,6 @@ def create_dataset1d_project(self, name, x, y, x_unit="", y_unit="", sort=True): References ---------- - >>> oProject.AddDataset >>> oDesign.AddDataset """ @@ -2816,7 +2783,6 @@ def create_dataset3d( References ---------- - >>> oDesign.AddDataset """ if name[0] == "$": @@ -2860,7 +2826,6 @@ def import_dataset1d(self, input_file, name=None, is_project_dataset=True, sort= References ---------- - >>> oProject.AddDataset >>> oDesign.AddDataset """ @@ -2918,7 +2883,6 @@ def import_dataset3d(self, input_file, name=None, encoding="utf-8-sig", is_proje References ---------- - >>> oProject.AddDataset """ index_of_dot = input_file.rfind(".") @@ -3039,7 +3003,6 @@ def create_dataset( References ---------- - >>> oProject.AddDataset >>> oDesign.AddDataset """ @@ -3130,7 +3093,6 @@ def change_automatically_use_causal_materials(self, lossy_dielectric=True): References ---------- - >>> oDesign.SetDesignSettings """ if lossy_dielectric: @@ -3156,7 +3118,6 @@ def change_material_override(self, material_override=True): References ---------- - >>> oDesign.SetDesignSettings """ if material_override: @@ -3188,7 +3149,6 @@ def change_validation_settings( References ---------- - >>> oDesign.SetDesignSettings """ self.logger.info("Changing the validation design settings") @@ -3258,7 +3218,6 @@ def copy_project(self, destination, name): References ---------- - >>> oProject.SaveAs """ self.logger.info("Copy AEDT Project ") @@ -3282,7 +3241,6 @@ def create_new_project(self, name): References ---------- - >>> oDesktop.NewProject """ self.logger.info("Creating new Project ") @@ -3312,7 +3270,6 @@ def close_project(self, name=None, save=True): References ---------- - >>> oDesktop.CloseProject """ legacy_name = self.project_name @@ -3381,7 +3338,6 @@ def delete_design(self, name=None, fallback_design=None): References ---------- - >>> oProject.DeleteDesign """ if not name: @@ -3427,7 +3383,6 @@ def delete_separator(self, name): References ---------- - >>> oProject.ChangeProperty >>> oDesign.ChangeProperty """ @@ -3444,7 +3399,6 @@ def delete_variable(self, name): References ---------- - >>> oProject.ChangeProperty >>> oDesign.ChangeProperty """ @@ -3486,7 +3440,6 @@ def insert_design(self, name=None, solution_type=None): References ---------- - >>> oProject.InsertDesign """ self._close_edb() @@ -3599,7 +3552,6 @@ def rename_design(self, name, save=True): References ---------- - >>> oDesign.RenameDesignInstance """ self._odesign.RenameDesignInstance(self.design_name, name) @@ -3636,7 +3588,6 @@ def copy_design_from(self, project, design, save_project=True, set_active_design References ---------- - >>> oProject.CopyDesign >>> oProject.Paste """ @@ -3695,7 +3646,6 @@ def duplicate_design(self, name, save_after_duplicate=True): References ---------- - >>> oProject.CopyDesign >>> oProject.Paste """ @@ -3769,7 +3719,6 @@ def export_variables_to_csv(self, output_file, export_project_variables=True, ex References ---------- - >>> oProject.GetProperties >>> oDesign.GetProperties >>> oProject.GetVariableValue @@ -3828,7 +3777,6 @@ def save_project(self, file_name=None, overwrite=True, refresh_ids=False): References ---------- - >>> oProject.Save >>> oProject.SaveAs """ @@ -3884,7 +3832,6 @@ def archive_project( References ---------- - >>> oProject.Save >>> oProject.SaveProjectArchive """ @@ -3915,7 +3862,6 @@ def delete_project(self, name): References ---------- - >>> oDesktop.DeleteProject """ if self.project_name == name: @@ -3934,7 +3880,6 @@ def set_active_design(self, name): References ---------- - >>> oProject.SetActiveDesign """ self._close_edb() @@ -3958,7 +3903,6 @@ def validate_simple(self, log_file=None): References ---------- - >>> oDesign.ValidateDesign """ if log_file: @@ -3985,7 +3929,6 @@ def get_evaluated_value(self, name, units=None): References ---------- - >>> oDesign.GetNominalVariation >>> oDesign.GetVariationVariableValue @@ -4112,7 +4055,6 @@ def design_variation(self, variation=None): References ---------- - >>> oDesign.GetNominalVariation """ nominal = self._odesign.GetNominalVariation() @@ -4232,7 +4174,6 @@ def set_temporary_directory(self, path): References ---------- - >>> oDesktop.SetTempDirectory() """ self.odesktop.SetTempDirectory(path) @@ -4256,7 +4197,6 @@ def edit_notes(self, text): References ---------- - >>> oDesign.EditNotes() Examples @@ -4278,7 +4218,6 @@ class DesignSettings: References ---------- - >>> oDesign.GetChildObject("Design Settings") """ diff --git a/src/ansys/aedt/core/application/variables.py b/src/ansys/aedt/core/application/variables.py index 74f0aa1a23c..ff951562e54 100644 --- a/src/ansys/aedt/core/application/variables.py +++ b/src/ansys/aedt/core/application/variables.py @@ -477,7 +477,6 @@ def variables(self): References ---------- - >>> oProject.GetVariables >>> oDesign.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames @@ -529,7 +528,6 @@ def design_variables(self): References ---------- - >>> oDesign.GetVariables >>> oDesign.GetChildObject("Variables").GetChildNames """ @@ -546,7 +544,6 @@ def project_variables(self): References ---------- - >>> oProject.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames """ @@ -564,7 +561,6 @@ def post_processing_variables(self): References ---------- - >>> oProject.GetVariables >>> oDesign.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames @@ -593,7 +589,6 @@ def independent_variables(self): References ---------- - >>> oProject.GetVariables >>> oDesign.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames @@ -612,7 +607,6 @@ def independent_project_variables(self): References ---------- - >>> oProject.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames """ @@ -630,7 +624,6 @@ def independent_design_variables(self): References ---------- - >>> oDesign.GetVariables >>> oDesign.GetChildObject("Variables").GetChildNames """ @@ -648,7 +641,6 @@ def dependent_variables(self): References ---------- - >>> oProject.GetVariables >>> oDesign.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames @@ -667,7 +659,6 @@ def dependent_project_variables(self): References ---------- - >>> oProject.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames """ @@ -685,7 +676,6 @@ def dependent_design_variables(self): References ---------- - >>> oDesign.GetVariables >>> oDesign.GetChildObject("Variables").GetChildNames """ @@ -702,7 +692,6 @@ def project_variable_names(self): References ---------- - >>> oProject.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames """ @@ -714,7 +703,6 @@ def design_variable_names(self): References ---------- - >>> oDesign.GetVariables >>> oDesign.GetChildObject("Variables").GetChildNames""" return [var_name for var_name in self.design_variables] @@ -725,7 +713,6 @@ def independent_project_variable_names(self): References ---------- - >>> oProject.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames """ @@ -737,7 +724,6 @@ def independent_design_variable_names(self): References ---------- - >>> oDesign.GetVariables >>> oDesign.GetChildObject("Variables").GetChildNames""" return [var_name for var_name in self.independent_design_variables] @@ -748,7 +734,6 @@ def independent_variable_names(self): References ---------- - >>> oProject.GetVariables >>> oDesign.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames @@ -761,7 +746,6 @@ def dependent_project_variable_names(self): References ---------- - >>> oProject.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames """ @@ -773,7 +757,6 @@ def dependent_design_variable_names(self): References ---------- - >>> oDesign.GetVariables >>> oDesign.GetChildObject("Variables").GetChildNames""" return [var_name for var_name in self.dependent_design_variables] @@ -784,7 +767,6 @@ def dependent_variable_names(self): References ---------- - >>> oProject.GetVariables >>> oDesign.GetVariables >>> oProject.GetChildObject("Variables").GetChildNames @@ -931,7 +913,6 @@ def get_expression(self, name): # TODO: Should be renamed to "evaluate" References ---------- - >>> oProject.GetVariableValue >>> oDesign.GetVariableValue """ @@ -1218,7 +1199,6 @@ def delete_separator(self, name): References ---------- - >>> oProject.ChangeProperty >>> oDesign.ChangeProperty """ @@ -1259,7 +1239,6 @@ def delete_variable(self, name): References ---------- - >>> oProject.ChangeProperty >>> oDesign.ChangeProperty """ @@ -2280,7 +2259,6 @@ def create(self): References ---------- - >>> oProject.AddDataset >>> oDesign.AddDataset """ @@ -2312,7 +2290,6 @@ def add_point(self, x, y, z=None, v=None): References ---------- - >>> oProject.EditDataset >>> oDesign.EditDataset """ @@ -2339,7 +2316,6 @@ def remove_point_from_x(self, x): References ---------- - >>> oProject.EditDataset >>> oDesign.EditDataset """ @@ -2365,7 +2341,6 @@ def remove_point_from_index(self, id_to_remove): References ---------- - >>> oProject.EditDataset >>> oDesign.EditDataset """ @@ -2390,7 +2365,6 @@ def update(self): References ---------- - >>> oProject.EditDataset >>> oDesign.EditDataset """ @@ -2414,7 +2388,6 @@ def delete(self): References ---------- - >>> oProject.DeleteDataset >>> oDesign.DeleteDataset """ @@ -2443,7 +2416,6 @@ def export(self, output_dir=None): References ---------- - >>> oProject.ExportDataset >>> oDesign.ExportDataset """ diff --git a/src/ansys/aedt/core/circuit.py b/src/ansys/aedt/core/circuit.py index beb3fbb4b97..c7917d140b5 100644 --- a/src/ansys/aedt/core/circuit.py +++ b/src/ansys/aedt/core/circuit.py @@ -671,7 +671,6 @@ def get_source_pin_names( References ---------- - >>> oModule.GetExcitationsOfType """ if source_project_name and self.project_name != source_project_name and not source_project_path: @@ -723,7 +722,6 @@ def import_touchstone_solution(self, input_file, solution="Imported_Data"): References ---------- - >>> oDesign.ImportData """ if input_file[-2:] == "ts": @@ -894,7 +892,6 @@ def export_fullwave_spice( References ---------- - >>> oDesign.ExportFullWaveSpice """ if not design: @@ -1040,7 +1037,6 @@ def push_excitations(self, instance, thevenin_calculation=False, setup="LinearFr References ---------- - >>> oEditor.PushExcitations """ arg = ["NAME:options", "CalcThevenin:=", thevenin_calculation, "Sol:=", setup] @@ -1092,7 +1088,6 @@ def push_time_excitations( References ---------- - >>> oEditor.PushExcitations """ arg = [ @@ -1146,7 +1141,6 @@ def create_source(self, source_type, name=None): References ---------- - >>> oDesign.UpdateSources """ if not name: @@ -1194,7 +1188,6 @@ def assign_voltage_sinusoidal_excitation_to_ports(self, ports): References ---------- - >>> oDesign.UpdateSources """ @@ -1220,7 +1213,6 @@ def assign_current_sinusoidal_excitation_to_ports(self, ports): References ---------- - >>> oDesign.UpdateSources """ source_i = self.create_source(source_type="CurrentSin") @@ -1245,7 +1237,6 @@ def assign_power_sinusoidal_excitation_to_ports(self, ports): References ---------- - >>> oDesign.UpdateSources """ source_p = self.create_source(source_type="PowerSin") @@ -1272,7 +1263,6 @@ def assign_voltage_frequency_dependent_excitation_to_ports(self, ports, input_fi References ---------- - >>> oDesign.UpdateSources """ if not os.path.exists(input_file) or os.path.splitext(input_file)[1] != ".fds": @@ -2154,7 +2144,6 @@ def create_ibis_schematic_from_pins( Parameters ---------- - ibis_tx_file : str Full path to the IBIS file for transmitters. ibis_rx_file : str diff --git a/src/ansys/aedt/core/common_rpc.py b/src/ansys/aedt/core/common_rpc.py index 386c3b5e1a6..7673a04fe3e 100644 --- a/src/ansys/aedt/core/common_rpc.py +++ b/src/ansys/aedt/core/common_rpc.py @@ -139,7 +139,7 @@ def pyaedt_service_manager(port=17878, aedt_version=None, student_version=False): - """Starts the PyAEDT service manager using RPyC server on CPython. + """Start the PyAEDT service manager using RPyC server on CPython. This method, which must run on a server machine, is used as a service on the server machine to listen on a dedicated port for inbound requests to launch @@ -205,7 +205,7 @@ def pyaedt_service_manager(port=17878, aedt_version=None, student_version=False) def launch_server(port=18000, ansysem_path=None, non_graphical=False, threaded=True): - """Starts an RPyC server and listens on a specified port. + """Start an RPyC server and listens on a specified port. This method must run on a server machine only. diff --git a/src/ansys/aedt/core/desktop.py b/src/ansys/aedt/core/desktop.py index cdb19974194..f25703d17bb 100644 --- a/src/ansys/aedt/core/desktop.py +++ b/src/ansys/aedt/core/desktop.py @@ -241,7 +241,7 @@ def _find(): def exception_to_desktop(ex_value, tb_data): # pragma: no cover - """Writes the trace stack to AEDT when a Python error occurs. + """Write the trace stack to AEDT when a Python error occurs. The message is added to the AEDT global logger and to the log file (if present). @@ -747,7 +747,6 @@ def active_design(self, project_object=None, name=None, design_type=None): References ---------- - >>> oProject.GetActiveDesign >>> oProject.SetActiveDesign """ @@ -774,7 +773,6 @@ def active_project(self, name=None): References ---------- - >>> oDesktop.GetActiveProject >>> oDesktop.SetActiveProject """ @@ -807,7 +805,6 @@ def close_windows(self): References ---------- - >>> oDesktop.CloseAllWindows """ self.odesktop.CloseAllWindows() @@ -1852,7 +1849,6 @@ def submit_job( References ---------- - >>> oDesktop.SubmitJob """ @@ -1959,7 +1955,6 @@ def submit_ansys_cloud_job( References ---------- - >>> oDesktop.SubmitJob Examples diff --git a/src/ansys/aedt/core/generic/design_types.py b/src/ansys/aedt/core/generic/design_types.py index 98519369059..3fe5c007376 100644 --- a/src/ansys/aedt/core/generic/design_types.py +++ b/src/ansys/aedt/core/generic/design_types.py @@ -97,7 +97,7 @@ def launch_desktop( port=0, aedt_process_id=None, ): - """Initializes AEDT based on the inputs provided. + """Initialize AEDT based on the inputs provided. Parameters ---------- @@ -187,7 +187,7 @@ def launch_desktop( def get_pyaedt_app(project_name=None, design_name=None, desktop=None): - """Gets the PyAEDT object with a given project name and design name. + """Get the PyAEDT object with a given project name and design name. Parameters ---------- diff --git a/src/ansys/aedt/core/generic/general_methods.py b/src/ansys/aedt/core/generic/general_methods.py index fcb8ac29873..b5dcd1ddb91 100644 --- a/src/ansys/aedt/core/generic/general_methods.py +++ b/src/ansys/aedt/core/generic/general_methods.py @@ -277,8 +277,7 @@ def deprecate_kwargs(func_name, kwargs, aliases): def pyaedt_function_handler(direct_func=None, **deprecated_kwargs): - """Provides an exception handler, logging mechanism, and argument converter for client-server - communications. + """Provide an exception handler, logging mechanism, and argument converter for client-server communications. This method returns the function itself if correctly executed. Otherwise, it returns ``False`` and displays errors. diff --git a/src/ansys/aedt/core/generic/ibis_reader.py b/src/ansys/aedt/core/generic/ibis_reader.py index facb4da6a51..0cc4ea19977 100644 --- a/src/ansys/aedt/core/generic/ibis_reader.py +++ b/src/ansys/aedt/core/generic/ibis_reader.py @@ -783,7 +783,7 @@ def ibis_model(self): return self._ibis_model def parse_ibis_file(self): - """Reads \\*.ibis file content. + """Read \\*.ibis file content. Parameters ---------- @@ -885,7 +885,7 @@ def parse_ibis_file(self): # Model def read_model(self, ibis, model_list): - """Extracts model's info. + """Extract model's info. Parameters ---------- @@ -929,7 +929,7 @@ def read_model(self, ibis, model_list): # Model Selector def read_model_selector(self, ibis, model_selector_list): - """Extracts model selector's info. + """Extract model selector's info. Parameters ---------- @@ -957,7 +957,7 @@ def read_model_selector(self, ibis, model_selector_list): @classmethod def make_model(cls, current_line): - """Creates model object. + """Create model object. Parameters ---------- @@ -1015,7 +1015,7 @@ def read_component(self, ibis, comp_infos): @classmethod def fill_package_info(cls, component, pkg_info): - """Extracts model's info. + """Extract model's info. Parameters ---------- @@ -1038,7 +1038,7 @@ def fill_package_info(cls, component, pkg_info): @classmethod def get_component_name(cls, line): - """Gets the name of the component. + """Get the name of the component. Parameters ---------- @@ -1109,7 +1109,7 @@ def make_diff_pin_object(self, line, component, ibis): return def make_pin_object(self, line, component_name, ibis): - """Extracts model's info. + """Extract model's info. Parameters ---------- @@ -1164,7 +1164,7 @@ def make_pin_object(self, line, component_name, ibis): @classmethod def get_first_parameter(cls, line): - """Gets first parameter string value. + """Get first parameter string value. Parameters ---------- @@ -1175,9 +1175,7 @@ def get_first_parameter(cls, line): ------- str First info extracted from the current line. - """ - if line == "": return "" @@ -1307,7 +1305,7 @@ def parse_ibis_file(self): def is_started_with(src, find, ignore_case=True): - """Verifies if a string content starts with a specific string or not. + """Verify if a string content starts with a specific string or not. This is identical to ``str.startswith``, except that it includes the ``ignore_case`` parameter. @@ -1325,9 +1323,7 @@ def is_started_with(src, find, ignore_case=True): ------- bool ``True`` if the src string starts with the pattern. - """ - if ignore_case: return src.lower().startswith(find.lower()) return src.startswith(find) diff --git a/src/ansys/aedt/core/generic/python_optimizers.py b/src/ansys/aedt/core/generic/python_optimizers.py index a3e9e36a011..692b1231838 100644 --- a/src/ansys/aedt/core/generic/python_optimizers.py +++ b/src/ansys/aedt/core/generic/python_optimizers.py @@ -273,7 +273,7 @@ def __init__( self.evaluate_val = 1e10 def run(self): - """Implements the genetic algorithm""" + """Implement the genetic algorithm""" # Init Population pop = np.array([np.zeros(self.dim + 1)] * self.population_size) solo = np.zeros(self.dim + 1) diff --git a/src/ansys/aedt/core/hfss.py b/src/ansys/aedt/core/hfss.py index 2eaacfb7016..b77bf3aa13d 100644 --- a/src/ansys/aedt/core/hfss.py +++ b/src/ansys/aedt/core/hfss.py @@ -330,7 +330,6 @@ def table_names(self): References ---------- - >>> oModule.GetValidISolutionList """ table_names = [] @@ -724,7 +723,6 @@ def assign_coating( References ---------- - >>> oModule.AssignFiniteCond Examples @@ -825,7 +823,6 @@ def create_setup(self, name="MySetupAuto", setup_type=None, **kwargs): References ---------- - >>> oModule.InsertSetup Examples @@ -916,7 +913,6 @@ def create_linear_count_sweep( References ---------- - >>> oModule.InsertFrequencySweep Examples @@ -1029,7 +1025,6 @@ def create_linear_step_sweep( References ---------- - >>> oModule.InsertFrequencySweep Examples @@ -1111,7 +1106,6 @@ def create_single_point_sweep( References ---------- - >>> oModule.InsertFrequencySweep Examples @@ -1469,7 +1463,6 @@ def create_sbr_antenna( References ---------- - >>> oEditor.InsertNativeComponent Examples @@ -1594,7 +1587,6 @@ def create_sbr_file_based_antenna( References ---------- - >>> oEditor.InsertNativeComponent Examples @@ -1713,7 +1705,6 @@ def create_sbr_linked_antenna( References ---------- - >>> oEditor.InsertNativeComponent Examples @@ -1962,7 +1953,6 @@ def set_sbr_txrx_settings(self, txrx_settings): References ---------- - >>> oModule.SetSBRTxRxSettings """ if self.solution_type != "SBR+": @@ -2188,7 +2178,6 @@ def create_voltage_source_from_objects( References ---------- - >>> oModule.AssignVoltage Examples @@ -2243,7 +2232,6 @@ def create_current_source_from_objects( References ---------- - >>> oModule.AssignCurrent Examples @@ -2292,7 +2280,6 @@ def create_source_excitation(self, assignment, point1, point2, name, source_type References ---------- - >>> oModule.AssignVoltage >>> oModule.AssignCurrent """ @@ -2355,7 +2342,6 @@ def create_floquet_port( References ---------- - >>> oModule.AssignFloquetPort """ face_id = self.modeler.convert_to_selections(assignment, True) @@ -2449,7 +2435,6 @@ def assign_lattice_pair( References ---------- - >>> oModule.AssignLatticePair """ props = {} @@ -2491,7 +2476,6 @@ def auto_assign_lattice_pairs(self, assignment, coordinate_system="Global", coor References ---------- - >>> oModule.AutoIdentifyLatticePair """ objectname = self.modeler.convert_to_selections(assignment, True) @@ -2563,7 +2547,6 @@ def assign_secondary( References ---------- - >>> oModule.AssignSecondary """ props = {} @@ -2622,7 +2605,6 @@ def assign_primary(self, assignment, u_start, u_end, reverse_v=False, coordinate References ---------- - >>> oModule.AssignPrimary """ props = {} @@ -2728,7 +2710,6 @@ def create_perfecte_from_objects( References ---------- - >>> oModule.AssignPerfectE Examples @@ -2796,7 +2777,6 @@ def create_perfecth_from_objects( References ---------- - >>> oModule.AssignPerfectH Examples @@ -2858,7 +2838,6 @@ def sar_setup(self, assignment=-1, tissue_mass=1, material_density=1, voxel_size References ---------- - >>> oDesign.SARSetup """ self.odesign.SARSetup(tissue_mass, material_density, assignment, voxel_size, average_sar_method) @@ -2889,7 +2868,6 @@ def create_open_region(self, frequency="1GHz", boundary="Radiation", apply_infin References ---------- - >>> oModule.CreateOpenRegion """ vars = [ @@ -2971,7 +2949,6 @@ def create_lumped_rlc_between_objects( References ---------- - >>> oModule.AssignLumpedRLC Examples @@ -3072,7 +3049,6 @@ def create_impedance_between_objects( References ---------- - >>> oModule.AssignImpedance Examples @@ -3241,7 +3217,6 @@ def assign_voltage_source_to_sheet(self, assignment, start_direction=0, name=Non References ---------- - >>> oModule.AssignVoltage Examples @@ -3293,7 +3268,6 @@ def assign_current_source_to_sheet(self, assignment, start_direction=0, name=Non References ---------- - >>> oModule.AssignCurrent Examples @@ -3343,7 +3317,6 @@ def assign_perfecte_to_sheets(self, assignment, name=None, is_infinite_ground=Fa References ---------- - >>> oModule.AssignPerfectE Examples @@ -3385,7 +3358,6 @@ def assign_perfecth_to_sheets(self, assignment, name=None): References ---------- - >>> oModule.AssignPerfectH Examples @@ -3460,7 +3432,6 @@ def assign_lumped_rlc_to_sheet( References ---------- - >>> oModule.AssignLumpedRLC Examples @@ -3556,7 +3527,6 @@ def assign_impedance_to_sheet( References ---------- - >>> oModule.AssignImpedance Examples @@ -3670,7 +3640,6 @@ def create_circuit_port_from_edges( References ---------- - >>> oModule.AssignCircuitPort Examples @@ -3853,7 +3822,6 @@ def edit_source(self, assignment=None, power="1W", phase="0deg"): References ---------- - >>> oModule.EditSources Examples @@ -4091,7 +4059,6 @@ def thicken_port_sheets(self, assignment, value, extrude_internally=True, intern References ---------- - >>> oEditor.ThickenSheet Examples @@ -4248,7 +4215,6 @@ def validate_full_design(self, design=None, output_dir=None, ports=None): References ---------- - >>> oDesign.ValidateDesign Examples @@ -4384,7 +4350,6 @@ def create_scattering( References ---------- - >>> oModule.CreateReport Examples @@ -4436,7 +4401,6 @@ def create_qfactor_report(self, project_dir, output, setup, name, x_axis="X"): References ---------- - >>> oModule.CreateReport """ @@ -4469,7 +4433,6 @@ def assign_radiation_boundary_to_objects(self, assignment, name=None): References ---------- - >>> oModule.AssignRadiation Examples @@ -4512,7 +4475,6 @@ def assign_hybrid_region(self, assignment, name=None, hybrid_region="SBR+"): References ---------- - >>> oModule.AssignHybridRegion Examples @@ -4555,7 +4517,6 @@ def assign_febi(self, assignment, name=None): References ---------- - >>> oModule.AssignFEBI Examples @@ -4597,7 +4558,6 @@ def assign_radiation_boundary_to_faces(self, assignment, name=None): References ---------- - >>> oModule.AssignRadiation Examples @@ -4731,7 +4691,6 @@ def create_sbr_chirp_i_doppler_setup( References ---------- - >>> oModule.InsertSetup """ @@ -4837,7 +4796,6 @@ def create_sbr_chirp_iq_doppler_setup( References ---------- - >>> oModule.InsertSetup """ if self.solution_type != "SBR+": @@ -4934,7 +4892,6 @@ def create_sbr_pulse_doppler_setup( References ---------- - >>> oModule.InsertSetup """ if self.solution_type != "SBR+": @@ -5454,7 +5411,6 @@ def set_sbr_current_sources_options(self, conformance=False, thin_sources=False, References ---------- - >>> oModule.EditGlobalCurrentSourcesOption """ if self.solution_type != "SBR+": @@ -6066,7 +6022,6 @@ def assign_symmetry(self, assignment, name=None, is_perfect_e=True): References ---------- - >>> oModule.AssignSymmetry Examples @@ -6117,7 +6072,6 @@ def set_impedance_multiplier(self, multiplier): References ---------- - >>> oModule.ChangeImpedanceMult Examples @@ -6158,7 +6112,6 @@ def set_phase_center_per_port(self, coordinate_system=None): References ---------- - >>> oModule.SetPhaseCenterPerPort Examples @@ -6292,7 +6245,6 @@ def circuit_port( References ---------- - >>> oModule.AssignCircuitPort Examples @@ -6517,7 +6469,6 @@ def wave_port( References ---------- - >>> oModule.AssignWavePort Examples @@ -6693,7 +6644,6 @@ def plane_wave( References ---------- - >>> oModule.AssignPlaneWave Examples @@ -6853,7 +6803,6 @@ def set_mesh_fusion_settings(self, assignment=None, volume_padding=None, priorit References ---------- - >>> oDesign.SetDoMeshAssembly Examples @@ -6943,7 +6892,6 @@ def export_element_pattern( References ---------- - >>> oModule.ExportElementPatternToFile """ self.logger.info("Exporting embedded element patterns...") @@ -7024,7 +6972,6 @@ def export_antenna_metadata( References ---------- - >>> oModule.ExportMetadata """ self.logger.info("Exporting antenna metadata...") @@ -7124,7 +7071,6 @@ def export_touchstone_on_completion(self, export=True, output_dir=None): References ---------- - >>> oDesign.SetDesignSettings """ if export: diff --git a/src/ansys/aedt/core/hfss3dlayout.py b/src/ansys/aedt/core/hfss3dlayout.py index a2a9890f7bc..81243de5679 100644 --- a/src/ansys/aedt/core/hfss3dlayout.py +++ b/src/ansys/aedt/core/hfss3dlayout.py @@ -259,7 +259,6 @@ def create_edge_port( References ---------- - >>> oEditor.CreateEdgePort """ assignment = self.modeler.convert_to_selections(assignment, False) @@ -400,7 +399,6 @@ def create_wave_port_from_two_conductors(self, assignment=None, edge_numbers=Non References ---------- - >>> oEditor.CreateEdgePort """ if edge_numbers is None: @@ -478,7 +476,6 @@ def create_ports_on_component_by_nets( References ---------- - >>> oEditor.CreateEdgePort """ listp = self.port_list @@ -522,7 +519,6 @@ def create_pec_on_component_by_nets( References ---------- - >>> oEditor.CreateEdgePort """ if isinstance(nets, list): @@ -555,7 +551,6 @@ def create_differential_port(self, via_signal, via_reference, name, deembed=True References ---------- - >>> oEditor.CreateEdgePort """ listp = self.port_list @@ -604,7 +599,6 @@ def create_coax_port(self, via, radial_extent=0.1, layer=None, alignment="lower" References ---------- - >>> oEditor.CreateEdgePort """ listp = self.port_list @@ -658,7 +652,6 @@ def create_pin_port(self, name, x=0, y=0, rotation=0, top_layer=None, bottom_lay References ---------- - >>> oEditor.CreatePin """ layers = self.modeler.layers.all_signal_layers @@ -711,7 +704,6 @@ def delete_port(self, name): References ---------- - >>> oModule.Delete """ self.oexcitation.Delete(name) @@ -736,7 +728,6 @@ def import_edb(self, input_folder): References ---------- - >>> oModule.ImportEDB """ if "edb.def" not in input_folder: @@ -770,7 +761,6 @@ def validate_full_design(self, name=None, output_dir=None, ports=None): References ---------- - >>> oDesign.ValidateDesign """ if name is None: @@ -875,7 +865,6 @@ def create_scattering( References ---------- - >>> oModule.CreateReport """ solution_data = "Standard" @@ -910,7 +899,6 @@ def export_touchstone_on_completion(self, export=True, output_dir=""): References ---------- - >>> oDesign.DesignOptions """ touchstone_settings = [] @@ -1153,7 +1141,6 @@ def create_linear_count_sweep( References ---------- - >>> oModule.AddSweep """ if sweep_type not in ["Discrete", "Interpolating", "Fast"]: @@ -1266,7 +1253,6 @@ def create_linear_step_sweep( References ---------- - >>> oModule.AddSweep """ if sweep_type not in ["Discrete", "Interpolating", "Fast"]: @@ -1348,7 +1334,6 @@ def create_single_point_sweep( References ---------- - >>> oModule.AddSweep """ if name is None: @@ -1565,7 +1550,6 @@ def import_brd( References ---------- - >>> oModule.ImportExtracta """ return self._import_cad(input_file, "brd", output_dir, control_file, set_as_active, close_active_project) @@ -1713,7 +1697,6 @@ def edit_cosim_options( References ---------- - >>> oDesign.EditCoSimulationOptions Examples @@ -2533,7 +2516,6 @@ def export_touchstone_on_completion(self, export=True, output_dir=None): References ---------- - >>> oDesign.SetDesignSettings """ if export: diff --git a/src/ansys/aedt/core/icepak.py b/src/ansys/aedt/core/icepak.py index 618ffa9ea2c..03ac510f68e 100644 --- a/src/ansys/aedt/core/icepak.py +++ b/src/ansys/aedt/core/icepak.py @@ -275,7 +275,6 @@ def assign_grille( References ---------- - >>> oModule.AssignGrilleBoundary """ if boundary_name is None: @@ -322,7 +321,6 @@ def assign_openings(self, air_faces): References ---------- - >>> oModule.AssignOpeningBoundary Examples @@ -377,7 +375,6 @@ def assign_2way_coupling( References ---------- - >>> oModule.AddTwoWayCoupling Examples @@ -432,7 +429,6 @@ def create_source_blocks_from_list(self, list_powers, assign_material=True, defa References ---------- - >>> oModule.AssignBlockBoundary Examples @@ -498,7 +494,6 @@ def create_source_block( References ---------- - >>> oModule.AssignBlockBoundary Examples @@ -696,7 +691,6 @@ def create_source_power( References ---------- - >>> oModule.AssignSourceBoundary Examples @@ -789,7 +783,6 @@ def create_network_block( References ---------- - >>> oModule.AssignNetworkBoundary Examples @@ -883,7 +876,6 @@ def create_network_blocks( References ---------- - >>> oModule.AssignNetworkBoundary Examples @@ -949,7 +941,6 @@ def assign_surface_monitor(self, face_name, monitor_type="Temperature", monitor_ References ---------- - >>> oModule.AssignFaceMonitor Examples @@ -1019,7 +1010,6 @@ def assign_point_monitor_in_object(self, name, monitor_type="Temperature", monit References ---------- - >>> oModule.AssignPointMonitor Examples @@ -1051,7 +1041,6 @@ def assign_block_from_sherlock_file(self, csv_name): References ---------- - >>> oModule.AssignBlockBoundary """ with open_file(csv_name) as csvfile: @@ -1113,7 +1102,6 @@ def assign_priority_on_intersections(self, component_prefix="COMP_"): References ---------- - >>> oEditor.UpdatePriorityList """ temp_log = os.path.join(self.working_directory, "validation.log") @@ -1156,7 +1144,6 @@ def find_top(self, gravityDir): References ---------- - >>> oEditor.GetModelBoundingBox """ dirs = ["-X", "+X", "-Y", "+Y", "-Z", "+Z"] @@ -1805,7 +1792,6 @@ def assign_em_losses( References ---------- - >>> oModule.AssignEMLoss """ if surface_objects is None: @@ -1908,7 +1894,6 @@ def eval_surface_quantity_from_field_summary( References ---------- - >>> oModule.ExportFieldsSummary """ name = generate_unique_name(quantity_name) @@ -1981,7 +1966,6 @@ def eval_volume_quantity_from_field_summary( References ---------- - >>> oModule.ExportFieldsSummary """ if not savedir: @@ -2057,7 +2041,6 @@ def export_summary( References ---------- - >>> oModule.EditFieldsSummarySetting >>> oModule.ExportFieldsSummary """ @@ -2249,7 +2232,6 @@ def create_fan( References ---------- - >>> oModule.InsertNativeComponent """ if not name: @@ -2392,7 +2374,6 @@ def create_ipk_3dcomponent_pcb( References ---------- - >>> oModule.InsertNativeComponent """ if "extenttype" in kwargs: @@ -2552,7 +2533,6 @@ def create_pcb_from_3dlayout( References ---------- - >>> oModule.InsertNativeComponent """ if "extenttype" in kwargs: @@ -2612,7 +2592,6 @@ def copyGroupFrom(self, group_name, source_design, source_project_name=None, sou References ---------- - >>> oEditor.Copy >>> oeditor.Paste """ @@ -2702,7 +2681,6 @@ def globalMeshSettings( References ---------- - >>> oModule.EditGlobalMeshRegion """ bounding_box = self.modeler.oeditor.GetModelBoundingBox() @@ -2783,7 +2761,6 @@ def create_meshregion_component( References ---------- - >>> oeditor.ChangeProperty """ warnings.warn( @@ -2847,7 +2824,6 @@ def delete_em_losses(self, bound_name): References ---------- - >>> oModule.DeleteBoundaries """ self.oboundary.DeleteBoundaries([bound_name]) @@ -2869,7 +2845,6 @@ def delete_pcb_component(self, comp_name): References ---------- - >>> oEditor.Delete """ arg = ["NAME:Selections", "Selections:=", comp_name] @@ -3110,7 +3085,6 @@ def apply_icepak_settings( References ---------- - >>> oDesign.SetDesignSettings """ @@ -3142,7 +3116,6 @@ def assign_surface_material(self, obj, mat): References ---------- - >>> oEditor.ChangeProperty """ objs = ["NAME:PropServers"] @@ -3276,7 +3249,6 @@ def import_idf( References ---------- - >>> oDesign.ImportIDF """ active_design_name = self.desktop_class.active_design(self.oproject).GetName() @@ -3399,7 +3371,6 @@ def create_two_resistor_network_block(self, object_name, pcb, power, rjb, rjc): References ---------- - >>> oModule.AssignNetworkBoundary Examples @@ -3626,7 +3597,6 @@ def assign_stationary_wall( References ---------- - >>> oModule.AssignStationaryWallBoundary """ if not name: @@ -3762,7 +3732,6 @@ def assign_stationary_wall_with_heat_flux( References ---------- - >>> oModule.AssignStationaryWallBoundary """ return self.assign_stationary_wall( @@ -3825,7 +3794,6 @@ def assign_stationary_wall_with_temperature( References ---------- - >>> oModule.AssignStationaryWallBoundary """ return self.assign_stationary_wall( @@ -3961,7 +3929,6 @@ def assign_stationary_wall_with_htc( References ---------- - >>> oModule.AssignStationaryWallBoundary """ return self.assign_stationary_wall( @@ -4020,7 +3987,6 @@ def create_setup(self, name=None, setup_type=None, **kwargs): References ---------- - >>> oModule.InsertSetup Examples @@ -4118,7 +4084,6 @@ def assign_source( References ---------- - >>> oModule.AssignSourceBoundary Examples @@ -4215,7 +4180,6 @@ def create_network_object(self, name=None, props=None, create=False): References ---------- - >>> oModule.AssignNetworkBoundary Examples @@ -4263,7 +4227,6 @@ def create_resistor_network_from_matrix(self, sources_power, faces_ids, matrix, References ---------- - >>> oModule.AssignNetworkBoundary Examples @@ -4346,7 +4309,6 @@ def assign_solid_block( References ---------- - >>> oModule.AssignBlockBoundary Examples @@ -4456,7 +4418,6 @@ def assign_hollow_block( References ---------- - >>> oModule.AssignBlockBoundary Examples @@ -4570,7 +4531,6 @@ def get_fans_operating_point(self, export_file=None, setup_name=None, time_step= References ---------- - >>> oModule.ExportFanOperatingPoint Examples @@ -4994,7 +4954,6 @@ def assign_symmetry_wall(self, geometry, boundary_name=None): References ---------- - >>> oModule.AssignSymmetryWallBoundary """ if not boundary_name: @@ -5042,7 +5001,6 @@ def assign_adiabatic_plate(self, assignment, high_radiation_dict=None, low_radia References ---------- - >>> oModule.AssignAdiabaticPlateBoundary Examples @@ -5193,7 +5151,6 @@ def assign_resistance( References ---------- - >>> oModule.AssignResistanceBoundary Examples @@ -5318,7 +5275,6 @@ def assign_power_law_resistance( References ---------- - >>> oModule.AssignResistanceBoundary Examples @@ -5406,7 +5362,6 @@ def assign_loss_curve_resistance( References ---------- - >>> oModule.AssignResistanceBoundary Examples @@ -5490,7 +5445,6 @@ def assign_device_resistance( References ---------- - >>> oModule.AssignResistanceBoundary Examples @@ -5575,7 +5529,6 @@ def assign_recirculation_opening( References ---------- - >>> oModule.AssignRecircBoundary Examples @@ -5725,7 +5678,6 @@ def assign_blower_type1( References ---------- - >>> oModule.AssignBlowerBoundary Examples @@ -5808,7 +5760,6 @@ def assign_blower_type2( References ---------- - >>> oModule.AssignBlowerBoundary Examples @@ -6438,7 +6389,6 @@ def clear_linked_data(self): References ---------- - >>> oDesign.ClearLinkedData """ try: diff --git a/src/ansys/aedt/core/maxwell.py b/src/ansys/aedt/core/maxwell.py index ea612a27ab3..1f4ebca5d1f 100644 --- a/src/ansys/aedt/core/maxwell.py +++ b/src/ansys/aedt/core/maxwell.py @@ -58,7 +58,6 @@ def symmetry_multiplier(self): References ---------- - >>> oModule.GetSymmetryMultiplier() """ return int(self.omodelsetup.GetSymmetryMultiplier()) @@ -69,7 +68,6 @@ def windings(self): References ---------- - >>> oModule.GetExcitationsOfType("Winding Group")""" windings = self.oboundary.GetExcitationsOfType("Winding Group") return list(windings) @@ -97,7 +95,6 @@ def change_symmetry_multiplier(self, value=1): References ---------- - >>> oDesign.SetDesignSettings """ return self.change_design_settings({"Multiplier": value}) @@ -122,7 +119,6 @@ def change_inductance_computation(self, compute_transient_inductance=True, incre References ---------- - >>> oDesign.SetDesignSettings """ return self.change_design_settings( @@ -237,7 +233,6 @@ def set_core_losses(self, assignment, core_loss_on_field=False): References ---------- - >>> oModule.SetCoreLoss Examples @@ -298,7 +293,6 @@ def assign_matrix( References ---------- - >>> oModule.AssignMatrix Examples @@ -552,7 +546,6 @@ def eddy_effects_on(self, assignment, enable_eddy_effects=True, enable_displacem References ---------- - >>> oModule.SetEddyEffect """ solid_objects_names = self.get_all_conductors_names() @@ -650,7 +643,6 @@ def setup_y_connection(self, assignment=None): References ---------- - >>> oModule.SetupYConnection Examples @@ -708,7 +700,6 @@ def assign_current(self, assignment, amplitude=1, phase="0deg", solid=True, swap References ---------- - >>> oModule.AssignCurrent Examples @@ -834,7 +825,6 @@ def assign_translate_motion( References ---------- - >>> oModule.AssignBand """ assert self.solution_type == SOLUTIONS.Maxwell3d.Transient, "Motion applies only to the Transient setup." @@ -932,7 +922,6 @@ def assign_rotate_motion( References ---------- - >>> oModule.AssignBand """ assert self.solution_type == SOLUTIONS.Maxwell3d.Transient, "Motion applies only to the Transient setup." @@ -985,7 +974,6 @@ def assign_voltage(self, assignment, amplitude=1, name=None): References ---------- - >>> oModule.AssignVoltage """ if isinstance(amplitude, (int, float)): @@ -1042,7 +1030,6 @@ def assign_voltage_drop(self, assignment, amplitude=1, swap_direction=False, nam References ---------- - >>> oModule.AssignVoltageDrop """ if isinstance(amplitude, (int, float)): @@ -1187,7 +1174,6 @@ def assign_winding( References ---------- - >>> oModule.AssignWindingGroup """ @@ -1242,7 +1228,6 @@ def add_winding_coils(self, assignment, coils): References ---------- - >>> oModule.AddWindingTerminals >>> oModule.AddWindingCoils """ @@ -1275,7 +1260,6 @@ def assign_coil(self, assignment, conductors_number=1, polarity="Positive", name References ---------- - >>> oModule.AssignCoil """ if polarity.lower() == "positive": @@ -1347,7 +1331,6 @@ def assign_force(self, assignment, coordinate_system="Global", is_virtual=True, References ---------- - >>> oModule.AssignForce Examples @@ -1437,7 +1420,6 @@ def assign_torque( References ---------- - >>> oModule.AssignTorque """ if self.solution_type not in ["ACConduction", "DCConduction"]: @@ -1496,7 +1478,6 @@ def solve_inside(self, name, activate=True): References ---------- - >>> oEditor.ChangeProperty """ self.modeler[name].solve_inside = activate @@ -1515,7 +1496,6 @@ def analyze_from_zero(self): References ---------- - >>> oModule.ResetSetupToTimeZero """ if self.solution_type != "Transient": @@ -1543,7 +1523,6 @@ def set_initial_angle(self, motion_setup, angle): References ---------- - >>> oDesign.ChangeProperty """ self.odesign.ChangeProperty( @@ -1584,7 +1563,6 @@ def assign_symmetry(self, assignment, symmetry_name=None, is_odd=True): References ---------- - >>> oModule.AssignSymmetry """ try: @@ -1770,7 +1748,6 @@ def assign_radiation(self, assignment, radiation=None): References ---------- - >>> oModule.Radiation Examples @@ -2302,9 +2279,7 @@ def __init__( aedt_process_id=None, remove_lock=False, ): - """ - Initialize the ``Maxwell`` class. - """ + """Initialize the ``Maxwell`` class.""" self.is3d = True FieldAnalysis3D.__init__( self, @@ -2349,7 +2324,6 @@ def assign_insulating(self, assignment, insulation=None): References ---------- - >>> oModule.AssignInsulating Examples @@ -2428,7 +2402,6 @@ def assign_impedance( References ---------- - >>> oModule.AssignImpedance Examples @@ -3173,7 +3146,6 @@ def geometry_mode(self): References ---------- - >>> oDesign.GetGeometryMode""" return self.odesign.GetGeometryMode() @@ -3332,7 +3304,6 @@ def assign_balloon(self, assignment, boundary=None): References ---------- - >>> oModule.AssignBalloon @@ -3382,7 +3353,6 @@ def assign_vector_potential(self, assignment, vector_value=0, boundary=None): References ---------- - >>> oModule.AssignVectorPotential @@ -3498,7 +3468,6 @@ def assign_end_connection(self, assignment, resistance=0, inductance=0, boundary References ---------- - >>> oModule.AssignEndConnection """ if self.solution_type not in ["EddyCurrent", "Transient"]: diff --git a/src/ansys/aedt/core/mechanical.py b/src/ansys/aedt/core/mechanical.py index 3cb96b9e53a..06dda2697ef 100644 --- a/src/ansys/aedt/core/mechanical.py +++ b/src/ansys/aedt/core/mechanical.py @@ -213,7 +213,6 @@ def assign_em_losses( References ---------- - >>> oModule.AssignEMLoss """ if surface_objects is None: @@ -319,7 +318,6 @@ def assign_thermal_map( References ---------- - >>> oModule.AssignThermalCondition """ if parameters is None: @@ -402,7 +400,6 @@ def assign_uniform_convection( References ---------- - >>> oModule.AssignConvection """ assert "Thermal" in self.solution_type, "This method works only in a Mechanical Thermal analysis." @@ -451,7 +448,6 @@ def assign_uniform_temperature(self, assignment, temperature="AmbientTemp", name References ---------- - >>> oModule.AssignTemperature """ assert "Thermal" in self.solution_type, "This method works only in a Mechanical Thermal analysis." @@ -497,7 +493,6 @@ def assign_frictionless_support(self, assignment, name=""): References ---------- - >>> oModule.AssignFrictionlessSupport """ if not (self.solution_type == "Structural" or "Modal" in self.solution_type): @@ -542,7 +537,6 @@ def assign_fixed_support(self, assignment, name=""): References ---------- - >>> oModule.AssignFixedSupport """ if not (self.solution_type == "Structural" or "Modal" in self.solution_type): @@ -573,7 +567,6 @@ def existing_analysis_sweeps(self): References ---------- - >>> oModule.GetSetups """ setup_list = self.existing_analysis_setups @@ -605,7 +598,6 @@ def assign_heat_flux(self, assignment, heat_flux_type, value, name=""): References ---------- - >>> oModule.AssignHeatFlux """ assert "Thermal" in self.solution_type, "This method works only in a Mechanical Thermal analysis." @@ -653,7 +645,6 @@ def assign_heat_generation(self, assignment, value, name=""): References ---------- - >>> oModule.AssignHeatGeneration """ assert "Thermal" in self.solution_type, "This method works only in a Mechanical Thermal analysis." @@ -692,7 +683,6 @@ def assign_2way_coupling(self, setup=None, number_of_iterations=2): References ---------- - >>> oModule.AddTwoWayCoupling Examples @@ -747,7 +737,6 @@ def create_setup(self, name="MySetupAuto", setup_type=None, **kwargs): References ---------- - >>> oModule.InsertSetup Examples diff --git a/src/ansys/aedt/core/modeler/advanced_cad/stackup_3d.py b/src/ansys/aedt/core/modeler/advanced_cad/stackup_3d.py index 70562bdcaed..e7e1258784e 100644 --- a/src/ansys/aedt/core/modeler/advanced_cad/stackup_3d.py +++ b/src/ansys/aedt/core/modeler/advanced_cad/stackup_3d.py @@ -2608,7 +2608,6 @@ class Trace(CommonObject, object): Parameters ---------- - application : :class:`ansys.aedt.core.hfss.Hfss` HFSS design or project where the variable is to be created. frequency : float, None diff --git a/src/ansys/aedt/core/modeler/cad/component_array.py b/src/ansys/aedt/core/modeler/cad/component_array.py index c41cb411ab9..540ded9f2da 100644 --- a/src/ansys/aedt/core/modeler/cad/component_array.py +++ b/src/ansys/aedt/core/modeler/cad/component_array.py @@ -360,7 +360,6 @@ def delete(self): References ---------- - >>> oModule.DeleteArray """ @@ -379,7 +378,6 @@ def export_array_info(self, output_file=None): # pragma: no cover References ---------- - >>> oModule.ExportArray """ @@ -505,7 +503,6 @@ def edit_array(self): References ---------- - >>> oModule.EditArray """ diff --git a/src/ansys/aedt/core/modeler/cad/components_3d.py b/src/ansys/aedt/core/modeler/cad/components_3d.py index 65b609c779c..614c7526706 100644 --- a/src/ansys/aedt/core/modeler/cad/components_3d.py +++ b/src/ansys/aedt/core/modeler/cad/components_3d.py @@ -200,7 +200,6 @@ def layout_component(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -238,7 +237,6 @@ def group_name(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -267,7 +265,6 @@ def group_name(self, name): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -360,7 +357,6 @@ def name(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -393,7 +389,6 @@ def parameters(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -450,7 +445,6 @@ def target_coordinate_system(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -484,7 +478,6 @@ def delete(self): References ---------- - >>> oEditor.Delete Examples @@ -524,7 +517,6 @@ def duplicate_and_mirror(self, origin, vector): References ---------- - >>> oEditor.DuplicateMirror """ return self._primitives.duplicate_and_mirror(self.name, origin=origin, vector=vector, is_3d_comp=True) @@ -549,7 +541,6 @@ def mirror(self, origin, vector): References ---------- - >>> oEditor.Mirror """ if self.is3dcomponent: @@ -583,7 +574,6 @@ def rotate(self, axis, angle=90.0, units="deg"): References ---------- - >>> oEditor.Rotate """ if self.is3dcomponent: @@ -646,7 +636,6 @@ def duplicate_around_axis(self, axis, angle=90, clones=2, create_new_objects=Tru References ---------- - >>> oEditor.DuplicateAroundAxis """ @@ -678,7 +667,6 @@ def duplicate_along_line(self, vector, clones=2, attach=False, **kwargs): References ---------- - >>> oEditor.DuplicateAlongLine """ @@ -1171,7 +1159,6 @@ def update_visibility(self): References ---------- - >>> oEditor.ChangeProperty """ diff --git a/src/ansys/aedt/core/modeler/cad/elements_3d.py b/src/ansys/aedt/core/modeler/cad/elements_3d.py index 19735a69aa5..89168acee53 100644 --- a/src/ansys/aedt/core/modeler/cad/elements_3d.py +++ b/src/ansys/aedt/core/modeler/cad/elements_3d.py @@ -107,7 +107,6 @@ def fillet(self, radius=0.1, setback=0.0): References ---------- - >>> oEditor.Fillet """ @@ -164,7 +163,6 @@ def chamfer(self, left_distance=1, right_distance=None, angle=45, chamfer_type=0 References ---------- - >>> oEditor.Chamfer """ @@ -249,7 +247,6 @@ def position(self): References ---------- - >>> oEditor.GetVertexPosition """ @@ -342,7 +339,6 @@ def vertices(self): References ---------- - >>> oEditor.GetVertexIDsFromEdge """ @@ -370,7 +366,6 @@ def midpoint(self): References ---------- - >>> oEditor.GetVertexPosition """ @@ -387,7 +382,6 @@ def length(self): References ---------- - >>> oEditor.GetEdgeLength """ @@ -415,7 +409,6 @@ def create_object(self, non_model=False): References ---------- - >>> oEditor.CreateObjectFromEdges """ return self._object3d._primitives.create_object_from_edge(self, non_model) @@ -437,7 +430,6 @@ def move_along_normal(self, offset=1.0): References ---------- - >>> oEditor.MoveEdges """ @@ -521,7 +513,6 @@ def edges(self): References ---------- - >>> oEditor.GetEdgeIDsFromFace """ @@ -541,7 +532,6 @@ def vertices(self): References ---------- - >>> oEditor.GetVertexIDsFromFace """ @@ -577,7 +567,6 @@ def center_from_aedt(self): References ---------- - >>> oEditor.GetFaceCenter """ @@ -625,7 +614,6 @@ def center(self): References ---------- - >>> oEditor.GetFaceCenter """ @@ -667,7 +655,6 @@ def area(self): References ---------- - >>> oEditor.GetFaceArea """ @@ -684,7 +671,6 @@ def top_edge_z(self): References ---------- - >>> oEditor.FaceCenter """ @@ -818,7 +804,6 @@ def move_with_offset(self, offset=1.0): References ---------- - >>> oEditor.MoveFaces """ @@ -861,7 +846,6 @@ def move_with_vector(self, vector): References ---------- - >>> oEditor.MoveFaces """ @@ -907,7 +891,6 @@ def normal(self): References ---------- - >>> oEditor.GetVertexPosition """ @@ -961,7 +944,6 @@ def create_object(self, non_model=False): References ---------- - >>> oEditor.CreateObjectFromFaces """ return self._object3d._primitives.create_object_from_face(self, non_model) @@ -1028,7 +1010,6 @@ def name(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1060,7 +1041,6 @@ def valid_properties(self): References ---------- - >>> oEditor.GetProperties """ if not self._all_props: @@ -1080,7 +1060,6 @@ def set_color(self, color_value): References ---------- - >>> oEditor.ChangeProperty Examples @@ -1128,7 +1107,6 @@ def coordinate_system(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1153,7 +1131,6 @@ def delete(self): References ---------- - >>> oEditor.Delete """ arg = ["NAME:Selections", "Selections:=", self._name] @@ -1229,7 +1206,6 @@ def name(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1264,7 +1240,6 @@ def valid_properties(self): References ---------- - >>> oEditor.GetProperties """ if not self._all_props: @@ -1285,7 +1260,6 @@ def set_color(self, color_value): References ---------- - >>> oEditor.ChangeProperty Examples @@ -1333,7 +1307,6 @@ def coordinate_system(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1359,7 +1332,6 @@ def delete(self): References ---------- - >>> oEditor.Delete """ arg = ["NAME:Selections", "Selections:=", self._name] diff --git a/src/ansys/aedt/core/modeler/cad/object_3d.py b/src/ansys/aedt/core/modeler/cad/object_3d.py index da875b90aa1..4dedb6e44a1 100644 --- a/src/ansys/aedt/core/modeler/cad/object_3d.py +++ b/src/ansys/aedt/core/modeler/cad/object_3d.py @@ -159,7 +159,6 @@ def _bounding_box_sat(self): References ---------- - >>> oEditor.GetModelBoundingBox """ @@ -211,7 +210,6 @@ def bounding_box(self): References ---------- - >>> oEditor.GetModelBoundingBox """ @@ -240,7 +238,6 @@ def bounding_dimension(self): References ---------- - >>> oEditor.GetModelBoundingBox """ oBoundingBox = self.bounding_box @@ -383,7 +380,6 @@ def faces(self): References ---------- - >>> oEditor.GetFaceIDs """ @@ -514,7 +510,6 @@ def top_face_z(self): References ---------- - >>> oEditor.FaceCenter """ @@ -535,7 +530,6 @@ def bottom_face_z(self): References ---------- - >>> oEditor.FaceCenter """ @@ -556,7 +550,6 @@ def top_face_x(self): References ---------- - >>> oEditor.FaceCenter """ @@ -577,7 +570,6 @@ def bottom_face_x(self): References ---------- - >>> oEditor.FaceCenter """ @@ -598,7 +590,6 @@ def top_face_y(self): References ---------- - >>> oEditor.FaceCenter """ @@ -619,7 +610,6 @@ def bottom_face_y(self): References ---------- - >>> oEditor.FaceCenter """ @@ -640,7 +630,6 @@ def top_edge_z(self): References ---------- - >>> oEditor.FaceCenter """ @@ -741,7 +730,6 @@ def edges(self): References ---------- - >>> oEditor.GetEdgeIDsFromObject """ @@ -763,7 +751,6 @@ def vertices(self): References ---------- - >>> oEditor.GetVertexIDsFromObject """ @@ -836,7 +823,6 @@ def group_name(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -864,7 +850,6 @@ def group_name(self, name): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -918,7 +903,6 @@ def material_name(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -974,7 +958,6 @@ def id(self): References ---------- - >>> oEditor.GetObjectIDByName """ @@ -1039,7 +1022,6 @@ def mass(self): References ---------- - >>> oEditor.GetObjectVolume """ @@ -1067,7 +1049,6 @@ def volume(self): References ---------- - >>> oEditor.GetObjectVolume """ @@ -1088,7 +1069,6 @@ def name(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1116,7 +1096,6 @@ def valid_properties(self): References ---------- - >>> oEditor.GetProperties """ if not self._all_props: @@ -1131,7 +1110,6 @@ def color(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1159,7 +1137,6 @@ def color_string(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty """ @@ -1203,7 +1180,6 @@ def transparency(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1251,7 +1227,6 @@ def part_coordinate_system(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1281,7 +1256,6 @@ def solve_inside(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1321,7 +1295,6 @@ def display_wireframe(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1355,7 +1328,6 @@ def material_appearance(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1411,7 +1383,6 @@ def model(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty @@ -1449,7 +1420,6 @@ def unite(self, assignment): References ---------- - >>> oEditor.Unite """ @@ -1475,7 +1445,6 @@ def intersect(self, assignment, keep_originals=False): References ---------- - >>> oEditor.Intersect """ assignment = [self.name] + self._primitives.convert_to_selections(assignment, return_list=True) @@ -1503,7 +1472,6 @@ def split(self, plane, sides="Both"): References ---------- - >>> oEditor.Split """ return self._primitives.split(self.name, plane, sides) @@ -1532,7 +1500,6 @@ def mirror(self, origin, vector, duplicate=False): References ---------- - >>> oEditor.Mirror """ if self._primitives.mirror(self.id, origin=origin, vector=vector, duplicate=duplicate): @@ -1561,7 +1528,6 @@ def rotate(self, axis, angle=90.0, units="deg"): References ---------- - >>> oEditor.Rotate """ if self._primitives.rotate(self.id, axis=axis, angle=angle, units=units): @@ -1614,7 +1580,6 @@ def duplicate_around_axis(self, axis, angle=90, clones=2, create_new_objects=Tru References ---------- - >>> oEditor.DuplicateAroundAxis """ @@ -1643,7 +1608,6 @@ def duplicate_along_line(self, vector, clones=2, attach=False): References ---------- - >>> oEditor.DuplicateAlongLine """ @@ -1671,7 +1635,6 @@ def sweep_along_vector(self, sweep_vector, draft_angle=0, draft_type="Round"): References ---------- - >>> oEditor.SweepAlongVector """ @@ -1705,7 +1668,6 @@ def sweep_along_path( References ---------- - >>> oEditor.SweepAlongPath """ @@ -1734,7 +1696,6 @@ def sweep_around_axis(self, axis, sweep_angle=360, draft_angle=0): References ---------- - >>> oEditor.SweepAroundAxis """ @@ -1761,7 +1722,6 @@ def section(self, plane, create_new=True, section_cross_object=False): References ---------- - >>> oEditor.Section """ @@ -1784,7 +1744,6 @@ def detach_faces(self, faces): References ---------- - >>> oEditor.DetachFaces """ @@ -1801,7 +1760,6 @@ def clone(self): References ---------- - >>> oEditor.Clone """ @@ -1830,7 +1788,6 @@ def subtract(self, tool_list, keep_originals=True): References ---------- - >>> oEditor.Subtract """ @@ -1871,7 +1828,6 @@ def delete(self): References ---------- - >>> oEditor.Delete """ arg = ["NAME:Selections", "Selections:=", self._m_name] @@ -1995,7 +1951,6 @@ def fillet(self, vertices=None, edges=None, radius=0.1, setback=0.0): References ---------- - >>> oEditor.Fillet """ @@ -2054,7 +2009,6 @@ def chamfer(self, vertices=None, edges=None, left_distance=1, right_distance=Non References ---------- - >>> oEditor.Chamfer """ diff --git a/src/ansys/aedt/core/modeler/cad/polylines.py b/src/ansys/aedt/core/modeler/cad/polylines.py index fa04db8a79e..706bd3f4339 100644 --- a/src/ansys/aedt/core/modeler/cad/polylines.py +++ b/src/ansys/aedt/core/modeler/cad/polylines.py @@ -383,7 +383,6 @@ def end_point(self): References ---------- - >>> oEditor.GetVertexIDsFromObject >>> oEditor.GetVertexPosition @@ -391,7 +390,7 @@ def end_point(self): return self.points[-1] def _update_segments_and_points(self): - """Updates the self._segment_types and the self._positions from the history. + """Update the self._segment_types and the self._positions from the history. This internal method is called by properties ``points`` and ``segment_types``. It will be called only once after opening a new project, then the internal @@ -541,7 +540,6 @@ def vertex_positions(self): References ---------- - >>> oEditor.GetVertexIDsFromObject >>> oEditor.GetVertexPosition @@ -769,7 +767,6 @@ def clone(self): References ---------- - >>> oEditor.Copy >>> oEditor.Paste @@ -816,7 +813,6 @@ def remove_point(self, position, tolerance=1e-9): References ---------- - >>> oEditor.DeletePolylinePoint Examples @@ -907,7 +903,6 @@ def remove_segments(self, assignment): References ---------- - >>> oEditor.DeletePolylinePoint Examples @@ -988,7 +983,6 @@ def set_crosssection_properties( References ---------- - >>> oEditor.ChangeProperty Examples @@ -1139,7 +1133,6 @@ def insert_segment(self, points, segment=None): References ---------- - >>> oEditor.InsertPolylineSegment """ diff --git a/src/ansys/aedt/core/modeler/cad/primitives.py b/src/ansys/aedt/core/modeler/cad/primitives.py index fe5662c4834..820eba9b6d0 100644 --- a/src/ansys/aedt/core/modeler/cad/primitives.py +++ b/src/ansys/aedt/core/modeler/cad/primitives.py @@ -22,9 +22,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -""" -This module contains these Primitives classes: `Polyline` and `Primitives`. -""" +"""This module contains these Primitives classes: `Polyline` and `Primitives`.""" from __future__ import absolute_import # noreorder @@ -684,7 +682,6 @@ def user_defined_component_names(self): References ---------- - >>> oEditor.Get3DComponentDefinitionNames >>> oEditor.Get3DComponentInstanceNames """ @@ -1170,7 +1167,6 @@ def get_objects_by_material(self, material=None): References ---------- - >>> oEditor.GetObjectsByMaterial """ @@ -1378,7 +1374,6 @@ def fit_all(self): References ---------- - >>> oEditor.FitAll Examples @@ -1436,7 +1431,6 @@ def cover_lines(self, assignment): References ---------- - >>> oEditor.CoverLines """ obj_to_cover = self.convert_to_selections(assignment, False) @@ -1549,7 +1543,6 @@ def create_coordinate_system( References ---------- - >>> oEditor.CreateRelativeCS """ if name: @@ -1812,7 +1805,6 @@ def set_working_coordinate_system(self, name): References ---------- - >>> oEditor.SetWCS """ if isinstance(name, BaseCoordinateSystem): @@ -1836,7 +1828,6 @@ def get_working_coordinate_system(self): References ---------- - >>> oEditor.GetActiveCoordinateSystem """ @@ -1941,7 +1932,6 @@ def duplicate_coordinate_system_to_global(self, coordinate_system): References ---------- - >>> oEditor.CreateRelativeCS """ cs_names = [i.name for i in self.coordinate_systems] @@ -2103,7 +2093,6 @@ def set_objects_deformation(self, assignment): References ---------- - >>> oDesign.SetObjectDeformation """ self.logger.info("Enabling deformation feedback") @@ -2139,7 +2128,6 @@ def set_objects_temperature(self, assignment, ambient_temperature=22, create_pro References ---------- - >>> oDesign.SetObjectTemperature """ self.logger.info("Set model temperature and enabling Thermal Feedback") @@ -2300,7 +2288,6 @@ def create_sheet_to_ground(self, assignment, ground_name=None, orientation=0, sh References ---------- - >>> oEditor.CreatePolyline """ if orientation > 2: @@ -2463,7 +2450,6 @@ def get_boundaries_name(self): References ---------- - >>> oModule.GetBoundaries """ if self._app.design_type == "Icepak": @@ -2490,7 +2476,6 @@ def set_object_model_state(self, assignment, model=True): References ---------- - >>> oEditor.ChangeProperty """ selections = self.convert_to_selections(assignment, True) @@ -2521,7 +2506,6 @@ def get_objects_in_group(self, group): References ---------- - >>> oEditor.GetObjectsInGroup """ if not isinstance(group, str): @@ -2548,7 +2532,6 @@ def get_group_bounding_box(self, group): References ---------- - >>> oEditor.GetObjectsInGroup >>> oEditor.GetModelBoundingBox """ @@ -2671,7 +2654,6 @@ def split( References ---------- - >>> oEditor.Split """ if plane is None and not tool or plane and tool: @@ -2819,7 +2801,6 @@ def duplicate_and_mirror( References ---------- - >>> oEditor.DuplicateMirror """ return self.mirror( @@ -2856,7 +2837,6 @@ def mirror(self, assignment, origin, vector, duplicate=False, is_3d_comp=False, References ---------- - >>> oEditor.Mirror >>> oEditor.DuplicateMirror """ @@ -2915,7 +2895,6 @@ def move(self, assignment, vector): References ---------- - >>> oEditor.Move """ Xvec, Yvec, Zvec = self._pos_with_arg(vector) @@ -2968,7 +2947,6 @@ def duplicate_around_axis( References ---------- - >>> oEditor.DuplicateAroundAxis """ selections = self.convert_to_selections(assignment) @@ -3041,7 +3019,6 @@ def duplicate_along_line( References ---------- - >>> oEditor.DuplicateAlongLine """ selections = self.convert_to_selections(assignment) @@ -3082,7 +3059,6 @@ def thicken_sheet(self, assignment, thickness, both_sides=False): References ---------- - >>> oEditor.ThickenSheet """ selections = self.convert_to_selections(assignment) @@ -3120,7 +3096,6 @@ def sweep_along_normal(self, assignment, faces, sweep_value=0.1): References ---------- - >>> oEditor.SweepFacesAlongNormal """ if not isinstance(faces, list): @@ -3177,7 +3152,6 @@ def sweep_along_vector(self, assignment, sweep_vector, draft_angle=0, draft_type References ---------- - >>> oEditor.SweepAlongVector """ selections = self.convert_to_selections(assignment) @@ -3235,7 +3209,6 @@ def sweep_along_path( References ---------- - >>> oEditor.SweepAlongPath """ selections = self.convert_to_selections(assignment) + "," + self.convert_to_selections(sweep_object) @@ -3280,7 +3253,6 @@ def sweep_around_axis(self, assignment, axis, sweep_angle=360, draft_angle=0, nu References ---------- - >>> oEditor.SweepAroundAxis """ selections = self.convert_to_selections(assignment) @@ -3335,7 +3307,6 @@ def section(self, assignment, plane, create_new=True, section_cross_object=False References ---------- - >>> oEditor.Section """ section_plane = GeometryOperators.cs_plane_to_plane_str(plane) @@ -3376,7 +3347,6 @@ def separate_bodies(self, assignment, create_group=False): References ---------- - >>> oEditor.SeparateBody """ try: @@ -3425,7 +3395,6 @@ def rotate(self, assignment, axis, angle=90.0, units="deg"): References ---------- - >>> oEditor.Rotate """ selections = self.convert_to_selections(assignment) @@ -3461,7 +3430,6 @@ def subtract(self, blank_list, tool_list, keep_originals=True, **kwargs): References ---------- - >>> oEditor.Subtract """ if "keepOriginals" in kwargs: @@ -3501,7 +3469,6 @@ def imprint(self, blank_list, tool_list, keep_originals=True): References ---------- - >>> oEditor.Imprint """ szList = self.convert_to_selections(blank_list) @@ -3565,7 +3532,6 @@ def imprint_normal_projection( References ---------- - >>> oEditor.ImprintProjection """ return self._imprint_projection(assignment, keep_originals, True) @@ -3599,7 +3565,6 @@ def imprint_vector_projection( References ---------- - >>> oEditor.ImprintProjection """ return self._imprint_projection(assignment, keep_originals, False, vector_points, distance) @@ -3620,7 +3585,6 @@ def purge_history(self, assignment): References ---------- - >>> oEditor.PurgeHistory """ szList = self.convert_to_selections(assignment) @@ -3643,7 +3607,6 @@ def get_model_bounding_box(self): References ---------- - >>> oEditor.GetModelBoundingBox """ bb = list(self.oeditor.GetModelBoundingBox()) @@ -3670,7 +3633,6 @@ def unite(self, assignment, purge=False, keep_originals=False): References ---------- - >>> oEditor.Unite """ slice = min(100, len(assignment)) @@ -3723,7 +3685,6 @@ def clone(self, assignment): References ---------- - >>> oEditor.Copy >>> oEditor.Paste """ @@ -3747,7 +3708,6 @@ def copy(self, assignment): References ---------- - >>> oEditor.Copy """ # convert to string @@ -3772,7 +3732,6 @@ def paste(self): References ---------- - >>> oEditor.Paste """ self.add_new_objects() @@ -3798,7 +3757,6 @@ def intersect(self, assignment, keep_originals=False, **kwargs): References ---------- - >>> oEditor.Intersect """ if "keeporiginal" in kwargs: @@ -3838,7 +3796,6 @@ def detach_faces(self, assignment, faces): References ---------- - >>> oEditor.DetachFaces """ @@ -3871,7 +3828,6 @@ def connect(self, assignment): References ---------- - >>> oEditor.Connect """ try: @@ -3911,7 +3867,6 @@ def chassis_subtraction(self, chassis_part): References ---------- - >>> oEditor.Subtract """ self.logger.info("Subtract all objects from Chassis object - exclude vacuum objs") @@ -4039,7 +3994,6 @@ def get_matched_object_name(self, search_string): References ---------- - >>> oEditor.GetMatchedObjectName """ return self.oeditor.GetMatchedObjectName(search_string) @@ -4060,7 +4014,6 @@ def clean_objects_name(self, main_part_name): References ---------- - >>> oEditor.RenamePart """ cad_suffix = main_part_name + "_" @@ -4099,7 +4052,6 @@ def create_airbox(self, offset=0, offset_type="Absolute", name="AirBox_Auto"): References ---------- - >>> oEditor.CreateBox """ self.logger.info("Adding Airbox to the Bounding ") @@ -4160,7 +4112,6 @@ def create_air_region(self, x_pos=0, y_pos=0, z_pos=0, x_neg=0, y_neg=0, z_neg=0 References ---------- - >>> oEditor.CreateRegion """ return self.create_region(pad_percent=[x_pos, x_neg, y_pos, y_neg, z_pos, z_neg], is_percentage=is_percentage) @@ -4182,7 +4133,6 @@ def edit_region_dimensions(self, values): References ---------- - >>> oEditor.ChangeProperty """ arg = ["NAME:AllTabs"] @@ -4219,7 +4169,6 @@ def create_face_list(self, assignment, name=None): References ---------- - >>> oEditor.CreateEntityList """ if name: @@ -4259,7 +4208,6 @@ def create_object_list(self, assignment, name=None): References ---------- - >>> oEditor.CreateEntityList """ if name: @@ -4297,7 +4245,6 @@ def generate_object_history(self, assignment): References ---------- - >>> oEditor.GenerateHistory """ assignment = self.convert_to_selections(assignment) @@ -4446,7 +4393,6 @@ def get_entitylist_id(self, name): References ---------- - >>> oEditor.GetEntityListIDByName """ id = self.oeditor.GetEntityListIDByName(name) @@ -4492,7 +4438,6 @@ def explicitly_subtract(self, tool_parts, blank_parts): References ---------- - >>> oEditor.Subtract >>> oEditor.PurgeHistory """ @@ -4584,7 +4529,6 @@ def get_bounding_dimension(self): References ---------- - >>> oEditor.GetModelBoundingBox """ oBoundingBox = list(self.oeditor.GetModelBoundingBox()) @@ -4610,7 +4554,6 @@ def get_object_name_from_edge_id(self, assignment): References ---------- - >>> oEditor.GetEdgeIDsFromObject """ for object in self.solid_names + self.sheet_names + self.line_names: @@ -4633,7 +4576,6 @@ def get_solving_volume(self): References ---------- - >>> oEditor.GetModelBoundingBox """ bound = self.get_model_bounding_box() @@ -4682,7 +4624,6 @@ def get_vertices_of_line(self, assignment): References ---------- - >>> oEditor.GetVertexIDsFromObject """ position_list = [] @@ -4748,7 +4689,6 @@ def export_3d_model( References ---------- - >>> oEditor.Export """ @@ -4871,7 +4811,6 @@ def import_3d_cad( References ---------- - >>> oEditor.Import """ if str(healing) in ["0", "1"]: @@ -4924,7 +4863,6 @@ def import_spaceclaim_document(self, input_file): # pragma: no cover References ---------- - >>> oEditor.CreateUserDefinedModel """ env_var = os.environ @@ -5145,7 +5083,6 @@ def import_discovery_model(self, input_file): References ---------- - >>> oEditor.CreateUserDefinedModel """ if is_linux: # pragma: no cover @@ -5258,7 +5195,6 @@ def break_spaceclaim_connection(self): # TODO: Need to change this name. Don't References ---------- - >>> oEditor.BreakUDMConnection """ args = ["NAME:Selections", "Selections:=", "SpaceClaim1"] @@ -5282,7 +5218,6 @@ def load_scdm_in_hfss(self, input_file): References ---------- - >>> oEditor.CreateUserDefinedModel >>> oEditor.BreakUDMConnection """ @@ -5307,7 +5242,6 @@ def get_faces_from_materials(self, filter_materials): References ---------- - >>> oEditor.GetObjectsByMaterial >>> oEditor.GetFaceIDs """ @@ -5349,7 +5283,6 @@ def scale(self, assignment, x=2.0, y=2.0, z=2.0): References ---------- - >>> oEditor.Scale """ selections = self.convert_to_selections(assignment, True) @@ -5374,7 +5307,6 @@ def select_allfaces_fromobjects(self, assignment): References ---------- - >>> oEditor.GetFaceIDs """ self.logger.info("Selecting outer faces.") @@ -5399,7 +5331,6 @@ def setunassigned_mats(self): References ---------- - >>> oEditor.SetPropertyValue """ oObjects = list(self.oeditor.GetObjectsInGroup("Solids")) @@ -5436,7 +5367,6 @@ def automatic_thicken_sheets(self, assignment, value, extrude_internally=True, i References ---------- - >>> oEditor.ThickenSheet """ aedt_bounding_box = self.get_model_bounding_box() @@ -5535,7 +5465,6 @@ def move_face(self, assignment, offset=1.0): References ---------- - >>> oEditor.MoveFaces """ @@ -5596,7 +5525,6 @@ def move_edge(self, assignment, offset=1.0): References ---------- - >>> oEditor.MoveEdges """ @@ -5664,7 +5592,6 @@ def create_group(self, objects=None, components=None, groups=None, group_name=No References ---------- - >>> oEditor.CreateGroup """ if components is None and groups is None and objects is None: @@ -5728,7 +5655,6 @@ def ungroup(self, groups): References ---------- - >>> oEditor.Ungroup """ group_list = self.convert_to_selections(groups, return_list=True) @@ -5747,7 +5673,6 @@ def flatten_assembly(self): References ---------- - >>> oEditor.FlattenGroup """ self.oeditor.FlattenGroup(["Groups:=", ["Model"]]) @@ -6141,7 +6066,6 @@ def create_point(self, position, name=None, color="(143 175 143)"): References ---------- - >>> oEditor.CreateBox Examples @@ -6213,7 +6137,6 @@ def create_plane( References ---------- - >>> oEditor.CreateBox Examples @@ -6504,7 +6427,6 @@ def create_subregion(self, padding_values, padding_types, assignment, name=None) References ---------- - >>> oEditor.CreateRegion """ if name is None: @@ -6531,7 +6453,6 @@ def reassign_subregion(self, region, parts): References ---------- - >>> oEditor.CreateRegion """ is_percentage = region.padding_types in ["Percentage Offset", "Transverse Percentage Offset"] @@ -6653,7 +6574,6 @@ def create_region(self, pad_value=300, pad_type="Percentage Offset", name="Regio References ---------- - >>> oEditor.CreateRegion """ # backward compatibility @@ -6694,7 +6614,6 @@ def create_object_from_edge(self, assignment, non_model=False): References ---------- - >>> oEditor.CreateObjectFromFaces """ edge_ids = self.convert_to_selections(assignment, True) @@ -6744,7 +6663,6 @@ def create_object_from_face(self, assignment, non_model=False): References ---------- - >>> oEditor.CreateObjectFromFaces """ face_ids = self.convert_to_selections(assignment, True) @@ -6910,7 +6828,6 @@ def create_polyline( References ---------- - >>> oEditor.CreatePolyline Examples @@ -7115,7 +7032,6 @@ def create_udp(self, dll, parameters, library="syslib", name=None): References ---------- - >>> oEditor.CreateUserDefinedPart Examples @@ -7173,7 +7089,6 @@ def update_udp(self, assignment, operation, parameters): References ---------- - >>> oEditor.CreateUserDefinedPart Examples @@ -7222,7 +7137,6 @@ def delete(self, assignment=None): References ---------- - >>> oEditor.Delete """ @@ -7279,7 +7193,6 @@ def delete_objects_containing(self, contained_string, case_sensitive=True): References ---------- - >>> oEditor.Delete """ @@ -7636,7 +7549,6 @@ def get_object_faces(self, assignment): References ---------- - >>> oEditor.GetFaceIDs """ @@ -7667,7 +7579,6 @@ def get_object_edges(self, assignment): References ---------- - >>> oEditor.GetEdgeIDsFromObject """ @@ -7697,7 +7608,6 @@ def get_face_edges(self, assignment): References ---------- - >>> oEditor.GetEdgeIDsFromFace """ @@ -7721,7 +7631,6 @@ def get_object_vertices(self, assignment): References ---------- - >>> oEditor.GetVertexIDsFromObject """ @@ -7753,7 +7662,6 @@ def get_face_vertices(self, assignment): References ---------- - >>> oEditor.GetVertexIDsFromFace """ @@ -7806,7 +7714,6 @@ def get_edge_vertices(self, assignment): References ---------- - >>> oEditor.GetVertexIDsFromEdge """ @@ -7834,7 +7741,6 @@ def get_vertex_position(self, assignment): References ---------- - >>> oEditor.GetVertexPosition """ @@ -7862,7 +7768,6 @@ def get_face_area(self, assignment): References ---------- - >>> oEditor.GetFaceArea """ @@ -7887,7 +7792,6 @@ def get_face_center(self, assignment): References ---------- - >>> oEditor.GetFaceCenter """ @@ -7989,7 +7893,6 @@ def get_bodynames_from_position(self, position, units=None, include_non_model=Tr References ---------- - >>> oEditor.GetBodyNamesByPosition """ @@ -8066,7 +7969,6 @@ def get_edgeids_from_vertexid(self, vertex, assignment): References ---------- - >>> oEditor.GetEdgeIDsFromObject >>> oEditor.GetVertexIDsFromEdge @@ -8102,7 +8004,6 @@ def get_faceid_from_position(self, position, assignment=None, units=None): References ---------- - >>> oEditor.GetFaceByPosition """ @@ -9003,12 +8904,10 @@ def convert_segments_to_line(self, assignment): References ---------- - >>> oEditor.ChangeProperty Examples -------- - >>> from ansys.aedt.core import Hfss >>> aedtapp = Hfss() >>> edge_object = aedtapp.modeler.create_object_from_edge("my_edge") diff --git a/src/ansys/aedt/core/modeler/cad/primitives_2d.py b/src/ansys/aedt/core/modeler/cad/primitives_2d.py index c07ac588d00..004de148811 100644 --- a/src/ansys/aedt/core/modeler/cad/primitives_2d.py +++ b/src/ansys/aedt/core/modeler/cad/primitives_2d.py @@ -90,7 +90,6 @@ def create_circle( References ---------- - >>> oEditor.CreateCircle Examples @@ -168,7 +167,6 @@ def create_ellipse( References ---------- - >>> oEditor.CreateEllipse Examples @@ -221,7 +219,6 @@ def create_rectangle(self, origin, sizes, is_covered=True, name=None, material=N References ---------- - >>> oEditor.CreateRectangle Examples @@ -284,7 +281,6 @@ def create_regular_polygon( References ---------- - >>> oEditor.CreateRegularPolygon Examples @@ -346,7 +342,6 @@ def create_region(self, pad_value=300, pad_type="Percentage Offset", name="Regio References ---------- - >>> oEditor.CreateRegion """ # backward compatibility diff --git a/src/ansys/aedt/core/modeler/cad/primitives_3d.py b/src/ansys/aedt/core/modeler/cad/primitives_3d.py index abc835c3b98..87271bf616d 100644 --- a/src/ansys/aedt/core/modeler/cad/primitives_3d.py +++ b/src/ansys/aedt/core/modeler/cad/primitives_3d.py @@ -132,7 +132,6 @@ def create_box(self, origin, sizes, name=None, material=None, **kwargs): References ---------- - >>> oEditor.CreateBox Examples @@ -205,7 +204,6 @@ def create_cylinder(self, orientation, origin, radius, height, num_sides=0, name References ---------- - >>> oEditor.CreateCylinder Examples @@ -290,7 +288,6 @@ def create_polyhedron(self, orientation=None, center=(0.0, 0.0, 0.0), origin=(0. References ---------- - >>> oEditor.CreateRegularPolyhedron Examples @@ -371,7 +368,6 @@ def create_cone(self, orientation, origin, bottom_radius, top_radius, height, na References ---------- - >>> oEditor.CreateCone Examples @@ -452,7 +448,6 @@ def create_sphere(self, origin, radius, name=None, material=None, **kwargs): References ---------- - >>> oEditor.CreateSphere Examples @@ -523,7 +518,6 @@ def create_torus(self, origin, major_radius, minor_radius, axis=None, name=None, References ---------- - >>> oEditor.CreateTorus Examples @@ -629,7 +623,6 @@ def create_bondwire(self, start, end, h1=0.2, h2=0, alpha=80, beta=5, bond_type= References ---------- - >>> oEditor.CreateBondwire Examples @@ -749,7 +742,6 @@ def create_rectangle(self, orientation, origin, sizes, name=None, material=None, References ---------- - >>> oEditor.CreateRectangle """ if len(sizes) != 2: @@ -809,7 +801,6 @@ def create_circle(self, orientation, origin, radius, num_sides=0, is_covered=Tru References ---------- - >>> oEditor.CreateCircle Examples @@ -902,7 +893,6 @@ def create_ellipse( References ---------- - >>> oEditor.CreateEllipse Examples @@ -1009,7 +999,6 @@ def create_equationbased_curve(self, x_t=0, y_t=0, z_t=0, t_start=0, t_end=1, nu References ---------- - >>> oEditor.CreateEquationCurve Examples @@ -1111,7 +1100,6 @@ def create_equationbased_surface(self, x_uv=0, y_uv=0, z_uv=0, u_start=0, u_end= References ---------- - >>> oEditor.CreateEquationSurface Examples @@ -1196,7 +1184,6 @@ def create_helix(self, assignment, origin, x_start_dir, y_start_dir, z_start_dir References ---------- - >>> oEditor.CreateHelix Examples @@ -1285,7 +1272,6 @@ def create_udm( References ---------- - >>> oEditor.CreateUserDefinedModel """ @@ -1586,7 +1572,6 @@ def insert_3d_component( References ---------- - >>> oEditor.Insert3DComponent """ if password is None: @@ -1789,7 +1774,6 @@ def insert_layout_component( References ---------- - >>> oEditor.InsertNativeComponent Examples @@ -2040,7 +2024,6 @@ def get_3d_component_object_list(self, name): References ---------- - >>> oeditor.GetChildObject """ if self._app._is_object_oriented_enabled(): @@ -2161,7 +2144,6 @@ def add_person( References ---------- - >>> oEditor.Insert3DComponent """ self._initialize_multipart() @@ -2250,7 +2232,6 @@ def add_vehicle( References ---------- - >>> oEditor.Insert3DComponent """ self._initialize_multipart() @@ -2353,7 +2334,6 @@ def add_bird( References ---------- - >>> oEditor.Insert3DComponent Examples @@ -2434,7 +2414,6 @@ def add_environment( References ---------- - >>> oEditor.Insert3DComponent """ diff --git a/src/ansys/aedt/core/modeler/circuits/object_3d_circuit.py b/src/ansys/aedt/core/modeler/circuits/object_3d_circuit.py index 1551d66403c..6c67f490567 100644 --- a/src/ansys/aedt/core/modeler/circuits/object_3d_circuit.py +++ b/src/ansys/aedt/core/modeler/circuits/object_3d_circuit.py @@ -57,7 +57,6 @@ def location(self): References ---------- - >>> oPadstackManager.GetComponentPinLocation """ if "Port" in self._circuit_comp.composed_name: @@ -188,7 +187,6 @@ def connect_to_component( References ---------- - >>> oPadstackManager.CreatePagePort """ tol = 1e-8 @@ -522,7 +520,6 @@ def parameters(self): References ---------- - >>> oEditor.GetProperties >>> oEditor.GetPropertyValue """ @@ -558,7 +555,6 @@ def component_info(self): References ---------- - >>> oEditor.GetProperties >>> oEditor.GetPropertyValue """ @@ -637,7 +633,6 @@ def location(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty """ @@ -678,7 +673,6 @@ def angle(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty """ @@ -734,7 +728,6 @@ def mirror(self): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty """ @@ -780,7 +773,6 @@ def set_use_symbol_color(self, color=None): References ---------- - >>> oEditor.ChangeProperty """ if not color: @@ -809,7 +801,6 @@ def set_color(self, red=255, green=128, blue=0): References ---------- - >>> oEditor.ChangeProperty """ vMaterial = ["NAME:Component Color", "R:=", red, "G:=", green, "B:=", blue] @@ -834,7 +825,6 @@ def set_property(self, name, value): References ---------- - >>> oEditor.ChangeProperty """ if isinstance(name, list): @@ -894,7 +884,6 @@ def change_property(self, property_name, names=None): References ---------- - >>> oEditor.GetPropertyValue >>> oEditor.ChangeProperty """ @@ -931,7 +920,6 @@ def enforce_touchstone_model_passive(self): References ---------- - >>> oModelManager.EditWithComps """ props = self.model_data.props diff --git a/src/ansys/aedt/core/modeler/circuits/primitives_circuit.py b/src/ansys/aedt/core/modeler/circuits/primitives_circuit.py index 6f7567451dd..b5f32fc57d3 100644 --- a/src/ansys/aedt/core/modeler/circuits/primitives_circuit.py +++ b/src/ansys/aedt/core/modeler/circuits/primitives_circuit.py @@ -45,7 +45,6 @@ class CircuitComponents(object): Examples -------- - >>> from ansys.aedt.core import Circuit >>> aedtapp = Circuit() >>> prim = aedtapp.modeler.schematic @@ -136,7 +135,6 @@ def o_definition_manager(self): References ---------- - >>> oDefinitionManager = oProject.GetDefinitionManager() """ return self._app.oproject.GetDefinitionManager() @@ -284,7 +282,6 @@ def add_pin_iports(self, name, id_num): References ---------- - >>> oeditor.AddPinIPorts """ comp_id = "CompInst@" + name + ";" + str(id_num) + ";395" @@ -313,7 +310,6 @@ def create_interface_port(self, name, location=None, angle=0): References ---------- - >>> oEditor.CreateIPort """ if location is None: @@ -358,7 +354,6 @@ def create_page_port(self, name, location=None, angle=0): References ---------- - >>> oEditor.CreatePagePort """ location = [] if location is None else location @@ -432,7 +427,6 @@ def create_model_from_touchstone(self, input_file, model_name=None, show_bitmap= References ---------- - >>> oModelManager.Add >>> oComponentManager.Add """ @@ -725,7 +719,6 @@ def create_touchstone_component( References ---------- - >>> oModelManager.Add >>> oComponentManager.Add >>> oEditor.CreateComponent @@ -791,7 +784,6 @@ def create_component( References ---------- - >>> oEditor.CreateComponent Examples @@ -840,7 +832,6 @@ def disable_data_netlist(self, assignment): References ---------- - >>> oComponentManager.GetData >>> oComponentManager.Edit """ @@ -877,7 +868,6 @@ def enable_global_netlist(self, assignment, global_netlist_list=None): References ---------- - >>> oComponentManager.GetData >>> oComponentManager.Edit """ @@ -918,7 +908,6 @@ def create_symbol(self, name, pins): References ---------- - >>> oSymbolManager.Add """ numpins = len(pins) @@ -998,7 +987,6 @@ def enable_use_instance_name(self, component_library="", component_name="RES_"): References ---------- - >>> oComponentManager.GetData >>> oComponentManager.Edit """ @@ -1033,7 +1021,6 @@ def refresh_all_ids(self): References ---------- - >>> oEditor.GetAllElements() """ obj = self.oeditor.GetAllElements() @@ -1124,7 +1111,6 @@ def get_pins(self, assignment): References ---------- - >>> oEditor.GetComponentPins """ if isinstance(assignment, CircuitComponent): @@ -1155,7 +1141,6 @@ def get_pin_location(self, assignment, pin): References ---------- - >>> oEditor.GetComponentPinLocation """ @@ -1233,7 +1218,6 @@ def create_wire(self, points, name=""): References ---------- - >>> oEditor.CreateWire """ points = [str(tuple(self._convert_point_to_meter(i))) for i in points] @@ -1296,7 +1280,6 @@ def place(self, assignment, location=None, angle=0, use_instance_id_netlist=Fals References ---------- - >>> oEditor.CreateComponent """ if location is None: diff --git a/src/ansys/aedt/core/modeler/circuits/primitives_emit.py b/src/ansys/aedt/core/modeler/circuits/primitives_emit.py index ad762bf0bd1..3f3aef61c98 100644 --- a/src/ansys/aedt/core/modeler/circuits/primitives_emit.py +++ b/src/ansys/aedt/core/modeler/circuits/primitives_emit.py @@ -71,7 +71,6 @@ def o_definition_manager(self): References ---------- - >>> oDefinitionManager = oProject.GetDefinitionManager() """ return self._parent._oproject.GetDefinitionManager() @@ -82,7 +81,6 @@ def o_symbol_manager(self): References ---------- - >>> oSymbolManager = oDefinitionManager.GetManager("Symbol") """ return self._parent.o_symbol_manager @@ -93,7 +91,6 @@ def o_component_manager(self): References ---------- - >>> oComponentManager = oDefinitionManager.GetManager("Component") """ return self._parent.o_component_manager @@ -158,7 +155,6 @@ def create_component(self, component_type, name=None, library=None): References ---------- - >>> oEditor.CreateComponent """ # Pass an empty string to allow name to be automatically assigned. @@ -202,7 +198,6 @@ def create_radio_antenna(self, radio_type, radio_name=None, antenna_name=None, l References ---------- - >>> oEditor.CreateComponent """ # Pass an empty string to allow name to be automatically assigned. @@ -423,7 +418,6 @@ def port_connection(self, port_name): References ---------- - >>> oEditor.GetWireAtPort >>> oEditor.GetWireConnections """ @@ -448,7 +442,6 @@ def update_property_tree(self): References ---------- - >>> oDesign.GetComponentNodeNames """ node_names = sorted(self.odesign.GetComponentNodeNames(self.name)) @@ -483,7 +476,6 @@ def get_node_properties(self, node=None): References ---------- - >>> oDesign.GetComponentNodeNames >>> oDesign.GetComponentNodeProperties """ @@ -968,7 +960,7 @@ def has_rx_channels(self): return len(nodes) > 0 def get_connected_antennas(self): - """Returns a list of antennas connected to this radio instance. + """Return a list of antennas connected to this radio instance. Parameters ---------- @@ -1153,7 +1145,7 @@ def set_channel_sampling(self, sampling_type="Uniform", percentage=None, max_cha @pyaedt_function_handler() def _set_prop_value(self, props=None): - """Sets the property values for this node. + """Set the property values for this node. Parameters ---------- @@ -1183,7 +1175,7 @@ def _set_prop_value(self, props=None): @enabled.setter def enabled(self, value): - """Sets the node enabled or disabled. + """Set the node enabled or disabled. Parameters ---------- diff --git a/src/ansys/aedt/core/modeler/circuits/primitives_maxwell_circuit.py b/src/ansys/aedt/core/modeler/circuits/primitives_maxwell_circuit.py index e83ee107cfe..d5a815724bf 100644 --- a/src/ansys/aedt/core/modeler/circuits/primitives_maxwell_circuit.py +++ b/src/ansys/aedt/core/modeler/circuits/primitives_maxwell_circuit.py @@ -103,7 +103,6 @@ def create_resistor(self, name=None, value=50, location=None, angle=0, use_insta References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -146,7 +145,6 @@ def create_inductor(self, name=None, value=50, location=None, angle=0, use_insta References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -189,7 +187,6 @@ def create_capacitor(self, name=None, value=50, location=None, angle=0, use_inst References ---------- - >>> oEditor.CreateComponent """ if location is None: @@ -229,7 +226,6 @@ def create_diode(self, name=None, location=None, angle=0, use_instance_id_netlis References ---------- - >>> oEditor.CreateComponent """ if location is None: @@ -269,7 +265,6 @@ def create_winding(self, name=None, location=None, angle=0, use_instance_id_netl References ---------- - >>> oEditor.CreateComponent """ if location is None: diff --git a/src/ansys/aedt/core/modeler/circuits/primitives_nexxim.py b/src/ansys/aedt/core/modeler/circuits/primitives_nexxim.py index 050299f9ab6..e5afd8a57d0 100644 --- a/src/ansys/aedt/core/modeler/circuits/primitives_nexxim.py +++ b/src/ansys/aedt/core/modeler/circuits/primitives_nexxim.py @@ -375,7 +375,6 @@ def add_subcircuit_3dlayout(self, name): References ---------- - >>> oProject.CopyDesign >>> oEditor.PasteDesign """ @@ -412,7 +411,6 @@ def create_field_model(self, design_name, solution_name, pin_names, model_type=" References ---------- - >>> oModelManager.Add >>> oComponentManager.Add """ @@ -667,7 +665,6 @@ def create_resistor(self, name=None, value=50, location=None, angle=0, use_insta References ---------- - >>> oEditor.CreateComponent """ if location is None: @@ -704,7 +701,6 @@ def create_inductor(self, name=None, value=50, location=None, angle=0, use_insta References ---------- - >>> oEditor.CreateComponent """ if location is None: @@ -747,7 +743,6 @@ def create_capacitor(self, name=None, value=50, location=None, angle=0, use_inst References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -790,7 +785,6 @@ def create_voltage_dc(self, name=None, value=1, location=None, angle=0, use_inst References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -939,7 +933,6 @@ def create_current_pulse(self, name=None, value_lists=None, location=None, angle References ---------- - >>> oEditor.CreateComponent """ if value_lists is None: @@ -997,7 +990,6 @@ def create_voltage_pulse(self, name=None, value_lists=None, location=None, angle References ---------- - >>> oEditor.CreateComponent """ if value_lists is None: @@ -1110,7 +1102,6 @@ def create_current_dc(self, name=None, value=1, location=None, angle=0, use_inst References ---------- - >>> oEditor.CreateComponent """ if location is None: @@ -1157,7 +1148,6 @@ def create_coupling_inductors( References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -1202,7 +1192,6 @@ def create_diode(self, name=None, model_name="required", location=None, angle=0, References ---------- - >>> oEditor.CreateComponent """ if location is None: @@ -1244,7 +1233,6 @@ def create_npn(self, name=None, value=None, location=None, angle=0, use_instance References ---------- - >>> oEditor.CreateComponent """ if location is None: @@ -1286,7 +1274,6 @@ def create_pnp(self, name=None, value=50, location=None, angle=0, use_instance_i References ---------- - >>> oEditor.CreateComponent """ if location is None: @@ -1348,7 +1335,6 @@ def create_new_component_from_symbol( References ---------- - >>> oModelManager.Add >>> oComponentManager.Add """ @@ -1572,7 +1558,6 @@ def add_subcircuit_dynamic_link( References ---------- - >>> oModelManager.Add >>> oComponentManager.Add >>> oDesign.AddCompInstance @@ -1658,7 +1643,6 @@ def _add_subcircuit_link( References ---------- - >>> oModelManager.Add >>> oComponentManager.Add >>> oDesign.AddCompInstance @@ -1926,7 +1910,6 @@ def set_sim_option_on_hfss_subcircuit(self, component, option="simulate"): References ---------- - >>> oProject.ChangeProperty """ if option == "simulate": @@ -1956,7 +1939,6 @@ def set_sim_solution_on_hfss_subcircuit(self, component, solution_name="Setup1 : References ---------- - >>> oProject.ChangeProperty """ arg = ["NAME:Solution", "Value:=", solution_name] @@ -2002,7 +1984,6 @@ def refresh_dynamic_link(self, name): References ---------- - >>> oComponentManager.UpdateDynamicLink """ if "@" in name: diff --git a/src/ansys/aedt/core/modeler/circuits/primitives_twin_builder.py b/src/ansys/aedt/core/modeler/circuits/primitives_twin_builder.py index ffbc8b088a2..3e323a757aa 100644 --- a/src/ansys/aedt/core/modeler/circuits/primitives_twin_builder.py +++ b/src/ansys/aedt/core/modeler/circuits/primitives_twin_builder.py @@ -132,7 +132,6 @@ def create_resistor(self, name=None, value=50, location=None, angle=0, use_insta References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -175,7 +174,6 @@ def create_inductor(self, name=None, value=50, location=None, angle=0, use_insta References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -217,7 +215,6 @@ def create_capacitor(self, name=None, value=50, location=None, angle=0, use_inst References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -266,7 +263,6 @@ def create_voltage_source( References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -315,7 +311,6 @@ def create_diode(self, name=None, location=None, angle=0, use_instance_id_netlis References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -353,7 +348,6 @@ def create_npn(self, name=None, location=None, angle=0, use_instance_id_netlist= References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -391,7 +385,6 @@ def create_pnp(self, name=None, location=None, angle=0, use_instance_id_netlist= References ---------- - >>> oEditor.CreateComponent """ if location == None: @@ -455,7 +448,6 @@ def create_periodic_waveform_source( References ---------- - >>> oEditor.CreateComponent """ if location == None: diff --git a/src/ansys/aedt/core/modeler/modeler_2d.py b/src/ansys/aedt/core/modeler/modeler_2d.py index 8218ab1fd65..9476d7a78b9 100644 --- a/src/ansys/aedt/core/modeler/modeler_2d.py +++ b/src/ansys/aedt/core/modeler/modeler_2d.py @@ -49,7 +49,6 @@ def oeditor(self): References ---------- - >>> oEditor = oDesign.SetActiveEditor("Machine")""" return self._app.oeditor diff --git a/src/ansys/aedt/core/modeler/modeler_3d.py b/src/ansys/aedt/core/modeler/modeler_3d.py index 2c60c11c2a7..907d396a32c 100644 --- a/src/ansys/aedt/core/modeler/modeler_3d.py +++ b/src/ansys/aedt/core/modeler/modeler_3d.py @@ -467,7 +467,6 @@ def replace_3dcomponent( References ---------- - >>> oEditor.ReplaceWith3DComponent """ if not variables_to_include: @@ -651,7 +650,6 @@ def create_coaxial( References ---------- - >>> oEditor.CreateCylinder >>> oEditor.AssignMaterial @@ -732,7 +730,6 @@ def create_waveguide( References ---------- - >>> oEditor.CreateBox >>> oEditor.AssignMaterial @@ -903,7 +900,6 @@ def create_conical_rings( References ---------- - >>> oEditor.CreatePolyline >>> oEditor.SweepAroundAxis >>> oEditor.ThickenSheet diff --git a/src/ansys/aedt/core/modeler/modeler_pcb.py b/src/ansys/aedt/core/modeler/modeler_pcb.py index 1eb485a22b9..c133eab086e 100644 --- a/src/ansys/aedt/core/modeler/modeler_pcb.py +++ b/src/ansys/aedt/core/modeler/modeler_pcb.py @@ -92,7 +92,6 @@ def oeditor(self): References ---------- - >>> oEditor = oDesign.SetActiveEditor("Layout")""" return self._app.oeditor @@ -153,7 +152,6 @@ def fit_all(self): References ---------- - >>> oEditor.ZoomToFit() """ try: @@ -168,7 +166,6 @@ def model_units(self): References ---------- - >>> oEditor.GetActiveUnits >>> oEditor.SetActiveUnits """ @@ -211,7 +208,6 @@ def obounding_box(self, assignment): References ---------- - >>> oEditor.GetBBox """ bb = self.oeditor.GetBBox(assignment) @@ -273,7 +269,6 @@ def change_property(self, assignment, name, value, aedt_tab="BaseElementTab"): References ---------- - >>> oEditor.ChangeProperty """ if isinstance(value, list) and len(value) == 3: @@ -394,7 +389,6 @@ def change_clip_plane_position(self, name, location): References ---------- - >>> oEditor.ChangeProperty """ return self.change_property(name, "Location", location) @@ -418,7 +412,6 @@ def colinear_heal(self, assignment, tolerance=0.1): References ---------- - >>> oEditor.Heal @@ -473,7 +466,6 @@ def expand(self, assignment, size=1, expand_type="ROUND", replace_original=False References ---------- - >>> oEditor.Expand @@ -528,7 +520,6 @@ def import_cadence_brd(self, input_file, output_dir=None, name=None): References ---------- - >>> oImportExport.ImportExtracta """ if not output_dir: @@ -582,7 +573,6 @@ def import_ipc2581(self, input_file, output_dir=None, name=None): References ---------- - >>> oImportExport.ImportIPC """ if not output_dir: @@ -615,7 +605,6 @@ def subtract(self, blank, tool): References ---------- - >>> oEditor.Subtract """ blank = self.convert_to_selections(blank) @@ -681,7 +670,6 @@ def unite(self, assignment): References ---------- - >>> oEditor.Unite """ @@ -714,7 +702,6 @@ def intersect(self, assignment): References ---------- - >>> oEditor.Intersect """ vArg1 = ["NAME:primitives"] @@ -750,7 +737,6 @@ def duplicate(self, assignment, count, vector): References ---------- - >>> oEditor.Duplicate """ assignment = self.convert_to_selections(assignment, True) @@ -777,7 +763,6 @@ def duplicate_across_layers(self, assignment, layers): References ---------- - >>> oEditor.DuplicateAcrossLyrs """ assignment = self.convert_to_selections(assignment, True) @@ -820,7 +805,6 @@ def set_temperature_dependence( References ---------- - >>> oDesign.SetTemperatureSettings """ self.logger.info("Set the temperature dependence for the design.") diff --git a/src/ansys/aedt/core/modeler/pcb/object_3d_layout.py b/src/ansys/aedt/core/modeler/pcb/object_3d_layout.py index ae12f30856f..2c486165bff 100644 --- a/src/ansys/aedt/core/modeler/pcb/object_3d_layout.py +++ b/src/ansys/aedt/core/modeler/pcb/object_3d_layout.py @@ -84,7 +84,6 @@ def change_property(self, value, names=None): References ---------- - >>> oEditor.ChangeProperty """ vChangedProps = ["NAME:ChangedProps", value] @@ -118,7 +117,6 @@ def set_property_value(self, name, value): References ---------- - >>> oEditor.ChangeProperty """ if "Pt" in name: @@ -139,7 +137,6 @@ def angle(self): References ---------- - >>> oEditor.GetPropertyValue """ if self.prim_type in ["component", "pin", "via"]: @@ -196,7 +193,6 @@ def net_name(self): References ---------- - >>> oEditor.GetPropertyValue """ if self.prim_type not in ["component"]: @@ -219,7 +215,6 @@ def placement_layer(self): References ---------- - >>> oEditor.GetPropertyValue """ if self.prim_type not in ["pin", "via"]: @@ -400,7 +395,6 @@ def lock_position(self): References ---------- - >>> oEditor.ChangeProperty """ return ( @@ -513,7 +507,6 @@ def part(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "Part") @@ -529,7 +522,6 @@ def part_type(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "Part Type") @@ -1007,7 +999,6 @@ def start_layer(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "Start Layer") @@ -1023,7 +1014,6 @@ def stop_layer(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "Stop Layer") @@ -1039,7 +1029,6 @@ def holediam(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "HoleDiameter") @@ -1064,7 +1053,6 @@ def obounding_box(self): References ---------- - >>> oEditor.GetBBox """ return self._primitives.obounding_box(self.name) @@ -1241,7 +1229,6 @@ def get_property_value(self, name): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, name) @@ -1261,7 +1248,6 @@ def negative(self): References ---------- - >>> oEditor.ChangeProperty """ if self.is_void: @@ -1287,7 +1273,6 @@ def net_name(self): References ---------- - >>> oEditor.GetPropertyValue """ if self.is_void: @@ -1353,7 +1338,6 @@ def center(self): References ---------- - >>> oEditor.GetPropertyValue """ cent = self._oeditor.GetPropertyValue("BaseElementTab", self.name, "Center") @@ -1376,7 +1360,6 @@ def radius(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "Radius") @@ -1404,7 +1387,6 @@ def corner_radius(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "CornerRadius") @@ -1425,7 +1407,6 @@ def two_point_description(self): References ---------- - >>> oEditor.GetPropertyValue """ return ( @@ -1450,7 +1431,6 @@ def center(self): References ---------- - >>> oEditor.GetPropertyValue """ if not self.two_point_description: @@ -1475,7 +1455,6 @@ def width(self): References ---------- - >>> oEditor.GetPropertyValue """ if not self.two_point_description: @@ -1498,7 +1477,6 @@ def height(self): References ---------- - >>> oEditor.GetPropertyValue """ if not self.two_point_description: @@ -1521,7 +1499,6 @@ def point_a(self): References ---------- - >>> oEditor.GetPropertyValue """ if self.two_point_description: @@ -1546,7 +1523,6 @@ def point_b(self): References ---------- - >>> oEditor.GetPropertyValue """ if self.two_point_description: @@ -1580,7 +1556,6 @@ def bend_type(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "BendType") @@ -1601,7 +1576,6 @@ def start_cap_type(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "StartCapType") @@ -1622,7 +1596,6 @@ def end_cap_type(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "EndCapType") @@ -1643,7 +1616,6 @@ def width(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "LineWidth") @@ -1664,7 +1636,6 @@ def length(self): References ---------- - >>> oEditor.GetPropertyValue """ return self._oeditor.GetPropertyValue("BaseElementTab", self.name, "TotalLength") @@ -1879,7 +1850,6 @@ def angle(self): References ---------- - >>> oEditor.GetPropertyValue """ if self.is_3d_placement: @@ -1991,7 +1961,6 @@ def location(self): References ---------- - >>> oEditor.GetPropertyValue """ location = self._oeditor.GetPropertyValue("BaseElementTab", self.name, "Location").split(",") @@ -2351,7 +2320,6 @@ def create(self): References ---------- - >>> oPadstackManager.Add """ @@ -2369,7 +2337,6 @@ def update(self): References ---------- - >>> oPadstackManager.Edit """ @@ -2386,7 +2353,6 @@ def remove(self): References ---------- - >>> oPadstackManager.Remove """ diff --git a/src/ansys/aedt/core/modeler/pcb/primitives_3d_layout.py b/src/ansys/aedt/core/modeler/pcb/primitives_3d_layout.py index c32d2310232..ca12d6eae8a 100644 --- a/src/ansys/aedt/core/modeler/pcb/primitives_3d_layout.py +++ b/src/ansys/aedt/core/modeler/pcb/primitives_3d_layout.py @@ -123,7 +123,6 @@ def opadstackmanager(self): References ---------- - >>> oPadstackManger = oDefinitionManager.GetManager("Padstack") """ return self._app.opadstackmanager @@ -846,7 +845,6 @@ def change_net_visibility(self, assignment=None, visible=False): References ---------- - >>> oEditor.SetNetVisible """ nets_dictionary = {} @@ -935,7 +933,6 @@ def create_via( References ---------- - >>> oEditor.CreateVia """ layers = self.modeler.layers.all_signal_layers @@ -1014,7 +1011,6 @@ def create_circle(self, layer, x, y, radius, name=None, net=None, **kwargs): References ---------- - >>> oEditor.CreateCircle """ if not name: @@ -1071,7 +1067,6 @@ def create_rectangle(self, layer, origin, sizes, corner_radius=0, angle=0, name= References ---------- - >>> oEditor.CreateRectangle """ if not name: @@ -1129,7 +1124,6 @@ def create_polygon(self, layer, point_list, units=None, name=None, net=None): References ---------- - >>> oEditor.CreatePolygon """ if not name: @@ -1184,7 +1178,6 @@ def create_polygon_void(self, layer, points, assignment, units=None, name=None): References ---------- - >>> oEditor.CreatePolygon """ if not name: @@ -1256,7 +1249,6 @@ def create_line( References ---------- - >>> oEditor.CreateLine """ if "netname" in kwargs: diff --git a/src/ansys/aedt/core/modeler/schematic.py b/src/ansys/aedt/core/modeler/schematic.py index 5d4320e40f0..af339756a57 100644 --- a/src/ansys/aedt/core/modeler/schematic.py +++ b/src/ansys/aedt/core/modeler/schematic.py @@ -107,7 +107,6 @@ def oeditor(self): References ---------- - >>> oEditor = oDesign.SetActiveEditor("SchematicEditor")""" return self._app.oeditor @@ -117,7 +116,6 @@ def zoom_to_fit(self): References ---------- - >>> oEditor.ZoomToFit """ self.oeditor.ZoomToFit() @@ -157,7 +155,6 @@ def connect_schematic_components( References ---------- - >>> oEditor.CreateWire """ if self._app.design_type == "Maxwell Circuit": @@ -256,7 +253,6 @@ def create_text( References ---------- - >>> oEditor.CreateText """ @@ -372,7 +368,6 @@ def change_text_property(self, assignment, name, value): References ---------- - >>> oEditor.ChangeProperty """ graphics_id = [id.split("@")[1] for id in self.oeditor.GetAllGraphics()] @@ -502,7 +497,6 @@ def layouteditor(self): References ---------- - >>> oDesign.SetActiveEditor("Layout") """ return self._app.layouteditor @@ -549,7 +543,6 @@ def model_units(self): References ---------- - >>> oEditor.GetActiveUnits >>> oEditor.SetActiveUnits """ @@ -613,7 +606,6 @@ def move(self, assignment, offset, units=None): References ---------- - >>> oEditor.Move """ sels = self._get_components_selections(assignment) @@ -660,7 +652,6 @@ def rotate(self, assignment, degrees=90): References ---------- - >>> oEditor.Rotate """ sels = self._get_components_selections(assignment) diff --git a/src/ansys/aedt/core/modules/boundary/common.py b/src/ansys/aedt/core/modules/boundary/common.py index 8be386d7e31..c304f8e032d 100644 --- a/src/ansys/aedt/core/modules/boundary/common.py +++ b/src/ansys/aedt/core/modules/boundary/common.py @@ -22,9 +22,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -""" -This module contains these classes: ``BoundaryCommon`` and ``BoundaryObject``. -""" +"""This module contains these classes: ``BoundaryCommon`` and ``BoundaryObject``.""" from ansys.aedt.core.generic.data_handlers import _dict2arg from ansys.aedt.core.generic.general_methods import PropsManager diff --git a/src/ansys/aedt/core/modules/boundary/icepak_boundary.py b/src/ansys/aedt/core/modules/boundary/icepak_boundary.py index a990c89b447..817b5e7265e 100644 --- a/src/ansys/aedt/core/modules/boundary/icepak_boundary.py +++ b/src/ansys/aedt/core/modules/boundary/icepak_boundary.py @@ -1070,9 +1070,7 @@ def props(self): @pyaedt_function_handler() def delete_link(self): - """ - Delete link from network. - """ + """Delete link from network.""" self._network.props["Links"].pop(self.name) self._network._links.remove(self) diff --git a/src/ansys/aedt/core/modules/design_xploration.py b/src/ansys/aedt/core/modules/design_xploration.py index b6fe097b753..e3387c9a5fe 100644 --- a/src/ansys/aedt/core/modules/design_xploration.py +++ b/src/ansys/aedt/core/modules/design_xploration.py @@ -295,7 +295,6 @@ def update(self, update_dictionary: Optional[Dict[str, Any]] = None) -> bool: References ---------- - >>> oModule.EditSetup """ if update_dictionary: @@ -325,7 +324,6 @@ def create(self) -> bool: References ---------- - >>> oModule.InsertSetup """ arg = ["NAME:" + self.name] @@ -590,7 +588,6 @@ def analyze( References ---------- - >>> oDesign.Analyze """ return self._app.analyze( @@ -674,7 +671,6 @@ def add_calculation( References ---------- - >>> oModule.EditSetup """ return self._add_calculation( @@ -741,7 +737,6 @@ def add_goal( References ---------- - >>> oModule.EditSetup """ @@ -940,7 +935,6 @@ def add_variation( References ---------- - >>> oModule.EditSetup """ if sweep_variable not in self._app.variable_manager.variables: @@ -1010,7 +1004,6 @@ def sync_variables(self, variables, sync_n=1): References ---------- - >>> oModule.EditSetup """ if type(self.props["Sweeps"]["SweepDefinition"]) is not list: @@ -1083,7 +1076,6 @@ def add_calculation( References ---------- - >>> oModule.EditSetup """ return self._add_calculation( @@ -1188,7 +1180,6 @@ def add( References ---------- - >>> oModule.InsertSetup """ if variable not in self._app.variable_manager.variables: @@ -1438,7 +1429,6 @@ def add( References ---------- - >>> oModule.InsertSetup """ if not solution and not self._app.nominal_sweep: diff --git a/src/ansys/aedt/core/modules/layer_stackup.py b/src/ansys/aedt/core/modules/layer_stackup.py index ca39400732f..b02b5b9f6ac 100644 --- a/src/ansys/aedt/core/modules/layer_stackup.py +++ b/src/ansys/aedt/core/modules/layer_stackup.py @@ -881,7 +881,6 @@ def set_layer_color(self, r, g, b): References ---------- - >>> oEditor.ChangeLayer """ rgb = [r, g, b] @@ -899,7 +898,6 @@ def create_stackup_layer(self): References ---------- - >>> oEditor.AddStackupLayer """ self.remove_stackup_layer() @@ -1124,7 +1122,6 @@ def update_stackup_layer(self): References ---------- - >>> oEditor.ChangeLayer """ self.oeditor.ChangeLayer(self._get_layer_arg) @@ -1141,7 +1138,6 @@ def remove_stackup_layer(self): References ---------- - >>> oEditor.RemoveLayer """ if self.name in self.oeditor.GetStackupLayerNames(): @@ -1180,7 +1176,6 @@ def oeditor(self): References ---------- - >>> oEditor = oDesign.SetActiveEditor("Layout") """ return self._modeler.oeditor @@ -1216,7 +1211,6 @@ def all_layers(self): References ---------- - >>> oEditor.GetStackupLayerNames() """ return [i for i in self.oeditor.GetAllLayerNames() if ";" not in i] @@ -1232,7 +1226,6 @@ def drawing_layers(self): References ---------- - >>> oEditor.GetAllLayerNames() """ return [v for k, v in self.layers.items() if v.type not in ["signal", "via", "dielectric"]] @@ -1248,7 +1241,6 @@ def stackup_layers(self): References ---------- - >>> oEditor.GetAllLayerNames() """ return [v for k, v in self.layers.items() if v.type in ["signal", "via", "dielectric"]] @@ -1275,7 +1267,6 @@ def signals(self): References ---------- - >>> oEditor.GetAllLayerNames() """ return {k: v for k, v in self.layers.items() if v.type == "signal"} @@ -1291,7 +1282,6 @@ def dielectrics(self): References ---------- - >>> oEditor.GetAllLayerNames() """ return {k: v for k, v in self.layers.items() if v.type == "dielectric"} @@ -1307,7 +1297,6 @@ def drawings(self): References ---------- - >>> oEditor.GetAllLayerNames() """ return {k: v for k, v in self.layers.items() if v.type in ["signal", "via", "dielectric"]} diff --git a/src/ansys/aedt/core/modules/material.py b/src/ansys/aedt/core/modules/material.py index 5888fa9c304..1a1369f29c9 100644 --- a/src/ansys/aedt/core/modules/material.py +++ b/src/ansys/aedt/core/modules/material.py @@ -489,7 +489,6 @@ def thermalmodifier(self, thermal_value): References ---------- - >>> oDefinitionManager.EditMaterial """ if thermal_value is None: @@ -694,7 +693,6 @@ def add_thermal_modifier_free_form(self, formula, index=0): References ---------- - >>> oDefinitionManager.EditMaterial Examples @@ -727,7 +725,6 @@ def add_thermal_modifier_dataset(self, dataset, index=0): References ---------- - >>> oDefinitionManager.EditMaterial Examples @@ -1006,7 +1003,6 @@ def spatialmodifier(self, spatial_value): References ---------- - >>> oDefinitionManager.EditMaterial """ if spatial_value is None: @@ -1184,7 +1180,6 @@ def add_spatial_modifier_free_form(self, formula, index=0): References ---------- - >>> oDefinitionManager.EditMaterial Examples @@ -1579,7 +1574,6 @@ def permittivity(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._permittivity @@ -1599,7 +1593,6 @@ def permeability(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._permeability @@ -1619,7 +1612,6 @@ def conductivity(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._conductivity @@ -1654,7 +1646,6 @@ def magnetic_loss_tangent(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._magnetic_loss_tangent @@ -1674,7 +1665,6 @@ def thermal_conductivity(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._thermal_conductivity @@ -1696,7 +1686,6 @@ def mass_density(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._mass_density @@ -1716,7 +1705,6 @@ def specific_heat(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._specific_heat @@ -1736,7 +1724,6 @@ def thermal_expansion_coefficient(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._thermal_expansion_coefficient @@ -1756,7 +1743,6 @@ def youngs_modulus(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._youngs_modulus @@ -1778,7 +1764,6 @@ def poissons_ratio(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._poissons_ratio @@ -1800,7 +1785,6 @@ def diffusivity(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._diffusivity @@ -1820,7 +1804,6 @@ def magnetic_coercivity(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._magnetic_coercivity @@ -1842,7 +1825,6 @@ def molecular_mass(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._molecular_mass @@ -1862,7 +1844,6 @@ def viscosity(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._viscosity @@ -1882,7 +1863,6 @@ def stacking_type(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._stacking_type @@ -1915,7 +1895,6 @@ def wire_type(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._wire_type @@ -1940,7 +1919,6 @@ def wire_thickness_direction(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._wire_thickness_direction @@ -1965,7 +1943,6 @@ def wire_width_direction(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._wire_width_direction @@ -1990,7 +1967,6 @@ def strand_number(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._strand_number @@ -2012,7 +1988,6 @@ def wire_thickness(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._wire_thickness @@ -2034,7 +2009,6 @@ def wire_diameter(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._wire_diameter @@ -2056,7 +2030,6 @@ def wire_width(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._wire_width @@ -2078,7 +2051,6 @@ def stacking_factor(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._stacking_factor @@ -2100,7 +2072,6 @@ def stacking_direction(self): References ---------- - >>> oDefinitionManager.EditMaterial """ return self._stacking_direction @@ -2324,7 +2295,6 @@ def set_coreloss_at_frequency( References ---------- - >>> oDefinitionManager.EditMaterial Examples @@ -2857,7 +2827,6 @@ def emissivity(self): References ---------- - >>> oDefinitionManager.EditSurfaceMaterial """ return self._surface_emissivity @@ -2879,7 +2848,6 @@ def surface_diffuse_absorptance(self): References ---------- - >>> oDefinitionManager.EditSurfaceMaterial """ return self._surface_diffuse_absorptance @@ -2901,7 +2869,6 @@ def surface_incident_absorptance(self): References ---------- - >>> oDefinitionManager.EditSurfaceMaterial """ return self._surface_incident_absorptance @@ -2923,7 +2890,6 @@ def surface_roughness(self): References ---------- - >>> oDefinitionManager.EditSurfaceMaterial """ return self._surface_roughness @@ -2945,7 +2911,6 @@ def update(self): References ---------- - >>> oDefinitionManager.DoesSurfaceMaterialExist >>> oDefinitionManager.AddSurfaceMaterial >>> oDefinitionManager.EditSurfaceMaterial diff --git a/src/ansys/aedt/core/modules/material_lib.py b/src/ansys/aedt/core/modules/material_lib.py index 1d72f91cf7d..88b15962000 100644 --- a/src/ansys/aedt/core/modules/material_lib.py +++ b/src/ansys/aedt/core/modules/material_lib.py @@ -257,7 +257,6 @@ def checkifmaterialexists(self, material): References ---------- - >>> oDefinitionManager.GetProjectMaterialNames >>> oMaterialManager.GetData """ @@ -283,7 +282,6 @@ def exists_material(self, material): References ---------- - >>> oDefinitionManager.GetProjectMaterialNames >>> oMaterialManager.GetData """ @@ -347,7 +345,6 @@ def add_material(self, name, properties=None): References ---------- - >>> oDefinitionManager.AddMaterial Examples @@ -399,7 +396,6 @@ def add_surface_material(self, name, emissivity=None): References ---------- - >>> oDefinitionManager.AddSurfaceMaterial Examples @@ -464,12 +460,10 @@ def add_material_sweep(self, assignment, name): References ---------- - >>> oDefinitionManager.AddMaterial Examples -------- - >>> from ansys.aedt.core import Hfss >>> hfss = Hfss() >>> hfss.materials.add_material("MyMaterial") @@ -527,7 +521,6 @@ def duplicate_material(self, material, name=None, properties=None): References ---------- - >>> oDefinitionManager.AddMaterial Examples @@ -602,7 +595,6 @@ def duplicate_surface_material(self, material, name): References ---------- - >>> oDefinitionManager.AddSurfaceMaterial Examples @@ -641,12 +633,10 @@ def remove_material(self, material, library="Project"): References ---------- - >>> oDefinitionManager.RemoveMaterial Examples -------- - >>> from ansys.aedt.core import Hfss >>> hfss = Hfss() >>> hfss.materials.add_material("MyMaterial") @@ -965,7 +955,6 @@ def get_used_project_material_names(self): References ---------- - >>> oDefinitionManager.GetInUseProjectMaterialNames """ return self.odefinition_manager.GetInUseProjectMaterialNames() diff --git a/src/ansys/aedt/core/modules/mesh.py b/src/ansys/aedt/core/modules/mesh.py index 19c54c21dca..7f79e5e4d37 100644 --- a/src/ansys/aedt/core/modules/mesh.py +++ b/src/ansys/aedt/core/modules/mesh.py @@ -386,7 +386,6 @@ def delete(self): References ---------- - >>> oModule.DeleteOp """ self._mesh.omeshmodule.DeleteOp([self.name]) @@ -522,7 +521,6 @@ def initial_mesh_settings(self): References ---------- - >>> oModule.InitialMeshSettings """ if not self._globalmesh: @@ -535,7 +533,6 @@ def omeshmodule(self): References ---------- - >>> oDesign.GetModule("MeshSetup") """ return self._app.omeshmodule @@ -604,7 +601,6 @@ def assign_surface_mesh(self, assignment, level, name=None): References ---------- - >>> oModule.AssignTrueSurfOp Examples @@ -669,7 +665,6 @@ def assign_surface_mesh_manual( References ---------- - >>> oModule.AssignTrueSurfOp Examples @@ -746,7 +741,6 @@ def assign_model_resolution(self, assignment, defeature_length=None, name=None): References ---------- - >>> oModule.AssignModelResolutionOp Examples @@ -841,7 +835,6 @@ def assign_initial_mesh_from_slider( References ---------- - >>> oModule.InitialMeshSettings """ if self._app.design_type in ["2D Extractor", "Maxwell 2D"]: @@ -937,7 +930,6 @@ def assign_initial_mesh( References ---------- - >>> oModule.InitialMeshSettings """ if self._app.design_type in ["2D Extractor", "Maxwell 2D"]: @@ -1017,7 +1009,6 @@ def assign_surf_priority_for_tau(self, assignment, surface_priority=0): References ---------- - >>> oModule.AssignSurfPriorityForTauOp """ meshop_name = generate_unique_name("SurfaceRepPriority") @@ -1043,7 +1034,6 @@ def generate_mesh(self, name): References ---------- - >>> oDesign.GenerateMesh Examples @@ -1125,7 +1115,6 @@ def assign_length_mesh(self, assignment, inside_selection=True, maximum_length=1 References ---------- - >>> oModule.AssignLengthOp """ assignment = self._modeler.convert_to_selections(assignment, True) @@ -1226,7 +1215,6 @@ def assign_skin_depth( References ---------- - >>> oModule.AssignSkinDepthOp """ assignment = self._modeler.convert_to_selections(assignment, True) @@ -1298,7 +1286,6 @@ def assign_curvilinear_elements(self, assignment, enable=True, name=None): References ---------- - >>> oModule.AssignApplyCurvlinearElementsOp """ assignment = self._modeler.convert_to_selections(assignment, True) @@ -1351,7 +1338,6 @@ def assign_curvature_extraction(self, assignment, disabled_for_faceted=True, nam References ---------- - >>> oModule.AssignCurvatureExtractionOp """ assignment = self._modeler.convert_to_selections(assignment, True) @@ -1405,7 +1391,6 @@ def assign_rotational_layer(self, assignment, layers_number=3, total_thickness=" References ---------- - >>> oModule.AssignRotationalLayerOp """ assignment = self._modeler.convert_to_selections(assignment, True) @@ -1454,7 +1439,6 @@ def assign_edge_cut(self, assignment, layer_thickness="1mm", name=None): References ---------- - >>> oModule.AssignRotationalLayerOp """ assignment = self._modeler.convert_to_selections(assignment, True) @@ -1506,7 +1490,6 @@ def assign_density_control( References ---------- - >>> oModule.AssignDensityControlOp """ assignment = self._modeler.convert_to_selections(assignment, True) @@ -1599,7 +1582,6 @@ def assign_cylindrical_gap( References ---------- - >>> oModule.AssignCylindricalGapOp """ try: diff --git a/src/ansys/aedt/core/modules/mesh_3d_layout.py b/src/ansys/aedt/core/modules/mesh_3d_layout.py index 0b3e2380f5f..0967cd81770 100644 --- a/src/ansys/aedt/core/modules/mesh_3d_layout.py +++ b/src/ansys/aedt/core/modules/mesh_3d_layout.py @@ -94,7 +94,6 @@ def create(self): References ---------- - >>> oModule.AddMeshOperation """ self._mesh3dlayout.omeshmodule.AddMeshOperation(self.hfss_setup_name, self._get_args()) @@ -111,7 +110,6 @@ def update(self, *args, **kwargs): References ---------- - >>> oModule.EditMeshOperation """ self._mesh3dlayout.omeshmodule.EditMeshOperation(self.hfss_setup_name, self.name, self._get_args()) @@ -128,7 +126,6 @@ def delete(self): References ---------- - >>> oModule.DeleteMeshOperation """ self._mesh3dlayout.omeshmodule.DeleteMeshOperation( @@ -180,7 +177,6 @@ def generate_mesh(self, name): References ---------- - >>> oDesign.GenerateMesh """ self._app.oanalysis.GenerateMesh([name]) @@ -192,7 +188,6 @@ def omeshmodule(self): References ---------- - >>> oDesign.GetModule("SolveSetups") """ return self._app.omeshmodule @@ -215,7 +210,6 @@ def delete_mesh_operations(self, setup, name): References ---------- - >>> oModule.DeleteMeshOperation """ for el in self.meshoperations: @@ -284,7 +278,6 @@ def assign_length_mesh(self, setup, layer, net, is_inside=True, maximum_length=1 References ---------- - >>> oModule.AddMeshOperation """ if name: @@ -388,7 +381,6 @@ def assign_skin_depth( References ---------- - >>> oModule.AddMeshOperation """ if name: diff --git a/src/ansys/aedt/core/modules/mesh_icepak.py b/src/ansys/aedt/core/modules/mesh_icepak.py index bc177343c9f..b719f12ba01 100644 --- a/src/ansys/aedt/core/modules/mesh_icepak.py +++ b/src/ansys/aedt/core/modules/mesh_icepak.py @@ -683,9 +683,7 @@ def __init__(self, app): @property def name(self): - """ - Mesh region name. - """ + """Mesh region name.""" return "Global" @pyaedt_function_handler @@ -828,7 +826,6 @@ def update(self): References ---------- - >>> oModule.EditMeshRegion """ args = ["NAME:" + self.name, "Enable:=", self.enable] @@ -852,7 +849,6 @@ def delete(self): References ---------- - >>> oModule.DeleteMeshRegions() """ self._app.omeshmodule.DeleteMeshRegions([self.name]) @@ -927,7 +923,6 @@ def create(self): References ---------- - >>> oModule.AssignMeshRegion """ if self.name == "Settings": @@ -1078,7 +1073,6 @@ def omeshmodule(self): References ---------- - >>> oDesign.GetModule("MeshRegion") """ return self._app.omeshmodule @@ -1191,7 +1185,6 @@ def assign_mesh_level(self, mesh_order, name=None): References ---------- - >>> oModule.AssignMeshOperation """ level_order = {} @@ -1232,7 +1225,6 @@ def assign_mesh_from_file(self, assignment, file_name, name=None): References ---------- - >>> oModule.AssignMeshOperation """ objs = self._app.modeler.convert_to_selections(assignment, True) @@ -1275,7 +1267,6 @@ def automatic_mesh_pcb(self, accuracy=2): References ---------- - >>> oModule.EditMeshOperation """ warnings.warn("This method was deprecated in version 8.14.", DeprecationWarning) @@ -1316,7 +1307,6 @@ def automatic_mesh_3D(self, accuracy, enable_stair_step=True): References ---------- - >>> oModule.EditMeshOperation """ xsize = self.boundingdimension[0] / (10 * accuracy * accuracy) @@ -1557,7 +1547,6 @@ def assign_mesh_region(self, assignment=None, level=5, name=None, **kwargs): References ---------- - >>> oModule.AssignMeshRegion """ if not name: @@ -1598,7 +1587,6 @@ def generate_mesh(self, name=None): References ---------- - >>> oDesign.GenerateMesh """ if name is None: @@ -1640,7 +1628,6 @@ def assign_mesh_level_to_group( References ---------- - >>> oModule.AssignMeshOperation """ if name: @@ -1683,7 +1670,6 @@ def assign_mesh_reuse(self, assignment, mesh_file, name=None): References ---------- - >>> oModule.AssignMeshOperation """ if not os.path.exists(mesh_file): diff --git a/src/ansys/aedt/core/modules/solve_setup.py b/src/ansys/aedt/core/modules/solve_setup.py index de9ec06d0ca..181edf207ad 100644 --- a/src/ansys/aedt/core/modules/solve_setup.py +++ b/src/ansys/aedt/core/modules/solve_setup.py @@ -189,7 +189,6 @@ def analyze( References ---------- - >>> oDesign.Analyze """ self._app.analyze( @@ -475,7 +474,6 @@ def create_report( References ---------- - >>> oModule.CreateReport Examples @@ -541,7 +539,6 @@ def create(self): References ---------- - >>> oModule.InsertSetup """ soltype = SetupKeys.SetupNames[self.setuptype] @@ -571,7 +568,6 @@ def update(self, properties=None): References ---------- - >>> oModule.EditSetup """ legacy_update = self.auto_update @@ -764,7 +760,6 @@ def enable_expression_cache( References ---------- - >>> oModule.EditSetup """ arg = ["NAME:" + self.name] @@ -797,7 +792,6 @@ def enable(self, name=None): References ---------- - >>> oModule.EditSetup """ if not name: @@ -822,7 +816,6 @@ def disable(self, name=None): References ---------- - >>> oModule.EditSetup """ if not name: @@ -878,7 +871,6 @@ def add_mesh_link( References ---------- - >>> oModule.EditSetup Examples @@ -1053,7 +1045,6 @@ def start_continue_from_previous_setup( References ---------- - >>> oModule.EditSetup Examples @@ -1151,7 +1142,6 @@ def create(self): References ---------- - >>> oModule.AddLinearNetworkAnalysis >>> oModule.AddDCAnalysis >>> oModule.AddTransient @@ -1220,7 +1210,6 @@ def update(self, properties=None): References ---------- - >>> oModule.EditLinearNetworkAnalysis >>> oModule.EditDCAnalysis >>> oModule.EditTransient @@ -1265,7 +1254,6 @@ def add_sweep_points(self, sweep_variable="Freq", sweep_points=1, units="GHz", o References ---------- - >>> oModule.EditLinearNetworkAnalysis >>> oModule.EditDCAnalysis >>> oModule.EditTransient @@ -1323,7 +1311,6 @@ def add_sweep_count( References ---------- - >>> oModule.EditLinearNetworkAnalysis >>> oModule.EditDCAnalysis >>> oModule.EditTransient @@ -1380,7 +1367,6 @@ def add_sweep_step( References ---------- - >>> oModule.EditLinearNetworkAnalysis >>> oModule.EditDCAnalysis >>> oModule.EditTransient @@ -1568,7 +1554,6 @@ def enable_expression_cache( References ---------- - >>> oModule.EditSetup """ arg = ["Name:SimSetup"] @@ -1596,7 +1581,6 @@ def enable(self, name=None): References ---------- - >>> oModule.EditSetup """ if not name: @@ -1620,7 +1604,6 @@ def disable(self, name=None): References ---------- - >>> oModule.EditSetup """ if not name: @@ -1696,7 +1679,6 @@ def get_solution_data( References ---------- - >>> oModule.GetSolutionDataPerVariation """ return self._app.post.get_solution_data( @@ -1770,7 +1752,6 @@ def create_report( References ---------- - >>> oModule.CreateReport """ return self._app.post.create_report( @@ -1912,7 +1893,6 @@ def create(self): References ---------- - >>> oModule.Add """ arg = ["NAME:" + self.name] @@ -1936,7 +1916,6 @@ def update(self, properties=None): References ---------- - >>> oModule.Edit """ if properties: @@ -1963,7 +1942,6 @@ def enable(self): References ---------- - >>> oModule.Edit """ self.props["Properties"]["Enable"] = "true" @@ -1986,7 +1964,6 @@ def disable(self): References ---------- - >>> oModule.Edit """ self.props["Properties"]["Enable"] = "false" @@ -2319,7 +2296,6 @@ def add_sweep(self, name=None, sweep_type="Interpolating"): References ---------- - >>> oModule.AddSweep """ if not name: @@ -2531,7 +2507,6 @@ def add_derivatives(self, derivative_list): References ---------- - >>> oModule.EditSetup """ if not isinstance(derivative_list, list): @@ -2649,7 +2624,6 @@ def create_frequency_sweep( References ---------- - >>> oModule.InsertFrequencySweep Examples @@ -2743,7 +2717,6 @@ def create_linear_step_sweep( References ---------- - >>> oModule.InsertFrequencySweep Examples @@ -2825,7 +2798,6 @@ def create_single_point_sweep( References ---------- - >>> oModule.InsertFrequencySweep Examples @@ -2903,7 +2875,6 @@ def add_sweep(self, name=None, sweep_type="Interpolating"): References ---------- - >>> oModule.InsertFrequencySweep """ if not name: @@ -2965,7 +2936,6 @@ def get_sweep_names(self): References ---------- - >>> oModules.GetSweeps Examples @@ -2993,7 +2963,6 @@ def delete_sweep(self, name): References ---------- - >>> oModule.DeleteSweep Examples @@ -3272,7 +3241,6 @@ def add_derivatives(self, derivative_list): References ---------- - >>> oModule.EditSetup """ if not isinstance(derivative_list, list): @@ -3895,7 +3863,6 @@ def create_linear_step_sweep( References ---------- - >>> oModule.InsertFrequencySweep Examples @@ -4053,7 +4020,6 @@ def add_sweep(self, name=None, sweep_type="Interpolating"): References ---------- - >>> oModule.InsertFrequencySweep """ if not name: @@ -4193,7 +4159,6 @@ def update(self, properties=None): References ---------- - >>> oModule.EditSetup """ legacy_update = self.auto_update diff --git a/src/ansys/aedt/core/q3d.py b/src/ansys/aedt/core/q3d.py index 5bfc1345acb..380b5f69080 100644 --- a/src/ansys/aedt/core/q3d.py +++ b/src/ansys/aedt/core/q3d.py @@ -188,7 +188,6 @@ def get_all_sources(self): References ---------- - >>> oModule.GetAllSources """ return self.sources(0, False) @@ -916,7 +915,6 @@ def export_equivalent_circuit( References ---------- - >>> oModule.ExportCircuit Examples @@ -1348,7 +1346,6 @@ def nets(self): References ---------- - >>> oModule.ListNets """ nets_data = list(self.oboundary.ListNets()) @@ -1478,7 +1475,6 @@ def auto_identify_nets(self): References ---------- - >>> oModule.AutoIdentifyNets """ original_nets = [i for i in self.nets] @@ -1527,7 +1523,6 @@ def assign_net(self, assignment, net_name=None, net_type="Signal"): References ---------- - >>> oModule.AssignSignalNet >>> oModule.AssignGroundNet >>> oModule.AssignFloatingNet @@ -1613,7 +1608,6 @@ def sink(self, assignment=None, direction=0, name=None, net_name=None, terminal_ References ---------- - >>> oModule.AssignSource """ return self._assign_source_or_sink(assignment, direction, name, net_name, terminal_type, "Sink") @@ -1689,7 +1683,6 @@ def assign_sink_to_objectface(self, assignment, direction=0, name=None, net_name References ---------- - >>> oModule.AssignSink """ warnings.warn( @@ -1744,7 +1737,6 @@ def assign_sink_to_sheet( References ---------- - >>> oModule.AssignSink """ warnings.warn( @@ -1819,7 +1811,6 @@ def create_frequency_sweep(self, setupname, units=None, freqstart=0, freqstop=1, References ---------- - >>> oModule.InsertSweep """ if sweepname is None: @@ -1896,7 +1887,6 @@ def create_discrete_sweep( References ---------- - >>> oModule.InsertSweep """ if sweepname is None: @@ -1983,7 +1973,6 @@ def create_setup(self, name="MySetupAuto", **kwargs): Parameters ---------- - name : str, optional Name of the setup. The default is "Setup1". **kwargs : dict, optional @@ -1997,7 +1986,6 @@ def create_setup(self, name="MySetupAuto", **kwargs): References ---------- - >>> oModule.InsertSetup Examples @@ -2368,7 +2356,6 @@ def create_rectangle(self, origin, sizes, name="", material=""): References ---------- - >>> oEditor.CreateRectangle """ return self.modeler.create_rectangle(origin=origin, sizes=sizes, name=name, material=material) @@ -2395,7 +2382,6 @@ def assign_single_signal_line(self, assignment, name="", solve_option="SolveInsi References ---------- - >>> oModule.AssignSingleSignalLine >>> oModule.AssignSingleReferenceGround """ @@ -2444,7 +2430,6 @@ def assign_single_conductor( References ---------- - >>> oModule.AssignSingleSignalLine >>> oModule.AssignSingleReferenceGround """ @@ -2497,7 +2482,6 @@ def assign_huray_finitecond_to_edges(self, assignment, radius, ratio, units="um" References ---------- - >>> oMdoule.AssignFiniteCond """ if not name: @@ -2720,7 +2704,6 @@ def create_setup(self, name="MySetupAuto", setup_type=None, **kwargs): References ---------- - >>> oModule.InsertSetup Examples diff --git a/src/ansys/aedt/core/rmxprt.py b/src/ansys/aedt/core/rmxprt.py index 9187023884d..c3938067512 100644 --- a/src/ansys/aedt/core/rmxprt.py +++ b/src/ansys/aedt/core/rmxprt.py @@ -304,7 +304,6 @@ def create_setup(self, name="MySetupAuto", setup_type=None, **kwargs): References ---------- - >>> oModule.InsertSetup Examples diff --git a/src/ansys/aedt/core/twinbuilder.py b/src/ansys/aedt/core/twinbuilder.py index 8677f744df1..79599b250a2 100644 --- a/src/ansys/aedt/core/twinbuilder.py +++ b/src/ansys/aedt/core/twinbuilder.py @@ -259,7 +259,6 @@ def set_end_time(self, expression): References ---------- - >>> oDesign.ChangeProperty """ self.set_sim_setup_parameter("Tend", expression) @@ -281,7 +280,6 @@ def set_hmin(self, expression): References ---------- - >>> oDesign.ChangeProperty """ self.set_sim_setup_parameter("Hmin", expression) @@ -303,7 +301,6 @@ def set_hmax(self, expression): References ---------- - >>> oDesign.ChangeProperty """ self.set_sim_setup_parameter("Hmax", expression) @@ -329,7 +326,6 @@ def set_sim_setup_parameter(self, variable, expression, analysis_name="TR"): References ---------- - >>> oDesign.ChangeProperty """ if isinstance(expression, Variable): @@ -452,7 +448,6 @@ def add_q3d_dynamic_component( References ---------- - >>> oComponentManager.AddDynamicNPortData Examples diff --git a/src/ansys/aedt/core/visualization/post/common.py b/src/ansys/aedt/core/visualization/post/common.py index f69b603b16b..808675537f2 100644 --- a/src/ansys/aedt/core/visualization/post/common.py +++ b/src/ansys/aedt/core/visualization/post/common.py @@ -103,7 +103,6 @@ def available_report_types(self): References ---------- - >>> oModule.GetAvailableReportTypes """ return list(self.oreportsetup.GetAvailableReportTypes()) @@ -527,7 +526,6 @@ def oreportsetup(self): References ---------- - >>> oDesign.GetModule("ReportSetup") """ return self._app.oreportsetup @@ -580,7 +578,6 @@ def all_report_names(self): References ---------- - >>> oModule.GetAllReportNames() """ return list(self.oreportsetup.GetAllReportNames()) @@ -603,7 +600,6 @@ def copy_report_data(self, plot_name, paste=True): References ---------- - >>> oModule.CopyReportsData >>> oModule.PasteReports """ @@ -677,7 +673,6 @@ def rename_report(self, plot_name, new_name): References ---------- - >>> oModule.RenameReport """ try: @@ -719,7 +714,6 @@ def get_solution_data_per_variation( References ---------- - >>> oModule.GetSolutionDataPerVariation """ if sweeps is None: @@ -754,7 +748,6 @@ def steal_focus_oneditor(self): References ---------- - >>> oDesktop.RestoreWindow """ self._desktop.RestoreWindow() @@ -821,7 +814,6 @@ def export_report_to_file( References ---------- - >>> oModule.ExportReportDataToFile >>> oModule.ExportUniformPointsToFile >>> oModule.ExportToFile @@ -894,7 +886,6 @@ def export_report_to_csv( References ---------- - >>> oModule.ExportReportDataToFile >>> oModule.ExportToFile >>> oModule.ExportUniformPointsToFile @@ -934,7 +925,6 @@ def export_report_to_jpg(self, project_path, plot_name, width=0, height=0, image References ---------- - >>> oModule.ExportImageToFile """ file_name = os.path.join(project_path, plot_name + "." + image_format) # name of the image file @@ -1170,7 +1160,6 @@ def create_report( References ---------- - >>> oModule.CreateReport Examples @@ -1408,7 +1397,6 @@ def get_solution_data( References ---------- - >>> oModule.GetSolutionDataPerVariation Examples diff --git a/src/ansys/aedt/core/visualization/post/field_data.py b/src/ansys/aedt/core/visualization/post/field_data.py index ba2f06c817d..a479fb8ebe3 100644 --- a/src/ansys/aedt/core/visualization/post/field_data.py +++ b/src/ansys/aedt/core/visualization/post/field_data.py @@ -847,9 +847,7 @@ def __init__( self._folder_name = folder_name def update(self): - """ - Update folder plot settings. - """ + """Update folder plot settings.""" out = [] _dict2arg(self.to_dict(), out) self._postprocessor.ofieldsreporter.SetPlotFolderSettings(self._folder_name, out[0]) diff --git a/src/ansys/aedt/core/visualization/post/monitor_icepak.py b/src/ansys/aedt/core/visualization/post/monitor_icepak.py index 9d299e997a2..ffae885db47 100644 --- a/src/ansys/aedt/core/visualization/post/monitor_icepak.py +++ b/src/ansys/aedt/core/visualization/post/monitor_icepak.py @@ -370,7 +370,6 @@ def assign_point_monitor_to_vertex(self, vertex_id, monitor_quantity="Temperatur References ---------- - >>> oModule.AssignPointMonitor """ @@ -417,7 +416,6 @@ def assign_surface_monitor(self, surface_name, monitor_quantity="Temperature", m References ---------- - >>> oModule.AssignFaceMonitor Examples @@ -472,7 +470,6 @@ def assign_face_monitor(self, face_id, monitor_quantity="Temperature", monitor_n References ---------- - >>> oModule.AssignFaceMonitor """ if isinstance(face_id, int): @@ -579,7 +576,6 @@ def delete_monitor(self, monitor_name): References ---------- - >>> oModule.DeleteMonitors """ diff --git a/src/ansys/aedt/core/visualization/post/post_3dlayout.py b/src/ansys/aedt/core/visualization/post/post_3dlayout.py index 31b08e0c9ec..09e814dd6a9 100644 --- a/src/ansys/aedt/core/visualization/post/post_3dlayout.py +++ b/src/ansys/aedt/core/visualization/post/post_3dlayout.py @@ -184,7 +184,7 @@ def compute_power_by_layer(self, layers=None, solution=None): @pyaedt_function_handler() def compute_power_by_net(self, nets=None, solution=None): - """Computes the power by nets. This applies only to SIwave DC Analysis. + """Compute the power by nets. This applies only to SIwave DC Analysis. Parameters ---------- diff --git a/src/ansys/aedt/core/visualization/post/post_common_3d.py b/src/ansys/aedt/core/visualization/post/post_common_3d.py index 2c487513871..54f24db386a 100644 --- a/src/ansys/aedt/core/visualization/post/post_common_3d.py +++ b/src/ansys/aedt/core/visualization/post/post_common_3d.py @@ -145,7 +145,6 @@ def ofieldsreporter(self): References ---------- - >>> oDesign.GetModule("FieldsReporter") """ return self._app.ofieldsreporter @@ -330,7 +329,6 @@ def volumetric_loss(self, assignment): References ---------- - >>> oModule.EnterQty >>> oModule.EnterVol >>> oModule.CalcOp @@ -364,7 +362,6 @@ def change_field_property(self, plot_name, property_name, property_value): References ---------- - >>> oDesign.ChangeProperty """ self._odesign.ChangeProperty( @@ -613,7 +610,6 @@ def export_field_file_on_grid( References ---------- - >>> oModule.EnterQty >>> oModule.CopyNamedExprToStack >>> oModule.CalcOp @@ -800,7 +796,6 @@ def export_field_file( References ---------- - >>> oModule.EnterQty >>> oModule.CopyNamedExprToStack >>> oModule.CalcOp @@ -994,7 +989,6 @@ def change_field_plot_scale( References ---------- - >>> oModule.SetPlotFolderSettings """ args = ["NAME:FieldsPlotSettings", "Real Time mode:=", True] @@ -1883,7 +1877,6 @@ def create_fieldplot_volume( References ---------- - >>> oModule.CreateFieldPlot """ assignment = self._app.modeler.convert_to_selections(assignment, True) @@ -2029,7 +2022,6 @@ def delete_field_plot(self, name): References ---------- - >>> oModule.DeleteFieldPlot """ self.ofieldsreporter.DeleteFieldPlot([name]) @@ -2087,7 +2079,6 @@ def export_model_picture( References ---------- - >>> oEditor.ExportModelImageToFile Examples @@ -2365,7 +2356,6 @@ def power_budget(self, units="W", temperature=22, output_type="component"): References ---------- - >>> oEditor.ChangeProperty """ available_bcs = self._app.boundaries @@ -2903,7 +2893,6 @@ def create_sbr_point_visual_ray_tracing( Parameters ---------- - max_frequency : str, optional Maximum Frequency. Default is ``1GHz``. ray_density : int, optional diff --git a/src/ansys/aedt/core/visualization/post/post_icepak.py b/src/ansys/aedt/core/visualization/post/post_icepak.py index 92a13db009c..34a6ca97256 100644 --- a/src/ansys/aedt/core/visualization/post/post_icepak.py +++ b/src/ansys/aedt/core/visualization/post/post_icepak.py @@ -205,7 +205,6 @@ def evaluate_faces_quantity( References ---------- - >>> oModule.ExportFieldsSummary """ if variations is None: @@ -267,7 +266,6 @@ def evaluate_boundary_quantity( References ---------- - >>> oModule.ExportFieldsSummary """ if variations is None: @@ -320,7 +318,6 @@ def evaluate_monitor_quantity( References ---------- - >>> oModule.ExportFieldsSummary """ if variations is None: @@ -386,7 +383,6 @@ def evaluate_object_quantity( References ---------- - >>> oModule.ExportFieldsSummary """ if variations is None: diff --git a/src/ansys/aedt/core/visualization/post/solution_data.py b/src/ansys/aedt/core/visualization/post/solution_data.py index 37019429b55..ef9e3a6e6de 100644 --- a/src/ansys/aedt/core/visualization/post/solution_data.py +++ b/src/ansys/aedt/core/visualization/post/solution_data.py @@ -306,7 +306,7 @@ def _init_solution_data_real(self): @pyaedt_function_handler() def _init_solution_data_imag(self): - """ """ + """Initialize the imaginary part of the solution data.""" sols_data = {} for expression in self.expressions: diff --git a/src/ansys/aedt/core/visualization/post/spisim.py b/src/ansys/aedt/core/visualization/post/spisim.py index a682af2c15b..295c4527b34 100644 --- a/src/ansys/aedt/core/visualization/post/spisim.py +++ b/src/ansys/aedt/core/visualization/post/spisim.py @@ -485,8 +485,7 @@ def __init__( self.axis = axis def __len__(self): - """ - Returns the length of the axis. + """Return the length of the axis. Returns ------- diff --git a/src/ansys/aedt/core/visualization/report/common.py b/src/ansys/aedt/core/visualization/report/common.py index 5386b6d3f1e..21f67485d8a 100644 --- a/src/ansys/aedt/core/visualization/report/common.py +++ b/src/ansys/aedt/core/visualization/report/common.py @@ -2597,7 +2597,6 @@ def apply_report_template(self, input_file, property_type="Graphical"): # pragm References ---------- - >>> oModule.ApplyReportTemplate """ if not os.path.exists(input_file): # pragma: no cover diff --git a/src/ansys/aedt/core/workflows/hfss/choke_designer.py b/src/ansys/aedt/core/workflows/hfss/choke_designer.py index 83488d92469..8998cc36e3e 100644 --- a/src/ansys/aedt/core/workflows/hfss/choke_designer.py +++ b/src/ansys/aedt/core/workflows/hfss/choke_designer.py @@ -169,9 +169,7 @@ def update_config(cat, selected_option_u): def create_parameter_inputs(parent, config, category): def update_config(cat, field, entry_widget): - """ - Update config_dict when the user changes an input. - """ + """Update config_dict when the user changes an input.""" try: # Save numeric values as floats, others as strings new_value = ( diff --git a/src/ansys/aedt/core/workflows/icepak/power_map_from_csv.py b/src/ansys/aedt/core/workflows/icepak/power_map_from_csv.py index 063b7d57205..0d0bb86b893 100644 --- a/src/ansys/aedt/core/workflows/icepak/power_map_from_csv.py +++ b/src/ansys/aedt/core/workflows/icepak/power_map_from_csv.py @@ -256,7 +256,7 @@ def create_powermaps_from_info(ipk, geometric_info, source_value_info, source_un def extract_info(csv_file): - """Extracts source and geometric information from an Icepak classic CSV file. + """Extract source and geometric information from an Icepak classic CSV file. Parameters ---------- diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py index a794ae37bae..f172d934ac1 100644 --- a/tests/unit/conftest.py +++ b/tests/unit/conftest.py @@ -31,7 +31,6 @@ @pytest.fixture def maxwell_3d_setup(): """Fixture used to setup a Maxwell3d instance.""" - with patch("ansys.aedt.core.maxwell.FieldAnalysis3D") as mock_fiel_analysis_3d, patch( "ansys.aedt.core.maxwell.Maxwell" ) as mock_maxwell: From fe63cde6bdcb6ff60b8afaaaad3b2831a00efe77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Morais?= <146729917+SMoraisAnsys@users.noreply.github.com> Date: Wed, 18 Dec 2024 20:51:39 +0100 Subject: [PATCH 07/11] FIX: Maxwell icepak example (#5596) --- src/ansys/aedt/core/icepak.py | 6 +++--- src/ansys/aedt/core/modeler/cad/elements_3d.py | 5 +---- src/ansys/aedt/core/modules/mesh.py | 10 +++++++--- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/ansys/aedt/core/icepak.py b/src/ansys/aedt/core/icepak.py index 03ac510f68e..4547ab2b356 100644 --- a/src/ansys/aedt/core/icepak.py +++ b/src/ansys/aedt/core/icepak.py @@ -952,7 +952,7 @@ def assign_surface_monitor(self, face_name, monitor_type="Temperature", monitor_ >>> icepak.assign_surface_monitor("Surface1", monitor_name="monitor") 'monitor' """ - return self._monitor.assign_surface_monitor(face_name, monitor_quantity=monitor_type, monitor_name=monitor_name) + return self.monitor.assign_surface_monitor(face_name, monitor_quantity=monitor_type, monitor_name=monitor_name) @pyaedt_function_handler() def assign_point_monitor(self, point_position, monitor_type="Temperature", monitor_name=None): @@ -985,7 +985,7 @@ def assign_point_monitor(self, point_position, monitor_type="Temperature", monit 'monitor1' """ - return self._monitor.assign_point_monitor( + return self.monitor.assign_point_monitor( point_position, monitor_quantity=monitor_type, monitor_name=monitor_name ) @@ -1021,7 +1021,7 @@ def assign_point_monitor_in_object(self, name, monitor_type="Temperature", monit >>> icepak.assign_point_monitor(box.name, monitor_name="monitor2") "'monitor2' """ - return self._monitor.assign_point_monitor_in_object( + return self.monitor.assign_point_monitor_in_object( name, monitor_quantity=monitor_type, monitor_name=monitor_name ) diff --git a/src/ansys/aedt/core/modeler/cad/elements_3d.py b/src/ansys/aedt/core/modeler/cad/elements_3d.py index 89168acee53..594fbb58525 100644 --- a/src/ansys/aedt/core/modeler/cad/elements_3d.py +++ b/src/ansys/aedt/core/modeler/cad/elements_3d.py @@ -1423,10 +1423,7 @@ def properties(self): props = _get_data_model(self.child_object) for p in self.child_object.GetPropNames(): - if p in props: - self._props[p] = props[p] - else: - self._props[p] = None + self._props[p] = props.get(p, None) except Exception: for p in self.child_object.GetPropNames(): try: diff --git a/src/ansys/aedt/core/modules/mesh.py b/src/ansys/aedt/core/modules/mesh.py index 7f79e5e4d37..425bed2e3d1 100644 --- a/src/ansys/aedt/core/modules/mesh.py +++ b/src/ansys/aedt/core/modules/mesh.py @@ -1166,9 +1166,13 @@ def assign_length_mesh(self, assignment, inside_selection=True, maximum_length=1 mop = MeshOperation(self, name, props, "LengthBased") for meshop in self.meshoperations[:]: - if meshop.name == mop.name: - meshop.delete() - break + try: + if meshop.name == mop.name: + meshop.delete() + break + # Handle case where mop has no child_object + except AttributeError: + continue mop.create() self.meshoperations.append(mop) return mop From d28b8d380c25b83beb7299a63b0293e381d65a72 Mon Sep 17 00:00:00 2001 From: Massimo Capodiferro <77293250+maxcapodi78@users.noreply.github.com> Date: Thu, 19 Dec 2024 15:48:29 +0100 Subject: [PATCH 08/11] FIX: assign_em_losses in mechanical.py (#5581) Co-authored-by: Samuel Lopez <85613111+Samuelopez-ansys@users.noreply.github.com> --- src/ansys/aedt/core/mechanical.py | 2 +- src/ansys/aedt/core/modeler/cad/primitives_3d.py | 2 +- src/ansys/aedt/core/visualization/plot/pyvista.py | 8 ++++---- src/ansys/aedt/core/visualization/post/post_common_3d.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/ansys/aedt/core/mechanical.py b/src/ansys/aedt/core/mechanical.py index 06dda2697ef..26f26ad2e79 100644 --- a/src/ansys/aedt/core/mechanical.py +++ b/src/ansys/aedt/core/mechanical.py @@ -236,7 +236,7 @@ def assign_em_losses( if not assignment: allObjects = self.modeler.object_names else: - allObjects = assignment[:] + allObjects = surface_objects + assignment[:] surfaces = surface_objects if map_frequency: intr = [map_frequency] diff --git a/src/ansys/aedt/core/modeler/cad/primitives_3d.py b/src/ansys/aedt/core/modeler/cad/primitives_3d.py index 87271bf616d..af17422ac1a 100644 --- a/src/ansys/aedt/core/modeler/cad/primitives_3d.py +++ b/src/ansys/aedt/core/modeler/cad/primitives_3d.py @@ -199,7 +199,7 @@ def create_cylinder(self, orientation, origin, radius, height, num_sides=0, name Returns ------- - bool or :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` + :class:`ansys.aedt.core.modeler.cad.object_3d.Object3d` or bool 3D object or ``False`` if it fails. References diff --git a/src/ansys/aedt/core/visualization/plot/pyvista.py b/src/ansys/aedt/core/visualization/plot/pyvista.py index 50c8edddd3e..f4fa4ec0315 100644 --- a/src/ansys/aedt/core/visualization/plot/pyvista.py +++ b/src/ansys/aedt/core/visualization/plot/pyvista.py @@ -992,10 +992,10 @@ def _read_mesh_files(self, read_frames=False): cad._cached_polydata = filedata color_cad = [i / 255 for i in cad.color] cad._cached_mesh = self.pv.add_mesh(cad._cached_polydata, color=color_cad, opacity=cad.opacity) - if self.meshes: - self.meshes += cad._cached_polydata - else: - self.meshes = cad._cached_polydata + # if self.meshes: + # self.meshes += cad._cached_polydata + # else: + # self.meshes = cad._cached_polydata obj_to_iterate = [i for i in self._fields] if read_frames: for i in self.frames: diff --git a/src/ansys/aedt/core/visualization/post/post_common_3d.py b/src/ansys/aedt/core/visualization/post/post_common_3d.py index 54f24db386a..608e31e2382 100644 --- a/src/ansys/aedt/core/visualization/post/post_common_3d.py +++ b/src/ansys/aedt/core/visualization/post/post_common_3d.py @@ -3437,7 +3437,7 @@ def plot_field( Returns ------- - :class:`ansys.aedt.core.generic.plot.ModelPlotter` + :class:`ansys.aedt.core.visualization.plot.pyvista.ModelPlotter` Model Object. """ intrinsics = self._app._check_intrinsics(intrinsics, setup=setup) From 1c9e725d6560a8cefa1d89b2c4882f87db025fdf Mon Sep 17 00:00:00 2001 From: Samuel Lopez <85613111+Samuelopez-ansys@users.noreply.github.com> Date: Fri, 20 Dec 2024 07:47:26 +0100 Subject: [PATCH 09/11] FIX: Object oriented name update (#5595) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Devin Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Devin <38879940+Devin-Crawford@users.noreply.github.com> Co-authored-by: Sébastien Morais <146729917+SMoraisAnsys@users.noreply.github.com> Co-authored-by: mcapodif --- src/ansys/aedt/core/application/analysis.py | 10 + .../aedt/core/application/analysis_3d.py | 2 +- src/ansys/aedt/core/application/design.py | 7 +- src/ansys/aedt/core/hfss.py | 1 + .../aedt/core/modeler/cad/elements_3d.py | 69 ++++-- .../aedt/core/modules/boundary/common.py | 203 ++++++++++-------- .../core/modules/boundary/hfss_boundary.py | 40 +++- .../core/modules/boundary/layout_boundary.py | 65 +++--- .../core/modules/boundary/maxwell_boundary.py | 34 +-- src/ansys/aedt/core/modules/mesh.py | 65 +++--- src/ansys/aedt/core/modules/solve_setup.py | 53 +++-- src/ansys/aedt/core/rmxprt.py | 9 +- .../core/visualization/post/solution_data.py | 12 +- .../aedt/core/visualization/report/common.py | 3 +- .../general/test_01_configuration_files.py | 1 + tests/system/general/test_07_Object3D.py | 4 +- tests/system/general/test_20_HFSS.py | 2 +- tests/system/general/test_98_Icepak.py | 6 + tests/system/solvers/test_00_analyze.py | 2 +- tests/system/solvers/test_31_Q3D.py | 44 ++-- 20 files changed, 392 insertions(+), 240 deletions(-) diff --git a/src/ansys/aedt/core/application/analysis.py b/src/ansys/aedt/core/application/analysis.py index 424497c7247..494e4b58d8c 100644 --- a/src/ansys/aedt/core/application/analysis.py +++ b/src/ansys/aedt/core/application/analysis.py @@ -530,6 +530,16 @@ def excitation_objects(self): if el.name in exc_names: self._excitation_objects[el.name] = el + # Delete objects that are not anymore available + keys_to_remove = [ + internal_excitation + for internal_excitation in self._excitation_objects + if internal_excitation not in self.excitations + ] + + for key in keys_to_remove: + del self._excitation_objects[key] + return self._excitation_objects @pyaedt_function_handler() diff --git a/src/ansys/aedt/core/application/analysis_3d.py b/src/ansys/aedt/core/application/analysis_3d.py index 37228551970..58377f595e5 100644 --- a/src/ansys/aedt/core/application/analysis_3d.py +++ b/src/ansys/aedt/core/application/analysis_3d.py @@ -1377,7 +1377,7 @@ def import_gds_3d(self, input_file: str, mapping_layers: dict, units: str = "um" input_file : str Path to the GDS file. mapping_layers : dict - Dictionary keys are GDS layer numbers, and the value is a tuple with the thickness and elevation. + Dictionary keys are GDS layer numbers, and the value is a tuple with the elevation and thickness. units : str, optional Length unit values. The default is ``"um"``. import_method : integer, optional diff --git a/src/ansys/aedt/core/application/design.py b/src/ansys/aedt/core/application/design.py index d3884f1f8cd..54795763700 100644 --- a/src/ansys/aedt/core/application/design.py +++ b/src/ansys/aedt/core/application/design.py @@ -85,6 +85,7 @@ from ansys.aedt.core.generic.load_aedt_file import load_entire_aedt_file from ansys.aedt.core.modules.boundary.common import BoundaryObject from ansys.aedt.core.modules.boundary.icepak_boundary import NetworkObject +from ansys.aedt.core.modules.boundary.layout_boundary import BoundaryObject3dLayout from ansys.aedt.core.modules.boundary.maxwell_boundary import MaxwellParameters if sys.version_info.major > 2: @@ -492,10 +493,14 @@ def boundaries(self) -> List[BoundaryObject]: self._boundaries[boundary] = NetworkObject(self, boundary) else: self._boundaries[boundary] = BoundaryObject(self, boundary, boundarytype=boundarytype) + try: for k, v in zip(current_excitations, current_excitation_types): if k not in self._boundaries: - self._boundaries[k] = BoundaryObject(self, k, boundarytype=v) + if self.design_type == "HFSS 3D Layout Design" and v == "Port": + self._boundaries[k] = BoundaryObject3dLayout(self, k, props=None, boundarytype=v) + else: + self._boundaries[k] = BoundaryObject(self, k, boundarytype=v) except Exception: self.logger.info("Failed to design boundary object.") return list(self._boundaries.values()) diff --git a/src/ansys/aedt/core/hfss.py b/src/ansys/aedt/core/hfss.py index b77bf3aa13d..3183bbaa4cf 100644 --- a/src/ansys/aedt/core/hfss.py +++ b/src/ansys/aedt/core/hfss.py @@ -251,6 +251,7 @@ def field_setups(self): List of :class:`ansys.aedt.core.modules.boundary.hfss_boundary.FarFieldSetup` and :class:`ansys.aedt.core.modules.hfss_boundary.NearFieldSetup` """ + self._field_setups = [] for field in self.field_setup_names: obj_field = self.odesign.GetChildObject("Radiation").GetChildObject(field) type_field = obj_field.GetPropValue("Type") diff --git a/src/ansys/aedt/core/modeler/cad/elements_3d.py b/src/ansys/aedt/core/modeler/cad/elements_3d.py index 594fbb58525..78c25db6661 100644 --- a/src/ansys/aedt/core/modeler/cad/elements_3d.py +++ b/src/ansys/aedt/core/modeler/cad/elements_3d.py @@ -1370,43 +1370,60 @@ def __init__(self, node, child_object, first_level=False, get_child_obj_arg=None self._props = None if not root_name: root_name = node - saved_root_name = node if first_level else root_name - self.node = node + self._saved_root_name = node if first_level else root_name + self._get_child_obj_arg = get_child_obj_arg + self._node = node self.child_object = child_object - self.children = {} self.auto_update = True + self._children = {} + self.__first_level = first_level + if first_level: + self._update_children() + + def _update_children(self): + self._children = {} name = None try: - if get_child_obj_arg is None: - child_names = [i for i in list(child_object.GetChildNames()) if not i.startswith("CachedBody")] + if self._get_child_obj_arg is None: + child_names = [i for i in list(self.child_object.GetChildNames()) if not i.startswith("CachedBody")] else: child_names = [ - i for i in list(child_object.GetChildNames(get_child_obj_arg)) if not i.startswith("CachedBody") + i + for i in list(self.child_object.GetChildNames(self._get_child_obj_arg)) + if not i.startswith("CachedBody") ] except Exception: # pragma: no cover child_names = [] for i in child_names: if not name: name = i - if i == "OperandPart_" + saved_root_name or i == "OperandPart_" + saved_root_name.split("_")[0]: + if i == "OperandPart_" + self._saved_root_name or i == "OperandPart_" + self._saved_root_name.split("_")[0]: continue elif not i.startswith("OperandPart_"): try: - self.children[i] = BinaryTreeNode(i, self.child_object.GetChildObject(i), root_name=saved_root_name) + self._children[i] = BinaryTreeNode( + i, self.child_object.GetChildObject(i), root_name=self._saved_root_name + ) except Exception: # nosec pass else: names = self.child_object.GetChildObject(i).GetChildNames() for name in names: - self.children[name] = BinaryTreeNode( - name, self.child_object.GetChildObject(i).GetChildObject(name), root_name=saved_root_name + self._children[name] = BinaryTreeNode( + name, self.child_object.GetChildObject(i).GetChildObject(name), root_name=self._saved_root_name ) - if first_level: - self.child_object = self.children[name].child_object - self._props = self.children[name]._props + if name and self.__first_level: + self.child_object = self._children[name].child_object + self._props = self._children[name].properties if name == "CreatePolyline:1": - self.segments = self.children[name].children - del self.children[name] + self.segments = self._children[name].children + del self._children[name] + + @property + def children(self): + if not self._children: + self._update_children() + return self._children @property def properties(self): @@ -1417,6 +1434,8 @@ def properties(self): :class:``ansys.aedt.coree.modeler.cad.elements_3d.HistoryProps`` """ self._props = {} + if not getattr(self, "child_object", None): + return self._props if settings.aedt_version >= "2024.2": try: from ansys.aedt.core.application import _get_data_model @@ -1464,18 +1483,28 @@ def update_property(self, prop_name, prop_value): bool ``True`` when successful, ``False`` when failed. """ + if prop_value is None: + settings.logger.warning(f"Property {prop_name} set to None ignored.") + return try: - self.child_object.SetPropValue(prop_name, prop_value) - return True + result = self.child_object.SetPropValue(prop_name, prop_value) + if result: + if prop_name == "Name" and getattr(self, "_name", False): + setattr(self, "_name", prop_value) + else: + settings.logger.warning(f"Property {prop_name} is read-only.") + # Property Name duplicated + return except Exception: # pragma: no cover - return False + # Property read-only + raise KeyError @pyaedt_function_handler def _jsonalize_tree(self, binary_tree_node): childrend_dict = {} for _, node in binary_tree_node.children.items(): childrend_dict.update(self._jsonalize_tree(node)) - return {binary_tree_node.node: {"Props": binary_tree_node.properties, "Children": childrend_dict}} + return {binary_tree_node._node: {"Props": binary_tree_node.properties, "Children": childrend_dict}} @pyaedt_function_handler def jsonalize_tree(self): @@ -1496,7 +1525,7 @@ def _suppress(self, node, app, suppress): "NAME:AllTabs", [ "NAME:Geometry3DCmdTab", - ["NAME:PropServers", node.child_object.GetObjPath().split("/")[3] + ":" + node.node], + ["NAME:PropServers", node.child_object.GetObjPath().split("/")[3] + ":" + node._node], ["NAME:ChangedProps", ["NAME:Suppress Command", "Value:=", suppress]], ], ] diff --git a/src/ansys/aedt/core/modules/boundary/common.py b/src/ansys/aedt/core/modules/boundary/common.py index c304f8e032d..b6cb0e6872f 100644 --- a/src/ansys/aedt/core/modules/boundary/common.py +++ b/src/ansys/aedt/core/modules/boundary/common.py @@ -96,6 +96,8 @@ def _get_args(self, props=None): def _initialize_bynary_tree(self): if self._child_object: BinaryTreeNode.__init__(self, self._name, self._child_object, False) + return True + return False @pyaedt_function_handler() def delete(self): @@ -219,7 +221,6 @@ def __init__(self, app, name, props=None, boundarytype=None, auto_update=True): self.__props = None self.__props = BoundaryProps(self, props) if props else {} self._type = boundarytype - self._boundary_name = self.name self.auto_update = auto_update self._initialize_bynary_tree() @@ -232,36 +233,50 @@ def _child_object(self): class:`ansys.aedt.core.modeler.cad.elements_3d.BinaryTreeNode` """ - child_object = None design_childs = self._app.get_oo_name(self._app.odesign) + if "Nets" in design_childs: + cc = self._app.get_oo_object(self._app.odesign, "Nets") + cc_names = self._app.get_oo_name(cc) + if self._name in cc_names: + return cc.GetChildObject(self._name) + for name in cc_names: + cc = self._app.get_oo_object(self._app.odesign, f"Nets\\{name}") + cc_names = self._app.get_oo_name(cc) + if self._name in cc_names: + return cc.GetChildObject(self._name) + if "Thermal" in design_childs: cc = self._app.get_oo_object(self._app.odesign, "Thermal") cc_names = self._app.get_oo_name(cc) - if self.name in cc_names: - child_object = cc.GetChildObject(self.name) - elif "Boundaries" in design_childs: + if self._name in cc_names: + return cc.GetChildObject(self._name) + + if "Boundaries" in design_childs: cc = self._app.get_oo_object(self._app.odesign, "Boundaries") - if self.name in cc.GetChildNames(): - child_object = cc.GetChildObject(self.name) - elif "Excitations" in design_childs and self.name in self._app.get_oo_name( - self._app.odesign, "Excitations" - ): - child_object = self._app.get_oo_object(self._app.odesign, "Excitations").GetChildObject(self.name) - elif self._app.design_type in ["Maxwell 3D", "Maxwell 2D"] and "Model" in design_childs: - model = self._app.get_oo_object(self._app.odesign, "Model") - if self.name in model.GetChildNames(): - child_object = model.GetChildObject(self.name) - elif "Excitations" in design_childs and self._app.get_oo_name(self._app.odesign, "Excitations"): + if self._name in cc.GetChildNames(): + return cc.GetChildObject(self._name) + + if "Excitations" in design_childs: + if self._name in self._app.get_oo_name(self._app.odesign, "Excitations"): + return self._app.get_oo_object(self._app.odesign, "Excitations").GetChildObject(self._name) + elif self._app.get_oo_name(self._app.odesign, "Excitations"): for port in self._app.get_oo_name(self._app.odesign, "Excitations"): terminals = self._app.get_oo_name(self._app.odesign, f"Excitations\\{port}") - if self.name in terminals: - child_object = self._app.get_oo_object(self._app.odesign, f"Excitations\\{port}\\{self.name}") - elif "Conductors" in design_childs and self._app.get_oo_name(self._app.odesign, "Conductors"): - for port in self._app.get_oo_name(self._app.odesign, "Conductors"): - if self.name == port: - child_object = self._app.get_oo_object(self._app.odesign, f"Conductors\\{port}") - return child_object + if self._name in terminals: + return self._app.get_oo_object(self._app.odesign, f"Excitations\\{port}\\{self._name}") + + if self._app.design_type in ["Maxwell 3D", "Maxwell 2D"] and "Model" in design_childs: + model = self._app.get_oo_object(self._app.odesign, "Model") + if self._name in model.GetChildNames(): + return model.GetChildObject(self._name) + + if "Conductors" in design_childs and self._app.get_oo_name(self._app.odesign, "Conductors"): + for port in self._app.get_oo_name(self._app.odesign, "Conductors"): + if self._name == port: + return self._app.get_oo_object(self._app.odesign, f"Conductors\\{port}") + + return None @property def props(self): @@ -310,12 +325,18 @@ def type(self, value): @property def name(self): """Boundary Name.""" + if getattr(self, "child_object", None): + self._name = str(self.properties["Name"]) return self._name @name.setter def name(self, value): - self._name = value - self.update() + if getattr(self, "child_object", None): + try: + self.properties["Name"] = value + self._app._boundaries[value] = self + except KeyError: + self._app.logger.error("Name %s already assigned in the design", value) @pyaedt_function_handler() def _get_args(self, props=None): @@ -359,6 +380,7 @@ def create(self): self._app.oboundary.AssignRadiation(self._get_args()) elif bound_type == "FE-BI": self._app.oboundary.AssignFEBI(self._get_args()) + return True elif bound_type == "Finite Conductivity": self._app.oboundary.AssignFiniteCond(self._get_args()) elif bound_type == "Lumped RLC": @@ -397,6 +419,7 @@ def create(self): self._app.oboundary.AssignDependent(self._get_args()) elif bound_type == "Band": self._app.omodelsetup.AssignBand(self._get_args()) + return True elif bound_type == "InfiniteGround": self._app.oboundary.AssignInfiniteGround(self._get_args()) elif bound_type == "ThinConductor": @@ -504,10 +527,12 @@ def create(self): ) elif bound_type == "SBRTxRxSettings": self._app.oboundary.SetSBRTxRxSettings(self._get_args()) + return True elif bound_type == "EndConnection": self._app.oboundary.AssignEndConnection(self._get_args()) elif bound_type == "Hybrid": self._app.oboundary.AssignHybridRegion(self._get_args()) + return True elif bound_type == "FluxTangential": self._app.oboundary.AssignFluxTangential(self._get_args()) elif bound_type == "Plane Incident Wave": @@ -516,9 +541,8 @@ def create(self): self._app.oboundary.AssignResistiveSheet(self._get_args()) else: return False - self._initialize_bynary_tree() - return True + return self._initialize_bynary_tree() @pyaedt_function_handler() def update(self): @@ -532,95 +556,91 @@ def update(self): """ bound_type = self.type if bound_type == "Perfect E": - self._app.oboundary.EditPerfectE(self._boundary_name, self._get_args()) + self._app.oboundary.EditPerfectE(self.name, self._get_args()) elif bound_type == "Perfect H": - self._app.oboundary.EditPerfectH(self._boundary_name, self._get_args()) + self._app.oboundary.EditPerfectH(self.name, self._get_args()) elif bound_type == "Aperture": - self._app.oboundary.EditAperture(self._boundary_name, self._get_args()) + self._app.oboundary.EditAperture(self.name, self._get_args()) elif bound_type == "Radiation": - self._app.oboundary.EditRadiation(self._boundary_name, self._get_args()) + self._app.oboundary.EditRadiation(self.name, self._get_args()) elif bound_type == "Finite Conductivity": - self._app.oboundary.EditFiniteCond(self._boundary_name, self._get_args()) + self._app.oboundary.EditFiniteCond(self.name, self._get_args()) elif bound_type == "Lumped RLC": - self._app.oboundary.EditLumpedRLC(self._boundary_name, self._get_args()) + self._app.oboundary.EditLumpedRLC(self.name, self._get_args()) elif bound_type == "Impedance": - self._app.oboundary.EditImpedance(self._boundary_name, self._get_args()) + self._app.oboundary.EditImpedance(self.name, self._get_args()) elif bound_type == "Layered Impedance": - self._app.oboundary.EditLayeredImpedance(self._boundary_name, self._get_args()) + self._app.oboundary.EditLayeredImpedance(self.name, self._get_args()) elif bound_type == "Anisotropic Impedance": - self._app.oboundary.EditAssignAnisotropicImpedance( - self._boundary_name, self._get_args() - ) # pragma: no cover + self._app.oboundary.EditAssignAnisotropicImpedance(self.name, self._get_args()) # pragma: no cover elif bound_type == "Primary": - self._app.oboundary.EditPrimary(self._boundary_name, self._get_args()) + self._app.oboundary.EditPrimary(self.name, self._get_args()) elif bound_type == "Secondary": - self._app.oboundary.EditSecondary(self._boundary_name, self._get_args()) + self._app.oboundary.EditSecondary(self.name, self._get_args()) elif bound_type == "Lattice Pair": - self._app.oboundary.EditLatticePair(self._boundary_name, self._get_args()) + self._app.oboundary.EditLatticePair(self.name, self._get_args()) elif bound_type == "HalfSpace": - self._app.oboundary.EditHalfSpace(self._boundary_name, self._get_args()) + self._app.oboundary.EditHalfSpace(self.name, self._get_args()) elif bound_type == "Multipaction SEE": - self._app.oboundary.EditMultipactionSEE(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditMultipactionSEE(self.name, self._get_args()) # pragma: no cover elif bound_type == "Fresnel": - self._app.oboundary.EditFresnel(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditFresnel(self.name, self._get_args()) # pragma: no cover elif bound_type == "Symmetry": - self._app.oboundary.EditSymmetry(self._boundary_name, self._get_args()) + self._app.oboundary.EditSymmetry(self.name, self._get_args()) elif bound_type == "Zero Tangential H Field": - self._app.oboundary.EditZeroTangentialHField(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditZeroTangentialHField(self.name, self._get_args()) # pragma: no cover elif bound_type == "Zero Integrated Tangential H Field": - self._app.oboundary.EditIntegratedZeroTangentialHField( - self._boundary_name, self._get_args() - ) # pragma: no cover + self._app.oboundary.EditIntegratedZeroTangentialHField(self.name, self._get_args()) # pragma: no cover elif bound_type == "Tangential H Field": - self._app.oboundary.EditTangentialHField(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditTangentialHField(self.name, self._get_args()) # pragma: no cover elif bound_type == "Insulating": - self._app.oboundary.EditInsulating(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditInsulating(self.name, self._get_args()) # pragma: no cover elif bound_type == "Independent": - self._app.oboundary.EditIndependent(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditIndependent(self.name, self._get_args()) # pragma: no cover elif bound_type == "Dependent": - self._app.oboundary.EditDependent(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditDependent(self.name, self._get_args()) # pragma: no cover elif bound_type == "Band": - self._app.omodelsetup.EditMotionSetup(self._boundary_name, self._get_args()) # pragma: no cover + self._app.omodelsetup.EditMotionSetup(self.name, self._get_args()) # pragma: no cover elif bound_type == "InfiniteGround": - self._app.oboundary.EditInfiniteGround(self._boundary_name, self._get_args()) + self._app.oboundary.EditInfiniteGround(self.name, self._get_args()) elif bound_type == "ThinConductor": - self._app.oboundary.EditThinConductor(self._boundary_name, self._get_args()) + self._app.oboundary.EditThinConductor(self.name, self._get_args()) elif bound_type == "Stationary Wall": - self._app.oboundary.EditStationaryWallBoundary(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditStationaryWallBoundary(self.name, self._get_args()) # pragma: no cover elif bound_type == "Symmetry Wall": - self._app.oboundary.EditSymmetryWallBoundary(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditSymmetryWallBoundary(self.name, self._get_args()) # pragma: no cover elif bound_type == "Recirculating": - self._app.oboundary.EditRecircBoundary(self._boundary_name, self._get_args()) + self._app.oboundary.EditRecircBoundary(self.name, self._get_args()) elif bound_type == "Resistance": - self._app.oboundary.EditResistanceBoundary(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditResistanceBoundary(self.name, self._get_args()) # pragma: no cover elif bound_type == "Conducting Plate": - self._app.oboundary.EditConductingPlateBoundary(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditConductingPlateBoundary(self.name, self._get_args()) # pragma: no cover elif bound_type == "Adiabatic Plate": - self._app.oboundary.EditAdiabaticPlateBoundary(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditAdiabaticPlateBoundary(self.name, self._get_args()) # pragma: no cover elif bound_type == "Network": - self._app.oboundary.EditNetworkBoundary(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditNetworkBoundary(self.name, self._get_args()) # pragma: no cover elif bound_type == "Grille": - self._app.oboundary.EditGrilleBoundary(self._boundary_name, self._get_args()) + self._app.oboundary.EditGrilleBoundary(self.name, self._get_args()) elif bound_type == "Opening": - self._app.oboundary.EditOpeningBoundary(self._boundary_name, self._get_args()) + self._app.oboundary.EditOpeningBoundary(self.name, self._get_args()) elif bound_type == "EMLoss": - self._app.oboundary.EditEMLoss(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditEMLoss(self.name, self._get_args()) # pragma: no cover elif bound_type == "Block": - self._app.oboundary.EditBlockBoundary(self._boundary_name, self._get_args()) + self._app.oboundary.EditBlockBoundary(self.name, self._get_args()) elif bound_type == "Blower": - self._app.oboundary.EditBlowerBoundary(self._boundary_name, self._get_args()) + self._app.oboundary.EditBlowerBoundary(self.name, self._get_args()) elif bound_type == "SourceIcepak": - self._app.oboundary.EditSourceBoundary(self._boundary_name, self._get_args()) + self._app.oboundary.EditSourceBoundary(self.name, self._get_args()) elif bound_type == "HeatFlux": - self._app.oboundary.EditHeatFlux(self._boundary_name, self._get_args()) + self._app.oboundary.EditHeatFlux(self.name, self._get_args()) elif bound_type == "HeatGeneration": - self._app.oboundary.EditHeatGeneration(self._boundary_name, self._get_args()) + self._app.oboundary.EditHeatGeneration(self.name, self._get_args()) elif bound_type == "Voltage": - self._app.oboundary.EditVoltage(self._boundary_name, self._get_args()) + self._app.oboundary.EditVoltage(self.name, self._get_args()) elif bound_type == "VoltageDrop": - self._app.oboundary.EditVoltageDrop(self._boundary_name, self._get_args()) + self._app.oboundary.EditVoltageDrop(self.name, self._get_args()) elif bound_type == "Current": - self._app.oboundary.EditCurrent(self._boundary_name, self._get_args()) + self._app.oboundary.EditCurrent(self.name, self._get_args()) elif bound_type == "CurrentDensity": self._app.oboundary.AssignCurrentDensity(self._get_args()) elif bound_type == "CurrentDensityGroup": @@ -630,45 +650,42 @@ def update(self): elif bound_type == "CurrentDensityTerminalGroup": self._app.oboundary.AssignCurrentDensityTerminalGroup(self._get_args()[2], self._get_args()[3]) elif bound_type == "Winding" or bound_type == "Winding Group": - self._app.oboundary.EditWindingGroup(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditWindingGroup(self.name, self._get_args()) # pragma: no cover elif bound_type == "Vector Potential": - self._app.oboundary.EditVectorPotential(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditVectorPotential(self.name, self._get_args()) # pragma: no cover elif bound_type == "CoilTerminal" or bound_type == "Coil Terminal": - self._app.oboundary.EditCoilTerminal(self._boundary_name, self._get_args()) + self._app.oboundary.EditCoilTerminal(self.name, self._get_args()) elif bound_type == "Coil": - self._app.oboundary.EditCoil(self._boundary_name, self._get_args()) + self._app.oboundary.EditCoil(self.name, self._get_args()) elif bound_type == "Source": - self._app.oboundary.EditTerminal(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditTerminal(self.name, self._get_args()) # pragma: no cover elif bound_type == "Sink": - self._app.oboundary.EditTerminal(self._boundary_name, self._get_args()) + self._app.oboundary.EditTerminal(self.name, self._get_args()) elif bound_type == "SignalNet" or bound_type == "GroundNet" or bound_type == "FloatingNet": - self._app.oboundary.EditTerminal(self._boundary_name, self._get_args()) + self._app.oboundary.EditTerminal(self.name, self._get_args()) elif bound_type in "Circuit Port": - self._app.oboundary.EditCircuitPort(self._boundary_name, self._get_args()) + self._app.oboundary.EditCircuitPort(self.name, self._get_args()) elif bound_type in "Lumped Port": - self._app.oboundary.EditLumpedPort(self._boundary_name, self._get_args()) + self._app.oboundary.EditLumpedPort(self.name, self._get_args()) elif bound_type in "Wave Port": - self._app.oboundary.EditWavePort(self._boundary_name, self._get_args()) + self._app.oboundary.EditWavePort(self.name, self._get_args()) elif bound_type == "SetSBRTxRxSettings": self._app.oboundary.SetSBRTxRxSettings(self._get_args()) # pragma: no cover elif bound_type == "Floquet Port": - self._app.oboundary.EditFloquetPort(self._boundary_name, self._get_args()) # pragma: no cover + self._app.oboundary.EditFloquetPort(self.name, self._get_args()) # pragma: no cover elif bound_type == "End Connection": - self._app.oboundary.EditEndConnection(self._boundary_name, self._get_args()) + self._app.oboundary.EditEndConnection(self.name, self._get_args()) elif bound_type == "Hybrid": - self._app.oboundary.EditHybridRegion(self._boundary_name, self._get_args()) + self._app.oboundary.EditHybridRegion(self.name, self._get_args()) elif bound_type == "Terminal": - self._app.oboundary.EditTerminal(self._boundary_name, self._get_args()) + self._app.oboundary.EditTerminal(self.name, self._get_args()) elif bound_type == "Plane Incident Wave": - self._app.oboundary.EditIncidentWave(self._boundary_name, self._get_args()) + self._app.oboundary.EditIncidentWave(self.name, self._get_args()) elif bound_type == "ResistiveSheet": - self._app.oboundary.EditResistiveSheet(self._boundary_name, self._get_args()) + self._app.oboundary.EditResistiveSheet(self.name, self._get_args()) else: return False # pragma: no cover - self._app._boundaries[self.name] = self._app._boundaries.pop(self._boundary_name) - self._boundary_name = self.name - return True @pyaedt_function_handler() diff --git a/src/ansys/aedt/core/modules/boundary/hfss_boundary.py b/src/ansys/aedt/core/modules/boundary/hfss_boundary.py index 7cbab30d372..3932aec0fd3 100644 --- a/src/ansys/aedt/core/modules/boundary/hfss_boundary.py +++ b/src/ansys/aedt/core/modules/boundary/hfss_boundary.py @@ -52,9 +52,26 @@ def __init__(self, app, component_name, props, component_type): self._name = component_name self.__props = BoundaryProps(self, props) if props else {} self.auto_update = True - child_object = self._app.get_oo_object(self._app.odesign, f"Radiation/{self._name}") - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) + self._initialize_bynary_tree() + + @property + def _child_object(self): + """Object-oriented properties. + + Returns + ------- + class:`ansys.aedt.core.modeler.cad.elements_3d.BinaryTreeNode` + + """ + child_object = None + design_childs = self._app.get_oo_name(self._app.odesign) + + if "Radiation" in design_childs: + cc = self._app.get_oo_object(self._app.odesign, "Radiation") + cc_names = self._app.get_oo_name(cc) + if self._name in cc_names: + child_object = cc.GetChildObject(self._name) + return child_object @property def props(self): @@ -76,13 +93,18 @@ def props(self): @property def name(self): - """Variable name.""" + """Boundary Name.""" + if self._child_object: + self._name = str(self.properties["Name"]) return self._name @name.setter def name(self, value): - self._app.oradfield.RenameSetup(self._name, value) - self._name = value + if self._child_object: + try: + self.properties["Name"] = value + except KeyError: + self._app.logger.error("Name %s already assigned in the design", value) @pyaedt_function_handler() def _get_args(self, props=None): @@ -102,7 +124,6 @@ def create(self): ``True`` when successful, ``False`` when failed. """ - if self.type == "FarFieldSphere": self._app.oradfield.InsertInfiniteSphereSetup(self._get_args()) elif self.type == "NearFieldBox": @@ -117,10 +138,7 @@ def create(self): self._app.oradfield.AddAntennaOverlay(self._get_args()) elif self.type == "FieldSourceGroup": self._app.oradfield.AddRadFieldSourceGroup(self._get_args()) - child_object = self._app.get_oo_object(self._app.odesign, f"Radiation/{self._name}") - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) - return True + return self._initialize_bynary_tree() @pyaedt_function_handler() def update(self): diff --git a/src/ansys/aedt/core/modules/boundary/layout_boundary.py b/src/ansys/aedt/core/modules/boundary/layout_boundary.py index 41df52a5e97..18a77b1fa40 100644 --- a/src/ansys/aedt/core/modules/boundary/layout_boundary.py +++ b/src/ansys/aedt/core/modules/boundary/layout_boundary.py @@ -105,37 +105,47 @@ def __init__(self, app, component_type, component_name, props): self._update_props(self.__props, props) self.native_properties = self.__props["NativeComponentDefinitionProvider"] self.auto_update = True - child_object = self._app.get_oo_object(self._app.oeditor, self._name) - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) - @property - def props(self): - return self.__props + self._initialize_bynary_tree() @property - def name(self): - """Name of the object. + def _child_object(self): + """Object-oriented properties. Returns ------- - str - Name of the object. + class:`ansys.aedt.core.modeler.cad.elements_3d.BinaryTreeNode` """ + child_object = None + for el in self._app.oeditor.GetChildNames("ComponentDefinition"): + design_childs = self._app.get_oo_object(self._app.oeditor, el).GetChildNames() + if self._name in design_childs: + child_object = self._app.get_oo_object(self._app.oeditor, f"{el}\\{self._name}") + break + return child_object + + @property + def props(self): + return self.__props + + @property + def name(self): + """Boundary Name.""" + if self._child_object: + self._name = str(self.properties["Name"]) return self._name @name.setter - def name(self, component_name): - if component_name != self._name: - if component_name not in self._app.native_component_names: - self.properties["Name"] = component_name - self._app.native_components.update({component_name: self}) - del self._app.native_components[self._name] - del self._app.modeler.user_defined_components[self._name] - self._name = component_name - else: # pragma: no cover - self._app._logger.warning("Name %s already assigned in the design", component_name) + def name(self, value): + if self._child_object: + try: + legacy_name = self._name + self.properties["Name"] = value + self._app.modeler.user_defined_components[self._name] = self + del self._app.modeler.user_defined_components[legacy_name] + except KeyError: + self._app.logger.error("Name %s already assigned in the design", value) @property def definition_name(self): @@ -207,11 +217,8 @@ def create(self): a = [i for i in self._app.excitations if i not in names] self.excitation_name = a[0].split(":")[0] except (GrpcApiError, IndexError): - self.excitation_name = self.name - child_object = self._app.get_oo_object(self._app.oeditor, self._name) - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) - return True + self.excitation_name = self._name + return self._initialize_bynary_tree() @pyaedt_function_handler() def update(self): @@ -273,13 +280,13 @@ class BoundaryObject3dLayout(BoundaryCommon, BinaryTreeNode): An AEDT application from ``ansys.aedt.core.application``. name : str Name of the boundary. - props : dict + props : dict, optional Properties of the boundary. boundarytype : str Type of the boundary. """ - def __init__(self, app, name, props, boundarytype): + def __init__(self, app, name, props=None, boundarytype="Port"): self.auto_update = False self._app = app self._name = name @@ -287,10 +294,8 @@ def __init__(self, app, name, props, boundarytype): if props: self.__props = BoundaryProps(self, props) self.type = boundarytype - self._boundary_name = self.name self.auto_update = True - if self._child_object: - BinaryTreeNode.__init__(self, self.name, self._child_object, False) + self._initialize_bynary_tree() @property def _child_object(self): diff --git a/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py b/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py index a95c7b6e8e3..b21f8c8697b 100644 --- a/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py +++ b/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py @@ -62,12 +62,10 @@ def __init__(self, app, name, props=None, boundarytype=None): self._name = name self.__props = BoundaryProps(self, props) if props else {} self.type = boundarytype - self._boundary_name = self.name self.auto_update = True self.__reduced_matrices = None self.matrix_assignment = None - if self._child_object: - BinaryTreeNode.__init__(self, self.name, self._child_object, False) + self._initialize_bynary_tree() @property def reduced_matrices(self): @@ -99,10 +97,10 @@ def _child_object(self): cc = self._app.odesign.GetChildObject("Parameters") child_object = None - if self.name in cc.GetChildNames(): - child_object = self._app.odesign.GetChildObject("Parameters").GetChildObject(self.name) - elif self.name in self._app.odesign.GetChildObject("Parameters").GetChildNames(): - child_object = self._app.odesign.GetChildObject("Parameters").GetChildObject(self.name) + if self._name in cc.GetChildNames(): + child_object = self._app.odesign.GetChildObject("Parameters").GetChildObject(self._name) + elif self._name in self._app.odesign.GetChildObject("Parameters").GetChildNames(): + child_object = self._app.odesign.GetChildObject("Parameters").GetChildObject(self._name) return child_object @@ -125,13 +123,18 @@ def props(self): @property def name(self): - """Boundary name.""" + """Boundary Name.""" + if self._child_object: + self._name = str(self.properties["Name"]) return self._name @name.setter def name(self, value): - self._name = value - self.update() + if self._child_object: + try: + self.properties["Name"] = value + except KeyError: + self._app.logger.error("Name %s already assigned in the design", value) @pyaedt_function_handler() def _get_args(self, props=None): @@ -174,9 +177,7 @@ def create(self): self._app.o_maxwell_parameters.AssignLayoutForce(self._get_args()) else: return False - if self._child_object: - BinaryTreeNode.__init__(self, self.name, self._child_object, False) - return True + return self._initialize_bynary_tree() @pyaedt_function_handler() def update(self): @@ -189,14 +190,13 @@ def update(self): """ if self.type == "Matrix": - self._app.o_maxwell_parameters.EditMatrix(self._boundary_name, self._get_args()) + self._app.o_maxwell_parameters.EditMatrix(self.name, self._get_args()) elif self.type == "Force": - self._app.o_maxwell_parameters.EditForce(self._boundary_name, self._get_args()) + self._app.o_maxwell_parameters.EditForce(self.name, self._get_args()) elif self.type == "Torque": - self._app.o_maxwell_parameters.EditTorque(self._boundary_name, self._get_args()) + self._app.o_maxwell_parameters.EditTorque(self.name, self._get_args()) else: return False - self._boundary_name = self.name return True @pyaedt_function_handler() diff --git a/src/ansys/aedt/core/modules/mesh.py b/src/ansys/aedt/core/modules/mesh.py index 425bed2e3d1..7c5fbcf5772 100644 --- a/src/ansys/aedt/core/modules/mesh.py +++ b/src/ansys/aedt/core/modules/mesh.py @@ -125,11 +125,26 @@ def __init__(self, mesh, name, props, meshoptype): self._type = meshoptype self._name = name self.auto_update = True + self._initialize_bynary_tree() - child_object = self._app.get_oo_object(self._app.odesign, f"Mesh/{self._name}") + @property + def _child_object(self): + """Object-oriented properties. - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) + Returns + ------- + class:`ansys.aedt.core.modeler.cad.elements_3d.BinaryTreeNode` + + """ + child_object = None + design_childs = self._app.get_oo_name(self._app.odesign) + + if "Mesh" in design_childs: + cc = self._app.get_oo_object(self._app.odesign, "Mesh") + cc_names = self._app.get_oo_name(cc) + if self._name in cc_names: + child_object = cc.GetChildObject(self._name) + return child_object @property def type(self): @@ -182,7 +197,7 @@ def props(self): def _get_args(self): """Retrieve arguments.""" props = self.props - arg = ["NAME:" + self._name] + arg = ["NAME:" + self.name] _dict2arg(props, arg) return arg @@ -196,18 +211,17 @@ def name(self): Name of the mesh operation. """ - try: - self._name = self.properties["Name"] - except KeyError: - pass + if self._child_object: + self._name = str(self.properties["Name"]) return self._name @name.setter def name(self, meshop_name): - try: - self.properties["Name"] = meshop_name - except KeyError: - self._mesh.logger.warning("Name %s already assigned in the design", meshop_name) + if self._child_object: + try: + self.properties["Name"] = meshop_name + except KeyError: + self._mesh.logger.error("Name %s already assigned in the design", meshop_name) @pyaedt_function_handler() def create(self): @@ -245,11 +259,7 @@ def create(self): self._mesh.omeshmodule.AssignCylindricalGapOp(self._get_args()) else: return False - child_object = self._app.get_oo_object(self._app.odesign, f"Mesh/{self._name}") - - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) - return True + return self._initialize_bynary_tree() @pyaedt_function_handler() def update(self, key_name=None, value=None): @@ -394,6 +404,13 @@ def delete(self): self._mesh.meshoperations.remove(el) return True + @pyaedt_function_handler() + def _initialize_bynary_tree(self): + if self._child_object: + BinaryTreeNode.__init__(self, self._name, self._child_object, False) + return True + return False + class Mesh(object): """Manages AEDT mesh functions for 2D and 3D solvers (HFSS, Maxwell, and Q3D). @@ -1120,7 +1137,7 @@ def assign_length_mesh(self, assignment, inside_selection=True, maximum_length=1 assignment = self._modeler.convert_to_selections(assignment, True) if name: for m in self.meshoperations: - if name == m.name: + if name == m.name: # If the mesh operation name exists, find a new, unique name. name = generate_unique_name(name) else: name = generate_unique_name("length") @@ -1165,14 +1182,12 @@ def assign_length_mesh(self, assignment, inside_selection=True, maximum_length=1 ) mop = MeshOperation(self, name, props, "LengthBased") + for meshop in self.meshoperations[:]: - try: - if meshop.name == mop.name: - meshop.delete() - break - # Handle case where mop has no child_object - except AttributeError: - continue + if meshop.name == mop.name: + meshop.delete() + break + mop.create() self.meshoperations.append(mop) return mop diff --git a/src/ansys/aedt/core/modules/solve_setup.py b/src/ansys/aedt/core/modules/solve_setup.py index 181edf207ad..f27e155f0e3 100644 --- a/src/ansys/aedt/core/modules/solve_setup.py +++ b/src/ansys/aedt/core/modules/solve_setup.py @@ -53,6 +53,7 @@ class CommonSetup(PropsManager, BinaryTreeNode): + def __init__(self, app, solution_type, name="MySetupAuto", is_new_setup=True): self.auto_update = False self._app = None @@ -71,10 +72,33 @@ def __init__(self, app, solution_type, name="MySetupAuto", is_new_setup=True): self._is_new_setup = is_new_setup # self._init_props(is_new_setup) self.auto_update = True - child_object = self._app.get_oo_object(self._app.odesign, f"Analysis/{self._name}") + self._initialize_bynary_tree() + + @property + def _child_object(self): + """Object-oriented properties. + + Returns + ------- + class:`ansys.aedt.core.modeler.cad.elements_3d.BinaryTreeNode` + + """ + child_object = None + design_childs = self._app.get_oo_name(self._app.odesign) - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) + if "Analysis" in design_childs: + cc = self._app.get_oo_object(self._app.odesign, "Analysis") + cc_names = self._app.get_oo_name(cc) + if self._name in cc_names: + child_object = cc.GetChildObject(self._name) + return child_object + + @pyaedt_function_handler() + def _initialize_bynary_tree(self): + if self._child_object: + BinaryTreeNode.__init__(self, self._name, self._child_object, False) + return True + return False @property def sweeps(self): @@ -534,8 +558,8 @@ def create(self): Returns ------- - dict - Dictionary of arguments. + bool + Result of operation. References ---------- @@ -545,12 +569,7 @@ def create(self): arg = ["NAME:" + self._name] _dict2arg(self.props, arg) self.omodule.InsertSetup(soltype, arg) - child_object = self._app.get_oo_object(self._app.odesign, f"Analysis/{self._name}") - - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) - - return arg + return self._initialize_bynary_tree() @pyaedt_function_handler(update_dictionary="properties") def update(self, properties=None): @@ -1137,8 +1156,8 @@ def create(self): Returns ------- - dict - Dictionary of the arguments. + bool + Result of operation. References ---------- @@ -1153,11 +1172,7 @@ def create(self): arg = ["NAME:SimSetup"] _dict2arg(self.props, arg) self._setup(soltype, arg) - child_object = self._app.get_oo_object(self._app.odesign, f"Analysis/{self._name}") - - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) - return arg + return self._initialize_bynary_tree() @pyaedt_function_handler() def _setup(self, soltype, arg, newsetup=True): @@ -1898,7 +1913,7 @@ def create(self): arg = ["NAME:" + self.name] _dict2arg(self.props, arg) self.omodule.Add(arg) - return True + return self._initialize_bynary_tree() @pyaedt_function_handler(update_dictionary="properties") def update(self, properties=None): diff --git a/src/ansys/aedt/core/rmxprt.py b/src/ansys/aedt/core/rmxprt.py index c3938067512..f4c1d7a83f5 100644 --- a/src/ansys/aedt/core/rmxprt.py +++ b/src/ansys/aedt/core/rmxprt.py @@ -73,7 +73,10 @@ def _apply_val(dict_in, name, value): prps = dict_in.properties[name][::] prps[1] = value value = prps - dict_in.properties[name] = value + try: + dict_in.properties[name] = value + except KeyError: + self._app.logger.error(f"{name} is read only.") return True else: for _, child in dict_in.children.items(): @@ -346,10 +349,10 @@ def export_configuration(self, output_file): """ def jsonalize(dict_in, dict_out): - dict_out[dict_in.node] = {} + dict_out[dict_in._node] = {} for k, v in dict_in.properties.items(): if not k.endswith("/Choices"): - dict_out[dict_in.node][k] = v + dict_out[dict_in._node][k] = v for _, c in dict_in.children.items(): jsonalize(c, dict_out) diff --git a/src/ansys/aedt/core/visualization/post/solution_data.py b/src/ansys/aedt/core/visualization/post/solution_data.py index ef9e3a6e6de..aa24e3212ad 100644 --- a/src/ansys/aedt/core/visualization/post/solution_data.py +++ b/src/ansys/aedt/core/visualization/post/solution_data.py @@ -962,9 +962,15 @@ def plot_3d( min_r = 1e12 max_r = -1e12 - for el in r: - min_r = min(min_r, el.values.min()) - max_r = max(max_r, el.values.max()) + if self.enable_pandas_output: + for el in r: + min_r = min(min_r, el.values.min()) + max_r = max(max_r, el.values.max()) + else: + for el in r: + min_r = min(min_r, min(el)) + max_r = max(max_r, max(el)) + if min_r < 0: r = [i + np.abs(min_r) for i in r] theta_grid, phi_grid = np.meshgrid(theta, phi) diff --git a/src/ansys/aedt/core/visualization/report/common.py b/src/ansys/aedt/core/visualization/report/common.py index 21f67485d8a..b4365ce54f9 100644 --- a/src/ansys/aedt/core/visualization/report/common.py +++ b/src/ansys/aedt/core/visualization/report/common.py @@ -418,7 +418,7 @@ def _initialize_tree_node(self): if self._is_created: oo = self._post.oreportsetup.GetChildObject(self._legacy_props["plot_name"]) if oo: - BinaryTreeNode.__init__(self, self.plot_name, oo, False) + BinaryTreeNode.__init__(self, self._legacy_props["plot_name"], oo, False) @property def __all_props(self): @@ -1314,6 +1314,7 @@ def create(self, name=None): bool ``True`` when successful, ``False`` when failed. """ + self._is_created = False if not name: self.plot_name = generate_unique_name("Plot") else: diff --git a/tests/system/general/test_01_configuration_files.py b/tests/system/general/test_01_configuration_files.py index 05168479c8e..27045e04704 100644 --- a/tests/system/general/test_01_configuration_files.py +++ b/tests/system/general/test_01_configuration_files.py @@ -97,6 +97,7 @@ def hfss3dl_b(add_app): class TestClass: def test_01_hfss_export(self, aedtapp, add_app): aedtapp.mesh.assign_length_mesh("sub") + aedtapp.boundaries[-1].props conf_file = aedtapp.configurations.export_config() assert aedtapp.configurations.validate(conf_file) filename = aedtapp.design_name diff --git a/tests/system/general/test_07_Object3D.py b/tests/system/general/test_07_Object3D.py index 3cd578af1f7..128f1d4e612 100644 --- a/tests/system/general/test_07_Object3D.py +++ b/tests/system/general/test_07_Object3D.py @@ -660,11 +660,11 @@ def test_27_get_object_history_properties(self): box_subtract.split("XY") box_history = box.history() box_clone_history = box_clone.history() - assert box_history.node == "box_history" + assert box_history._node == "box_history" assert box_history.command == "CreateBox" assert box_history.properties["Command"] == "CreateBox" assert box_history.children == {} - assert box_clone_history.node == "box_history1" + assert box_clone_history._node == "box_history1" assert box_clone_history.command == box_history.command assert box_clone_history.properties["Command"] == box_history.properties["Command"] assert box_clone_history.properties["Position/X"] == box_history.properties["Position/X"] diff --git a/tests/system/general/test_20_HFSS.py b/tests/system/general/test_20_HFSS.py index 5968ce166e5..572799e5995 100644 --- a/tests/system/general/test_20_HFSS.py +++ b/tests/system/general/test_20_HFSS.py @@ -1488,7 +1488,7 @@ def test_61_create_lumped_ports_on_object_driven_terminal(self): ) term = [term for term in self.aedtapp.boundaries if term.type == "Terminal"][0] - assert self.aedtapp.boundaries[0].type == "Terminal" + assert term.type == "Terminal" term.name = "test" assert term.name == "test" term.props["TerminalResistance"] = "1ohm" diff --git a/tests/system/general/test_98_Icepak.py b/tests/system/general/test_98_Icepak.py index 7fddff4754f..54848cda534 100644 --- a/tests/system/general/test_98_Icepak.py +++ b/tests/system/general/test_98_Icepak.py @@ -659,6 +659,12 @@ def test_35_create_fan(self): fan = self.aedtapp.create_fan("Fan1", cross_section="YZ", radius="15mm", hub_radius="5mm", origin=[5, 21, 1]) assert fan assert fan.name in self.aedtapp.modeler.oeditor.Get3DComponentInstanceNames(fan.definition_name)[0] + fan.name = "Fan2" + assert fan.name in self.aedtapp.modeler.oeditor.Get3DComponentInstanceNames(fan.definition_name)[0] + assert fan.name in self.aedtapp.modeler.user_defined_components + assert fan.name in self.aedtapp.native_components + assert not "Fan1" in self.aedtapp.native_components + assert not "Fan1" in self.aedtapp.modeler.user_defined_components self.aedtapp.delete_design() def test_36_create_heat_sink(self): diff --git a/tests/system/solvers/test_00_analyze.py b/tests/system/solvers/test_00_analyze.py index 346ac718ce0..58ac97c911b 100644 --- a/tests/system/solvers/test_00_analyze.py +++ b/tests/system/solvers/test_00_analyze.py @@ -649,6 +649,6 @@ def test_10_export_to_maxwell(self, add_app): m3d = app.create_maxwell_design("Setup1", maxwell_2d=False) assert m3d.design_type == "Maxwell 3D" config = app.export_configuration(os.path.join(self.local_scratch.path, "assm.json")) - app2 = add_app("assm_test2", application=Rmxprt) + app2 = add_app("assm_test2", application=Rmxprt, solution_type="ASSM") app2.import_configuration(config) assert app2.circuit diff --git a/tests/system/solvers/test_31_Q3D.py b/tests/system/solvers/test_31_Q3D.py index 2a12b0b9b31..e3e797308e5 100644 --- a/tests/system/solvers/test_31_Q3D.py +++ b/tests/system/solvers/test_31_Q3D.py @@ -151,17 +151,17 @@ def test_06b_create_setup(self): mysetup = self.aedtapp.create_setup() mysetup.props["SaveFields"] = True assert mysetup.update() - sweep2 = mysetup.create_frequency_sweep(sweepname="mysweep2", unit="GHz", freqstart=1, freqstop=4) + sweep2 = mysetup.create_frequency_sweep(name="mysweep2", unit="GHz", start_frequency=1, stop_frequency=4) assert sweep2 - sweep2_1 = mysetup.create_frequency_sweep(sweepname="mysweep2", unit="GHz", freqstart=1, freqstop=4) + sweep2_1 = mysetup.create_frequency_sweep(name="mysweep2", unit="GHz", start_frequency=1, stop_frequency=4) assert sweep2_1 assert sweep2.name != sweep2_1.name assert sweep2.props["RangeEnd"] == "4GHz" - sweep3 = mysetup.create_frequency_sweep(unit="GHz", freqstart=1, freqstop=4) + sweep3 = mysetup.create_frequency_sweep(unit="GHz", start_frequency=1, stop_frequency=4) assert sweep3 with pytest.raises(AttributeError) as execinfo: mysetup.create_frequency_sweep( - sweepname="mysweep4", unit="GHz", freqstart=1, freqstop=4, sweep_type="Invalid" + name="mysweep4", unit="GHz", start_frequency=1, stop_frequency=4, sweep_type="Invalid" ) assert ( execinfo.args[0] @@ -180,12 +180,31 @@ def test_07_create_source_sinks(self): assert sink.name == "Sink1" assert len(self.aedtapp.excitations) > 0 - def test_07B_create_source_tosheet(self): + def test_07b_create_source_to_sheet(self): + self.aedtapp.insert_design("source_to_sheet") + + udp = self.aedtapp.modeler.Position(0, 0, 0) + coax_dimension = 30 + self.aedtapp.modeler.create_cylinder( + self.aedtapp.PLANE.XY, udp, 3, coax_dimension, 0, name="MyCylinder", material="brass" + ) + + udp = self.aedtapp.modeler.Position(10, 10, 0) + coax_dimension = 30 + self.aedtapp.modeler.create_cylinder( + self.aedtapp.PLANE.XY, udp, 3, coax_dimension, 0, name="GND", material="brass" + ) + + self.aedtapp.auto_identify_nets() self.aedtapp.modeler.create_circle(self.aedtapp.PLANE.XY, [0, 0, 0], 4, name="Source1") - self.aedtapp.modeler.create_circle(self.aedtapp.PLANE.XY, [10, 10, 10], 4, name="Sink1") + self.aedtapp.modeler.create_circle(self.aedtapp.PLANE.XY, [0, 0, coax_dimension], 4, name="Sink1") + + self.aedtapp.modeler.create_circle(self.aedtapp.PLANE.XY, [10, 10, 0], 4, name="Source2") + self.aedtapp.modeler.create_circle(self.aedtapp.PLANE.XY, [10, 10, coax_dimension], 4, name="Sink2") source = self.aedtapp.source("Source1", name="Source3") sink = self.aedtapp.sink("Sink1", name="Sink3") + assert source.name == "Source3" assert sink.name == "Sink3" assert source.props["TerminalType"] == "ConstantVoltage" @@ -193,19 +212,20 @@ def test_07B_create_source_tosheet(self): self.aedtapp.modeler.delete("Source1") self.aedtapp.modeler.delete("Sink1") + self.aedtapp.modeler.create_circle(self.aedtapp.PLANE.XY, [0, 0, 0], 4, name="Source1") - self.aedtapp.modeler.create_circle(self.aedtapp.PLANE.XY, [10, 10, 10], 4, name="Sink1") + self.aedtapp.modeler.create_circle(self.aedtapp.PLANE.XY, [0, 0, coax_dimension], 4, name="Sink1") + source = self.aedtapp.source("Source1", name="Source3", terminal_type="current") sink = self.aedtapp.sink("Sink1", name="Sink3", terminal_type="current") + assert source.props["TerminalType"] == "UniformCurrent" assert sink.props["TerminalType"] == "UniformCurrent" - self.aedtapp.modeler.create_circle(self.aedtapp.PLANE.XY, [0, 0, 0], 4, name="Source1") - self.aedtapp.modeler.create_circle(self.aedtapp.PLANE.XY, [10, 10, 10], 4, name="Sink1") + source = self.aedtapp.source("Source2", name="Cylinder1", net_name="GND") + source.props["Objects"] = ["Source2"] + sink = self.aedtapp.sink("Sink2", net_name="GND") - source = self.aedtapp.source(["Source1", "Sink1"], name="Cylinder1", net_name="GND") - source.props["Objects"] = ["Source1"] - sink = self.aedtapp.sink("Sink1", net_name="GND") assert source assert sink sink.name = "My_new_name" From 87ca0ccd41956be8257bb12e7cfbbb842bda6975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Morais?= <146729917+SMoraisAnsys@users.noreply.github.com> Date: Fri, 20 Dec 2024 12:21:52 +0100 Subject: [PATCH 10/11] FIX: PyAEDT installer with wheelhouse (#5599) --- .../Resources/pyaedt_installer_from_aedt.py | 143 +++++++++--------- 1 file changed, 71 insertions(+), 72 deletions(-) diff --git a/doc/source/Resources/pyaedt_installer_from_aedt.py b/doc/source/Resources/pyaedt_installer_from_aedt.py index f92cffe78a6..6b4451a9c00 100644 --- a/doc/source/Resources/pyaedt_installer_from_aedt.py +++ b/doc/source/Resources/pyaedt_installer_from_aedt.py @@ -79,10 +79,10 @@ def run_pyinstaller_from_c_python(oDesktop): if is_student_version(oDesktop): command.append("--student") if is_linux: - command.extend(['--edt_root="{}"'.format(edt_root), '--python_version="{}"'.format(python_version)]) + command.extend([r'--edt_root={}'.format(edt_root), '--python_version="{}"'.format(python_version)]) if wheelpyaedt: - command.extend(['--wheel="{}"'.format(wheelpyaedt)]) + command.extend([r'--wheel={}'.format(wheelpyaedt)]) oDesktop.AddMessage("", "", 0, "Installing PyAEDT.") return_code = subprocess.call(command) @@ -179,8 +179,26 @@ def parse_arguments_for_pyaedt_installer(args=None): parser.error("No arguments given!") return args +def unzip_if_zip(path): + """Unzip path if it is a ZIP file.""" + import zipfile + + # Extracted folder + unzipped_path = path + if path.suffix == '.zip': + unzipped_path = path.parent / path.stem + if unzipped_path.exists(): + shutil.rmtree(unzipped_path, ignore_errors=True) + with zipfile.ZipFile(path, "r") as zip_ref: + # Extract all contents to a directory. (You can specify a different extraction path if needed.) + zip_ref.extractall(unzipped_path) + return unzipped_path + def install_pyaedt(): + """Install PyAEDT in CPython.""" + from pathlib import Path + # This is called when run from CPython args = parse_arguments_for_pyaedt_installer() @@ -189,136 +207,117 @@ def install_pyaedt(): python_version = "3_7" if is_windows: - venv_dir = os.path.join(os.environ["APPDATA"], VENV_DIR_PREFIX, python_version) - python_exe = os.path.join(venv_dir, "Scripts", "python.exe") - pip_exe = os.path.join(venv_dir, "Scripts", "pip.exe") + venv_dir = Path(os.environ["APPDATA"], VENV_DIR_PREFIX, python_version) + python_exe = venv_dir / "Scripts" / "python.exe" + pip_exe = venv_dir / "Scripts" / "pip.exe" else: - venv_dir = os.path.join(os.environ["HOME"], VENV_DIR_PREFIX, python_version) - python_exe = os.path.join(venv_dir, "bin", "python") - pip_exe = os.path.join(venv_dir, "bin", "pip") + venv_dir = Path(os.environ["HOME"], VENV_DIR_PREFIX, python_version) + python_exe = venv_dir / "bin" / "python" + pip_exe = venv_dir / "bin" / "pip" os.environ["ANSYSEM_ROOT{}".format(args.version)] = args.edt_root ld_library_path_dirs_to_add = [ - "{}/commonfiles/CPython/{}/linx64/Release/python/lib".format( + r"{}/commonfiles/CPython/{}/linx64/Release/python/lib".format( args.edt_root, args.python_version.replace(".", "_") ), - "{}/common/mono/Linux64/lib64".format(args.edt_root), - "{}".format(args.edt_root), + r"{}/common/mono/Linux64/lib64".format(args.edt_root), + r"{}".format(args.edt_root), ] if args.version < "232": - ld_library_path_dirs_to_add.append("{}/Delcross".format(args.edt_root)) + ld_library_path_dirs_to_add.append(r"{}/Delcross".format(args.edt_root)) os.environ["LD_LIBRARY_PATH"] = ":".join(ld_library_path_dirs_to_add) + ":" + os.getenv("LD_LIBRARY_PATH", "") - os.environ["TK_LIBRARY"] = "{}/commonfiles/CPython/{}/linx64/Release/python/lib/tk8.5".format( + os.environ["TK_LIBRARY"] = r"{}/commonfiles/CPython/{}/linx64/Release/python/lib/tk8.5".format( args.edt_root, args.python_version.replace(".", "_") ) - os.environ["TCL_LIBRARY"] = "{}/commonfiles/CPython/{}/linx64/Release/python/lib/tcl8.5".format( + os.environ["TCL_LIBRARY"] = r"{}/commonfiles/CPython/{}/linx64/Release/python/lib/tcl8.5".format( args.edt_root, args.python_version.replace(".", "_") ) - if not os.path.exists(venv_dir): - - if args.version == "231": - subprocess.call([sys.executable, "-m", "venv", venv_dir, "--system-site-packages"]) + if not venv_dir.exists(): + print("Creating the virtual environment in {}".format(venv_dir)) + if args.version <= "231": + subprocess.call([sys.executable, "-m", "venv", str(venv_dir), "--system-site-packages"]) else: - subprocess.call([sys.executable, "-m", "venv", venv_dir]) + subprocess.call([sys.executable, "-m", "venv", str(venv_dir)]) - if args.wheel and os.path.exists(args.wheel): - wheel_pyaedt = args.wheel - if wheel_pyaedt.endswith(".zip"): - import zipfile - - unzipped_path = os.path.join( - os.path.dirname(wheel_pyaedt), os.path.splitext(os.path.basename(wheel_pyaedt))[0] - ) - if os.path.exists(unzipped_path): - shutil.rmtree(unzipped_path, ignore_errors=True) - with zipfile.ZipFile(wheel_pyaedt, "r") as zip_ref: - # Extract all contents to a directory. (You can specify a different extraction path if needed.) - zip_ref.extractall(unzipped_path) - else: - # Extracted folder. - unzipped_path = wheel_pyaedt + if args.wheel and Path(args.wheel).exists(): + print("Installing PyAEDT using provided wheels argument") + unzipped_path = unzip_if_zip(Path(args.wheel)) if args.version <= "231": subprocess.call( [ - pip_exe, + str(pip_exe), "install", "--no-cache-dir", "--no-index", - "--find-links={}".format(unzipped_path), - "pyaedt[all,dotnet]", + r"--find-links={}".format(str(unzipped_path)), + "pyaedt[all,dotnet]=='0.9.0'", ] ) else: subprocess.call( [ - pip_exe, + str(pip_exe), "install", "--no-cache-dir", "--no-index", - "--find-links={}".format(unzipped_path), + r"--find-links={}".format(str(unzipped_path)), "pyaedt[installer]", ] ) else: - subprocess.call([python_exe, "-m", "pip", "install", "--upgrade", "pip"]) - subprocess.call([pip_exe, "--default-timeout=1000", "install", "wheel"]) + print("Installing PyAEDT using online sources") + subprocess.call([str(python_exe), "-m", "pip", "install", "--upgrade", "pip"]) + subprocess.call([str(pip_exe), "--default-timeout=1000", "install", "wheel"]) if args.version <= "231": - subprocess.call([pip_exe, "--default-timeout=1000", "install", "pyaedt[all]=='0.9.0'"]) - subprocess.call([pip_exe, "--default-timeout=1000", "install", "jupyterlab"]) - subprocess.call([pip_exe, "--default-timeout=1000", "install", "ipython", "-U"]) - subprocess.call([pip_exe, "--default-timeout=1000", "install", "ipyvtklink"]) + subprocess.call([str(pip_exe), "--default-timeout=1000", "install", "pyaedt[all]=='0.9.0'"]) + subprocess.call([str(pip_exe), "--default-timeout=1000", "install", "jupyterlab"]) + subprocess.call([str(pip_exe), "--default-timeout=1000", "install", "ipython", "-U"]) + subprocess.call([str(pip_exe), "--default-timeout=1000", "install", "ipyvtklink"]) else: - subprocess.call([pip_exe, "--default-timeout=1000", "install", "pyaedt[installer]"]) + subprocess.call([str(pip_exe), "--default-timeout=1000", "install", "pyaedt[installer]"]) - if args.version == "231": - subprocess.call([pip_exe, "uninstall", "-y", "pywin32"]) + if args.version <= "231": + subprocess.call([str(pip_exe), "uninstall", "-y", "pywin32"]) else: - subprocess.call([pip_exe, "uninstall", "-y", "pyaedt"]) + print("Using existing virtual environment in {}".format(venv_dir)) + subprocess.call([str(pip_exe), "uninstall", "-y", "pyaedt"]) - if args.wheel and os.path.exists(args.wheel): - wheel_pyaedt = args.wheel - import zipfile - - unzipped_path = os.path.join( - os.path.dirname(wheel_pyaedt), os.path.splitext(os.path.basename(wheel_pyaedt))[0] - ) - if os.path.exists(unzipped_path): - shutil.rmtree(unzipped_path, ignore_errors=True) - with zipfile.ZipFile(wheel_pyaedt, "r") as zip_ref: - # Extract all contents to a directory. (You can specify a different extraction path if needed.) - zip_ref.extractall(unzipped_path) + if args.wheel and Path(args.wheel).exists(): + print("Installing PyAEDT using provided wheels argument") + unzipped_path = unzip_if_zip(Path(args.wheel)) if args.version <= "231": subprocess.call( [ - pip_exe, + str(pip_exe), "install", "--no-cache-dir", "--no-index", - "--find-links={}".format(unzipped_path), - "pyaedt[all]=='0.9.0'", + r"--find-links={}".format(str(unzipped_path)), + "pyaedt[all,dotnet]=='0.9.0'", ] ) else: subprocess.call( [ - pip_exe, + str(pip_exe), "install", "--no-cache-dir", "--no-index", - "--find-links={}".format(unzipped_path), + r"--find-links={}".format(str(unzipped_path)), "pyaedt[installer]", ] ) else: + print("Installing PyAEDT using online sources") if args.version <= "231": - subprocess.call([pip_exe, "--default-timeout=1000", "install", "pyaedt[all]=='0.9.0'"]) - subprocess.call([pip_exe, "--default-timeout=1000", "install", "jupyterlab"]) - subprocess.call([pip_exe, "--default-timeout=1000", "install", "ipython", "-U"]) - subprocess.call([pip_exe, "--default-timeout=1000", "install", "ipyvtklink"]) + subprocess.call([str(pip_exe), "pip=1000", "install", "pyaedt[all]=='0.9.0'"]) + subprocess.call([str(pip_exe), "--default-timeout=1000", "install", "jupyterlab"]) + subprocess.call([str(pip_exe), "--default-timeout=1000", "install", "ipython", "-U"]) + subprocess.call([str(pip_exe), "--default-timeout=1000", "install", "ipyvtklink"]) else: - subprocess.call([pip_exe, "--default-timeout=1000", "install", "pyaedt[installer]"]) + subprocess.call([str(pip_exe), "--default-timeout=1000", "install", "pyaedt[installer]"]) sys.exit(0) From 5ea943654e12403a47d7fac959575f4ec027e92e Mon Sep 17 00:00:00 2001 From: Samuel Lopez <85613111+Samuelopez-ansys@users.noreply.github.com> Date: Fri, 20 Dec 2024 14:01:06 +0100 Subject: [PATCH 11/11] FIX: Icepak Mesh Binary Tree (#5600) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- src/ansys/aedt/core/application/design.py | 2 +- .../aedt/core/modules/boundary/common.py | 6 +- .../core/modules/boundary/hfss_boundary.py | 4 +- .../core/modules/boundary/layout_boundary.py | 6 +- .../core/modules/boundary/maxwell_boundary.py | 4 +- src/ansys/aedt/core/modules/mesh.py | 6 +- src/ansys/aedt/core/modules/mesh_icepak.py | 103 +++++++++++++----- src/ansys/aedt/core/modules/solve_setup.py | 10 +- .../aedt/core/visualization/report/common.py | 4 + 9 files changed, 97 insertions(+), 48 deletions(-) diff --git a/src/ansys/aedt/core/application/design.py b/src/ansys/aedt/core/application/design.py index 54795763700..8bd231884eb 100644 --- a/src/ansys/aedt/core/application/design.py +++ b/src/ansys/aedt/core/application/design.py @@ -479,7 +479,7 @@ def boundaries(self) -> List[BoundaryObject]: del self._boundaries[k] for boundary, boundarytype in zip(current_boundaries, current_types): if boundary in self._boundaries: - self._boundaries[boundary]._initialize_bynary_tree() + self._boundaries[boundary]._initialize_tree_node() continue if boundarytype == "MaxwellParameters": maxwell_parameter_type = self.get_oo_property_value(self.odesign, f"Parameters\\{boundary}", "Type") diff --git a/src/ansys/aedt/core/modules/boundary/common.py b/src/ansys/aedt/core/modules/boundary/common.py index b6cb0e6872f..adeeb9ff1a6 100644 --- a/src/ansys/aedt/core/modules/boundary/common.py +++ b/src/ansys/aedt/core/modules/boundary/common.py @@ -93,7 +93,7 @@ def _get_args(self, props=None): return arg @pyaedt_function_handler() - def _initialize_bynary_tree(self): + def _initialize_tree_node(self): if self._child_object: BinaryTreeNode.__init__(self, self._name, self._child_object, False) return True @@ -222,7 +222,7 @@ def __init__(self, app, name, props=None, boundarytype=None, auto_update=True): self.__props = BoundaryProps(self, props) if props else {} self._type = boundarytype self.auto_update = auto_update - self._initialize_bynary_tree() + self._initialize_tree_node() @property def _child_object(self): @@ -542,7 +542,7 @@ def create(self): else: return False - return self._initialize_bynary_tree() + return self._initialize_tree_node() @pyaedt_function_handler() def update(self): diff --git a/src/ansys/aedt/core/modules/boundary/hfss_boundary.py b/src/ansys/aedt/core/modules/boundary/hfss_boundary.py index 3932aec0fd3..decad53ed56 100644 --- a/src/ansys/aedt/core/modules/boundary/hfss_boundary.py +++ b/src/ansys/aedt/core/modules/boundary/hfss_boundary.py @@ -52,7 +52,7 @@ def __init__(self, app, component_name, props, component_type): self._name = component_name self.__props = BoundaryProps(self, props) if props else {} self.auto_update = True - self._initialize_bynary_tree() + self._initialize_tree_node() @property def _child_object(self): @@ -138,7 +138,7 @@ def create(self): self._app.oradfield.AddAntennaOverlay(self._get_args()) elif self.type == "FieldSourceGroup": self._app.oradfield.AddRadFieldSourceGroup(self._get_args()) - return self._initialize_bynary_tree() + return self._initialize_tree_node() @pyaedt_function_handler() def update(self): diff --git a/src/ansys/aedt/core/modules/boundary/layout_boundary.py b/src/ansys/aedt/core/modules/boundary/layout_boundary.py index 18a77b1fa40..775c12195eb 100644 --- a/src/ansys/aedt/core/modules/boundary/layout_boundary.py +++ b/src/ansys/aedt/core/modules/boundary/layout_boundary.py @@ -106,7 +106,7 @@ def __init__(self, app, component_type, component_name, props): self.native_properties = self.__props["NativeComponentDefinitionProvider"] self.auto_update = True - self._initialize_bynary_tree() + self._initialize_tree_node() @property def _child_object(self): @@ -218,7 +218,7 @@ def create(self): self.excitation_name = a[0].split(":")[0] except (GrpcApiError, IndexError): self.excitation_name = self._name - return self._initialize_bynary_tree() + return self._initialize_tree_node() @pyaedt_function_handler() def update(self): @@ -295,7 +295,7 @@ def __init__(self, app, name, props=None, boundarytype="Port"): self.__props = BoundaryProps(self, props) self.type = boundarytype self.auto_update = True - self._initialize_bynary_tree() + self._initialize_tree_node() @property def _child_object(self): diff --git a/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py b/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py index b21f8c8697b..8658dc55c85 100644 --- a/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py +++ b/src/ansys/aedt/core/modules/boundary/maxwell_boundary.py @@ -65,7 +65,7 @@ def __init__(self, app, name, props=None, boundarytype=None): self.auto_update = True self.__reduced_matrices = None self.matrix_assignment = None - self._initialize_bynary_tree() + self._initialize_tree_node() @property def reduced_matrices(self): @@ -177,7 +177,7 @@ def create(self): self._app.o_maxwell_parameters.AssignLayoutForce(self._get_args()) else: return False - return self._initialize_bynary_tree() + return self._initialize_tree_node() @pyaedt_function_handler() def update(self): diff --git a/src/ansys/aedt/core/modules/mesh.py b/src/ansys/aedt/core/modules/mesh.py index 7c5fbcf5772..fa432c43661 100644 --- a/src/ansys/aedt/core/modules/mesh.py +++ b/src/ansys/aedt/core/modules/mesh.py @@ -125,7 +125,7 @@ def __init__(self, mesh, name, props, meshoptype): self._type = meshoptype self._name = name self.auto_update = True - self._initialize_bynary_tree() + self._initialize_tree_node() @property def _child_object(self): @@ -259,7 +259,7 @@ def create(self): self._mesh.omeshmodule.AssignCylindricalGapOp(self._get_args()) else: return False - return self._initialize_bynary_tree() + return self._initialize_tree_node() @pyaedt_function_handler() def update(self, key_name=None, value=None): @@ -405,7 +405,7 @@ def delete(self): return True @pyaedt_function_handler() - def _initialize_bynary_tree(self): + def _initialize_tree_node(self): if self._child_object: BinaryTreeNode.__init__(self, self._name, self._child_object, False) return True diff --git a/src/ansys/aedt/core/modules/mesh_icepak.py b/src/ansys/aedt/core/modules/mesh_icepak.py index b719f12ba01..217d2937e09 100644 --- a/src/ansys/aedt/core/modules/mesh_icepak.py +++ b/src/ansys/aedt/core/modules/mesh_icepak.py @@ -607,7 +607,7 @@ def __contains__(self, x): return x in self.keys() -class MeshRegionCommon(object): +class MeshRegionCommon(BinaryTreeNode): """ Manages Icepak mesh region settings. @@ -626,10 +626,26 @@ def __init__(self, units, app, name): self._name = name self._model_units = units self._app = app - child_object = self._app.get_oo_object(self._app.odesign, f"Mesh/{self._name}") + self._initialize_tree_node() - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) + @property + def _child_object(self): + """Object-oriented properties. + + Returns + ------- + class:`ansys.aedt.core.modeler.cad.elements_3d.BinaryTreeNode` + + """ + child_object = None + design_childs = self._app.get_oo_name(self._app.odesign) + + if "Mesh" in design_childs: + cc = self._app.get_oo_object(self._app.odesign, "Mesh") + cc_names = self._app.get_oo_name(cc) + if self._name in cc_names: + child_object = cc.GetChildObject(self._name) + return child_object @abstractmethod def update(self): @@ -643,26 +659,58 @@ def delete(self): def create(self): """Create the mesh region object.""" + @pyaedt_function_handler() + def _initialize_tree_node(self): + if self._name == "Settings": + return True + + if self._child_object: + child_object = self._app.get_oo_object(self._app.odesign, f"Mesh/{self._name}") + if child_object: + BinaryTreeNode.__init__(self, self._name, child_object, False) + return True + return False + # backward compatibility def __getattr__(self, name): - if "settings" in self.__dict__ and name in self.__dict__["settings"]: - return self.__dict__["settings"][name] - elif name == "UserSpecifiedSettings": - return self.__dict__["manual_settings"] - else: - return self.__dict__[name] + try: + self.__getattribute__(name) + except AttributeError: + if "settings" in self.__dict__ and name in self.__dict__["settings"]: + return self.__dict__["settings"][name] + elif name == "UserSpecifiedSettings": + return self.__dict__["manual_settings"] + else: + return self.__dict__[name] def __setattr__(self, name, value): + skip_properties = [ + "manual_settings", + "settings", + "_name", + "_model_units", + "_app", + "_assignment", + "enable", + "name", + ] + skip_properties_binary = [ + "_props", + "_saved_root_name", + "_get_child_obj_arg", + "_node", + "child_object", + "auto_update", + "_children", + "_BinaryTreeNode__first_level", + ] if ("settings" in self.__dict__) and (name in self.settings): self.settings[name] = value elif name == "UserSpecifiedSettings": self.__dict__["manual_settings"] = value - elif ( - ("settings" in self.__dict__) - and not (name in self.settings) - and name - not in ["manual_settings", "settings", "_name", "_model_units", "_app", "_assignment", "enable", "name"] - ): + elif name in skip_properties_binary: + super(BinaryTreeNode, self).__setattr__(name, value) + elif ("settings" in self.__dict__) and not (name in self.settings) and name not in skip_properties: self._app.logger.error( f"Setting name {name} is not available. Available parameters are: {', '.join(self.settings.keys())}." ) @@ -725,10 +773,7 @@ def create(self): self.delete() self.global_region = Region(self._app) self.global_region.create(self.padding_types, self.padding_values) - child_object = self._app.get_oo_object(self._app.odesign, f"Mesh/{self._name}") - - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) + return self._initialize_tree_node() class MeshRegion(MeshRegionCommon): @@ -796,6 +841,8 @@ def name(self): ------- str """ + if self._child_object: + self._name = str(self.properties["Name"]) return self._name @name.setter @@ -812,7 +859,8 @@ def name(self, value): ) self._app.modeler.refresh() self._name = value - if isinstance(self.assignment, SubRegion): + result = self._initialize_tree_node() + if isinstance(self.assignment, SubRegion) and result: self._assignment = self.assignment @pyaedt_function_handler @@ -834,7 +882,7 @@ def update(self): args += ["UserSpecifiedSettings:=", self.manual_settings] try: self._app.omeshmodule.EditMeshRegion(self.name, args) - return True + return self._initialize_tree_node() except GrpcApiError: # pragma : no cover return False @@ -934,13 +982,10 @@ def create(self): self._app.omeshmodule.AssignMeshRegion(args) self._app.mesh.meshregions.append(self) self._app.modeler.refresh_all_ids() - self._assignment = self.assignment - child_object = self._app.get_oo_object(self._app.odesign, f"Mesh/{self._name}") - - if child_object: - BinaryTreeNode.__init__(self, self._name, child_object, False) - - return True + result = self._initialize_tree_node() + if result: + self._assignment = self.assignment + return result # backward compatibility @property diff --git a/src/ansys/aedt/core/modules/solve_setup.py b/src/ansys/aedt/core/modules/solve_setup.py index f27e155f0e3..c19d96fdaec 100644 --- a/src/ansys/aedt/core/modules/solve_setup.py +++ b/src/ansys/aedt/core/modules/solve_setup.py @@ -72,7 +72,7 @@ def __init__(self, app, solution_type, name="MySetupAuto", is_new_setup=True): self._is_new_setup = is_new_setup # self._init_props(is_new_setup) self.auto_update = True - self._initialize_bynary_tree() + self._initialize_tree_node() @property def _child_object(self): @@ -94,7 +94,7 @@ def _child_object(self): return child_object @pyaedt_function_handler() - def _initialize_bynary_tree(self): + def _initialize_tree_node(self): if self._child_object: BinaryTreeNode.__init__(self, self._name, self._child_object, False) return True @@ -569,7 +569,7 @@ def create(self): arg = ["NAME:" + self._name] _dict2arg(self.props, arg) self.omodule.InsertSetup(soltype, arg) - return self._initialize_bynary_tree() + return self._initialize_tree_node() @pyaedt_function_handler(update_dictionary="properties") def update(self, properties=None): @@ -1172,7 +1172,7 @@ def create(self): arg = ["NAME:SimSetup"] _dict2arg(self.props, arg) self._setup(soltype, arg) - return self._initialize_bynary_tree() + return self._initialize_tree_node() @pyaedt_function_handler() def _setup(self, soltype, arg, newsetup=True): @@ -1913,7 +1913,7 @@ def create(self): arg = ["NAME:" + self.name] _dict2arg(self.props, arg) self.omodule.Add(arg) - return self._initialize_bynary_tree() + return self._initialize_tree_node() @pyaedt_function_handler(update_dictionary="properties") def update(self, properties=None): diff --git a/src/ansys/aedt/core/visualization/report/common.py b/src/ansys/aedt/core/visualization/report/common.py index b4365ce54f9..4889d1a187b 100644 --- a/src/ansys/aedt/core/visualization/report/common.py +++ b/src/ansys/aedt/core/visualization/report/common.py @@ -49,6 +49,7 @@ def __init__(self, report_setup, trace_name, oo=None): @pyaedt_function_handler() def _initialize_tree_node(self): BinaryTreeNode.__init__(self, self.line_name, self._oo, False) + return True @pyaedt_function_handler() def _change_property(self, props_value): @@ -259,6 +260,7 @@ def __init__( @pyaedt_function_handler() def _initialize_tree_node(self): BinaryTreeNode.__init__(self, self.aedt_name, self._oo, False) + return True @property def curve_properties(self): @@ -419,6 +421,8 @@ def _initialize_tree_node(self): oo = self._post.oreportsetup.GetChildObject(self._legacy_props["plot_name"]) if oo: BinaryTreeNode.__init__(self, self._legacy_props["plot_name"], oo, False) + return True + return False @property def __all_props(self):