fmu-manipulation-toolbox 1.9rc6__py3-none-any.whl → 1.9rc8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. fmu_manipulation_toolbox/__version__.py +1 -1
  2. fmu_manipulation_toolbox/cli/fmucontainer.py +8 -6
  3. fmu_manipulation_toolbox/cli/fmusplit.py +8 -5
  4. fmu_manipulation_toolbox/cli/fmutool.py +15 -4
  5. fmu_manipulation_toolbox/container.py +19 -16
  6. fmu_manipulation_toolbox/operations.py +10 -6
  7. fmu_manipulation_toolbox/remoting.py +4 -2
  8. fmu_manipulation_toolbox/resources/darwin64/container.dylib +0 -0
  9. fmu_manipulation_toolbox/resources/linux32/client_sm.so +0 -0
  10. fmu_manipulation_toolbox/resources/linux32/server_sm +0 -0
  11. fmu_manipulation_toolbox/resources/linux64/client_sm.so +0 -0
  12. fmu_manipulation_toolbox/resources/linux64/container.so +0 -0
  13. fmu_manipulation_toolbox/resources/linux64/server_sm +0 -0
  14. fmu_manipulation_toolbox/resources/win32/client_sm.dll +0 -0
  15. fmu_manipulation_toolbox/resources/win32/server_sm.exe +0 -0
  16. fmu_manipulation_toolbox/resources/win64/client_sm.dll +0 -0
  17. fmu_manipulation_toolbox/resources/win64/container.dll +0 -0
  18. fmu_manipulation_toolbox/resources/win64/server_sm.exe +0 -0
  19. fmu_manipulation_toolbox/split.py +8 -3
  20. {fmu_manipulation_toolbox-1.9rc6.dist-info → fmu_manipulation_toolbox-1.9rc8.dist-info}/METADATA +1 -1
  21. {fmu_manipulation_toolbox-1.9rc6.dist-info → fmu_manipulation_toolbox-1.9rc8.dist-info}/RECORD +25 -25
  22. {fmu_manipulation_toolbox-1.9rc6.dist-info → fmu_manipulation_toolbox-1.9rc8.dist-info}/WHEEL +0 -0
  23. {fmu_manipulation_toolbox-1.9rc6.dist-info → fmu_manipulation_toolbox-1.9rc8.dist-info}/entry_points.txt +0 -0
  24. {fmu_manipulation_toolbox-1.9rc6.dist-info → fmu_manipulation_toolbox-1.9rc8.dist-info}/licenses/LICENSE.txt +0 -0
  25. {fmu_manipulation_toolbox-1.9rc6.dist-info → fmu_manipulation_toolbox-1.9rc8.dist-info}/top_level.txt +0 -0
@@ -1 +1 @@
1
- 'V1.9-rc6'
1
+ 'V1.9-rc8'
@@ -1,6 +1,8 @@
1
1
  import argparse
2
2
  import logging
3
+ import sys
3
4
 
5
+ from typing import *
4
6
  from pathlib import Path
5
7
 
6
8
  from .utils import setup_logger, make_wide
@@ -9,7 +11,7 @@ from ..container import FMUContainerError
9
11
  from ..version import __version__ as version
10
12
 
11
13
 
12
- def fmucontainer():
14
+ def fmucontainer(command_options: Sequence[str]):
13
15
  logger = setup_logger()
14
16
 
15
17
  logger.info(f"FMUContainer version {version}")
@@ -63,7 +65,7 @@ def fmucontainer():
63
65
  parser.add_argument("-dump-json", action="store_true", dest="dump", default=False,
64
66
  help="Dump a JSON file for each container.")
65
67
 
66
- config = parser.parse_args()
68
+ config = parser.parse_args(command_options)
67
69
 
68
70
  if config.debug:
69
71
  logger.setLevel(logging.DEBUG)
@@ -88,16 +90,16 @@ def fmucontainer():
88
90
  auto_parameter=config.auto_parameter)
89
91
  except FileNotFoundError as e:
90
92
  logger.fatal(f"Cannot read file: {e}")
91
- continue
93
+ sys.exit(-1)
92
94
  except (FMUContainerError, AssemblyError) as e:
93
95
  logger.fatal(f"{filename}: {e}")
94
- continue
96
+ sys.exit(-2)
95
97
 
96
98
  try:
97
99
  assembly.make_fmu(dump_json=config.dump, fmi_version=int(config.fmi_version))
98
100
  except FMUContainerError as e:
99
101
  logger.fatal(f"{filename}: {e}")
100
- continue
102
+ sys.exit(-3)
101
103
 
102
104
  if __name__ == "__main__":
103
- fmucontainer()
105
+ fmucontainer(sys.argv[1:])
@@ -1,12 +1,15 @@
1
1
  import argparse
2
2
  import logging
3
+ import sys
4
+
5
+ from typing import *
3
6
 
4
7
  from .utils import setup_logger, make_wide
5
8
  from ..split import FMUSplitter, FMUSplitterError
6
9
  from ..version import __version__ as version
7
10
 
8
11
 
9
- def fmusplit():
12
+ def fmusplit(command_options: Sequence[str]):
10
13
  logger = setup_logger()
11
14
 
12
15
  logger.info(f"FMUSplit version {version}")
@@ -24,7 +27,7 @@ def fmusplit():
24
27
  metavar="filename.fmu", required=True,
25
28
  help="Description of the FMU container to split.")
26
29
 
27
- config = parser.parse_args()
30
+ config = parser.parse_args(command_options)
28
31
 
29
32
  if config.debug:
30
33
  logger.setLevel(logging.DEBUG)
@@ -35,11 +38,11 @@ def fmusplit():
35
38
  splitter.split_fmu()
36
39
  except FMUSplitterError as e:
37
40
  logger.fatal(f"{fmu_filename}: {e}")
38
- continue
41
+ sys.exit(-1)
39
42
  except FileNotFoundError as e:
40
43
  logger.fatal(f"Cannot read file: {e}")
41
- continue
44
+ sys.exit(-2)
42
45
 
43
46
 
44
47
  if __name__ == "__main__":
45
- fmusplit()
48
+ fmusplit(sys.argv[1:])
@@ -1,6 +1,8 @@
1
1
  import argparse
2
2
  import sys
3
3
 
4
+ from typing import *
5
+
4
6
  from .utils import setup_logger, make_wide
5
7
  from ..operations import (OperationSummary, OperationError, OperationRemoveRegexp,
6
8
  OperationRemoveSources, OperationTrimUntil, OperationKeepOnlyRegexp, OperationMergeTopLevel,
@@ -12,7 +14,7 @@ from ..version import __version__ as version
12
14
  from ..help import Help
13
15
 
14
16
 
15
- def fmutool():
17
+ def fmutool(command_options: Sequence[str]):
16
18
  logger = setup_logger()
17
19
 
18
20
  logger.info(f"FMU Manipulation Toolbox version {version}")
@@ -68,7 +70,7 @@ def fmutool():
68
70
  add_option('-summary', action='append_const', dest='operations_list', const=OperationSummary())
69
71
  add_option('-check', action='append_const', dest='operations_list', const=[checker() for checker in checker_list])
70
72
 
71
- cli_options = parser.parse_args()
73
+ cli_options = parser.parse_args(command_options)
72
74
  # handle the "no operation" use case
73
75
  if not cli_options.operations_list:
74
76
  cli_options.operations_list = []
@@ -89,7 +91,16 @@ def fmutool():
89
91
  for causality in cli_options.apply_on:
90
92
  logger.info(f" - causality = {causality}")
91
93
 
92
- for operation in cli_options.operations_list:
94
+ # Checker operations are added as a list into operations_list
95
+ def operation_iterator():
96
+ for op in cli_options.operations_list:
97
+ if isinstance(op, list):
98
+ for sub_op in op:
99
+ yield sub_op
100
+ else:
101
+ yield op
102
+
103
+ for operation in operation_iterator():
93
104
  logger.info(f" => {operation}")
94
105
  try:
95
106
  fmu.apply_operation(operation, cli_options.apply_on)
@@ -112,4 +123,4 @@ def fmutool():
112
123
  logger.info(f"INFO Modified FMU is not saved. If necessary use '-output' option.")
113
124
 
114
125
  if __name__ == "__main__":
115
- fmutool()
126
+ fmutool(sys.argv[1:])
@@ -796,23 +796,26 @@ class FMUContainer:
796
796
  def make_fmu_xml_epilog_2(self, xml_file, index_offset):
797
797
  xml_file.write(" </ModelVariables>\n"
798
798
  "\n"
799
- " <ModelStructure>\n"
800
- " <Outputs>\n")
799
+ " <ModelStructure>\n")
801
800
 
802
- index = index_offset
803
- for output in self.outputs.values():
804
- if output.port.type_name in EmbeddedFMUPort.CONTAINER_TO_FMI[2]:
805
- print(f' <Unknown index="{index}"/>', file=xml_file)
806
- index += 1
807
- xml_file.write(" </Outputs>\n"
808
- " <InitialUnknowns>\n")
809
- index = index_offset
810
- for output in self.outputs.values():
811
- if output.port.type_name in EmbeddedFMUPort.CONTAINER_TO_FMI[2]:
812
- print(f' <Unknown index="{index}"/>', file=xml_file)
813
- index += 1
814
- xml_file.write(" </InitialUnknowns>\n"
815
- " </ModelStructure>\n"
801
+
802
+ if self.outputs:
803
+ xml_file.write(" <Outputs>\n")
804
+ index = index_offset
805
+ for output in self.outputs.values():
806
+ if output.port.type_name in EmbeddedFMUPort.CONTAINER_TO_FMI[2]:
807
+ print(f' <Unknown index="{index}"/>', file=xml_file)
808
+ index += 1
809
+ xml_file.write(" </Outputs>\n"
810
+ " <InitialUnknowns>\n")
811
+ index = index_offset
812
+ for output in self.outputs.values():
813
+ if output.port.type_name in EmbeddedFMUPort.CONTAINER_TO_FMI[2]:
814
+ print(f' <Unknown index="{index}"/>', file=xml_file)
815
+ index += 1
816
+ xml_file.write(" </InitialUnknowns>\n")
817
+
818
+ xml_file.write(" </ModelStructure>\n"
816
819
  "\n"
817
820
  "</fmiModelDescription>")
818
821
 
@@ -416,8 +416,8 @@ class OperationSummary(OperationAbstract):
416
416
  hash_md5.update(chunk)
417
417
  digest = hash_md5.hexdigest()
418
418
  logger.info(f"| MD5Sum = {digest}")
419
-
420
- logger.info(f"|\n| FMI properties: ")
419
+ logger.info(f"|")
420
+ logger.info(f"| FMI properties: ")
421
421
  for (k, v) in attrs.items():
422
422
  logger.info(f"| - {k} = {v}")
423
423
  logger.info(f"|")
@@ -457,21 +457,25 @@ class OperationSummary(OperationAbstract):
457
457
 
458
458
  resource_dir = os.path.join(self.fmu.tmp_directory, "resources")
459
459
  if os.path.isdir(resource_dir):
460
- logger.info("|\n| Embedded resources:")
460
+ logger.info("|")
461
+ logger.info("| Embedded resources:")
461
462
  for resource in os.listdir(resource_dir):
462
463
  logger.info(f"| - {resource}")
463
464
 
464
465
  extra_dir = os.path.join(self.fmu.tmp_directory, "extra")
465
466
  if os.path.isdir(extra_dir):
466
- logger.info("|\n| Additional (meta-)data:")
467
+ logger.info("|")
468
+ logger.info("| Additional (meta-)data:")
467
469
  for extra in os.listdir(extra_dir):
468
470
  logger.info(f"| - {extra}")
469
471
 
470
- logger.info("|\n| Number of ports")
472
+ logger.info("|")
473
+ logger.info("| Number of ports")
471
474
  for causality, nb_ports in self.nb_port_per_causality.items():
472
475
  logger.info(f"| {causality} : {nb_ports}")
473
476
 
474
- logger.info("|\n| [End of report]")
477
+ logger.info("|")
478
+ logger.info("| [End of report]")
475
479
 
476
480
 
477
481
  class OperationRemoveSources(OperationAbstract):
@@ -60,9 +60,11 @@ class OperationAddRemotingWinAbstract(OperationAbstract):
60
60
  fmu_bin[self.bitness_to] / "license.txt")
61
61
 
62
62
  def port_attrs(self, fmu_port) -> int:
63
+ vr = int(fmu_port["valueReference"])
64
+ causality = fmu_port.get("causality", "local")
63
65
  try:
64
- self.vr[fmu_port.fmi_type].append(int(fmu_port["valueReference"]))
65
- if fmu_port["causality"] in ("input", "parameter"):
66
+ self.vr[fmu_port.fmi_type].append(vr)
67
+ if causality in ("input", "parameter"):
66
68
  self.nb_input += 1
67
69
  else:
68
70
  self.nb_output += 1
@@ -6,6 +6,8 @@ import xml.parsers.expat
6
6
  from typing import *
7
7
  from pathlib import Path
8
8
 
9
+ from .container import EmbeddedFMUPort
10
+
9
11
  logger = logging.getLogger("fmu_manipulation_toolbox")
10
12
 
11
13
 
@@ -66,7 +68,7 @@ class FMUSplitter:
66
68
  def split_fmu(self):
67
69
  logger.info(f"Splitting...")
68
70
  config = self._split_fmu(fmu_filename=str(self.fmu_filename), relative_path="")
69
- config_filename = self.directory / self.fmu_filename.with_suffix(".json")
71
+ config_filename = self.directory / self.fmu_filename.with_suffix(".json").name
70
72
  with open(config_filename, "w") as file:
71
73
  json.dump(config, file, indent=2)
72
74
  logger.info(f"Container definition saved to '{config_filename}'")
@@ -77,7 +79,7 @@ class FMUSplitter:
77
79
  if txt_filename in self.filenames_list:
78
80
  description = FMUSplitterDescription(self.zip)
79
81
  config = description.parse_txt_file(txt_filename)
80
- config["name"] = fmu_filename
82
+ config["name"] = Path(fmu_filename).name
81
83
  for i, fmu_filename in enumerate(config["candidate_fmu"]):
82
84
  directory = f"{relative_path}resources/{i:02x}/"
83
85
  if directory not in self.dir_set:
@@ -134,6 +136,7 @@ class FMUSplitterDescription:
134
136
  self.current_vr = None
135
137
  self.current_name = None
136
138
  self.current_causality = None
139
+ self.supported_fmi_types: Tuple[str] = ()
137
140
 
138
141
  @staticmethod
139
142
  def get_line(file):
@@ -182,10 +185,12 @@ class FMUSplitterDescription:
182
185
  def parse_txt_file_header(self, file, txt_filename):
183
186
  flags = self.get_line(file).split(" ")
184
187
  if len(flags) == 1:
188
+ self.supported_fmi_types = ("Real", "Integer", "Boolean", "String")
185
189
  self.config["mt"] = flags[0] == "1"
186
190
  self.config["profiling"] = self.get_line(file) == "1"
187
191
  self.config["sequential"] = False
188
192
  elif len(flags) == 3:
193
+ self.supported_fmi_types = EmbeddedFMUPort.ALL_TYPES
189
194
  self.config["mt"] = flags[0] == "1"
190
195
  self.config["profiling"] = flags[1] == "1"
191
196
  self.config["sequential"] = flags[2] == "1"
@@ -242,7 +247,7 @@ class FMUSplitterDescription:
242
247
  logger.debug(f"Adding container port {causality}: {definition}")
243
248
 
244
249
  def parse_txt_file_ports(self, file):
245
- for fmi_type in ("Real", "Integer", "Boolean", "String"):
250
+ for fmi_type in self.supported_fmi_types:
246
251
  nb_port_variables = self.get_line(file).split(" ")[0]
247
252
  for i in range(int(nb_port_variables)):
248
253
  tokens = self.get_line(file).split(" ")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fmu_manipulation_toolbox
3
- Version: 1.9rc6
3
+ Version: 1.9rc8
4
4
  Summary: FMU Manipulation Toolbox is a python application for modifying Functional Mock-up Units (FMUs) without recompilation or bundling them into FMU Containers
5
5
  Home-page: https://github.com/grouperenault/fmu_manipulation_toolbox/
6
6
  Author: Nicolas.LAURENT@Renault.com
@@ -1,20 +1,20 @@
1
1
  fmu_manipulation_toolbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  fmu_manipulation_toolbox/__main__.py,sha256=FpG0ITBz5q-AvIbXplVh_1g1zla5souFGtpiDdECxEw,352
3
- fmu_manipulation_toolbox/__version__.py,sha256=I5JUTgoUUC6qcKBZzBIHG6yCex4UrHPQGcbgElPi3MM,11
3
+ fmu_manipulation_toolbox/__version__.py,sha256=i7MVU2dn03k8xxOBI-Wog94MgSsBs-uB_OCIZG--8v8,11
4
4
  fmu_manipulation_toolbox/assembly.py,sha256=XQ_1sB6K1Dk2mnNe-E3_6Opoeub7F9Qaln0EUDzsop8,26553
5
5
  fmu_manipulation_toolbox/checker.py,sha256=jw1omfrMMIMHlIpHXpWBcQgIiS9hnHe5T9CZ5KlbVGs,2422
6
- fmu_manipulation_toolbox/container.py,sha256=Anubg08tr0HRb1_6rUqIRoE3E6emv6pKqDbs2aezv38,45625
6
+ fmu_manipulation_toolbox/container.py,sha256=Ed6JsWM2oMs-jyGyKmrHHebNuG4qwiGLYtx0BREIiBE,45710
7
7
  fmu_manipulation_toolbox/gui.py,sha256=ax-IbGO7GyBG0Mb5okN588CKQDfMxoF1uZtD1_CYnjc,29199
8
8
  fmu_manipulation_toolbox/gui_style.py,sha256=s6WdrnNd_lCMWhuBf5LKK8wrfLXCU7pFTLUfvqkJVno,6633
9
9
  fmu_manipulation_toolbox/help.py,sha256=aklKiLrsE0adSzQ5uoEB1sBDmI6s4l231gavu4XxxzA,5856
10
- fmu_manipulation_toolbox/operations.py,sha256=WayxcpnVRpvxGOXx2I5Vh9ThVbj6IRW6Vr8qKfqck8Y,17348
11
- fmu_manipulation_toolbox/remoting.py,sha256=LkpqZWwul1tvgD8EVXzKQ2Fkh9DtFKxs86hhQ6RBnmQ,3817
12
- fmu_manipulation_toolbox/split.py,sha256=NVkfdTRR0jj_VOdgtxHQoKptkAg5TFVUA7nUx3_o9Pg,13336
10
+ fmu_manipulation_toolbox/operations.py,sha256=04fQYVDqqQD_BpK2DX7lMYt9GkQWxRQOfpg7YKXRI_Q,17466
11
+ fmu_manipulation_toolbox/remoting.py,sha256=N25MDFkIcEWe9CIT1M4L9kea3j-8E7i2I1VOI6zIAdw,3876
12
+ fmu_manipulation_toolbox/split.py,sha256=ONl1T37xJypF45GH3sZC6gKMSQ83xEl4xAWDSEOJsao,13571
13
13
  fmu_manipulation_toolbox/version.py,sha256=OhBLkZ1-nhC77kyvffPNAf6m8OZe1bYTnNf_PWs1NvM,392
14
14
  fmu_manipulation_toolbox/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- fmu_manipulation_toolbox/cli/fmucontainer.py,sha256=bxiOcVwHHLQaVtTga77t_UdE6duPX1kTXef53LyPqbA,4738
16
- fmu_manipulation_toolbox/cli/fmusplit.py,sha256=QSMHZJlNOYbaPgI6Z9QHr95mrC3PuXDeUXR2sHm73HU,1636
17
- fmu_manipulation_toolbox/cli/fmutool.py,sha256=OuPrDeqnbsMGV50Jq7ugX7q19gt9WI2v1HMXvOvzozM,5637
15
+ fmu_manipulation_toolbox/cli/fmucontainer.py,sha256=6UaSSY6UGGlOfIh_CTG-Gk3ZPSd88Pi2cFCuzb87eks,4839
16
+ fmu_manipulation_toolbox/cli/fmusplit.py,sha256=VMDYjmvIsjPHJINZaOt1Zy8D0so6d99285LbS8v-Tro,1734
17
+ fmu_manipulation_toolbox/cli/fmutool.py,sha256=xvUSBNxoX605_JQJp4mTiGmHanj_NBoMUFb-SHdy1e4,6000
18
18
  fmu_manipulation_toolbox/cli/utils.py,sha256=gNhdlFYSSNSb0fovzS0crnxgmqqKXe0KtoZZFhRKhfg,1375
19
19
  fmu_manipulation_toolbox/resources/checkbox-checked-disabled.png,sha256=FWIuyrXlaNLLePHfXj7j9ca5rT8Hgr14KCe1EqTCZyk,2288
20
20
  fmu_manipulation_toolbox/resources/checkbox-checked-hover.png,sha256=KNlV-d_aJNTTvUVXKGT9DBY30sIs2LwocLJrFKNKv8k,2419
@@ -33,7 +33,7 @@ fmu_manipulation_toolbox/resources/icon_fmu.png,sha256=EuygB2xcoM2WAfKKdyKG_UvTL
33
33
  fmu_manipulation_toolbox/resources/license.txt,sha256=5ODuU8g8pIkK-NMWXu_rjZ6k7gM7b-N2rmg87-2Kmqw,1583
34
34
  fmu_manipulation_toolbox/resources/mask.png,sha256=px1U4hQGL0AmZ4BQPknOVREpMpTSejbah3ntkpqAzFA,3008
35
35
  fmu_manipulation_toolbox/resources/model.png,sha256=EAf_HnZJe8zYGZygerG1MMt2U-tMMZlifzXPj4_iORA,208788
36
- fmu_manipulation_toolbox/resources/darwin64/container.dylib,sha256=a4CWh6OXOuAxczqvV8p6_hwKXgmX4hLhRMoCe9yAwEA,161560
36
+ fmu_manipulation_toolbox/resources/darwin64/container.dylib,sha256=e75Qum_ccXXA-_hnu2rbyxUUWqtsbOzNXwyJ6GBcyfo,161560
37
37
  fmu_manipulation_toolbox/resources/fmi-2.0/fmi2Annotation.xsd,sha256=OGfyJtaJntKypX5KDpuZ-nV1oYLZ6HV16pkpKOmYox4,2731
38
38
  fmu_manipulation_toolbox/resources/fmi-2.0/fmi2AttributeGroups.xsd,sha256=HwyV7LBse-PQSv4z1xjmtzPU3Hjnv4mluq9YdSBNHMQ,3704
39
39
  fmu_manipulation_toolbox/resources/fmi-2.0/fmi2ModelDescription.xsd,sha256=JM4j_9q-pc40XYHb28jfT3iV3aYM5JLqD5aRjO72K1E,18939
@@ -53,19 +53,19 @@ fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Type.xsd,sha256=TaHRoUBIFtmdEwBKB
53
53
  fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Unit.xsd,sha256=CK_F2t5LfyQ6eSNJ8soTFMVK9DU8vD2WiMi2MQvjB0g,3746
54
54
  fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Variable.xsd,sha256=3YU-3q1-c-namz7sMe5cxnmOVOJsRSmfWR02PKv3xaU,19171
55
55
  fmu_manipulation_toolbox/resources/fmi-3.0/fmi3VariableDependency.xsd,sha256=YQSBwXt4IsDlyegY8bX-qQHGSfE5TipTPfo2g2yqq1c,3082
56
- fmu_manipulation_toolbox/resources/linux32/client_sm.so,sha256=j3LjxOCk1o5qZhNzdDj5B-dq3IMc50LfNiBNeMahrvs,34756
57
- fmu_manipulation_toolbox/resources/linux32/server_sm,sha256=pHXd5rRyJrCEUPGxVcK3irE86ThxVUTBRn_rgOZdSYg,21224
58
- fmu_manipulation_toolbox/resources/linux64/client_sm.so,sha256=ayVbQruif0hWfz-4-uOj6IZ_khL3QQLl3OXf2rJ5L7w,32592
59
- fmu_manipulation_toolbox/resources/linux64/container.so,sha256=SvjSbecpCuNKVY6gu5rPVrvITp7zAC71JUTxPjU-vTU,135520
60
- fmu_manipulation_toolbox/resources/linux64/server_sm,sha256=A6-IQUCN51r5rQkEW9lJJuZKqRPgeoxyMwjc5NNMq-A,22552
61
- fmu_manipulation_toolbox/resources/win32/client_sm.dll,sha256=Vdo5pcR2v658_e_9FJt2YStLmBhSRIJPTUeWkFF9DKA,17920
62
- fmu_manipulation_toolbox/resources/win32/server_sm.exe,sha256=I0Vw9X4y7oI4wOX4RcVSLdhyN1Estaf17b6X9Ad7wG4,15360
63
- fmu_manipulation_toolbox/resources/win64/client_sm.dll,sha256=aktg7bHNbQMwsVXS7yJRk6azKOtZQzQM7x40XZ6bm38,21504
64
- fmu_manipulation_toolbox/resources/win64/container.dll,sha256=drWLAIofhb0XLX7lZDV7GY0FRgIJoO3yWK8fQgK1bEo,98816
65
- fmu_manipulation_toolbox/resources/win64/server_sm.exe,sha256=r0Pok24TWGlBv4BGd3QuWLA7Zz34-ipGo-5x_ONWzy4,18432
66
- fmu_manipulation_toolbox-1.9rc6.dist-info/licenses/LICENSE.txt,sha256=c_862mzyk6ownO3Gt6cVs0-53IXLi_-ZEQFNDVabESw,1285
67
- fmu_manipulation_toolbox-1.9rc6.dist-info/METADATA,sha256=Uo6trJ5lS6ylULFdZfh3AezSG81qFtfUdeDFV0VHzp0,1156
68
- fmu_manipulation_toolbox-1.9rc6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
69
- fmu_manipulation_toolbox-1.9rc6.dist-info/entry_points.txt,sha256=HjOZkflbI1IuSY8BpOZre20m24M4GDQGCJfPIa7NrlY,264
70
- fmu_manipulation_toolbox-1.9rc6.dist-info/top_level.txt,sha256=9D_h-5BMjSqf9z-XFkbJL_bMppR2XNYW3WNuPkXou0k,25
71
- fmu_manipulation_toolbox-1.9rc6.dist-info/RECORD,,
56
+ fmu_manipulation_toolbox/resources/linux32/client_sm.so,sha256=quoCvW_Azsj6Jaswa3oTPNvQRLIHCb0oipBWjJxzxvw,34756
57
+ fmu_manipulation_toolbox/resources/linux32/server_sm,sha256=gzKU0BTeaRkvhTMQtHHj3K8uYFyEdyGGn_mZy_jG9xo,21304
58
+ fmu_manipulation_toolbox/resources/linux64/client_sm.so,sha256=88ajAAeS8KtcYoSQLL8Q_HaZhAwE4OKVa3SmnMvkeKo,32592
59
+ fmu_manipulation_toolbox/resources/linux64/container.so,sha256=96It2AN-QU_3UZ8BHmovb4_JKyTSaKbwmRFD8Hb1nUA,135520
60
+ fmu_manipulation_toolbox/resources/linux64/server_sm,sha256=MZn6vITN2qpBHYt_RaK2VnFFp00hk8fTALBHmXPtLwc,22608
61
+ fmu_manipulation_toolbox/resources/win32/client_sm.dll,sha256=_G_0i3I1sXdGZ7dV2_2Yg__ZcWoAj5iJoTtvUjGfi2I,17920
62
+ fmu_manipulation_toolbox/resources/win32/server_sm.exe,sha256=Nkmt5oxpnbMhB3H1lB4GZ8QFFNS7iw5YtM7dCbIY7ik,15360
63
+ fmu_manipulation_toolbox/resources/win64/client_sm.dll,sha256=MgAemU9Eyj5A5cbRo2G2pi7O1mKvxab81tQ_t5odO3E,21504
64
+ fmu_manipulation_toolbox/resources/win64/container.dll,sha256=-ER8WZXMCFB4ZpLxuo-iS-AV3Laga-6YDVqPfH1ZmTo,98816
65
+ fmu_manipulation_toolbox/resources/win64/server_sm.exe,sha256=FeIZTOEKfS1jzvHW9C1beR127qW2FrSXN3bEZG97WmA,18432
66
+ fmu_manipulation_toolbox-1.9rc8.dist-info/licenses/LICENSE.txt,sha256=c_862mzyk6ownO3Gt6cVs0-53IXLi_-ZEQFNDVabESw,1285
67
+ fmu_manipulation_toolbox-1.9rc8.dist-info/METADATA,sha256=t0nOHfC7Cip_A5WSx-Tzx7idPJlsBTa5qgWebfvOJlg,1156
68
+ fmu_manipulation_toolbox-1.9rc8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
69
+ fmu_manipulation_toolbox-1.9rc8.dist-info/entry_points.txt,sha256=HjOZkflbI1IuSY8BpOZre20m24M4GDQGCJfPIa7NrlY,264
70
+ fmu_manipulation_toolbox-1.9rc8.dist-info/top_level.txt,sha256=9D_h-5BMjSqf9z-XFkbJL_bMppR2XNYW3WNuPkXou0k,25
71
+ fmu_manipulation_toolbox-1.9rc8.dist-info/RECORD,,